ScriptAPI.dox 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024
  1. namespace Urho3D
  2. {
  3. /**
  4. \page ScriptAPI Scripting API
  5. \section ScriptAPI_Enums Enumerations
  6. ### Intersection
  7. - OUTSIDE
  8. - INTERSECTS
  9. - INSIDE
  10. ### VariantType
  11. - VAR_NONE
  12. - VAR_INT
  13. - VAR_BOOL
  14. - VAR_FLOAT
  15. - VAR_VECTOR2
  16. - VAR_VECTOR3
  17. - VAR_VECTOR4
  18. - VAR_QUATERNION
  19. - VAR_COLOR
  20. - VAR_STRING
  21. - VAR_BUFFER
  22. - VAR_PTR
  23. - VAR_RESOURCEREF
  24. - VAR_RESOURCEREFLIST
  25. - VAR_VARIANTVECTOR
  26. - VAR_VARIANTMAP
  27. - VAR_INTRECT
  28. - VAR_INTVECTOR2
  29. ### FileMode
  30. - FILE_READ
  31. - FILE_WRITE
  32. - FILE_READWRITE
  33. ### CreateMode
  34. - REPLICATED
  35. - LOCAL
  36. ### FillMode
  37. - FILL_SOLID
  38. - FILL_WIREFRAME
  39. - FILL_POINT
  40. ### RenderCommandType
  41. - CMD_NONE
  42. - CMD_CLEAR
  43. - CMD_SCENEPASS
  44. - CMD_QUAD
  45. - CMD_FORWARDLIGHTS
  46. - CMD_LIGHTVOLUMES
  47. ### RenderCommandSortMode
  48. - SORT_FRONTTOBACK
  49. - SORT_BACKTOFRONT
  50. ### RenderTargetSizeMode
  51. - SIZE_ABSOLUTE
  52. - SIZE_RENDERTARGETDIVISOR
  53. - SIZE_VIEWPORTDIVISOR
  54. ### TextureUnit
  55. - TU_DIFFUSE
  56. - TU_NORMAL
  57. - TU_SPECULAR
  58. - TU_EMISSIVE
  59. - TU_ENVIRONMENT
  60. - TU_LIGHTRAMP
  61. - TU_LIGHTSHAPE
  62. - TU_SHADOWMAP
  63. - TU_FACESELECT
  64. - TU_INDIRECTION
  65. - TU_ALBEDOBUFFER
  66. - TU_NORMALBUFFER
  67. - TU_DEPTHBUFFER
  68. - TU_LIGHTBUFFER
  69. - MAX_MATERIAL_TEXTURE_UNITS
  70. - MAX_TEXTURE_UNITS
  71. ### TextureUsage
  72. - TEXTURE_STATIC
  73. - TEXTURE_DYNAMIC
  74. - TEXTURE_RENDERTARGET
  75. - TEXTURE_DEPTHSTENCIL
  76. ### TextureFilterMode
  77. - FILTER_NEAREST
  78. - FILTER_BILINEAR
  79. - FILTER_TRILINEAR
  80. - FILTER_ANISOTROPIC
  81. - FILTER_DEFAULT
  82. ### TextureAddressMode
  83. - ADDRESS_WRAP
  84. - ADDRESS_MIRROR
  85. - ADDRESS_CLAMP
  86. - ADDRESS_BORDER
  87. ### TextureCoordinate
  88. - COORD_U
  89. - COORD_V
  90. - COORD_W
  91. ### CubeMapFace
  92. - FACE_POSITIVE_X
  93. - FACE_NEGATIVE_X
  94. - FACE_POSITIVE_Y
  95. - FACE_NEGATIVE_Y
  96. - FACE_POSITIVE_Z
  97. - FACE_NEGATIVE_Z
  98. ### RenderSurfaceUpdateMode
  99. - SURFACE_MANUALUPDATE
  100. - SURFACE_UPDATEVISIBLE
  101. - SURFACE_UPDATEALWAYS
  102. ### BlendMode
  103. - BLEND_REPLACE
  104. - BLEND_ADD
  105. - BLEND_MULTIPLY
  106. - BLEND_ALPHA
  107. - BLEND_ADDALPHA
  108. - BLEND_PREMULALPHA
  109. - BLEND_INVDESTALPHA
  110. ### CompareMode
  111. - CMP_ALWAYS
  112. - CMP_EQUAL
  113. - CMP_NOTEQUAL
  114. - CMP_LESS
  115. - CMP_LESSEQUAL
  116. - CMP_GREATER
  117. - CMP_GREATEREQUAL
  118. ### CullMode
  119. - CULL_NONE
  120. - CULL_CCW
  121. - CULL_CW
  122. ### PassLightingMode
  123. - LIGHTING_UNLIT
  124. - LIGHTING_PERVERTEX
  125. - LIGHTING_PERPIXEL
  126. ### LightType
  127. - LIGHT_DIRECTIONAL
  128. - LIGHT_SPOT
  129. - LIGHT_POINT
  130. ### EmitterType
  131. - EMITTER_SPHERE
  132. - EMITTER_BOX
  133. ### PrimitiveType
  134. - TRIANGLE_LIST
  135. - LINE_LIST
  136. ### RayQueryLevel
  137. - RAY_AABB_NOSUBOBJECTS
  138. - RAY_AABB
  139. - RAY_OBB
  140. - RAY_TRIANGLE
  141. ### SoundType
  142. - SOUND_EFFECT
  143. - SOUND_AMBIENT
  144. - SOUND_VOICE
  145. - SOUND_MUSIC
  146. - SOUND_MASTER
  147. ### HorizontalAlignment
  148. - HA_LEFT
  149. - HA_CENTER
  150. - HA_RIGHT
  151. ### VerticalAlignment
  152. - VA_TOP
  153. - VA_CENTER
  154. - VA_BOTTOM
  155. ### Corner
  156. - C_TOPLEFT
  157. - C_TOPRIGHT
  158. - C_BOTTOMLEFT
  159. - C_BOTTOMRIGHT
  160. ### Orientation
  161. - O_HORIZONTAL
  162. - O_VERTICAL
  163. ### FocusMode
  164. - FM_NOTFOCUSABLE
  165. - FM_RESETFOCUS
  166. - FM_FOCUSABLE
  167. - FM_FOCUSABLE_DEFOCUSABLE
  168. ### LayoutMode
  169. - LM_FREE
  170. - LM_HORIZONTAL
  171. - LM_VERTICAL
  172. ### TraversalMode
  173. - TM_BREADTH_FIRST
  174. - TM_DEPTH_FIRST
  175. ### CursorShape
  176. - CS_NORMAL
  177. - CS_RESIZEVERTICAL
  178. - CS_RESIZEDIAGONAL_TOPRIGHT
  179. - CS_RESIZEHORIZONTAL
  180. - CS_RESIZEDIAGONAL_TOPLEFT
  181. - CS_ACCEPTDROP
  182. - CS_REJECTDROP
  183. - CS_BUSY
  184. ### HighlightMode
  185. - HM_NEVER
  186. - HM_FOCUS
  187. - HM_ALWAYS
  188. ### TextEffect
  189. - TE_NONE
  190. - TE_SHADOW
  191. - TE_STROKE
  192. ### HttpRequestState
  193. - HTTP_INITIALIZING
  194. - HTTP_ERROR
  195. - HTTP_OPEN
  196. - HTTP_CLOSED
  197. ### ShapeType
  198. - SHAPE_BOX
  199. - SHAPE_SPHERE
  200. - SHAPE_STATICPLANE
  201. - SHAPE_CYLINDER
  202. - SHAPE_CAPSULE
  203. - SHAPE_CONE
  204. - SHAPE_TRIANGLEMESH
  205. - SHAPE_CONVEXHULL
  206. - SHAPE_TERRAIN
  207. ### CollisionEventMode
  208. - COLLISION_NEVER
  209. - COLLISION_ACTIVE
  210. - COLLISION_ALWAYS
  211. ### ConstraintType
  212. - CONSTRAINT_POINT
  213. - CONSTRAINT_HINGE
  214. - CONSTRAINT_SLIDER
  215. - CONSTRAINT_CONETWIST
  216. ### DumpMode
  217. - DOXYGEN
  218. - C_HEADER
  219. \section ScriptAPI_Classes Classes
  220. ### Array
  221. Methods:
  222. - void Insert(uint, const T&)
  223. - void Erase(uint)
  224. - void Push(const T&)
  225. - void Pop()
  226. - void Resize(uint)
  227. - void Clear()
  228. - void Sort()
  229. - void Sort(uint, uint)
  230. - void SortReverse()
  231. - void SortReverse(uint, uint)
  232. - void Reverse()
  233. - int Find(const T&) const
  234. - int Find(uint, const T&) const
  235. Properties:
  236. - uint length
  237. - bool empty (readonly)
  238. ### String
  239. Methods:
  240. - void Replace(uint8, uint8, bool = true)
  241. - void Replace(const String&, const String&, bool = true)
  242. - String Replaced(uint8, uint8, bool = true) const
  243. - String Replaced(const String&, const String&, bool = true) const
  244. - void Resize(uint)
  245. - uint Find(const String&, uint = 0, bool = true) const
  246. - uint Find(uint8, uint = 0, bool = true) const
  247. - uint FindLast(const String&, uint = 0xffffffff, bool = true) const
  248. - uint FindLast(uint8, uint = 0xffffffff, bool = true) const
  249. - bool StartsWith(const String&, bool = true) const
  250. - bool EndsWith(const String&, bool = true) const
  251. - String Substring(uint) const
  252. - String Substring(uint, uint) const
  253. - String ToUpper() const
  254. - String ToLower() const
  255. - String Trimmed() const
  256. - void SetUTF8FromLatin1(const String&)
  257. - uint ByteOffsetUTF8(uint) const
  258. - uint NextUTF8Char(uint&) const
  259. - uint AtUTF8(uint) const
  260. - void ReplaceUTF8(uint, uint)
  261. - void AppendUTF8(uint)
  262. - String SubstringUTF8(uint) const
  263. - String SubstringUTF8(uint, uint) const
  264. - int Compare(const String&, bool = true) const
  265. - bool Contains(const String&, bool = true) const
  266. - bool Contains(uint8, bool = true) const
  267. - void Clear()
  268. - String[]@ Split(uint8) const
  269. - void Join(String[]&, const String&)
  270. - bool ToBool() const
  271. - float ToFloat() const
  272. - int ToInt() const
  273. - uint ToUInt() const
  274. - Color ToColor() const
  275. - IntRect ToIntRect() const
  276. - IntVector2 ToIntVector2() const
  277. - Quaternion ToQuaternion() const
  278. - Vector2 ToVector2() const
  279. - Vector3 ToVector3() const
  280. - Vector4 ToVector4(bool = false) const
  281. - Variant ToVectorVariant() const
  282. Properties:
  283. - uint utf8Length (readonly)
  284. - uint length (readonly)
  285. - bool empty (readonly)
  286. ### Dictionary
  287. Methods:
  288. - void Set(const String&, ?&)
  289. - bool Get(const String&, ?&) const
  290. - void Set(const String&, int64&)
  291. - bool Get(const String&, int64&) const
  292. - void Set(const String&, double&)
  293. - bool Get(const String&, double&) const
  294. - bool Exists(const String&) const
  295. - void Erase(const String&)
  296. - void Clear()
  297. Properties:
  298. - bool empty (readonly)
  299. - uint length (readonly)
  300. - String[]@ keys (readonly)
  301. ### IntVector2
  302. Methods:
  303. - String ToString() const
  304. Properties:
  305. - int[] data (readonly)
  306. - int x
  307. - int y
  308. ### IntRect
  309. Properties:
  310. - int[] data (readonly)
  311. - IntVector2 size (readonly)
  312. - int width (readonly)
  313. - int height (readonly)
  314. - int left
  315. - int top
  316. - int right
  317. - int bottom
  318. ### Vector2
  319. Methods:
  320. - void Normalize()
  321. - float DotProduct(const Vector2&) const
  322. - float AbsDotProduct(const Vector2&) const
  323. - Vector2 Lerp(const Vector2&, float) const
  324. - bool Equals(const Vector2&) const
  325. - Vector2 Normalized() const
  326. - String ToString() const
  327. Properties:
  328. - float[] data (readonly)
  329. - float length (readonly)
  330. - float lengthSquared (readonly)
  331. - float x
  332. - float y
  333. ### Vector3
  334. Methods:
  335. - void Normalize()
  336. - float DotProduct(const Vector3&) const
  337. - float AbsDotProduct(const Vector3&) const
  338. - Vector3 CrossProduct(const Vector3&) const
  339. - Vector3 Lerp(const Vector3&, float) const
  340. - bool Equals(const Vector3&) const
  341. - Vector3 Normalized() const
  342. - String ToString() const
  343. Properties:
  344. - float[] data (readonly)
  345. - float length (readonly)
  346. - float lengthSquared (readonly)
  347. - float x
  348. - float y
  349. - float z
  350. ### Vector4
  351. Methods:
  352. - float DotProduct(const Vector4&) const
  353. - float AbsDotProduct(const Vector4&) const
  354. - Vector4 Lerp(const Vector4&, float) const
  355. - bool Equals(const Vector4&) const
  356. - String ToString() const
  357. Properties:
  358. - float[] data (readonly)
  359. - float x
  360. - float y
  361. - float z
  362. - float w
  363. ### Quaternion
  364. Methods:
  365. - void FromAngleAxis(float, const Vector3&)
  366. - void FromEulerAngles(float, float, float)
  367. - void FromRotationTo(const Vector3&, const Vector3&)
  368. - void FromAxes(const Vector3&, const Vector3&, const Vector3&)
  369. - void Normalize()
  370. - Quaternion Normalized() const
  371. - Quaternion Inverse() const
  372. - float DotProduct(const Quaternion&) const
  373. - Quaternion Slerp(Quaternion, float) const
  374. - bool Equals(const Quaternion&) const
  375. - String ToString() const
  376. Properties:
  377. - Vector3 eulerAngles (readonly)
  378. - float yaw (readonly)
  379. - float pitch (readonly)
  380. - float roll (readonly)
  381. - float w
  382. - float x
  383. - float y
  384. - float z
  385. ### Matrix3
  386. Methods:
  387. - Vector3 Scale() const
  388. - Matrix3 Scaled(const Vector3&) const
  389. - void SetScale(const Vector3&)
  390. - void SetScale(float)
  391. - Matrix3 Transpose() const
  392. - Matrix3 Inverse() const
  393. - bool Equals(const Matrix3&) const
  394. Properties:
  395. - float m00
  396. - float m01
  397. - float m02
  398. - float m10
  399. - float m11
  400. - float m12
  401. - float m20
  402. - float m21
  403. - float m22
  404. ### Matrix4
  405. Methods:
  406. - Quaternion Rotation() const
  407. - Matrix3 RotationMatrix() const
  408. - Vector3 Scale() const
  409. - void SetRotation(const Matrix3&)
  410. - void SetScale(const Vector3&)
  411. - void SetScale(float)
  412. - void SetTranslation(const Vector3&)
  413. - Matrix3 ToMatrix3() const
  414. - Vector3 Translation() const
  415. - Matrix4 Transpose() const
  416. - void Decompose(Vector3&, Quaternion&, Vector3&) const
  417. - Matrix4 Inverse() const
  418. - bool Equals(const Matrix4&) const
  419. Properties:
  420. - float m00
  421. - float m01
  422. - float m02
  423. - float m03
  424. - float m10
  425. - float m11
  426. - float m12
  427. - float m13
  428. - float m20
  429. - float m21
  430. - float m22
  431. - float m23
  432. - float m30
  433. - float m31
  434. - float m32
  435. - float m33
  436. ### Matrix3x4
  437. Methods:
  438. - Quaternion Rotation() const
  439. - Matrix3 RotationMatrix() const
  440. - Vector3 Scale() const
  441. - void SetRotation(const Matrix3&)
  442. - void SetScale(const Vector3&)
  443. - void SetScale(float)
  444. - void SetTranslation(const Vector3&)
  445. - Matrix3 ToMatrix3() const
  446. - Vector3 Translation() const
  447. - void Decompose(Vector3&, Quaternion&, Vector3&) const
  448. - Matrix3x4 Inverse() const
  449. - bool Equals(const Matrix3x4&) const
  450. Properties:
  451. - float m00
  452. - float m01
  453. - float m02
  454. - float m03
  455. - float m10
  456. - float m11
  457. - float m12
  458. - float m13
  459. - float m20
  460. - float m21
  461. - float m22
  462. - float m23
  463. ### Rect
  464. Methods:
  465. - void Define(const Vector2&, const Vector2&)
  466. - void Define(const Vector2&)
  467. - void Merge(const Vector2&)
  468. - void Merge(const Rect&)
  469. - void Clip(const Rect&)
  470. - void Clear()
  471. - bool Equals(const Rect&) const
  472. - Vector4 ToVector4() const
  473. Properties:
  474. - Vector2 center (readonly)
  475. - Vector2 size (readonly)
  476. - Vector2 halfSize (readonly)
  477. - Vector2 min
  478. - Vector2 max
  479. - float left
  480. - float top
  481. - float right
  482. - float bottom
  483. - bool defined
  484. ### BoundingBox
  485. Methods:
  486. - void Define(const Vector3&, const Vector3&)
  487. - void Define(float, float)
  488. - void Define(const Vector3&)
  489. - void Define(const BoundingBox&)
  490. - void Define(const Frustum&)
  491. - void Define(const Polyhedron&)
  492. - void Define(const Sphere&)
  493. - void Merge(const Vector3&)
  494. - void Merge(const BoundingBox&)
  495. - void Merge(const Frustum&)
  496. - void Merge(const Polyhedron&)
  497. - void Merge(const Sphere&)
  498. - void Clip(const BoundingBox&)
  499. - void Clear()
  500. - void Transform(const Matrix3&)
  501. - void Transform(const Matrix3x4&)
  502. - Intersection IsInside(const Vector3&) const
  503. - Intersection IsInside(const Sphere&) const
  504. - Intersection IsInside(const BoundingBox&) const
  505. - BoundingBox Transformed(const Matrix3&) const
  506. - BoundingBox Transformed(const Matrix3x4&) const
  507. - Rect Projected(const Matrix4&) const
  508. - String ToString() const
  509. Properties:
  510. - Vector3 center (readonly)
  511. - Vector3 size (readonly)
  512. - Vector3 halfSize (readonly)
  513. - Vector3 min
  514. - Vector3 max
  515. - bool defined
  516. ### Frustum
  517. Methods:
  518. - void Define(float, float, float, float, float, const Matrix3x4&)
  519. - void Define(const Vector3&, const Vector3&, const Matrix3x4&)
  520. - void Define(const BoundingBox&, const Matrix3x4&)
  521. - void DefineOrtho(float, float, float, float, float, const Matrix3x4&)
  522. - void Transform(const Matrix3&)
  523. - void Transform(const Matrix3x4&)
  524. - Intersection IsInside(const Vector3&)
  525. - Intersection IsInside(const BoundingBox&)
  526. - Intersection IsInside(const Sphere&)
  527. - float Distance(const Vector3&) const
  528. - Frustum Transformed(const Matrix3&) const
  529. - Frustum Transformed(const Matrix3x4&) const
  530. Properties:
  531. - Vector3[] vertices (readonly)
  532. ### Polyhedron
  533. Methods:
  534. - void AddFace(const Vector3&, const Vector3&, const Vector3&)
  535. - void AddFace(const Vector3&, const Vector3&, const Vector3&, const Vector3&)
  536. - void AddFace(const Vector3[]@)
  537. - void Define(const BoundingBox&)
  538. - void Define(const Frustum&)
  539. - void Clip(const BoundingBox&)
  540. - void Clip(const Frustum&)
  541. - void Clear()
  542. - void Transform(const Matrix3&)
  543. - void Transform(const Matrix3x4&)
  544. - Polyhedron Transformed(const Matrix3&) const
  545. - Polyhedron Transformed(const Matrix3x4&) const
  546. Properties:
  547. - uint numFaces (readonly)
  548. - Vector3[]@[] face (readonly)
  549. ### Sphere
  550. Methods:
  551. - void Define(const Vector3&, float)
  552. - void Define(const BoundingBox&)
  553. - void Define(const Frustum&)
  554. - void Define(const Polyhedron&)
  555. - void Define(const Sphere&)
  556. - void Merge(const Vector3&)
  557. - void Merge(const BoundingBox&)
  558. - void Merge(const Frustum&)
  559. - void Merge(const Sphere&)
  560. - void Clear()
  561. - Intersection IsInside(const Vector3&) const
  562. - Intersection IsInside(const Sphere&) const
  563. - Intersection IsInside(const BoundingBox&) const
  564. - float Distance(const Vector3&) const
  565. Properties:
  566. - Vector3 center
  567. - float radius
  568. - bool defined
  569. ### Plane
  570. Methods:
  571. - void Define(const Vector3&, const Vector3&, const Vector3&)
  572. - void Define(const Vector3&, const Vector3&)
  573. - float Distance(const Vector3&) const
  574. Properties:
  575. - Vector3 normal
  576. - Vector3 absNormal
  577. - float intercept
  578. ### Ray
  579. Methods:
  580. - void Define(const Vector3&, const Vector3&)
  581. - Vector3 Project(const Vector3&) const
  582. - float Distance(const Vector3&) const
  583. - Vector3 ClosestPoint(const Ray&) const
  584. - float HitDistance(const Sphere&) const
  585. - float HitDistance(const BoundingBox&) const
  586. - float HitDistance(const Frustum&, bool = true) const
  587. - float HitDistance(const Vector3&, const Vector3&, const Vector3&) const
  588. - Ray Transformed(const Matrix3x4&) const
  589. Properties:
  590. - Vector3 origin
  591. - Vector3 direction
  592. ### Color
  593. Methods:
  594. - uint ToUInt() const
  595. - Vector3 ToHSL() const
  596. - Vector3 ToHSV() const
  597. - void FromHSL(float, float, float, float)
  598. - void FromHSV(float, float, float, float)
  599. - float SumRGB() const
  600. - float Average() const
  601. - float Luma() const
  602. - float Chroma() const
  603. - float Hue() const
  604. - float SaturationHSL() const
  605. - float SaturationHSV() const
  606. - float Value() const
  607. - float Lightness() const
  608. - float MaxRGB() const
  609. - float MinRGB() const
  610. - float Range() const
  611. - void Clip(bool)
  612. - void Invert(bool)
  613. - Color Lerp(const Color&, float) const
  614. - String ToString() const
  615. Properties:
  616. - float[] data (readonly)
  617. - Vector3 rgb (readonly)
  618. - Vector4 rgba (readonly)
  619. - float r
  620. - float g
  621. - float b
  622. - float a
  623. ### StringHash
  624. Methods:
  625. - String ToString() const
  626. Properties:
  627. - uint value (readonly)
  628. ### ShortStringHash
  629. Methods:
  630. - String ToString() const
  631. Properties:
  632. - uint16 value (readonly)
  633. ### ResourceRef
  634. Properties:
  635. - ShortStringHash type
  636. - String name
  637. ### ResourceRefList
  638. Methods:
  639. - void Resize(uint)
  640. Properties:
  641. - uint length (readonly)
  642. - bool empty (readonly)
  643. - String[] names
  644. - ShortStringHash type
  645. ### Variant
  646. Methods:
  647. - void Clear()
  648. - int GetInt() const
  649. - uint GetUInt() const
  650. - StringHash GetStringHash() const
  651. - ShortStringHash GetShortStringHash() const
  652. - bool GetBool() const
  653. - float GetFloat() const
  654. - const Vector2& GetVector2() const
  655. - const Vector3& GetVector3() const
  656. - const Vector4& GetVector4() const
  657. - const Quaternion& GetQuaternion() const
  658. - const Color& GetColor() const
  659. - const String& GetString() const
  660. - const ResourceRef& GetResourceRef() const
  661. - const ResourceRefList& GetResourceRefList() const
  662. - Variant[]@ GetVariantVector() const
  663. - const VariantMap& GetVariantMap() const
  664. - const IntRect& GetIntRect() const
  665. - const IntVector2& GetIntVector2() const
  666. - void FromString(const String&, const String&)
  667. - void FromString(VariantType, const String&)
  668. - String ToString() const
  669. - VectorBuffer GetBuffer() const
  670. - Serializable@ GetSerializable() const
  671. - Node@ GetNode() const
  672. - Component@ GetComponent() const
  673. - Scene@ GetScene() const
  674. - Camera@ GetCamera() const
  675. - RenderSurface@ GetRenderSurface() const
  676. - Texture@ GetTexture() const
  677. - UIElement@ GetUIElement() const
  678. - Connection@ GetConnection() const
  679. - CollisionShape@ GetCollisionShape() const
  680. - RigidBody@ GetRigidBody() const
  681. - PhysicsWorld@ GetPhysicsWorld() const
  682. Properties:
  683. - bool zero (readonly)
  684. - bool empty (readonly)
  685. - VariantType type (readonly)
  686. - String typeName (readonly)
  687. ### VariantMap
  688. Methods:
  689. - bool Contains(const String&) const
  690. - bool Erase(const String&)
  691. - bool Contains(ShortStringHash) const
  692. - bool Erase(ShortStringHash)
  693. - void Clear()
  694. Properties:
  695. - uint length (readonly)
  696. - ShortStringHash[]@ keys (readonly)
  697. ### AttributeInfo
  698. Properties:
  699. - String[]@ enumNames (readonly)
  700. - VariantType type
  701. - String name
  702. - Variant defaultValue
  703. - uint mode
  704. ### RefCounted
  705. Properties:
  706. - int refs (readonly)
  707. - int weakRefs (readonly)
  708. ### Object
  709. Methods:
  710. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  711. Properties:
  712. - int refs (readonly)
  713. - int weakRefs (readonly)
  714. - ShortStringHash type (readonly)
  715. - ShortStringHash baseType (readonly)
  716. - String typeName (readonly)
  717. - String category (readonly)
  718. ### WeakHandle
  719. Methods:
  720. - RefCounted@ Get() const
  721. Properties:
  722. - int refs (readonly)
  723. - int weakRefs (readonly)
  724. - bool expired (readonly)
  725. ### Timer
  726. Methods:
  727. - uint GetMSec(bool)
  728. - void Reset()
  729. ### Time
  730. Methods:
  731. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  732. Properties:
  733. - int refs (readonly)
  734. - int weakRefs (readonly)
  735. - ShortStringHash type (readonly)
  736. - ShortStringHash baseType (readonly)
  737. - String typeName (readonly)
  738. - String category (readonly)
  739. - uint frameNumber (readonly)
  740. - float timeStep (readonly)
  741. - float elapsedTime (readonly)
  742. - uint systemTime (readonly)
  743. - String timeStamp (readonly)
  744. ### Log
  745. Methods:
  746. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  747. - void Open(const String&)
  748. - void Close()
  749. - void Write(const String&, bool = false)
  750. - void Debug(const String&)
  751. - void Info(const String&)
  752. - void Warning(const String&)
  753. - void Error(const String&)
  754. Properties:
  755. - int refs (readonly)
  756. - int weakRefs (readonly)
  757. - ShortStringHash type (readonly)
  758. - ShortStringHash baseType (readonly)
  759. - String typeName (readonly)
  760. - String category (readonly)
  761. - int level
  762. - bool timeStamp
  763. - String lastMessage (readonly)
  764. - bool quiet
  765. ### Serializer
  766. Methods:
  767. - uint Write(uint8[]@)
  768. - bool WriteInt(int)
  769. - bool WriteShort(int16)
  770. - bool WriteByte(int8)
  771. - bool WriteUInt(uint)
  772. - bool WriteUShort(uint16)
  773. - bool WriteUByte(uint8)
  774. - bool WriteBool(bool)
  775. - bool WriteFloat(float)
  776. - bool WriteIntRect(const IntRect&)
  777. - bool WriteIntVector2(const IntVector2&)
  778. - bool WriteVector2(const Vector2&)
  779. - bool WriteVector3(const Vector3&)
  780. - bool WritePackedVector3(const Vector3&, float)
  781. - bool WriteVector4(const Vector4&)
  782. - bool WriteQuaternion(const Quaternion&)
  783. - bool WritePackedQuaternion(const Quaternion&)
  784. - bool WriteColor(const Color&)
  785. - bool WriteBoundingBox(const BoundingBox&)
  786. - bool WriteString(const String&)
  787. - bool WriteFileID(const String&)
  788. - bool WriteStringHash(const StringHash&)
  789. - bool WriteShortStringHash(const ShortStringHash&)
  790. - bool WriteVariant(const Variant&)
  791. - bool WriteVariantMap(const VariantMap&)
  792. - bool WriteVLE(uint)
  793. - bool WriteNetID(uint)
  794. - bool WriteLine(const String&)
  795. ### Deserializer
  796. Methods:
  797. - uint8[]@ Read(uint)
  798. - int ReadInt()
  799. - int16 ReadShort()
  800. - int8 ReadByte()
  801. - uint ReadUInt()
  802. - uint16 ReadUShort()
  803. - uint8 ReadUByte()
  804. - bool ReadBool()
  805. - float ReadFloat()
  806. - IntRect ReadIntRect()
  807. - IntVector2 ReadIntVector2()
  808. - Vector2 ReadVector2()
  809. - Vector3 ReadVector3()
  810. - Vector3 ReadPackedVector3(float)
  811. - Vector4 ReadVector4()
  812. - Quaternion ReadQuaternion()
  813. - Quaternion ReadPackedQuaternion()
  814. - Color ReadColor()
  815. - BoundingBox ReadBoundingBox()
  816. - String ReadString()
  817. - String ReadFileID()
  818. - StringHash ReadStringHash()
  819. - ShortStringHash ReadShortStringHash()
  820. - Variant ReadVariant()
  821. - VariantMap ReadVariantMap()
  822. - uint ReadVLE()
  823. - uint ReadNetID()
  824. - String ReadLine()
  825. - uint Seek(uint)
  826. Properties:
  827. - String name (readonly)
  828. - uint checksum (readonly)
  829. - uint position (readonly)
  830. - uint size (readonly)
  831. - bool eof (readonly)
  832. ### File
  833. Methods:
  834. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  835. - bool Open(const String&, FileMode = FILE_READ)
  836. - void Close()
  837. - uint Write(uint8[]@)
  838. - bool WriteInt(int)
  839. - bool WriteShort(int16)
  840. - bool WriteByte(int8)
  841. - bool WriteUInt(uint)
  842. - bool WriteUShort(uint16)
  843. - bool WriteUByte(uint8)
  844. - bool WriteBool(bool)
  845. - bool WriteFloat(float)
  846. - bool WriteIntRect(const IntRect&)
  847. - bool WriteIntVector2(const IntVector2&)
  848. - bool WriteVector2(const Vector2&)
  849. - bool WriteVector3(const Vector3&)
  850. - bool WritePackedVector3(const Vector3&, float)
  851. - bool WriteVector4(const Vector4&)
  852. - bool WriteQuaternion(const Quaternion&)
  853. - bool WritePackedQuaternion(const Quaternion&)
  854. - bool WriteColor(const Color&)
  855. - bool WriteBoundingBox(const BoundingBox&)
  856. - bool WriteString(const String&)
  857. - bool WriteFileID(const String&)
  858. - bool WriteStringHash(const StringHash&)
  859. - bool WriteShortStringHash(const ShortStringHash&)
  860. - bool WriteVariant(const Variant&)
  861. - bool WriteVariantMap(const VariantMap&)
  862. - bool WriteVLE(uint)
  863. - bool WriteNetID(uint)
  864. - bool WriteLine(const String&)
  865. - uint8[]@ Read(uint)
  866. - int ReadInt()
  867. - int16 ReadShort()
  868. - int8 ReadByte()
  869. - uint ReadUInt()
  870. - uint16 ReadUShort()
  871. - uint8 ReadUByte()
  872. - bool ReadBool()
  873. - float ReadFloat()
  874. - IntRect ReadIntRect()
  875. - IntVector2 ReadIntVector2()
  876. - Vector2 ReadVector2()
  877. - Vector3 ReadVector3()
  878. - Vector3 ReadPackedVector3(float)
  879. - Vector4 ReadVector4()
  880. - Quaternion ReadQuaternion()
  881. - Quaternion ReadPackedQuaternion()
  882. - Color ReadColor()
  883. - BoundingBox ReadBoundingBox()
  884. - String ReadString()
  885. - String ReadFileID()
  886. - StringHash ReadStringHash()
  887. - ShortStringHash ReadShortStringHash()
  888. - Variant ReadVariant()
  889. - VariantMap ReadVariantMap()
  890. - uint ReadVLE()
  891. - uint ReadNetID()
  892. - String ReadLine()
  893. - uint Seek(uint)
  894. Properties:
  895. - int refs (readonly)
  896. - int weakRefs (readonly)
  897. - ShortStringHash type (readonly)
  898. - ShortStringHash baseType (readonly)
  899. - String typeName (readonly)
  900. - String category (readonly)
  901. - FileMode mode (readonly)
  902. - bool open (readonly)
  903. - bool packaged (readonly)
  904. - String name (readonly)
  905. - uint checksum (readonly)
  906. - uint position (readonly)
  907. - uint size (readonly)
  908. - bool eof (readonly)
  909. ### VectorBuffer
  910. Methods:
  911. - void SetData(Deserializer@, uint)
  912. - void Clear()
  913. - void Resize(uint)
  914. - uint Write(uint8[]@)
  915. - bool WriteInt(int)
  916. - bool WriteShort(int16)
  917. - bool WriteByte(int8)
  918. - bool WriteUInt(uint)
  919. - bool WriteUShort(uint16)
  920. - bool WriteUByte(uint8)
  921. - bool WriteBool(bool)
  922. - bool WriteFloat(float)
  923. - bool WriteIntRect(const IntRect&)
  924. - bool WriteIntVector2(const IntVector2&)
  925. - bool WriteVector2(const Vector2&)
  926. - bool WriteVector3(const Vector3&)
  927. - bool WritePackedVector3(const Vector3&, float)
  928. - bool WriteVector4(const Vector4&)
  929. - bool WriteQuaternion(const Quaternion&)
  930. - bool WritePackedQuaternion(const Quaternion&)
  931. - bool WriteColor(const Color&)
  932. - bool WriteBoundingBox(const BoundingBox&)
  933. - bool WriteString(const String&)
  934. - bool WriteFileID(const String&)
  935. - bool WriteStringHash(const StringHash&)
  936. - bool WriteShortStringHash(const ShortStringHash&)
  937. - bool WriteVariant(const Variant&)
  938. - bool WriteVariantMap(const VariantMap&)
  939. - bool WriteVLE(uint)
  940. - bool WriteNetID(uint)
  941. - bool WriteLine(const String&)
  942. - uint8[]@ Read(uint)
  943. - int ReadInt()
  944. - int16 ReadShort()
  945. - int8 ReadByte()
  946. - uint ReadUInt()
  947. - uint16 ReadUShort()
  948. - uint8 ReadUByte()
  949. - bool ReadBool()
  950. - float ReadFloat()
  951. - IntRect ReadIntRect()
  952. - IntVector2 ReadIntVector2()
  953. - Vector2 ReadVector2()
  954. - Vector3 ReadVector3()
  955. - Vector3 ReadPackedVector3(float)
  956. - Vector4 ReadVector4()
  957. - Quaternion ReadQuaternion()
  958. - Quaternion ReadPackedQuaternion()
  959. - Color ReadColor()
  960. - BoundingBox ReadBoundingBox()
  961. - String ReadString()
  962. - String ReadFileID()
  963. - StringHash ReadStringHash()
  964. - ShortStringHash ReadShortStringHash()
  965. - Variant ReadVariant()
  966. - VariantMap ReadVariantMap()
  967. - uint ReadVLE()
  968. - uint ReadNetID()
  969. - String ReadLine()
  970. - uint Seek(uint)
  971. Properties:
  972. - String name (readonly)
  973. - uint checksum (readonly)
  974. - uint position (readonly)
  975. - uint size (readonly)
  976. - bool eof (readonly)
  977. ### FileSystem
  978. Methods:
  979. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  980. - bool FileExists(const String&) const
  981. - bool DirExists(const String&) const
  982. - uint GetLastModifiedTime(const String&) const
  983. - String[]@ ScanDir(const String&, const String&, uint, bool) const
  984. - bool CreateDir(const String&)
  985. - int SystemCommand(const String&)
  986. - int SystemRun(const String&, String[]@)
  987. - bool SystemOpen(const String&, const String&)
  988. - bool Copy(const String&, const String&)
  989. - bool Rename(const String&, const String&)
  990. - bool Delete(const String&)
  991. Properties:
  992. - int refs (readonly)
  993. - int weakRefs (readonly)
  994. - ShortStringHash type (readonly)
  995. - ShortStringHash baseType (readonly)
  996. - String typeName (readonly)
  997. - String category (readonly)
  998. - String currentDir
  999. - String programDir (readonly)
  1000. - String userDocumentsDir (readonly)
  1001. ### PackageFile
  1002. Methods:
  1003. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1004. - bool Open(const String&, uint = 0) const
  1005. - bool Exists(const String&) const
  1006. - bool compressed() const
  1007. Properties:
  1008. - int refs (readonly)
  1009. - int weakRefs (readonly)
  1010. - ShortStringHash type (readonly)
  1011. - ShortStringHash baseType (readonly)
  1012. - String typeName (readonly)
  1013. - String category (readonly)
  1014. - String name (readonly)
  1015. - uint numFiles (readonly)
  1016. - uint totalSize (readonly)
  1017. - uint checksum (readonly)
  1018. ### Resource
  1019. Methods:
  1020. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1021. - bool Load(File@)
  1022. - bool Save(File@) const
  1023. Properties:
  1024. - int refs (readonly)
  1025. - int weakRefs (readonly)
  1026. - ShortStringHash type (readonly)
  1027. - ShortStringHash baseType (readonly)
  1028. - String typeName (readonly)
  1029. - String category (readonly)
  1030. - String name
  1031. - uint memoryUse (readonly)
  1032. - uint useTimer (readonly)
  1033. ### ResourceCache
  1034. Methods:
  1035. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1036. - bool AddResourceDir(const String&, uint = - 1)
  1037. - void AddPackageFile(PackageFile@, uint = - 1)
  1038. - bool AddManualResource(Resource@)
  1039. - void RemoveResourceDir(const String&)
  1040. - void RemovePackageFile(PackageFile@, bool = true, bool = false)
  1041. - void RemovePackageFile(const String&, bool = true, bool = false)
  1042. - void ReleaseResource(const String&, const String&, bool = false)
  1043. - void ReleaseResources(ShortStringHash, bool = false)
  1044. - void ReleaseResources(const String&, const String&, bool = false)
  1045. - void ReleaseResources(const String&, bool = false)
  1046. - void ReleaseAllResources(bool = false)
  1047. - bool ReloadResource(Resource@)
  1048. - bool Exists(const String&) const
  1049. - File@ GetFile(const String&)
  1050. - String GetPreferredResourceDir(const String&) const
  1051. - String SanitateResourceName(const String&) const
  1052. - String SanitateResourceDirName(const String&) const
  1053. - String GetResourceFileName(const String&) const
  1054. - Resource@ GetResource(const String&, const String&)
  1055. - Resource@ GetResource(ShortStringHash, const String&)
  1056. Properties:
  1057. - int refs (readonly)
  1058. - int weakRefs (readonly)
  1059. - ShortStringHash type (readonly)
  1060. - ShortStringHash baseType (readonly)
  1061. - String typeName (readonly)
  1062. - String category (readonly)
  1063. - uint[] memoryBudget
  1064. - uint[] memoryUse (readonly)
  1065. - uint totalMemoryUse (readonly)
  1066. - String[]@ resourceDirs (readonly)
  1067. - PackageFile@[]@ packageFiles (readonly)
  1068. - bool searchPackagesFirst (writeonly)
  1069. - bool seachPackagesFirst (readonly)
  1070. - bool autoReloadResources
  1071. ### Image
  1072. Methods:
  1073. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1074. - bool Load(File@)
  1075. - bool Save(File@) const
  1076. - void FlipVertical()
  1077. - void SaveBMP(const String&)
  1078. - void SavePNG(const String&)
  1079. - void SaveTGA(const String&)
  1080. - void SaveJPG(const String&, int)
  1081. Properties:
  1082. - int refs (readonly)
  1083. - int weakRefs (readonly)
  1084. - ShortStringHash type (readonly)
  1085. - ShortStringHash baseType (readonly)
  1086. - String typeName (readonly)
  1087. - String category (readonly)
  1088. - String name
  1089. - uint memoryUse (readonly)
  1090. - uint useTimer (readonly)
  1091. - int width (readonly)
  1092. - int height (readonly)
  1093. - uint components (readonly)
  1094. - bool compressed (readonly)
  1095. ### XMLFile
  1096. Methods:
  1097. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1098. - bool Load(File@)
  1099. - bool Save(File@) const
  1100. - XMLElement CreateRoot(const String&)
  1101. - XMLElement GetRoot(const String& = String ( ))
  1102. - void Patch(XMLFile@)
  1103. Properties:
  1104. - int refs (readonly)
  1105. - int weakRefs (readonly)
  1106. - ShortStringHash type (readonly)
  1107. - ShortStringHash baseType (readonly)
  1108. - String typeName (readonly)
  1109. - String category (readonly)
  1110. - String name
  1111. - uint memoryUse (readonly)
  1112. - uint useTimer (readonly)
  1113. - XMLElement root (readonly)
  1114. ### XMLElement
  1115. Methods:
  1116. - XMLElement CreateChild(const String&)
  1117. - bool RemoveChild(const XMLElement&)
  1118. - bool RemoveChild(const String&)
  1119. - bool RemoveChildren(const String& = String ( ))
  1120. - bool RemoveAttribute(const String& = String ( ))
  1121. - XMLElement SelectSingle(const String&)
  1122. - XMLElement SelectSinglePrepared(const XPathQuery&)
  1123. - XPathResultSet Select(const String&)
  1124. - XPathResultSet SelectPrepared(const XPathQuery&)
  1125. - bool SetValue(const String&)
  1126. - bool SetAttribute(const String&, const String&)
  1127. - bool SetAttribute(const String&)
  1128. - bool SetBool(const String&, bool)
  1129. - bool SetBoundingBox(const BoundingBox&)
  1130. - bool SetColor(const String&, const Color&)
  1131. - bool SetFloat(const String&, float)
  1132. - bool SetInt(const String&, int)
  1133. - bool SetUInt(const String&, uint)
  1134. - bool SetQuaternion(const String&, const Quaternion&)
  1135. - bool SetVariant(const Variant&)
  1136. - bool SetResourceRef(const String&, const ResourceRef&)
  1137. - bool SetResourceRefList(const String&, const ResourceRefList&)
  1138. - bool SetVariantVector(Variant[]@)
  1139. - bool SetVariantMap(const VariantMap&)
  1140. - bool SetVector2(const String&, const Vector2&)
  1141. - bool SetVector3(const String&, const Vector3&)
  1142. - bool SetVector4(const String&, const Vector4&)
  1143. - bool SetVectorVariant(const String&, const Variant&)
  1144. - bool HasAttribute(const String&) const
  1145. - String GetValue() const
  1146. - String GetAttribute(const String& = String ( )) const
  1147. - String GetAttributeLower(const String&) const
  1148. - String GetAttributeUpper(const String&) const
  1149. - String[]@ GetAttributeNames() const
  1150. - bool HasChild(const String&) const
  1151. - XMLElement GetChild(const String& = String ( )) const
  1152. - XMLElement GetNext(const String& = String ( )) const
  1153. - bool GetBool(const String&) const
  1154. - BoundingBox GetBoundingBox() const
  1155. - Color GetColor(const String&) const
  1156. - float GetFloat(const String&) const
  1157. - uint GetUInt(const String&) const
  1158. - int GetInt(const String&) const
  1159. - Quaternion GetQuaternion(const String&) const
  1160. - Variant GetVariant() const
  1161. - ResourceRef GetResourceRef() const
  1162. - ResourceRefList GetResourceRefList() const
  1163. - Variant[]@ GetVariantVector() const
  1164. - VariantMap GetVariantMap() const
  1165. - Vector2 GetVector2(const String&) const
  1166. - Vector3 GetVector3(const String&) const
  1167. - Vector4 GetVector4(const String&) const
  1168. - Variant GetVectorVariant(const String&) const
  1169. Properties:
  1170. - String value
  1171. - String name (readonly)
  1172. - uint numAttributes (readonly)
  1173. - bool isNull (readonly)
  1174. - bool notNull (readonly)
  1175. - XMLElement parent (readonly)
  1176. - XMLFile@ file (readonly)
  1177. - XMLElement nextResult (readonly)
  1178. ### XPathResultSet
  1179. Properties:
  1180. - XMLElement firstResult (readonly)
  1181. - uint size (readonly)
  1182. - bool empty (readonly)
  1183. ### XPathQuery
  1184. Methods:
  1185. - void Bind()
  1186. - bool SetVariable(const String&, bool)
  1187. - bool SetVariable(const String&, float)
  1188. - bool SetVariable(const String&, const String&)
  1189. - bool SetVariable(const String&, const XPathResultSet&)
  1190. - bool SetQuery(const String&, const String& = String ( ), bool = true)
  1191. - void Clear()
  1192. - bool EvaluateToBool(XMLElement)
  1193. - float EvaluateToFloat(XMLElement)
  1194. - String EvaluateToString(XMLElement)
  1195. - XPathResultSet Evaluate(XMLElement)
  1196. Properties:
  1197. - String query
  1198. ### Serializable
  1199. Methods:
  1200. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1201. - bool Load(File@, bool = false)
  1202. - bool Save(File@) const
  1203. - bool LoadXML(const XMLElement&, bool = false)
  1204. - bool SaveXML(XMLElement&) const
  1205. - void ApplyAttributes()
  1206. - bool SetAttribute(const String&, const Variant&)
  1207. - void ResetToDefault()
  1208. - void RemoveInstanceDefault()
  1209. - Variant GetAttribute(const String&) const
  1210. - Variant GetAttributeDefault(const String&) const
  1211. Properties:
  1212. - int refs (readonly)
  1213. - int weakRefs (readonly)
  1214. - ShortStringHash type (readonly)
  1215. - ShortStringHash baseType (readonly)
  1216. - String typeName (readonly)
  1217. - String category (readonly)
  1218. - uint numAttributes (readonly)
  1219. - Variant[] attributes
  1220. - Variant[] attributeDefaults (readonly)
  1221. - AttributeInfo[] attributeInfos (readonly)
  1222. - bool temporary
  1223. ### Component
  1224. Methods:
  1225. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1226. - bool Load(File@, bool = false)
  1227. - bool Save(File@) const
  1228. - bool LoadXML(const XMLElement&, bool = false)
  1229. - bool SaveXML(XMLElement&) const
  1230. - void ApplyAttributes()
  1231. - bool SetAttribute(const String&, const Variant&)
  1232. - void ResetToDefault()
  1233. - void RemoveInstanceDefault()
  1234. - Variant GetAttribute(const String&) const
  1235. - Variant GetAttributeDefault(const String&) const
  1236. - void Remove()
  1237. - void MarkNetworkUpdate() const
  1238. - void DrawDebugGeometry(DebugRenderer@, bool)
  1239. Properties:
  1240. - int refs (readonly)
  1241. - int weakRefs (readonly)
  1242. - ShortStringHash type (readonly)
  1243. - ShortStringHash baseType (readonly)
  1244. - String typeName (readonly)
  1245. - String category (readonly)
  1246. - uint numAttributes (readonly)
  1247. - Variant[] attributes
  1248. - Variant[] attributeDefaults (readonly)
  1249. - AttributeInfo[] attributeInfos (readonly)
  1250. - bool temporary
  1251. - bool enabled
  1252. - bool enabledEffective (readonly)
  1253. - uint id (readonly)
  1254. - Node@ node (readonly)
  1255. ### Node
  1256. Methods:
  1257. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1258. - bool Load(File@, bool = false)
  1259. - bool Save(File@) const
  1260. - bool LoadXML(const XMLElement&, bool = false)
  1261. - bool SaveXML(XMLElement&) const
  1262. - void ApplyAttributes()
  1263. - bool SetAttribute(const String&, const Variant&)
  1264. - void ResetToDefault()
  1265. - void RemoveInstanceDefault()
  1266. - Variant GetAttribute(const String&) const
  1267. - Variant GetAttributeDefault(const String&) const
  1268. - void SetScale(float)
  1269. - void SetTransform(const Vector3&, const Quaternion&)
  1270. - void SetTransform(const Vector3&, const Quaternion&, float)
  1271. - void SetTransform(const Vector3&, const Quaternion&, const Vector3&)
  1272. - void SetWorldTransform(const Vector3&, const Quaternion&)
  1273. - void SetWorldTransform(const Vector3&, const Quaternion&, float)
  1274. - void SetWorldTransform(const Vector3&, const Quaternion&, const Vector3&)
  1275. - void Translate(const Vector3&)
  1276. - void TranslateRelative(const Vector3&)
  1277. - void Rotate(const Quaternion&, bool = false)
  1278. - void Pitch(float, bool = false)
  1279. - void Yaw(float, bool = false)
  1280. - void Roll(float, bool = false)
  1281. - void LookAt(const Vector3&, const Vector3& = Vector3 ( 0 , 1 , 0 ))
  1282. - void Scale(float)
  1283. - void Scale(const Vector3&)
  1284. - Node@ CreateChild(const String& = String ( ), CreateMode = REPLICATED, uint = 0)
  1285. - void AddChild(Node@)
  1286. - void RemoveChild(Node@)
  1287. - void RemoveAllChildren()
  1288. - void RemoveChildren(bool, bool, bool)
  1289. - void Remove()
  1290. - Component@ CreateComponent(const String&, CreateMode = REPLICATED, uint = 0)
  1291. - Component@ GetOrCreateComponent(const String&, CreateMode = REPLICATED, uint = 0)
  1292. - void RemoveComponent(Component@)
  1293. - void RemoveComponent(const String&)
  1294. - void RemoveAllComponents()
  1295. - void RemoveComponents(bool, bool)
  1296. - Node@[]@ GetChildren(bool = false) const
  1297. - Node@[]@ GetChildrenWithComponent(const String&, bool = false) const
  1298. - Node@[]@ GetChildrenWithScript(bool = false) const
  1299. - Node@[]@ GetChildrenWithScript(const String&, bool = false) const
  1300. - Node@ GetChild(const String&, bool = false) const
  1301. - Component@[]@ GetComponents() const
  1302. - Component@[]@ GetComponents(const String&, bool = false) const
  1303. - Component@ GetComponent(const String&) const
  1304. - bool HasComponent(const String&) const
  1305. - Vector3 LocalToWorld(const Vector3&) const
  1306. - Vector3 LocalToWorld(const Vector4&) const
  1307. - Vector3 WorldToLocal(const Vector3&) const
  1308. - Vector3 WorldToLocal(const Vector4&) const
  1309. - void SetEnabled(bool, bool)
  1310. - bool SaveXML(File@)
  1311. - Node@ Clone(CreateMode = REPLICATED)
  1312. - ScriptObject@ CreateScriptObject(ScriptFile@, const String&, CreateMode = REPLICATED)
  1313. - ScriptObject@ CreateScriptObject(const String&, const String&, CreateMode = REPLICATED)
  1314. - ScriptObject@ GetScriptObject() const
  1315. - ScriptObject@ GetScriptObject(const String&) const
  1316. Properties:
  1317. - int refs (readonly)
  1318. - int weakRefs (readonly)
  1319. - ShortStringHash type (readonly)
  1320. - ShortStringHash baseType (readonly)
  1321. - String typeName (readonly)
  1322. - String category (readonly)
  1323. - uint numAttributes (readonly)
  1324. - Variant[] attributes
  1325. - Variant[] attributeDefaults (readonly)
  1326. - AttributeInfo[] attributeInfos (readonly)
  1327. - bool temporary
  1328. - Vector3 position
  1329. - Quaternion rotation
  1330. - Vector3 direction
  1331. - Vector3 scale
  1332. - Vector3 worldPosition
  1333. - Quaternion worldRotation
  1334. - Vector3 worldDirection
  1335. - Vector3 worldScale
  1336. - Matrix3x4 transform (readonly)
  1337. - Matrix3x4 worldTransform (readonly)
  1338. - uint id (readonly)
  1339. - uint numChildren (readonly)
  1340. - uint numAllChildren (readonly)
  1341. - Node@[] children (readonly)
  1342. - uint numComponents (readonly)
  1343. - Component@[] components (readonly)
  1344. - String name
  1345. - Node@ parent
  1346. - VariantMap vars (readonly)
  1347. - bool enabled
  1348. - Scene@ scene (readonly)
  1349. - Connection@ owner
  1350. - ScriptObject@ scriptObject (readonly)
  1351. ### SmoothedTransform
  1352. Methods:
  1353. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1354. - bool Load(File@, bool = false)
  1355. - bool Save(File@) const
  1356. - bool LoadXML(const XMLElement&, bool = false)
  1357. - bool SaveXML(XMLElement&) const
  1358. - void ApplyAttributes()
  1359. - bool SetAttribute(const String&, const Variant&)
  1360. - void ResetToDefault()
  1361. - void RemoveInstanceDefault()
  1362. - Variant GetAttribute(const String&) const
  1363. - Variant GetAttributeDefault(const String&) const
  1364. - void Remove()
  1365. - void MarkNetworkUpdate() const
  1366. - void Update(float, float)
  1367. - void DrawDebugGeometry(DebugRenderer@, bool)
  1368. Properties:
  1369. - int refs (readonly)
  1370. - int weakRefs (readonly)
  1371. - ShortStringHash type (readonly)
  1372. - ShortStringHash baseType (readonly)
  1373. - String typeName (readonly)
  1374. - String category (readonly)
  1375. - uint numAttributes (readonly)
  1376. - Variant[] attributes
  1377. - Variant[] attributeDefaults (readonly)
  1378. - AttributeInfo[] attributeInfos (readonly)
  1379. - bool temporary
  1380. - bool enabled
  1381. - bool enabledEffective (readonly)
  1382. - uint id (readonly)
  1383. - Node@ node (readonly)
  1384. - Vector3 targetPosition
  1385. - Quaternion targetRotation
  1386. - Vector3 targetWorldPosition
  1387. - Quaternion targetWorldRotation
  1388. - bool inProgress (readonly)
  1389. ### Scene
  1390. Methods:
  1391. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1392. - bool Load(File@, bool = false)
  1393. - bool Save(File@) const
  1394. - bool LoadXML(const XMLElement&, bool = false)
  1395. - bool SaveXML(XMLElement&) const
  1396. - void ApplyAttributes()
  1397. - bool SetAttribute(const String&, const Variant&)
  1398. - void ResetToDefault()
  1399. - void RemoveInstanceDefault()
  1400. - Variant GetAttribute(const String&) const
  1401. - Variant GetAttributeDefault(const String&) const
  1402. - void SetScale(float)
  1403. - void SetTransform(const Vector3&, const Quaternion&)
  1404. - void SetTransform(const Vector3&, const Quaternion&, float)
  1405. - void SetTransform(const Vector3&, const Quaternion&, const Vector3&)
  1406. - void SetWorldTransform(const Vector3&, const Quaternion&)
  1407. - void SetWorldTransform(const Vector3&, const Quaternion&, float)
  1408. - void SetWorldTransform(const Vector3&, const Quaternion&, const Vector3&)
  1409. - void Translate(const Vector3&)
  1410. - void TranslateRelative(const Vector3&)
  1411. - void Rotate(const Quaternion&, bool = false)
  1412. - void Pitch(float, bool = false)
  1413. - void Yaw(float, bool = false)
  1414. - void Roll(float, bool = false)
  1415. - void LookAt(const Vector3&, const Vector3& = Vector3 ( 0 , 1 , 0 ))
  1416. - void Scale(float)
  1417. - void Scale(const Vector3&)
  1418. - Node@ CreateChild(const String& = String ( ), CreateMode = REPLICATED, uint = 0)
  1419. - void AddChild(Node@)
  1420. - void RemoveChild(Node@)
  1421. - void RemoveAllChildren()
  1422. - void RemoveChildren(bool, bool, bool)
  1423. - void Remove()
  1424. - Component@ CreateComponent(const String&, CreateMode = REPLICATED, uint = 0)
  1425. - Component@ GetOrCreateComponent(const String&, CreateMode = REPLICATED, uint = 0)
  1426. - void RemoveComponent(Component@)
  1427. - void RemoveComponent(const String&)
  1428. - void RemoveAllComponents()
  1429. - void RemoveComponents(bool, bool)
  1430. - Node@[]@ GetChildren(bool = false) const
  1431. - Node@[]@ GetChildrenWithComponent(const String&, bool = false) const
  1432. - Node@[]@ GetChildrenWithScript(bool = false) const
  1433. - Node@[]@ GetChildrenWithScript(const String&, bool = false) const
  1434. - Node@ GetChild(const String&, bool = false) const
  1435. - Component@[]@ GetComponents() const
  1436. - Component@[]@ GetComponents(const String&, bool = false) const
  1437. - Component@ GetComponent(const String&) const
  1438. - bool HasComponent(const String&) const
  1439. - Vector3 LocalToWorld(const Vector3&) const
  1440. - Vector3 LocalToWorld(const Vector4&) const
  1441. - Vector3 WorldToLocal(const Vector3&) const
  1442. - Vector3 WorldToLocal(const Vector4&) const
  1443. - bool LoadXML(File@)
  1444. - bool SaveXML(File@)
  1445. - bool LoadAsync(File@)
  1446. - bool LoadAsyncXML(File@)
  1447. - void StopAsyncLoading()
  1448. - Node@ Instantiate(File@, const Vector3&, const Quaternion&, CreateMode = REPLICATED)
  1449. - Node@ InstantiateXML(File@, const Vector3&, const Quaternion&, CreateMode = REPLICATED)
  1450. - Node@ InstantiateXML(XMLFile@, const Vector3&, const Quaternion&, CreateMode = REPLICATED)
  1451. - Node@ InstantiateXML(const XMLElement&, const Vector3&, const Quaternion&, CreateMode = REPLICATED)
  1452. - void Clear(bool = true, bool = true)
  1453. - void AddRequiredPackageFile(PackageFile@)
  1454. - void ClearRequiredPackageFiles()
  1455. - void RegisterVar(const String&)
  1456. - void UnregisterVar(const String&)
  1457. - void UnregisterAllVars(const String&)
  1458. - Component@ GetComponent(uint)
  1459. - Node@ GetNode(uint)
  1460. - const String& GetVarName(ShortStringHash) const
  1461. - void Update(float)
  1462. - ScriptObject@ CreateScriptObject(ScriptFile@, const String&, CreateMode = REPLICATED)
  1463. - ScriptObject@ CreateScriptObject(const String&, const String&, CreateMode = REPLICATED)
  1464. - ScriptObject@ GetScriptObject() const
  1465. - ScriptObject@ GetScriptObject(const String&) const
  1466. Properties:
  1467. - int refs (readonly)
  1468. - int weakRefs (readonly)
  1469. - ShortStringHash type (readonly)
  1470. - ShortStringHash baseType (readonly)
  1471. - String typeName (readonly)
  1472. - String category (readonly)
  1473. - uint numAttributes (readonly)
  1474. - Variant[] attributes
  1475. - Variant[] attributeDefaults (readonly)
  1476. - AttributeInfo[] attributeInfos (readonly)
  1477. - bool temporary
  1478. - Vector3 position
  1479. - Quaternion rotation
  1480. - Vector3 direction
  1481. - Vector3 scale
  1482. - Vector3 worldPosition
  1483. - Quaternion worldRotation
  1484. - Vector3 worldDirection
  1485. - Vector3 worldScale
  1486. - Matrix3x4 transform (readonly)
  1487. - Matrix3x4 worldTransform (readonly)
  1488. - uint id (readonly)
  1489. - uint numChildren (readonly)
  1490. - uint numAllChildren (readonly)
  1491. - Node@[] children (readonly)
  1492. - uint numComponents (readonly)
  1493. - Component@[] components (readonly)
  1494. - String name
  1495. - Node@ parent
  1496. - VariantMap vars (readonly)
  1497. - bool updateEnabled
  1498. - float timeScale
  1499. - float elapsedTime
  1500. - float smoothingConstant
  1501. - float snapThreshold
  1502. - bool asyncLoading (readonly)
  1503. - float asyncProgress (readonly)
  1504. - uint checksum (readonly)
  1505. - String fileName (readonly)
  1506. - PackageFile@[]@ requiredPackageFiles (readonly)
  1507. - DebugRenderer@ debugRenderer (readonly)
  1508. - Octree@ octree (readonly)
  1509. - PhysicsWorld@ physicsWorld (readonly)
  1510. - ScriptObject@ scriptObject (readonly)
  1511. ### Bone
  1512. Properties:
  1513. - Node@ node
  1514. - String name
  1515. - Vector3 initialPosition
  1516. - Quaternion initialRotation
  1517. - Vector3 initialScale
  1518. - bool animated
  1519. - float radius
  1520. - BoundingBox boundingBox
  1521. ### Skeleton
  1522. Methods:
  1523. - void Reset()
  1524. - Bone@ GetBone(const String&) const
  1525. Properties:
  1526. - Bone@ rootBone (readonly)
  1527. - uint numBones (readonly)
  1528. - Bone@[] bones (readonly)
  1529. ### DebugRenderer
  1530. Methods:
  1531. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1532. - bool Load(File@, bool = false)
  1533. - bool Save(File@) const
  1534. - bool LoadXML(const XMLElement&, bool = false)
  1535. - bool SaveXML(XMLElement&) const
  1536. - void ApplyAttributes()
  1537. - bool SetAttribute(const String&, const Variant&)
  1538. - void ResetToDefault()
  1539. - void RemoveInstanceDefault()
  1540. - Variant GetAttribute(const String&) const
  1541. - Variant GetAttributeDefault(const String&) const
  1542. - void Remove()
  1543. - void MarkNetworkUpdate() const
  1544. - void AddLine(const Vector3&, const Vector3&, const Color&, bool = true)
  1545. - void AddNode(Node@, float = 1.0, bool = true)
  1546. - void AddBoundingBox(const BoundingBox&, const Color&, bool = true)
  1547. - void AddFrustum(const Frustum&, const Color&, bool = true)
  1548. - void AddPolyhedron(const Polyhedron&, const Color&, bool = true)
  1549. - void AddSphere(const Sphere&, const Color&, bool = true)
  1550. - void AddSkeleton(Skeleton@, const Color&, bool = true)
  1551. - void DrawDebugGeometry(DebugRenderer@, bool)
  1552. Properties:
  1553. - int refs (readonly)
  1554. - int weakRefs (readonly)
  1555. - ShortStringHash type (readonly)
  1556. - ShortStringHash baseType (readonly)
  1557. - String typeName (readonly)
  1558. - String category (readonly)
  1559. - uint numAttributes (readonly)
  1560. - Variant[] attributes
  1561. - Variant[] attributeDefaults (readonly)
  1562. - AttributeInfo[] attributeInfos (readonly)
  1563. - bool temporary
  1564. - bool enabled
  1565. - bool enabledEffective (readonly)
  1566. - uint id (readonly)
  1567. - Node@ node (readonly)
  1568. ### Camera
  1569. Methods:
  1570. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1571. - bool Load(File@, bool = false)
  1572. - bool Save(File@) const
  1573. - bool LoadXML(const XMLElement&, bool = false)
  1574. - bool SaveXML(XMLElement&) const
  1575. - void ApplyAttributes()
  1576. - bool SetAttribute(const String&, const Variant&)
  1577. - void ResetToDefault()
  1578. - void RemoveInstanceDefault()
  1579. - Variant GetAttribute(const String&) const
  1580. - Variant GetAttributeDefault(const String&) const
  1581. - void Remove()
  1582. - void MarkNetworkUpdate() const
  1583. - void DrawDebugGeometry(DebugRenderer@, bool)
  1584. - void SetOrthoSize(const Vector2&)
  1585. - Frustum GetSplitFrustum(float, float) const
  1586. - Ray GetScreenRay(float, float) const
  1587. - Vector2 WorldToScreenPoint(const Vector3&) const
  1588. - Vector3 ScreenToWorldPoint(const Vector3&) const
  1589. - float GetDistance(const Vector3&) const
  1590. - float GetDistanceSquared(const Vector3&) const
  1591. Properties:
  1592. - int refs (readonly)
  1593. - int weakRefs (readonly)
  1594. - ShortStringHash type (readonly)
  1595. - ShortStringHash baseType (readonly)
  1596. - String typeName (readonly)
  1597. - String category (readonly)
  1598. - uint numAttributes (readonly)
  1599. - Variant[] attributes
  1600. - Variant[] attributeDefaults (readonly)
  1601. - AttributeInfo[] attributeInfos (readonly)
  1602. - bool temporary
  1603. - bool enabled
  1604. - bool enabledEffective (readonly)
  1605. - uint id (readonly)
  1606. - Node@ node (readonly)
  1607. - float nearClip
  1608. - float farClip
  1609. - float fov
  1610. - float orthoSize
  1611. - float aspectRatio
  1612. - float zoom
  1613. - float lodBias
  1614. - bool orthographic
  1615. - bool autoAspectRatio
  1616. - Vector2 projectionOffset
  1617. - uint viewMask
  1618. - uint viewOverrideFlags
  1619. - FillMode fillMode
  1620. - Frustum frustum (readonly)
  1621. - Matrix4 projection (readonly)
  1622. - Matrix3x4 view (readonly)
  1623. - Frustum viewSpaceFrustum (readonly)
  1624. - float halfViewSize (readonly)
  1625. - Vector3 forwardVector (readonly)
  1626. - Vector3 rightVector (readonly)
  1627. - Vector3 upVector (readonly)
  1628. ### RenderTargetInfo
  1629. Properties:
  1630. - String name
  1631. - String tag
  1632. - uint format
  1633. - IntVector2 size
  1634. - RenderTargetSizeMode sizeMode
  1635. - bool enabled
  1636. - bool filtered
  1637. - bool sRGB
  1638. ### RenderPathCommand
  1639. Methods:
  1640. - void RemoveShaderParameter(const String&)
  1641. Properties:
  1642. - String[] textureNames
  1643. - Variant[] shaderParameters
  1644. - uint numOutputs
  1645. - String[] outputNames
  1646. - String tag
  1647. - RenderCommandType type
  1648. - RenderCommandSortMode sortMode
  1649. - String pass
  1650. - String metadata
  1651. - uint clearFlags
  1652. - Color clearColor
  1653. - float clearDepth
  1654. - uint clearStencil
  1655. - bool enabled
  1656. - bool useFogColor
  1657. - bool markToStencil
  1658. - bool vertexLights
  1659. - bool useLitBase
  1660. - bool useScissor
  1661. - String vertexShaderName
  1662. - String pixelShaderName
  1663. ### RenderPath
  1664. Methods:
  1665. - RenderPath@ Clone()
  1666. - bool Load(XMLFile@)
  1667. - bool Append(XMLFile@)
  1668. - void SetEnabled(const String&, bool)
  1669. - void ToggleEnabled(const String&)
  1670. - void AddRenderTarget(const RenderTargetInfo&)
  1671. - void RemoveRenderTarget(uint)
  1672. - void RemoveRenderTarget(const String&)
  1673. - void RemoveRenderTargts(const String&)
  1674. - void AddCommand(const RenderPathCommand&)
  1675. - void InsertCommand(uint, const RenderPathCommand&)
  1676. - void RemoveCommand(uint)
  1677. - void RemoveCommands(const String&)
  1678. Properties:
  1679. - int refs (readonly)
  1680. - int weakRefs (readonly)
  1681. - uint numRenderTargets (readonly)
  1682. - RenderTargetInfo[] renderTargets
  1683. - uint numCommands (readonly)
  1684. - RenderPathCommand[] commands
  1685. - Variant[] shaderParameters
  1686. ### Texture
  1687. Methods:
  1688. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1689. - bool Load(File@)
  1690. - bool Save(File@) const
  1691. - void SetNumLevels(uint)
  1692. - void ClearDataLost()
  1693. Properties:
  1694. - int refs (readonly)
  1695. - int weakRefs (readonly)
  1696. - ShortStringHash type (readonly)
  1697. - ShortStringHash baseType (readonly)
  1698. - String typeName (readonly)
  1699. - String category (readonly)
  1700. - String name
  1701. - uint memoryUse (readonly)
  1702. - uint useTimer (readonly)
  1703. - TextureUsage usage (readonly)
  1704. - uint format (readonly)
  1705. - bool compressed (readonly)
  1706. - uint levels (readonly)
  1707. - int width (readonly)
  1708. - int height (readonly)
  1709. - int[] levelWidth (readonly)
  1710. - int[] levelHeight (readonly)
  1711. - TextureFilterMode filterMode
  1712. - TextureAddressMode[] addressMode
  1713. - Color borderColor
  1714. - bool sRGB
  1715. - Texture@ backupTexture
  1716. - int[] mipsToSkip
  1717. - bool dataLost (readonly)
  1718. ### Viewport
  1719. Methods:
  1720. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1721. - void SetRenderPath(XMLFile@)
  1722. Properties:
  1723. - int refs (readonly)
  1724. - int weakRefs (readonly)
  1725. - ShortStringHash type (readonly)
  1726. - ShortStringHash baseType (readonly)
  1727. - String typeName (readonly)
  1728. - String category (readonly)
  1729. - Scene@ scene
  1730. - Camera@ camera
  1731. - RenderPath@ renderPath
  1732. - IntRect rect
  1733. ### RenderSurface
  1734. Methods:
  1735. - void QueueUpdate()
  1736. Properties:
  1737. - Texture@ parentTexture (readonly)
  1738. - int width (readonly)
  1739. - int height (readonly)
  1740. - TextureUsage usage (readonly)
  1741. - uint numViewports
  1742. - Viewport@[] viewports
  1743. - RenderSurfaceUpdateMode updateMode
  1744. - RenderSurface@ linkedRenderTarget
  1745. - RenderSurface@ linkedDepthStencil
  1746. ### Texture2D
  1747. Methods:
  1748. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1749. - bool Load(File@)
  1750. - bool Save(File@) const
  1751. - void SetNumLevels(uint)
  1752. - void ClearDataLost()
  1753. - bool SetSize(int, int, uint, TextureUsage = TEXTURE_STATIC)
  1754. - bool Load(Image@, bool = false)
  1755. Properties:
  1756. - int refs (readonly)
  1757. - int weakRefs (readonly)
  1758. - ShortStringHash type (readonly)
  1759. - ShortStringHash baseType (readonly)
  1760. - String typeName (readonly)
  1761. - String category (readonly)
  1762. - String name
  1763. - uint memoryUse (readonly)
  1764. - uint useTimer (readonly)
  1765. - TextureUsage usage (readonly)
  1766. - uint format (readonly)
  1767. - bool compressed (readonly)
  1768. - uint levels (readonly)
  1769. - int width (readonly)
  1770. - int height (readonly)
  1771. - int[] levelWidth (readonly)
  1772. - int[] levelHeight (readonly)
  1773. - TextureFilterMode filterMode
  1774. - TextureAddressMode[] addressMode
  1775. - Color borderColor
  1776. - bool sRGB
  1777. - Texture@ backupTexture
  1778. - int[] mipsToSkip
  1779. - bool dataLost (readonly)
  1780. - RenderSurface@ renderSurface (readonly)
  1781. ### TextureCube
  1782. Methods:
  1783. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1784. - bool Load(File@)
  1785. - bool Save(File@) const
  1786. - void SetNumLevels(uint)
  1787. - void ClearDataLost()
  1788. - bool SetSize(int, uint, TextureUsage = TEXTURE_STATIC)
  1789. - bool Load(CubeMapFace, Image@, bool = false)
  1790. Properties:
  1791. - int refs (readonly)
  1792. - int weakRefs (readonly)
  1793. - ShortStringHash type (readonly)
  1794. - ShortStringHash baseType (readonly)
  1795. - String typeName (readonly)
  1796. - String category (readonly)
  1797. - String name
  1798. - uint memoryUse (readonly)
  1799. - uint useTimer (readonly)
  1800. - TextureUsage usage (readonly)
  1801. - uint format (readonly)
  1802. - bool compressed (readonly)
  1803. - uint levels (readonly)
  1804. - int width (readonly)
  1805. - int height (readonly)
  1806. - int[] levelWidth (readonly)
  1807. - int[] levelHeight (readonly)
  1808. - TextureFilterMode filterMode
  1809. - TextureAddressMode[] addressMode
  1810. - Color borderColor
  1811. - bool sRGB
  1812. - Texture@ backupTexture
  1813. - int[] mipsToSkip
  1814. - bool dataLost (readonly)
  1815. - RenderSurface@[] renderSurfaces (readonly)
  1816. ### BiasParameters
  1817. Properties:
  1818. - float constantBias
  1819. - float slopeScaledBias
  1820. ### Pass
  1821. Properties:
  1822. - int refs (readonly)
  1823. - int weakRefs (readonly)
  1824. - BlendMode blendMode
  1825. - CompareMode depthTestMode
  1826. - PassLightingMode lightingMode
  1827. - bool depthWrite
  1828. - bool alphaMask
  1829. - String vertexShader
  1830. - String pixelShader
  1831. ### Technique
  1832. Methods:
  1833. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1834. - bool Load(File@)
  1835. - bool Save(File@) const
  1836. - Pass@ CreatePass(StringHash)
  1837. - void RemovePass(StringHash)
  1838. - bool HasPass(StringHash) const
  1839. Properties:
  1840. - int refs (readonly)
  1841. - int weakRefs (readonly)
  1842. - ShortStringHash type (readonly)
  1843. - ShortStringHash baseType (readonly)
  1844. - String typeName (readonly)
  1845. - String category (readonly)
  1846. - String name
  1847. - uint memoryUse (readonly)
  1848. - uint useTimer (readonly)
  1849. - bool sm3
  1850. - Pass@[] passes (readonly)
  1851. ### TechniqueEntry
  1852. Properties:
  1853. - Technique@ technique
  1854. - int qualityLevel
  1855. - float lodDistance
  1856. ### Material
  1857. Methods:
  1858. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1859. - bool Load(File@)
  1860. - bool Save(File@) const
  1861. - bool Load(const XMLElement&)
  1862. - bool Save(XMLElement&) const
  1863. - void SetTechnique(uint, Technique@, uint = 0, float = 0.0)
  1864. - void SetUVTransform(const Vector2&, float, const Vector2&)
  1865. - void SetUVTransform(const Vector2&, float, float)
  1866. - void RemoveShaderParameter(const String&)
  1867. - void SortTechniques()
  1868. - Material@ Clone(const String& = String ( )) const
  1869. Properties:
  1870. - int refs (readonly)
  1871. - int weakRefs (readonly)
  1872. - ShortStringHash type (readonly)
  1873. - ShortStringHash baseType (readonly)
  1874. - String typeName (readonly)
  1875. - String category (readonly)
  1876. - String name
  1877. - uint memoryUse (readonly)
  1878. - uint useTimer (readonly)
  1879. - uint numTechniques
  1880. - Technique@[] techniques (readonly)
  1881. - TechniqueEntry[] techniqueEntries (readonly)
  1882. - Variant[] shaderParameters
  1883. - String[]@ shaderParameterNames (readonly)
  1884. - Texture@[] textures
  1885. - bool occlusion (readonly)
  1886. - CullMode cullMode
  1887. - CullMode shadowCullMode
  1888. - BiasParameters depthBias
  1889. ### Model
  1890. Methods:
  1891. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1892. - bool Load(File@)
  1893. - bool Save(File@) const
  1894. Properties:
  1895. - int refs (readonly)
  1896. - int weakRefs (readonly)
  1897. - ShortStringHash type (readonly)
  1898. - ShortStringHash baseType (readonly)
  1899. - String typeName (readonly)
  1900. - String category (readonly)
  1901. - String name
  1902. - uint memoryUse (readonly)
  1903. - uint useTimer (readonly)
  1904. - BoundingBox boundingBox (readonly)
  1905. - Skeleton@ skeleton (readonly)
  1906. - uint numGeometries (readonly)
  1907. - uint[] numGeometryLodLevels (readonly)
  1908. - uint numMorphs (readonly)
  1909. ### AnimationTriggerPoint
  1910. Properties:
  1911. - float time
  1912. - Variant data
  1913. ### Animation
  1914. Methods:
  1915. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1916. - bool Load(File@)
  1917. - bool Save(File@) const
  1918. - void AddTrigger(float, bool, const Variant&)
  1919. - void RemoveTrigger(uint)
  1920. - void RemoveAllTriggers()
  1921. Properties:
  1922. - int refs (readonly)
  1923. - int weakRefs (readonly)
  1924. - ShortStringHash type (readonly)
  1925. - ShortStringHash baseType (readonly)
  1926. - String typeName (readonly)
  1927. - String category (readonly)
  1928. - String name
  1929. - uint memoryUse (readonly)
  1930. - uint useTimer (readonly)
  1931. - String animationName (readonly)
  1932. - float length (readonly)
  1933. - uint numTracks (readonly)
  1934. - uint numTriggers
  1935. - AnimationTriggerPoint@[] triggers (readonly)
  1936. ### Drawable
  1937. Methods:
  1938. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  1939. - bool Load(File@, bool = false)
  1940. - bool Save(File@) const
  1941. - bool LoadXML(const XMLElement&, bool = false)
  1942. - bool SaveXML(XMLElement&) const
  1943. - void ApplyAttributes()
  1944. - bool SetAttribute(const String&, const Variant&)
  1945. - void ResetToDefault()
  1946. - void RemoveInstanceDefault()
  1947. - Variant GetAttribute(const String&) const
  1948. - Variant GetAttributeDefault(const String&) const
  1949. - void Remove()
  1950. - void MarkNetworkUpdate() const
  1951. - void DrawDebugGeometry(DebugRenderer@, bool)
  1952. Properties:
  1953. - int refs (readonly)
  1954. - int weakRefs (readonly)
  1955. - ShortStringHash type (readonly)
  1956. - ShortStringHash baseType (readonly)
  1957. - String typeName (readonly)
  1958. - String category (readonly)
  1959. - uint numAttributes (readonly)
  1960. - Variant[] attributes
  1961. - Variant[] attributeDefaults (readonly)
  1962. - AttributeInfo[] attributeInfos (readonly)
  1963. - bool temporary
  1964. - bool enabled
  1965. - bool enabledEffective (readonly)
  1966. - uint id (readonly)
  1967. - Node@ node (readonly)
  1968. - bool inView (readonly)
  1969. - bool castShadows
  1970. - bool occluder
  1971. - bool occludee
  1972. - float drawDistance
  1973. - float shadowDistance
  1974. - float lodBias
  1975. - uint viewMask
  1976. - uint lightMask
  1977. - uint shadowMask
  1978. - uint zoneMask
  1979. - uint maxLights
  1980. - BoundingBox boundingBox (readonly)
  1981. - BoundingBox worldBoundingBox (readonly)
  1982. ### CascadeParameters
  1983. Properties:
  1984. - float split1
  1985. - float split2
  1986. - float split3
  1987. - float split4
  1988. - float fadeStart
  1989. - float biasAutoAdjust
  1990. ### FocusParameters
  1991. Properties:
  1992. - bool focus
  1993. - bool nonUniform
  1994. - bool autoSize
  1995. - float quantize
  1996. - float minView
  1997. ### Light
  1998. Methods:
  1999. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2000. - bool Load(File@, bool = false)
  2001. - bool Save(File@) const
  2002. - bool LoadXML(const XMLElement&, bool = false)
  2003. - bool SaveXML(XMLElement&) const
  2004. - void ApplyAttributes()
  2005. - bool SetAttribute(const String&, const Variant&)
  2006. - void ResetToDefault()
  2007. - void RemoveInstanceDefault()
  2008. - Variant GetAttribute(const String&) const
  2009. - Variant GetAttributeDefault(const String&) const
  2010. - void Remove()
  2011. - void MarkNetworkUpdate() const
  2012. - void DrawDebugGeometry(DebugRenderer@, bool)
  2013. Properties:
  2014. - int refs (readonly)
  2015. - int weakRefs (readonly)
  2016. - ShortStringHash type (readonly)
  2017. - ShortStringHash baseType (readonly)
  2018. - String typeName (readonly)
  2019. - String category (readonly)
  2020. - uint numAttributes (readonly)
  2021. - Variant[] attributes
  2022. - Variant[] attributeDefaults (readonly)
  2023. - AttributeInfo[] attributeInfos (readonly)
  2024. - bool temporary
  2025. - bool enabled
  2026. - bool enabledEffective (readonly)
  2027. - uint id (readonly)
  2028. - Node@ node (readonly)
  2029. - bool inView (readonly)
  2030. - bool castShadows
  2031. - bool occluder
  2032. - bool occludee
  2033. - float drawDistance
  2034. - float shadowDistance
  2035. - float lodBias
  2036. - uint viewMask
  2037. - uint lightMask
  2038. - uint shadowMask
  2039. - uint zoneMask
  2040. - uint maxLights
  2041. - BoundingBox boundingBox (readonly)
  2042. - BoundingBox worldBoundingBox (readonly)
  2043. - LightType lightType
  2044. - bool perVertex
  2045. - Color color
  2046. - float specularIntensity
  2047. - float range
  2048. - float fov
  2049. - float aspectRatio
  2050. - float fadeDistance
  2051. - BiasParameters shadowBias
  2052. - CascadeParameters shadowCascade
  2053. - FocusParameters shadowFocus
  2054. - float shadowFadeDistance
  2055. - float shadowIntensity
  2056. - float shadowResolution
  2057. - float shadowNearFarRatio
  2058. - Texture@ rampTexture
  2059. - Texture@ shapeTexture
  2060. - Frustum frustum (readonly)
  2061. ### Zone
  2062. Methods:
  2063. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2064. - bool Load(File@, bool = false)
  2065. - bool Save(File@) const
  2066. - bool LoadXML(const XMLElement&, bool = false)
  2067. - bool SaveXML(XMLElement&) const
  2068. - void ApplyAttributes()
  2069. - bool SetAttribute(const String&, const Variant&)
  2070. - void ResetToDefault()
  2071. - void RemoveInstanceDefault()
  2072. - Variant GetAttribute(const String&) const
  2073. - Variant GetAttributeDefault(const String&) const
  2074. - void Remove()
  2075. - void MarkNetworkUpdate() const
  2076. - void DrawDebugGeometry(DebugRenderer@, bool)
  2077. Properties:
  2078. - int refs (readonly)
  2079. - int weakRefs (readonly)
  2080. - ShortStringHash type (readonly)
  2081. - ShortStringHash baseType (readonly)
  2082. - String typeName (readonly)
  2083. - String category (readonly)
  2084. - uint numAttributes (readonly)
  2085. - Variant[] attributes
  2086. - Variant[] attributeDefaults (readonly)
  2087. - AttributeInfo[] attributeInfos (readonly)
  2088. - bool temporary
  2089. - bool enabled
  2090. - bool enabledEffective (readonly)
  2091. - uint id (readonly)
  2092. - Node@ node (readonly)
  2093. - bool inView (readonly)
  2094. - bool castShadows
  2095. - bool occluder
  2096. - bool occludee
  2097. - float drawDistance
  2098. - float shadowDistance
  2099. - float lodBias
  2100. - uint viewMask
  2101. - uint lightMask
  2102. - uint shadowMask
  2103. - uint zoneMask
  2104. - uint maxLights
  2105. - BoundingBox boundingBox
  2106. - BoundingBox worldBoundingBox (readonly)
  2107. - Matrix3x4 inverseWorldTransform (readonly)
  2108. - Color ambientColor
  2109. - Color ambientStartColor (readonly)
  2110. - Color ambientEndColor (readonly)
  2111. - Color fogColor
  2112. - float fogStart
  2113. - float fogEnd
  2114. - int priority
  2115. - bool override
  2116. - bool ambientGradient
  2117. ### StaticModel
  2118. Methods:
  2119. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2120. - bool Load(File@, bool = false)
  2121. - bool Save(File@) const
  2122. - bool LoadXML(const XMLElement&, bool = false)
  2123. - bool SaveXML(XMLElement&) const
  2124. - void ApplyAttributes()
  2125. - bool SetAttribute(const String&, const Variant&)
  2126. - void ResetToDefault()
  2127. - void RemoveInstanceDefault()
  2128. - Variant GetAttribute(const String&) const
  2129. - Variant GetAttributeDefault(const String&) const
  2130. - void Remove()
  2131. - void MarkNetworkUpdate() const
  2132. - void DrawDebugGeometry(DebugRenderer@, bool)
  2133. - void ApplyMaterialList(const String& = String ( ))
  2134. - bool IsInside(const Vector3&) const
  2135. - bool IsInsideLocal(const Vector3&) const
  2136. Properties:
  2137. - int refs (readonly)
  2138. - int weakRefs (readonly)
  2139. - ShortStringHash type (readonly)
  2140. - ShortStringHash baseType (readonly)
  2141. - String typeName (readonly)
  2142. - String category (readonly)
  2143. - uint numAttributes (readonly)
  2144. - Variant[] attributes
  2145. - Variant[] attributeDefaults (readonly)
  2146. - AttributeInfo[] attributeInfos (readonly)
  2147. - bool temporary
  2148. - bool enabled
  2149. - bool enabledEffective (readonly)
  2150. - uint id (readonly)
  2151. - Node@ node (readonly)
  2152. - bool inView (readonly)
  2153. - bool castShadows
  2154. - bool occluder
  2155. - bool occludee
  2156. - float drawDistance
  2157. - float shadowDistance
  2158. - float lodBias
  2159. - uint viewMask
  2160. - uint lightMask
  2161. - uint shadowMask
  2162. - uint zoneMask
  2163. - uint maxLights
  2164. - BoundingBox boundingBox (readonly)
  2165. - BoundingBox worldBoundingBox (readonly)
  2166. - Model@ model
  2167. - Material@ material (writeonly)
  2168. - Material@[] materials
  2169. - uint numGeometries (readonly)
  2170. - uint occlusionLodLevel
  2171. ### StaticModelGroup
  2172. Methods:
  2173. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2174. - bool Load(File@, bool = false)
  2175. - bool Save(File@) const
  2176. - bool LoadXML(const XMLElement&, bool = false)
  2177. - bool SaveXML(XMLElement&) const
  2178. - void ApplyAttributes()
  2179. - bool SetAttribute(const String&, const Variant&)
  2180. - void ResetToDefault()
  2181. - void RemoveInstanceDefault()
  2182. - Variant GetAttribute(const String&) const
  2183. - Variant GetAttributeDefault(const String&) const
  2184. - void Remove()
  2185. - void MarkNetworkUpdate() const
  2186. - void DrawDebugGeometry(DebugRenderer@, bool)
  2187. - void ApplyMaterialList(const String& = String ( ))
  2188. - void AddInstanceNode(Node@)
  2189. - void RemoveInstanceNode(Node@)
  2190. - void RemoveAllInstanceNodes()
  2191. Properties:
  2192. - int refs (readonly)
  2193. - int weakRefs (readonly)
  2194. - ShortStringHash type (readonly)
  2195. - ShortStringHash baseType (readonly)
  2196. - String typeName (readonly)
  2197. - String category (readonly)
  2198. - uint numAttributes (readonly)
  2199. - Variant[] attributes
  2200. - Variant[] attributeDefaults (readonly)
  2201. - AttributeInfo[] attributeInfos (readonly)
  2202. - bool temporary
  2203. - bool enabled
  2204. - bool enabledEffective (readonly)
  2205. - uint id (readonly)
  2206. - Node@ node (readonly)
  2207. - bool inView (readonly)
  2208. - bool castShadows
  2209. - bool occluder
  2210. - bool occludee
  2211. - float drawDistance
  2212. - float shadowDistance
  2213. - float lodBias
  2214. - uint viewMask
  2215. - uint lightMask
  2216. - uint shadowMask
  2217. - uint zoneMask
  2218. - uint maxLights
  2219. - BoundingBox boundingBox (readonly)
  2220. - BoundingBox worldBoundingBox (readonly)
  2221. - Model@ model
  2222. - Material@ material (writeonly)
  2223. - Material@[] materials
  2224. - uint numGeometries (readonly)
  2225. - Zone@ zone (readonly)
  2226. - uint occlusionLodLevel
  2227. - uint numInstanceNodes (readonly)
  2228. - Node@[] instanceNodes (readonly)
  2229. ### Skybox
  2230. Methods:
  2231. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2232. - bool Load(File@, bool = false)
  2233. - bool Save(File@) const
  2234. - bool LoadXML(const XMLElement&, bool = false)
  2235. - bool SaveXML(XMLElement&) const
  2236. - void ApplyAttributes()
  2237. - bool SetAttribute(const String&, const Variant&)
  2238. - void ResetToDefault()
  2239. - void RemoveInstanceDefault()
  2240. - Variant GetAttribute(const String&) const
  2241. - Variant GetAttributeDefault(const String&) const
  2242. - void Remove()
  2243. - void MarkNetworkUpdate() const
  2244. - void DrawDebugGeometry(DebugRenderer@, bool)
  2245. - void ApplyMaterialList(const String& = String ( ))
  2246. Properties:
  2247. - int refs (readonly)
  2248. - int weakRefs (readonly)
  2249. - ShortStringHash type (readonly)
  2250. - ShortStringHash baseType (readonly)
  2251. - String typeName (readonly)
  2252. - String category (readonly)
  2253. - uint numAttributes (readonly)
  2254. - Variant[] attributes
  2255. - Variant[] attributeDefaults (readonly)
  2256. - AttributeInfo[] attributeInfos (readonly)
  2257. - bool temporary
  2258. - bool enabled
  2259. - bool enabledEffective (readonly)
  2260. - uint id (readonly)
  2261. - Node@ node (readonly)
  2262. - bool inView (readonly)
  2263. - bool castShadows
  2264. - bool occluder
  2265. - bool occludee
  2266. - float drawDistance
  2267. - float shadowDistance
  2268. - float lodBias
  2269. - uint viewMask
  2270. - uint lightMask
  2271. - uint shadowMask
  2272. - uint zoneMask
  2273. - uint maxLights
  2274. - BoundingBox boundingBox (readonly)
  2275. - BoundingBox worldBoundingBox (readonly)
  2276. - Model@ model
  2277. - Material@ material (writeonly)
  2278. - Material@[] materials
  2279. - uint numGeometries (readonly)
  2280. - Zone@ zone (readonly)
  2281. ### AnimationState
  2282. Methods:
  2283. - void AddWeight(float)
  2284. - void AddTime(float)
  2285. - void Apply()
  2286. - void SetBoneWeight(uint, float, bool = false)
  2287. - void SetBoneWeight(const String&, float, bool = false)
  2288. - void SetBoneWeight(StringHash, float, bool = false)
  2289. - float GetBoneWeight(uint) const
  2290. - float GetBoneWeight(StringHash) const
  2291. - uint GetTrackIndex(const String&) const
  2292. - uint GetTrackIndex(StringHash) const
  2293. Properties:
  2294. - int refs (readonly)
  2295. - int weakRefs (readonly)
  2296. - Bone@ startBone
  2297. - bool looped
  2298. - float weight
  2299. - float time
  2300. - uint8 layer
  2301. - Animation@ animation (readonly)
  2302. - AnimatedModel@ model (readonly)
  2303. - Node@ node (readonly)
  2304. - bool enabled (readonly)
  2305. - float length (readonly)
  2306. - float[] boneWeights
  2307. ### AnimatedModel
  2308. Methods:
  2309. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2310. - bool Load(File@, bool = false)
  2311. - bool Save(File@) const
  2312. - bool LoadXML(const XMLElement&, bool = false)
  2313. - bool SaveXML(XMLElement&) const
  2314. - void ApplyAttributes()
  2315. - bool SetAttribute(const String&, const Variant&)
  2316. - void ResetToDefault()
  2317. - void RemoveInstanceDefault()
  2318. - Variant GetAttribute(const String&) const
  2319. - Variant GetAttributeDefault(const String&) const
  2320. - void Remove()
  2321. - void MarkNetworkUpdate() const
  2322. - void DrawDebugGeometry(DebugRenderer@, bool)
  2323. - void ApplyMaterialList(const String& = String ( ))
  2324. - AnimationState@ AddAnimationState(Animation@)
  2325. - void RemoveAnimationState(Animation@)
  2326. - void RemoveAnimationState(const String&)
  2327. - void RemoveAnimationState(AnimationState@)
  2328. - void RemoveAnimationState(uint)
  2329. - void RemoveAllAnimationStates()
  2330. - void SetMorphWeight(uint, float)
  2331. - void ResetMorphWeights()
  2332. - float GetMorphWeight(uint) const
  2333. - AnimationState@ GetAnimationState(Animation@) const
  2334. - AnimationState@ GetAnimationState(uint) const
  2335. Properties:
  2336. - int refs (readonly)
  2337. - int weakRefs (readonly)
  2338. - ShortStringHash type (readonly)
  2339. - ShortStringHash baseType (readonly)
  2340. - String typeName (readonly)
  2341. - String category (readonly)
  2342. - uint numAttributes (readonly)
  2343. - Variant[] attributes
  2344. - Variant[] attributeDefaults (readonly)
  2345. - AttributeInfo[] attributeInfos (readonly)
  2346. - bool temporary
  2347. - bool enabled
  2348. - bool enabledEffective (readonly)
  2349. - uint id (readonly)
  2350. - Node@ node (readonly)
  2351. - bool inView (readonly)
  2352. - bool castShadows
  2353. - bool occluder
  2354. - bool occludee
  2355. - float drawDistance
  2356. - float shadowDistance
  2357. - float lodBias
  2358. - uint viewMask
  2359. - uint lightMask
  2360. - uint shadowMask
  2361. - uint zoneMask
  2362. - uint maxLights
  2363. - BoundingBox boundingBox (readonly)
  2364. - BoundingBox worldBoundingBox (readonly)
  2365. - Model@ model
  2366. - Material@ material (writeonly)
  2367. - Material@[] materials
  2368. - uint numGeometries (readonly)
  2369. - Zone@ zone (readonly)
  2370. - float animationLodBias
  2371. - bool updateInvisible
  2372. - Skeleton@ skeleton (readonly)
  2373. - uint numAnimationStates (readonly)
  2374. - AnimationState@[] animationStates (readonly)
  2375. - uint numMorphs (readonly)
  2376. - String[] morphNames (readonly)
  2377. - float[] morphWeights
  2378. ### AnimationController
  2379. Methods:
  2380. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2381. - bool Load(File@, bool = false)
  2382. - bool Save(File@) const
  2383. - bool LoadXML(const XMLElement&, bool = false)
  2384. - bool SaveXML(XMLElement&) const
  2385. - void ApplyAttributes()
  2386. - bool SetAttribute(const String&, const Variant&)
  2387. - void ResetToDefault()
  2388. - void RemoveInstanceDefault()
  2389. - Variant GetAttribute(const String&) const
  2390. - Variant GetAttributeDefault(const String&) const
  2391. - void Remove()
  2392. - void MarkNetworkUpdate() const
  2393. - void DrawDebugGeometry(DebugRenderer@, bool)
  2394. - bool Play(const String&, uint8, bool, float = 0.0f)
  2395. - bool PlayExclusive(const String&, uint8, bool, float = 0.0f)
  2396. - void Stop(const String&, float = 0.0f)
  2397. - void StopLayer(uint8, float = 0.0f)
  2398. - void StopAll(float = 0.0f)
  2399. - bool Fade(const String&, float, float)
  2400. - bool FadeOthers(const String&, float, float)
  2401. - bool SetLayer(const String&, uint8)
  2402. - bool SetStartBone(const String&, const String&)
  2403. - bool SetTime(const String&, float)
  2404. - bool SetWeight(const String&, float)
  2405. - bool SetLooped(const String&, bool)
  2406. - bool SetSpeed(const String&, float)
  2407. - bool SetAutoFade(const String&, float)
  2408. - bool IsPlaying(const String&) const
  2409. - bool IsFadingIn(const String&) const
  2410. - bool IsFadingOut(const String&) const
  2411. - uint8 GetLayer(const String&) const
  2412. - const String& GetStartBone(const String&) const
  2413. - float GetTime(const String&) const
  2414. - float GetWeight(const String&) const
  2415. - bool GetLooped(const String&) const
  2416. - float GetLength(const String&) const
  2417. - float GetSpeed(const String&) const
  2418. - float GetAutoFade(const String&) const
  2419. - float GetFadeTarget(const String&) const
  2420. - AnimationState@ GetAnimationState(const String&) const
  2421. - AnimationState@ GetAnimationState(StringHash) const
  2422. Properties:
  2423. - int refs (readonly)
  2424. - int weakRefs (readonly)
  2425. - ShortStringHash type (readonly)
  2426. - ShortStringHash baseType (readonly)
  2427. - String typeName (readonly)
  2428. - String category (readonly)
  2429. - uint numAttributes (readonly)
  2430. - Variant[] attributes
  2431. - Variant[] attributeDefaults (readonly)
  2432. - AttributeInfo[] attributeInfos (readonly)
  2433. - bool temporary
  2434. - bool enabled
  2435. - bool enabledEffective (readonly)
  2436. - uint id (readonly)
  2437. - Node@ node (readonly)
  2438. ### Billboard
  2439. Properties:
  2440. - Vector3 position
  2441. - Vector2 size
  2442. - Rect uv
  2443. - Color color
  2444. - float rotation
  2445. - bool enabled
  2446. ### BillboardSet
  2447. Methods:
  2448. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2449. - bool Load(File@, bool = false)
  2450. - bool Save(File@) const
  2451. - bool LoadXML(const XMLElement&, bool = false)
  2452. - bool SaveXML(XMLElement&) const
  2453. - void ApplyAttributes()
  2454. - bool SetAttribute(const String&, const Variant&)
  2455. - void ResetToDefault()
  2456. - void RemoveInstanceDefault()
  2457. - Variant GetAttribute(const String&) const
  2458. - Variant GetAttributeDefault(const String&) const
  2459. - void Remove()
  2460. - void MarkNetworkUpdate() const
  2461. - void DrawDebugGeometry(DebugRenderer@, bool)
  2462. - void Commit()
  2463. Properties:
  2464. - int refs (readonly)
  2465. - int weakRefs (readonly)
  2466. - ShortStringHash type (readonly)
  2467. - ShortStringHash baseType (readonly)
  2468. - String typeName (readonly)
  2469. - String category (readonly)
  2470. - uint numAttributes (readonly)
  2471. - Variant[] attributes
  2472. - Variant[] attributeDefaults (readonly)
  2473. - AttributeInfo[] attributeInfos (readonly)
  2474. - bool temporary
  2475. - bool enabled
  2476. - bool enabledEffective (readonly)
  2477. - uint id (readonly)
  2478. - Node@ node (readonly)
  2479. - bool inView (readonly)
  2480. - bool castShadows
  2481. - bool occluder
  2482. - bool occludee
  2483. - float drawDistance
  2484. - float shadowDistance
  2485. - float lodBias
  2486. - uint viewMask
  2487. - uint lightMask
  2488. - uint shadowMask
  2489. - uint zoneMask
  2490. - uint maxLights
  2491. - BoundingBox boundingBox (readonly)
  2492. - BoundingBox worldBoundingBox (readonly)
  2493. - Material@ material
  2494. - uint numBillboards
  2495. - bool relative
  2496. - bool sorted
  2497. - bool scaled
  2498. - bool faceCamera
  2499. - float animationLodBias
  2500. - Billboard@[] billboards (readonly)
  2501. - Zone@ zone (readonly)
  2502. ### ColorFrame
  2503. Properties:
  2504. - Color color
  2505. - float time
  2506. ### TextureFrame
  2507. Properties:
  2508. - Rect uv
  2509. - float time
  2510. ### ParticleEmitter
  2511. Methods:
  2512. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2513. - bool Load(File@, bool = false)
  2514. - bool Save(File@) const
  2515. - bool LoadXML(const XMLElement&, bool = false)
  2516. - bool SaveXML(XMLElement&) const
  2517. - void ApplyAttributes()
  2518. - bool SetAttribute(const String&, const Variant&)
  2519. - void ResetToDefault()
  2520. - void RemoveInstanceDefault()
  2521. - Variant GetAttribute(const String&) const
  2522. - Variant GetAttributeDefault(const String&) const
  2523. - void Remove()
  2524. - void MarkNetworkUpdate() const
  2525. - void DrawDebugGeometry(DebugRenderer@, bool)
  2526. - bool Load(XMLFile@)
  2527. - bool Save(XMLFile@)
  2528. - void SetEmitting(bool, bool)
  2529. - void SetColor(const Color&)
  2530. Properties:
  2531. - int refs (readonly)
  2532. - int weakRefs (readonly)
  2533. - ShortStringHash type (readonly)
  2534. - ShortStringHash baseType (readonly)
  2535. - String typeName (readonly)
  2536. - String category (readonly)
  2537. - uint numAttributes (readonly)
  2538. - Variant[] attributes
  2539. - Variant[] attributeDefaults (readonly)
  2540. - AttributeInfo[] attributeInfos (readonly)
  2541. - bool temporary
  2542. - bool enabled
  2543. - bool enabledEffective (readonly)
  2544. - uint id (readonly)
  2545. - Node@ node (readonly)
  2546. - bool inView (readonly)
  2547. - bool castShadows
  2548. - bool occluder
  2549. - bool occludee
  2550. - float drawDistance
  2551. - float shadowDistance
  2552. - float lodBias
  2553. - uint viewMask
  2554. - uint lightMask
  2555. - uint shadowMask
  2556. - uint zoneMask
  2557. - uint maxLights
  2558. - BoundingBox boundingBox (readonly)
  2559. - BoundingBox worldBoundingBox (readonly)
  2560. - Material@ material
  2561. - bool relative
  2562. - bool sorted
  2563. - bool scaled
  2564. - bool updateInvisible
  2565. - float animationLodBias
  2566. - bool emitting
  2567. - uint numParticles
  2568. - float emissionRate (writeonly)
  2569. - float minEmissionRate
  2570. - float maxEmissionRate
  2571. - EmitterType emitterType
  2572. - Vector3 emitterSize
  2573. - float activeTime
  2574. - float inactiveTime
  2575. - float timeToLive (writeonly)
  2576. - float minTimeToLive
  2577. - float maxTimeToLive
  2578. - Vector2 particleSize (writeonly)
  2579. - Vector2 minParticleSize
  2580. - Vector3 maxParticleSize
  2581. - Vector3 minDirection
  2582. - Vector3 maxDirection
  2583. - float velocity (writeonly)
  2584. - float minVelocity
  2585. - float maxVelocity
  2586. - float rotation (writeonly)
  2587. - float minRotation
  2588. - float maxRotation
  2589. - float rotationSpeed (writeonly)
  2590. - float minRotationSpeed
  2591. - float maxRotationSpeed
  2592. - Vector3 constantForce
  2593. - float dampingForce
  2594. - float sizeAdd
  2595. - float sizeMul
  2596. - ColorFrame@[] colors (readonly)
  2597. - uint numColors
  2598. - TextureFrame@[] textureFrames (readonly)
  2599. - uint numTextureFrames
  2600. - Zone@ zone (readonly)
  2601. ### CustomGeometry
  2602. Methods:
  2603. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2604. - bool Load(File@, bool = false)
  2605. - bool Save(File@) const
  2606. - bool LoadXML(const XMLElement&, bool = false)
  2607. - bool SaveXML(XMLElement&) const
  2608. - void ApplyAttributes()
  2609. - bool SetAttribute(const String&, const Variant&)
  2610. - void ResetToDefault()
  2611. - void RemoveInstanceDefault()
  2612. - Variant GetAttribute(const String&) const
  2613. - Variant GetAttributeDefault(const String&) const
  2614. - void Remove()
  2615. - void MarkNetworkUpdate() const
  2616. - void DrawDebugGeometry(DebugRenderer@, bool)
  2617. - void Clear()
  2618. - void BeginGeometry(uint, PrimitiveType)
  2619. - void DefineVertex(const Vector3&)
  2620. - void DefineNormal(const Vector3&)
  2621. - void DefineColor(const Color&)
  2622. - void DefineTexCoord(const Vector2&)
  2623. - void DefineTangent(const Vector4&)
  2624. - void Commit()
  2625. Properties:
  2626. - int refs (readonly)
  2627. - int weakRefs (readonly)
  2628. - ShortStringHash type (readonly)
  2629. - ShortStringHash baseType (readonly)
  2630. - String typeName (readonly)
  2631. - String category (readonly)
  2632. - uint numAttributes (readonly)
  2633. - Variant[] attributes
  2634. - Variant[] attributeDefaults (readonly)
  2635. - AttributeInfo[] attributeInfos (readonly)
  2636. - bool temporary
  2637. - bool enabled
  2638. - bool enabledEffective (readonly)
  2639. - uint id (readonly)
  2640. - Node@ node (readonly)
  2641. - bool inView (readonly)
  2642. - bool castShadows
  2643. - bool occluder
  2644. - bool occludee
  2645. - float drawDistance
  2646. - float shadowDistance
  2647. - float lodBias
  2648. - uint viewMask
  2649. - uint lightMask
  2650. - uint shadowMask
  2651. - uint zoneMask
  2652. - uint maxLights
  2653. - BoundingBox boundingBox (readonly)
  2654. - BoundingBox worldBoundingBox (readonly)
  2655. - Material@ material (writeonly)
  2656. - Material@[] materials
  2657. - uint numGeometries
  2658. - Zone@ zone (readonly)
  2659. ### DecalSet
  2660. Methods:
  2661. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2662. - bool Load(File@, bool = false)
  2663. - bool Save(File@) const
  2664. - bool LoadXML(const XMLElement&, bool = false)
  2665. - bool SaveXML(XMLElement&) const
  2666. - void ApplyAttributes()
  2667. - bool SetAttribute(const String&, const Variant&)
  2668. - void ResetToDefault()
  2669. - void RemoveInstanceDefault()
  2670. - Variant GetAttribute(const String&) const
  2671. - Variant GetAttributeDefault(const String&) const
  2672. - void Remove()
  2673. - void MarkNetworkUpdate() const
  2674. - void DrawDebugGeometry(DebugRenderer@, bool)
  2675. - bool AddDecal(Drawable@, const Vector3&, const Quaternion&, float, float, float, const Vector2&, const Vector2&, float = 0.0, float = 0.1, uint = 0xffffffff)
  2676. - void RemoveDecals(uint)
  2677. - void RemoveAllDecals()
  2678. Properties:
  2679. - int refs (readonly)
  2680. - int weakRefs (readonly)
  2681. - ShortStringHash type (readonly)
  2682. - ShortStringHash baseType (readonly)
  2683. - String typeName (readonly)
  2684. - String category (readonly)
  2685. - uint numAttributes (readonly)
  2686. - Variant[] attributes
  2687. - Variant[] attributeDefaults (readonly)
  2688. - AttributeInfo[] attributeInfos (readonly)
  2689. - bool temporary
  2690. - bool enabled
  2691. - bool enabledEffective (readonly)
  2692. - uint id (readonly)
  2693. - Node@ node (readonly)
  2694. - bool inView (readonly)
  2695. - bool castShadows
  2696. - bool occluder
  2697. - bool occludee
  2698. - float drawDistance
  2699. - float shadowDistance
  2700. - float lodBias
  2701. - uint viewMask
  2702. - uint lightMask
  2703. - uint shadowMask
  2704. - uint zoneMask
  2705. - uint maxLights
  2706. - BoundingBox boundingBox (readonly)
  2707. - BoundingBox worldBoundingBox (readonly)
  2708. - Material@ material
  2709. - uint numDecals (readonly)
  2710. - uint numVertices (readonly)
  2711. - uint numIndices (readonly)
  2712. - uint maxVertices
  2713. - uint maxIndices
  2714. - Zone@ zone (readonly)
  2715. ### TerrainPatch
  2716. Methods:
  2717. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2718. - bool Load(File@, bool = false)
  2719. - bool Save(File@) const
  2720. - bool LoadXML(const XMLElement&, bool = false)
  2721. - bool SaveXML(XMLElement&) const
  2722. - void ApplyAttributes()
  2723. - bool SetAttribute(const String&, const Variant&)
  2724. - void ResetToDefault()
  2725. - void RemoveInstanceDefault()
  2726. - Variant GetAttribute(const String&) const
  2727. - Variant GetAttributeDefault(const String&) const
  2728. - void Remove()
  2729. - void MarkNetworkUpdate() const
  2730. - void DrawDebugGeometry(DebugRenderer@, bool)
  2731. Properties:
  2732. - int refs (readonly)
  2733. - int weakRefs (readonly)
  2734. - ShortStringHash type (readonly)
  2735. - ShortStringHash baseType (readonly)
  2736. - String typeName (readonly)
  2737. - String category (readonly)
  2738. - uint numAttributes (readonly)
  2739. - Variant[] attributes
  2740. - Variant[] attributeDefaults (readonly)
  2741. - AttributeInfo[] attributeInfos (readonly)
  2742. - bool temporary
  2743. - bool enabled
  2744. - bool enabledEffective (readonly)
  2745. - uint id (readonly)
  2746. - Node@ node (readonly)
  2747. - bool inView (readonly)
  2748. - bool castShadows
  2749. - bool occluder
  2750. - bool occludee
  2751. - float drawDistance
  2752. - float shadowDistance
  2753. - float lodBias
  2754. - uint viewMask
  2755. - uint lightMask
  2756. - uint shadowMask
  2757. - uint zoneMask
  2758. - uint maxLights
  2759. - BoundingBox boundingBox (readonly)
  2760. - BoundingBox worldBoundingBox (readonly)
  2761. ### Terrain
  2762. Methods:
  2763. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2764. - bool Load(File@, bool = false)
  2765. - bool Save(File@) const
  2766. - bool LoadXML(const XMLElement&, bool = false)
  2767. - bool SaveXML(XMLElement&) const
  2768. - void ApplyAttributes()
  2769. - bool SetAttribute(const String&, const Variant&)
  2770. - void ResetToDefault()
  2771. - void RemoveInstanceDefault()
  2772. - Variant GetAttribute(const String&) const
  2773. - Variant GetAttributeDefault(const String&) const
  2774. - void Remove()
  2775. - void MarkNetworkUpdate() const
  2776. - void DrawDebugGeometry(DebugRenderer@, bool)
  2777. - float GetHeight(const Vector3&) const
  2778. - Vector3 GetNormal(const Vector3&) const
  2779. - TerrainPatch@ GetPatch(int, int) const
  2780. Properties:
  2781. - int refs (readonly)
  2782. - int weakRefs (readonly)
  2783. - ShortStringHash type (readonly)
  2784. - ShortStringHash baseType (readonly)
  2785. - String typeName (readonly)
  2786. - String category (readonly)
  2787. - uint numAttributes (readonly)
  2788. - Variant[] attributes
  2789. - Variant[] attributeDefaults (readonly)
  2790. - AttributeInfo[] attributeInfos (readonly)
  2791. - bool temporary
  2792. - bool enabled
  2793. - bool enabledEffective (readonly)
  2794. - uint id (readonly)
  2795. - Node@ node (readonly)
  2796. - Material@ material
  2797. - bool smoothing
  2798. - Image@ heightMap
  2799. - int patchSize
  2800. - Vector3 spacing
  2801. - IntVector2 numVertices (readonly)
  2802. - IntVector2 numPatches (readonly)
  2803. - TerrainPatch@[] patches (readonly)
  2804. - bool castShadows
  2805. - bool occluder
  2806. - bool occludee
  2807. - float drawDistance
  2808. - float shadowDistance
  2809. - float lodBias
  2810. - uint viewMask
  2811. - uint lightMask
  2812. - uint shadowMask
  2813. - uint zoneMask
  2814. - uint maxLights
  2815. ### RayQueryResult
  2816. Properties:
  2817. - Drawable@ drawable (readonly)
  2818. - Node@ node (readonly)
  2819. - Vector3 position
  2820. - Vector3 normal
  2821. - float distance
  2822. - uint subObject
  2823. ### Octree
  2824. Methods:
  2825. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2826. - bool Load(File@, bool = false)
  2827. - bool Save(File@) const
  2828. - bool LoadXML(const XMLElement&, bool = false)
  2829. - bool SaveXML(XMLElement&) const
  2830. - void ApplyAttributes()
  2831. - bool SetAttribute(const String&, const Variant&)
  2832. - void ResetToDefault()
  2833. - void RemoveInstanceDefault()
  2834. - Variant GetAttribute(const String&) const
  2835. - Variant GetAttributeDefault(const String&) const
  2836. - void Remove()
  2837. - void MarkNetworkUpdate() const
  2838. - void DrawDebugGeometry(DebugRenderer@, bool)
  2839. - void SetSize(const BoundingBox&, uint)
  2840. - void DrawDebugGeometry(bool) const
  2841. - void AddManualDrawable(Drawable@)
  2842. - void RemoveManualDrawable(Drawable@)
  2843. - RayQueryResult[]@ Raycast(const Ray&, RayQueryLevel = RAY_TRIANGLE, float = M_INFINITY, uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK) const
  2844. - RayQueryResult RaycastSingle(const Ray&, RayQueryLevel = RAY_TRIANGLE, float = M_INFINITY, uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK) const
  2845. - Node@[]@ GetDrawables(const Vector3&, uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK)
  2846. - Node@[]@ GetDrawables(const BoundingBox&, uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK)
  2847. - Node@[]@ GetDrawables(const Frustum&, uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK)
  2848. - Node@[]@ GetDrawables(const Sphere&, uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK)
  2849. Properties:
  2850. - int refs (readonly)
  2851. - int weakRefs (readonly)
  2852. - ShortStringHash type (readonly)
  2853. - ShortStringHash baseType (readonly)
  2854. - String typeName (readonly)
  2855. - String category (readonly)
  2856. - uint numAttributes (readonly)
  2857. - Variant[] attributes
  2858. - Variant[] attributeDefaults (readonly)
  2859. - AttributeInfo[] attributeInfos (readonly)
  2860. - bool temporary
  2861. - bool enabled
  2862. - bool enabledEffective (readonly)
  2863. - uint id (readonly)
  2864. - Node@ node (readonly)
  2865. - BoundingBox worldBoundingBox (readonly)
  2866. - uint numLevels (readonly)
  2867. ### Graphics
  2868. Methods:
  2869. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2870. - bool SetMode(int, int, bool, bool, bool, bool, bool, int)
  2871. - bool SetMode(int, int)
  2872. - void SetWindowPosition(int, int)
  2873. - bool ToggleFullscreen()
  2874. - void Maximize()
  2875. - void Minimize()
  2876. - void Close()
  2877. - bool TakeScreenShot(Image@)
  2878. Properties:
  2879. - int refs (readonly)
  2880. - int weakRefs (readonly)
  2881. - ShortStringHash type (readonly)
  2882. - ShortStringHash baseType (readonly)
  2883. - String typeName (readonly)
  2884. - String category (readonly)
  2885. - String windowTitle
  2886. - Image@ windowIcon (writeonly)
  2887. - IntVector2 windowPosition
  2888. - bool sRGB
  2889. - bool flushGPU
  2890. - int width (readonly)
  2891. - int height (readonly)
  2892. - int multiSample (readonly)
  2893. - bool fullscreen (readonly)
  2894. - bool resizable (readonly)
  2895. - bool borderless (readonly)
  2896. - bool vsync (readonly)
  2897. - bool tripleBuffer (readonly)
  2898. - bool initialized (readonly)
  2899. - bool deviceLost (readonly)
  2900. - uint numPrimitives (readonly)
  2901. - uint numBatches (readonly)
  2902. - bool sm3Support (readonly)
  2903. - bool instancingSupport (readonly)
  2904. - bool lightPrepassSupport (readonly)
  2905. - bool deferredSupport (readonly)
  2906. - bool hardwareShadowSupport (readonly)
  2907. - bool sRGBSupport (readonly)
  2908. - bool sRGBWriteSupport (readonly)
  2909. - bool forceSM2
  2910. - IntVector2[]@ resolutions (readonly)
  2911. - int[]@ multiSampleLevels (readonly)
  2912. - IntVector2 desktopResolution (readonly)
  2913. ### Renderer
  2914. Methods:
  2915. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2916. - void DrawDebugGeometry(bool) const
  2917. - void ReloadShaders() const
  2918. - void SetDefaultRenderPath(XMLFile@)
  2919. Properties:
  2920. - int refs (readonly)
  2921. - int weakRefs (readonly)
  2922. - ShortStringHash type (readonly)
  2923. - ShortStringHash baseType (readonly)
  2924. - String typeName (readonly)
  2925. - String category (readonly)
  2926. - uint numViewports
  2927. - Viewport@[] viewports
  2928. - RenderPath@ defaultRenderPath
  2929. - Zone@ defaultZone (readonly)
  2930. - bool specularLighting
  2931. - int textureAnisotropy
  2932. - TextureFilterMode textureFilterMode
  2933. - int textureQuality
  2934. - int materialQuality
  2935. - bool drawShadows
  2936. - int shadowMapSize
  2937. - int shadowQuality
  2938. - int maxShadowCascades
  2939. - int maxShadowMaps
  2940. - bool reuseShadowMaps
  2941. - bool dynamicInstancing
  2942. - int minInstances
  2943. - int maxInstanceTriangles
  2944. - int maxSortedInstances
  2945. - int maxOccluderTriangles
  2946. - int occlusionBufferSize
  2947. - float occluderSizeThreshold
  2948. - uint numPrimitives (readonly)
  2949. - uint numBatches (readonly)
  2950. - uint numViews (readonly)
  2951. - uint[] numGeometries (readonly)
  2952. - uint[] numLights (readonly)
  2953. - uint[] numShadowMaps (readonly)
  2954. - uint[] numOccluders (readonly)
  2955. ### TouchState
  2956. Properties:
  2957. - int touchID
  2958. - IntVector2 position
  2959. - IntVector2 delta
  2960. - float pressure
  2961. ### JoystickState
  2962. Properties:
  2963. - uint numButtons (readonly)
  2964. - uint numAxes (readonly)
  2965. - uint numHats (readonly)
  2966. - bool[] buttonDown (readonly)
  2967. - bool[] buttonPress (readonly)
  2968. - float[] axisPosition (readonly)
  2969. - int[] hatPosition (readonly)
  2970. - String name
  2971. ### Input
  2972. Methods:
  2973. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  2974. - bool OpenJoystick(uint)
  2975. - void CloseJoystick(uint)
  2976. - bool DetectJoysticks()
  2977. Properties:
  2978. - int refs (readonly)
  2979. - int weakRefs (readonly)
  2980. - ShortStringHash type (readonly)
  2981. - ShortStringHash baseType (readonly)
  2982. - String typeName (readonly)
  2983. - String category (readonly)
  2984. - bool mouseVisible
  2985. - bool screenKeyboardVisible
  2986. - bool screenKeyboardSupport (readonly)
  2987. - bool toggleFullscreen
  2988. - bool[] keyDown (readonly)
  2989. - bool[] keyPress (readonly)
  2990. - bool[] mouseButtonDown (readonly)
  2991. - bool[] mouseButtonPress (readonly)
  2992. - bool[] qualifierDown (readonly)
  2993. - bool[] qualifierPress (readonly)
  2994. - int qualifiers (readonly)
  2995. - IntVector2 mousePosition (readonly)
  2996. - IntVector2 mouseMove (readonly)
  2997. - int mouseMoveX (readonly)
  2998. - int mouseMoveY (readonly)
  2999. - int mouseMoveWheel (readonly)
  3000. - uint numTouches (readonly)
  3001. - TouchState@[] touches (readonly)
  3002. - uint numJoysticks (readonly)
  3003. - String[] joystickNames (readonly)
  3004. - JoystickState@[] joysticks (readonly)
  3005. - bool focus (readonly)
  3006. - bool minimized (readonly)
  3007. ### Sound
  3008. Methods:
  3009. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3010. - bool Load(File@)
  3011. - bool Save(File@) const
  3012. Properties:
  3013. - int refs (readonly)
  3014. - int weakRefs (readonly)
  3015. - ShortStringHash type (readonly)
  3016. - ShortStringHash baseType (readonly)
  3017. - String typeName (readonly)
  3018. - String category (readonly)
  3019. - String name
  3020. - uint memoryUse (readonly)
  3021. - uint useTimer (readonly)
  3022. - float length (readonly)
  3023. - uint sampleSize (readonly)
  3024. - float frequency (readonly)
  3025. - bool looped
  3026. - bool sixteenBit (readonly)
  3027. - bool stereo (readonly)
  3028. - bool compressed (readonly)
  3029. ### SoundListener
  3030. Methods:
  3031. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3032. - bool Load(File@, bool = false)
  3033. - bool Save(File@) const
  3034. - bool LoadXML(const XMLElement&, bool = false)
  3035. - bool SaveXML(XMLElement&) const
  3036. - void ApplyAttributes()
  3037. - bool SetAttribute(const String&, const Variant&)
  3038. - void ResetToDefault()
  3039. - void RemoveInstanceDefault()
  3040. - Variant GetAttribute(const String&) const
  3041. - Variant GetAttributeDefault(const String&) const
  3042. - void Remove()
  3043. - void MarkNetworkUpdate() const
  3044. - void DrawDebugGeometry(DebugRenderer@, bool)
  3045. Properties:
  3046. - int refs (readonly)
  3047. - int weakRefs (readonly)
  3048. - ShortStringHash type (readonly)
  3049. - ShortStringHash baseType (readonly)
  3050. - String typeName (readonly)
  3051. - String category (readonly)
  3052. - uint numAttributes (readonly)
  3053. - Variant[] attributes
  3054. - Variant[] attributeDefaults (readonly)
  3055. - AttributeInfo[] attributeInfos (readonly)
  3056. - bool temporary
  3057. - bool enabled
  3058. - bool enabledEffective (readonly)
  3059. - uint id (readonly)
  3060. - Node@ node (readonly)
  3061. ### SoundSource
  3062. Methods:
  3063. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3064. - bool Load(File@, bool = false)
  3065. - bool Save(File@) const
  3066. - bool LoadXML(const XMLElement&, bool = false)
  3067. - bool SaveXML(XMLElement&) const
  3068. - void ApplyAttributes()
  3069. - bool SetAttribute(const String&, const Variant&)
  3070. - void ResetToDefault()
  3071. - void RemoveInstanceDefault()
  3072. - Variant GetAttribute(const String&) const
  3073. - Variant GetAttributeDefault(const String&) const
  3074. - void Remove()
  3075. - void MarkNetworkUpdate() const
  3076. - void DrawDebugGeometry(DebugRenderer@, bool)
  3077. - void Play(Sound@)
  3078. - void Play(Sound@, float)
  3079. - void Play(Sound@, float, float)
  3080. - void Play(Sound@, float, float, float)
  3081. - void Stop()
  3082. Properties:
  3083. - int refs (readonly)
  3084. - int weakRefs (readonly)
  3085. - ShortStringHash type (readonly)
  3086. - ShortStringHash baseType (readonly)
  3087. - String typeName (readonly)
  3088. - String category (readonly)
  3089. - uint numAttributes (readonly)
  3090. - Variant[] attributes
  3091. - Variant[] attributeDefaults (readonly)
  3092. - AttributeInfo[] attributeInfos (readonly)
  3093. - bool temporary
  3094. - bool enabled
  3095. - bool enabledEffective (readonly)
  3096. - uint id (readonly)
  3097. - Node@ node (readonly)
  3098. - SoundType soundType
  3099. - float frequency
  3100. - float gain
  3101. - float panning
  3102. - Sound@ sound (readonly)
  3103. - float timePosition (readonly)
  3104. - float attenuation (readonly)
  3105. - bool autoRemove
  3106. - bool playing (readonly)
  3107. ### SoundSource3D
  3108. Methods:
  3109. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3110. - bool Load(File@, bool = false)
  3111. - bool Save(File@) const
  3112. - bool LoadXML(const XMLElement&, bool = false)
  3113. - bool SaveXML(XMLElement&) const
  3114. - void ApplyAttributes()
  3115. - bool SetAttribute(const String&, const Variant&)
  3116. - void ResetToDefault()
  3117. - void RemoveInstanceDefault()
  3118. - Variant GetAttribute(const String&) const
  3119. - Variant GetAttributeDefault(const String&) const
  3120. - void Remove()
  3121. - void MarkNetworkUpdate() const
  3122. - void DrawDebugGeometry(DebugRenderer@, bool)
  3123. - void Play(Sound@)
  3124. - void Play(Sound@, float)
  3125. - void Play(Sound@, float, float)
  3126. - void Play(Sound@, float, float, float)
  3127. - void Stop()
  3128. - void SetDistanceAttenuation(float, float, float)
  3129. - void SetAngleAttenuation(float, float)
  3130. Properties:
  3131. - int refs (readonly)
  3132. - int weakRefs (readonly)
  3133. - ShortStringHash type (readonly)
  3134. - ShortStringHash baseType (readonly)
  3135. - String typeName (readonly)
  3136. - String category (readonly)
  3137. - uint numAttributes (readonly)
  3138. - Variant[] attributes
  3139. - Variant[] attributeDefaults (readonly)
  3140. - AttributeInfo[] attributeInfos (readonly)
  3141. - bool temporary
  3142. - bool enabled
  3143. - bool enabledEffective (readonly)
  3144. - uint id (readonly)
  3145. - Node@ node (readonly)
  3146. - SoundType soundType
  3147. - float frequency
  3148. - float gain
  3149. - float panning
  3150. - Sound@ sound (readonly)
  3151. - float timePosition (readonly)
  3152. - float attenuation (readonly)
  3153. - bool autoRemove
  3154. - bool playing (readonly)
  3155. - float nearDistance
  3156. - float farDistance
  3157. - float innerAngle
  3158. - float outerAngle
  3159. - float rolloffFactor
  3160. ### Audio
  3161. Methods:
  3162. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3163. - void SetMode(int, int, bool, bool = true)
  3164. - bool Play()
  3165. - void Stop()
  3166. Properties:
  3167. - int refs (readonly)
  3168. - int weakRefs (readonly)
  3169. - ShortStringHash type (readonly)
  3170. - ShortStringHash baseType (readonly)
  3171. - String typeName (readonly)
  3172. - String category (readonly)
  3173. - float[] masterGain
  3174. - SoundListener@ listener
  3175. - uint sampleSize (readonly)
  3176. - int mixRate (readonly)
  3177. - bool stereo (readonly)
  3178. - bool interpolation (readonly)
  3179. - bool playing (readonly)
  3180. - bool initialized (readonly)
  3181. ### Font
  3182. Methods:
  3183. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3184. - bool Load(File@)
  3185. - bool Save(File@) const
  3186. - bool SaveXML(File@, int, bool = false)
  3187. - bool SaveXML(const String&, int, bool = false)
  3188. Properties:
  3189. - int refs (readonly)
  3190. - int weakRefs (readonly)
  3191. - ShortStringHash type (readonly)
  3192. - ShortStringHash baseType (readonly)
  3193. - String typeName (readonly)
  3194. - String category (readonly)
  3195. - String name
  3196. - uint memoryUse (readonly)
  3197. - uint useTimer (readonly)
  3198. ### UIElement
  3199. Methods:
  3200. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3201. - bool Load(File@, bool = false)
  3202. - bool Save(File@) const
  3203. - bool LoadXML(const XMLElement&, bool = false)
  3204. - bool SaveXML(XMLElement&) const
  3205. - void ApplyAttributes()
  3206. - bool SetAttribute(const String&, const Variant&)
  3207. - void ResetToDefault()
  3208. - void RemoveInstanceDefault()
  3209. - Variant GetAttribute(const String&) const
  3210. - Variant GetAttributeDefault(const String&) const
  3211. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3212. - bool LoadXML(File@)
  3213. - bool LoadXML(XMLFile@, XMLFile@)
  3214. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3215. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3216. - bool SaveXML(File@)
  3217. - bool SetStyle(const XMLElement&)
  3218. - bool SetStyle(const String&, XMLFile@ = null)
  3219. - bool SetStyleAuto(XMLFile@ = null)
  3220. - void SetPosition(int, int)
  3221. - void SetSize(int, int)
  3222. - void SetMinSize(int, int)
  3223. - void SetMaxSize(int, int)
  3224. - void SetFixedSize(int, int)
  3225. - void SetFixedWidth(int)
  3226. - void SetFixedHeight(int)
  3227. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3228. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  3229. - void UpdateLayout()
  3230. - void DisableLayoutUpdate()
  3231. - void EnableLayoutUpdate()
  3232. - void BringToFront()
  3233. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3234. - void AddChild(UIElement@)
  3235. - void InsertChild(uint, UIElement@)
  3236. - void RemoveChild(UIElement@, uint = 0)
  3237. - void RemoveChild(uint)
  3238. - void RemoveAllChildren()
  3239. - void Remove()
  3240. - uint FindChild(UIElement@) const
  3241. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3242. - UIElement@ GetChild(const String&, bool = false) const
  3243. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3244. - UIElement@[]@ GetChildren(bool = false) const
  3245. - UIElement@ GetElementEventSender() const
  3246. - const Variant& GetVar(const ShortStringHash&)
  3247. - IntVector2 ScreenToElement(const IntVector2&)
  3248. - IntVector2 ElementToScreen(const IntVector2&)
  3249. - bool IsInside(IntVector2, bool)
  3250. - bool IsInsideCombined(IntVector2, bool)
  3251. - uint GetNumChildren(bool) const
  3252. Properties:
  3253. - int refs (readonly)
  3254. - int weakRefs (readonly)
  3255. - ShortStringHash type (readonly)
  3256. - ShortStringHash baseType (readonly)
  3257. - String typeName (readonly)
  3258. - String category (readonly)
  3259. - uint numAttributes (readonly)
  3260. - Variant[] attributes
  3261. - Variant[] attributeDefaults (readonly)
  3262. - AttributeInfo[] attributeInfos (readonly)
  3263. - bool temporary
  3264. - String style
  3265. - String name
  3266. - IntVector2 position
  3267. - IntVector2 size
  3268. - int width
  3269. - int height
  3270. - IntVector2 minSize
  3271. - int minWidth
  3272. - int minHeight
  3273. - IntVector2 maxSize
  3274. - int maxWidth
  3275. - int maxHeight
  3276. - bool fixedSize (readonly)
  3277. - bool fixedWidth (readonly)
  3278. - bool fixedHeight (readonly)
  3279. - HorizontalAlignment horizontalAlignment
  3280. - VerticalAlignment verticalAlignment
  3281. - IntRect clipBorder
  3282. - Color color (writeonly)
  3283. - Color[] colors
  3284. - int priority
  3285. - float opacity
  3286. - bool bringToFront
  3287. - bool bringToBack
  3288. - bool clipChildren
  3289. - bool sortChildren
  3290. - bool useDerivedOpacity
  3291. - bool enabled
  3292. - bool editable
  3293. - bool focus
  3294. - bool selected
  3295. - bool visible
  3296. - bool hovering (readonly)
  3297. - bool internal
  3298. - bool colorGradient (readonly)
  3299. - FocusMode focusMode
  3300. - uint dragDropMode
  3301. - TraversalMode traversalMode
  3302. - XMLFile@ defaultStyle
  3303. - LayoutMode layoutMode
  3304. - int layoutSpacing
  3305. - IntRect layoutBorder
  3306. - int indent
  3307. - int indentSpacing
  3308. - int indentWidth (readonly)
  3309. - IntVector2 childOffset (readonly)
  3310. - bool elementEventSender
  3311. - uint numChildren (readonly)
  3312. - uint numAllChildren (readonly)
  3313. - UIElement@[] children (readonly)
  3314. - UIElement@ parent
  3315. - UIElement@ root (readonly)
  3316. - IntVector2 screenPosition (readonly)
  3317. - IntRect combinedScreenRect (readonly)
  3318. - float derivedOpacity (readonly)
  3319. - VariantMap vars (readonly)
  3320. ### BorderImage
  3321. Methods:
  3322. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3323. - bool Load(File@, bool = false)
  3324. - bool Save(File@) const
  3325. - bool LoadXML(const XMLElement&, bool = false)
  3326. - bool SaveXML(XMLElement&) const
  3327. - void ApplyAttributes()
  3328. - bool SetAttribute(const String&, const Variant&)
  3329. - void ResetToDefault()
  3330. - void RemoveInstanceDefault()
  3331. - Variant GetAttribute(const String&) const
  3332. - Variant GetAttributeDefault(const String&) const
  3333. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3334. - bool LoadXML(File@)
  3335. - bool LoadXML(XMLFile@, XMLFile@)
  3336. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3337. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3338. - bool SaveXML(File@)
  3339. - bool SetStyle(const XMLElement&)
  3340. - bool SetStyle(const String&, XMLFile@ = null)
  3341. - bool SetStyleAuto(XMLFile@ = null)
  3342. - void SetPosition(int, int)
  3343. - void SetSize(int, int)
  3344. - void SetMinSize(int, int)
  3345. - void SetMaxSize(int, int)
  3346. - void SetFixedSize(int, int)
  3347. - void SetFixedWidth(int)
  3348. - void SetFixedHeight(int)
  3349. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3350. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  3351. - void UpdateLayout()
  3352. - void DisableLayoutUpdate()
  3353. - void EnableLayoutUpdate()
  3354. - void BringToFront()
  3355. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3356. - void AddChild(UIElement@)
  3357. - void InsertChild(uint, UIElement@)
  3358. - void RemoveChild(UIElement@, uint = 0)
  3359. - void RemoveChild(uint)
  3360. - void RemoveAllChildren()
  3361. - void Remove()
  3362. - uint FindChild(UIElement@) const
  3363. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3364. - UIElement@ GetChild(const String&, bool = false) const
  3365. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3366. - UIElement@[]@ GetChildren(bool = false) const
  3367. - UIElement@ GetElementEventSender() const
  3368. - const Variant& GetVar(const ShortStringHash&)
  3369. - IntVector2 ScreenToElement(const IntVector2&)
  3370. - IntVector2 ElementToScreen(const IntVector2&)
  3371. - bool IsInside(IntVector2, bool)
  3372. - bool IsInsideCombined(IntVector2, bool)
  3373. - uint GetNumChildren(bool) const
  3374. - void SetFullImageRect()
  3375. - void SetHoverOffset(int, int)
  3376. Properties:
  3377. - int refs (readonly)
  3378. - int weakRefs (readonly)
  3379. - ShortStringHash type (readonly)
  3380. - ShortStringHash baseType (readonly)
  3381. - String typeName (readonly)
  3382. - String category (readonly)
  3383. - uint numAttributes (readonly)
  3384. - Variant[] attributes
  3385. - Variant[] attributeDefaults (readonly)
  3386. - AttributeInfo[] attributeInfos (readonly)
  3387. - bool temporary
  3388. - String style
  3389. - String name
  3390. - IntVector2 position
  3391. - IntVector2 size
  3392. - int width
  3393. - int height
  3394. - IntVector2 minSize
  3395. - int minWidth
  3396. - int minHeight
  3397. - IntVector2 maxSize
  3398. - int maxWidth
  3399. - int maxHeight
  3400. - bool fixedSize (readonly)
  3401. - bool fixedWidth (readonly)
  3402. - bool fixedHeight (readonly)
  3403. - HorizontalAlignment horizontalAlignment
  3404. - VerticalAlignment verticalAlignment
  3405. - IntRect clipBorder
  3406. - Color color (writeonly)
  3407. - Color[] colors
  3408. - int priority
  3409. - float opacity
  3410. - bool bringToFront
  3411. - bool bringToBack
  3412. - bool clipChildren
  3413. - bool sortChildren
  3414. - bool useDerivedOpacity
  3415. - bool enabled
  3416. - bool editable
  3417. - bool focus
  3418. - bool selected
  3419. - bool visible
  3420. - bool hovering (readonly)
  3421. - bool internal
  3422. - bool colorGradient (readonly)
  3423. - FocusMode focusMode
  3424. - uint dragDropMode
  3425. - TraversalMode traversalMode
  3426. - XMLFile@ defaultStyle
  3427. - LayoutMode layoutMode
  3428. - int layoutSpacing
  3429. - IntRect layoutBorder
  3430. - int indent
  3431. - int indentSpacing
  3432. - int indentWidth (readonly)
  3433. - IntVector2 childOffset (readonly)
  3434. - bool elementEventSender
  3435. - uint numChildren (readonly)
  3436. - uint numAllChildren (readonly)
  3437. - UIElement@[] children (readonly)
  3438. - UIElement@ parent
  3439. - UIElement@ root (readonly)
  3440. - IntVector2 screenPosition (readonly)
  3441. - IntRect combinedScreenRect (readonly)
  3442. - float derivedOpacity (readonly)
  3443. - VariantMap vars (readonly)
  3444. - Texture@ texture
  3445. - IntRect imageRect
  3446. - IntRect border
  3447. - IntVector2 hoverOffset
  3448. - BlendMode blendMode
  3449. - bool tiled
  3450. ### Sprite
  3451. Methods:
  3452. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3453. - bool Load(File@, bool = false)
  3454. - bool Save(File@) const
  3455. - bool LoadXML(const XMLElement&, bool = false)
  3456. - bool SaveXML(XMLElement&) const
  3457. - void ApplyAttributes()
  3458. - bool SetAttribute(const String&, const Variant&)
  3459. - void ResetToDefault()
  3460. - void RemoveInstanceDefault()
  3461. - Variant GetAttribute(const String&) const
  3462. - Variant GetAttributeDefault(const String&) const
  3463. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3464. - bool LoadXML(File@)
  3465. - bool LoadXML(XMLFile@, XMLFile@)
  3466. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3467. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3468. - bool SaveXML(File@)
  3469. - bool SetStyle(const XMLElement&)
  3470. - bool SetStyle(const String&, XMLFile@ = null)
  3471. - bool SetStyleAuto(XMLFile@ = null)
  3472. - void SetSize(int, int)
  3473. - void SetMinSize(int, int)
  3474. - void SetMaxSize(int, int)
  3475. - void SetFixedSize(int, int)
  3476. - void SetFixedWidth(int)
  3477. - void SetFixedHeight(int)
  3478. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3479. - void BringToFront()
  3480. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3481. - void AddChild(UIElement@)
  3482. - void InsertChild(uint, UIElement@)
  3483. - void RemoveChild(UIElement@, uint = 0)
  3484. - void RemoveChild(uint)
  3485. - void RemoveAllChildren()
  3486. - void Remove()
  3487. - uint FindChild(UIElement@) const
  3488. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3489. - UIElement@ GetChild(const String&, bool = false) const
  3490. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3491. - UIElement@[]@ GetChildren(bool = false) const
  3492. - UIElement@ GetElementEventSender() const
  3493. - const Variant& GetVar(const ShortStringHash&)
  3494. - uint GetNumChildren(bool) const
  3495. - void SetPosition(float, float)
  3496. - void SetHotSpot(int, int)
  3497. - void SetScale(float, float)
  3498. - void SetScale(float)
  3499. - void SetFullImageRect()
  3500. Properties:
  3501. - int refs (readonly)
  3502. - int weakRefs (readonly)
  3503. - ShortStringHash type (readonly)
  3504. - ShortStringHash baseType (readonly)
  3505. - String typeName (readonly)
  3506. - String category (readonly)
  3507. - uint numAttributes (readonly)
  3508. - Variant[] attributes
  3509. - Variant[] attributeDefaults (readonly)
  3510. - AttributeInfo[] attributeInfos (readonly)
  3511. - bool temporary
  3512. - String style
  3513. - String name
  3514. - IntVector2 size
  3515. - int width
  3516. - int height
  3517. - HorizontalAlignment horizontalAlignment
  3518. - VerticalAlignment verticalAlignment
  3519. - Color color (writeonly)
  3520. - Color[] colors
  3521. - int priority
  3522. - float opacity
  3523. - bool bringToFront
  3524. - bool bringToBack
  3525. - bool sortChildren
  3526. - bool useDerivedOpacity
  3527. - bool visible
  3528. - bool colorGradient (readonly)
  3529. - XMLFile@ defaultStyle
  3530. - bool elementEventSender
  3531. - uint numChildren (readonly)
  3532. - uint numAllChildren (readonly)
  3533. - UIElement@[] children (readonly)
  3534. - UIElement@ parent
  3535. - UIElement@ root (readonly)
  3536. - float derivedOpacity (readonly)
  3537. - VariantMap vars (readonly)
  3538. - Vector2 position
  3539. - IntVector2 hotSpot
  3540. - Vector2 scale
  3541. - float rotation
  3542. - Texture@ texture
  3543. - IntRect imageRect
  3544. - BlendMode blendMode
  3545. ### Button
  3546. Methods:
  3547. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3548. - bool Load(File@, bool = false)
  3549. - bool Save(File@) const
  3550. - bool LoadXML(const XMLElement&, bool = false)
  3551. - bool SaveXML(XMLElement&) const
  3552. - void ApplyAttributes()
  3553. - bool SetAttribute(const String&, const Variant&)
  3554. - void ResetToDefault()
  3555. - void RemoveInstanceDefault()
  3556. - Variant GetAttribute(const String&) const
  3557. - Variant GetAttributeDefault(const String&) const
  3558. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3559. - bool LoadXML(File@)
  3560. - bool LoadXML(XMLFile@, XMLFile@)
  3561. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3562. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3563. - bool SaveXML(File@)
  3564. - bool SetStyle(const XMLElement&)
  3565. - bool SetStyle(const String&, XMLFile@ = null)
  3566. - bool SetStyleAuto(XMLFile@ = null)
  3567. - void SetPosition(int, int)
  3568. - void SetSize(int, int)
  3569. - void SetMinSize(int, int)
  3570. - void SetMaxSize(int, int)
  3571. - void SetFixedSize(int, int)
  3572. - void SetFixedWidth(int)
  3573. - void SetFixedHeight(int)
  3574. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3575. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  3576. - void UpdateLayout()
  3577. - void DisableLayoutUpdate()
  3578. - void EnableLayoutUpdate()
  3579. - void BringToFront()
  3580. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3581. - void AddChild(UIElement@)
  3582. - void InsertChild(uint, UIElement@)
  3583. - void RemoveChild(UIElement@, uint = 0)
  3584. - void RemoveChild(uint)
  3585. - void RemoveAllChildren()
  3586. - void Remove()
  3587. - uint FindChild(UIElement@) const
  3588. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3589. - UIElement@ GetChild(const String&, bool = false) const
  3590. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3591. - UIElement@[]@ GetChildren(bool = false) const
  3592. - UIElement@ GetElementEventSender() const
  3593. - const Variant& GetVar(const ShortStringHash&)
  3594. - IntVector2 ScreenToElement(const IntVector2&)
  3595. - IntVector2 ElementToScreen(const IntVector2&)
  3596. - bool IsInside(IntVector2, bool)
  3597. - bool IsInsideCombined(IntVector2, bool)
  3598. - uint GetNumChildren(bool) const
  3599. - void SetFullImageRect()
  3600. - void SetHoverOffset(int, int)
  3601. - void SetPressedOffset(int, int)
  3602. - void SetPressedChildOffset(int, int)
  3603. - void SetRepeat(float, float)
  3604. Properties:
  3605. - int refs (readonly)
  3606. - int weakRefs (readonly)
  3607. - ShortStringHash type (readonly)
  3608. - ShortStringHash baseType (readonly)
  3609. - String typeName (readonly)
  3610. - String category (readonly)
  3611. - uint numAttributes (readonly)
  3612. - Variant[] attributes
  3613. - Variant[] attributeDefaults (readonly)
  3614. - AttributeInfo[] attributeInfos (readonly)
  3615. - bool temporary
  3616. - String style
  3617. - String name
  3618. - IntVector2 position
  3619. - IntVector2 size
  3620. - int width
  3621. - int height
  3622. - IntVector2 minSize
  3623. - int minWidth
  3624. - int minHeight
  3625. - IntVector2 maxSize
  3626. - int maxWidth
  3627. - int maxHeight
  3628. - bool fixedSize (readonly)
  3629. - bool fixedWidth (readonly)
  3630. - bool fixedHeight (readonly)
  3631. - HorizontalAlignment horizontalAlignment
  3632. - VerticalAlignment verticalAlignment
  3633. - IntRect clipBorder
  3634. - Color color (writeonly)
  3635. - Color[] colors
  3636. - int priority
  3637. - float opacity
  3638. - bool bringToFront
  3639. - bool bringToBack
  3640. - bool clipChildren
  3641. - bool sortChildren
  3642. - bool useDerivedOpacity
  3643. - bool enabled
  3644. - bool editable
  3645. - bool focus
  3646. - bool selected
  3647. - bool visible
  3648. - bool hovering (readonly)
  3649. - bool internal
  3650. - bool colorGradient (readonly)
  3651. - FocusMode focusMode
  3652. - uint dragDropMode
  3653. - TraversalMode traversalMode
  3654. - XMLFile@ defaultStyle
  3655. - LayoutMode layoutMode
  3656. - int layoutSpacing
  3657. - IntRect layoutBorder
  3658. - int indent
  3659. - int indentSpacing
  3660. - int indentWidth (readonly)
  3661. - IntVector2 childOffset (readonly)
  3662. - bool elementEventSender
  3663. - uint numChildren (readonly)
  3664. - uint numAllChildren (readonly)
  3665. - UIElement@[] children (readonly)
  3666. - UIElement@ parent
  3667. - UIElement@ root (readonly)
  3668. - IntVector2 screenPosition (readonly)
  3669. - IntRect combinedScreenRect (readonly)
  3670. - float derivedOpacity (readonly)
  3671. - VariantMap vars (readonly)
  3672. - Texture@ texture
  3673. - IntRect imageRect
  3674. - IntRect border
  3675. - IntVector2 hoverOffset
  3676. - BlendMode blendMode
  3677. - bool tiled
  3678. - IntVector2 pressedOffset
  3679. - IntVector2 pressedChildOffset
  3680. - float repeatDelay
  3681. - float repeatRate
  3682. - bool pressed (readonly)
  3683. ### CheckBox
  3684. Methods:
  3685. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3686. - bool Load(File@, bool = false)
  3687. - bool Save(File@) const
  3688. - bool LoadXML(const XMLElement&, bool = false)
  3689. - bool SaveXML(XMLElement&) const
  3690. - void ApplyAttributes()
  3691. - bool SetAttribute(const String&, const Variant&)
  3692. - void ResetToDefault()
  3693. - void RemoveInstanceDefault()
  3694. - Variant GetAttribute(const String&) const
  3695. - Variant GetAttributeDefault(const String&) const
  3696. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3697. - bool LoadXML(File@)
  3698. - bool LoadXML(XMLFile@, XMLFile@)
  3699. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3700. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3701. - bool SaveXML(File@)
  3702. - bool SetStyle(const XMLElement&)
  3703. - bool SetStyle(const String&, XMLFile@ = null)
  3704. - bool SetStyleAuto(XMLFile@ = null)
  3705. - void SetPosition(int, int)
  3706. - void SetSize(int, int)
  3707. - void SetMinSize(int, int)
  3708. - void SetMaxSize(int, int)
  3709. - void SetFixedSize(int, int)
  3710. - void SetFixedWidth(int)
  3711. - void SetFixedHeight(int)
  3712. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3713. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  3714. - void UpdateLayout()
  3715. - void DisableLayoutUpdate()
  3716. - void EnableLayoutUpdate()
  3717. - void BringToFront()
  3718. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3719. - void AddChild(UIElement@)
  3720. - void InsertChild(uint, UIElement@)
  3721. - void RemoveChild(UIElement@, uint = 0)
  3722. - void RemoveChild(uint)
  3723. - void RemoveAllChildren()
  3724. - void Remove()
  3725. - uint FindChild(UIElement@) const
  3726. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3727. - UIElement@ GetChild(const String&, bool = false) const
  3728. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3729. - UIElement@[]@ GetChildren(bool = false) const
  3730. - UIElement@ GetElementEventSender() const
  3731. - const Variant& GetVar(const ShortStringHash&)
  3732. - IntVector2 ScreenToElement(const IntVector2&)
  3733. - IntVector2 ElementToScreen(const IntVector2&)
  3734. - bool IsInside(IntVector2, bool)
  3735. - bool IsInsideCombined(IntVector2, bool)
  3736. - uint GetNumChildren(bool) const
  3737. - void SetFullImageRect()
  3738. - void SetHoverOffset(int, int)
  3739. - void SetCheckedOffset(int, int)
  3740. Properties:
  3741. - int refs (readonly)
  3742. - int weakRefs (readonly)
  3743. - ShortStringHash type (readonly)
  3744. - ShortStringHash baseType (readonly)
  3745. - String typeName (readonly)
  3746. - String category (readonly)
  3747. - uint numAttributes (readonly)
  3748. - Variant[] attributes
  3749. - Variant[] attributeDefaults (readonly)
  3750. - AttributeInfo[] attributeInfos (readonly)
  3751. - bool temporary
  3752. - String style
  3753. - String name
  3754. - IntVector2 position
  3755. - IntVector2 size
  3756. - int width
  3757. - int height
  3758. - IntVector2 minSize
  3759. - int minWidth
  3760. - int minHeight
  3761. - IntVector2 maxSize
  3762. - int maxWidth
  3763. - int maxHeight
  3764. - bool fixedSize (readonly)
  3765. - bool fixedWidth (readonly)
  3766. - bool fixedHeight (readonly)
  3767. - HorizontalAlignment horizontalAlignment
  3768. - VerticalAlignment verticalAlignment
  3769. - IntRect clipBorder
  3770. - Color color (writeonly)
  3771. - Color[] colors
  3772. - int priority
  3773. - float opacity
  3774. - bool bringToFront
  3775. - bool bringToBack
  3776. - bool clipChildren
  3777. - bool sortChildren
  3778. - bool useDerivedOpacity
  3779. - bool enabled
  3780. - bool editable
  3781. - bool focus
  3782. - bool selected
  3783. - bool visible
  3784. - bool hovering (readonly)
  3785. - bool internal
  3786. - bool colorGradient (readonly)
  3787. - FocusMode focusMode
  3788. - uint dragDropMode
  3789. - TraversalMode traversalMode
  3790. - XMLFile@ defaultStyle
  3791. - LayoutMode layoutMode
  3792. - int layoutSpacing
  3793. - IntRect layoutBorder
  3794. - int indent
  3795. - int indentSpacing
  3796. - int indentWidth (readonly)
  3797. - IntVector2 childOffset (readonly)
  3798. - bool elementEventSender
  3799. - uint numChildren (readonly)
  3800. - uint numAllChildren (readonly)
  3801. - UIElement@[] children (readonly)
  3802. - UIElement@ parent
  3803. - UIElement@ root (readonly)
  3804. - IntVector2 screenPosition (readonly)
  3805. - IntRect combinedScreenRect (readonly)
  3806. - float derivedOpacity (readonly)
  3807. - VariantMap vars (readonly)
  3808. - Texture@ texture
  3809. - IntRect imageRect
  3810. - IntRect border
  3811. - IntVector2 hoverOffset
  3812. - BlendMode blendMode
  3813. - bool tiled
  3814. - bool checked
  3815. - IntVector2 checkedOffset
  3816. ### Cursor
  3817. Methods:
  3818. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3819. - bool Load(File@, bool = false)
  3820. - bool Save(File@) const
  3821. - bool LoadXML(const XMLElement&, bool = false)
  3822. - bool SaveXML(XMLElement&) const
  3823. - void ApplyAttributes()
  3824. - bool SetAttribute(const String&, const Variant&)
  3825. - void ResetToDefault()
  3826. - void RemoveInstanceDefault()
  3827. - Variant GetAttribute(const String&) const
  3828. - Variant GetAttributeDefault(const String&) const
  3829. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3830. - bool LoadXML(File@)
  3831. - bool LoadXML(XMLFile@, XMLFile@)
  3832. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3833. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3834. - bool SaveXML(File@)
  3835. - bool SetStyle(const XMLElement&)
  3836. - bool SetStyle(const String&, XMLFile@ = null)
  3837. - bool SetStyleAuto(XMLFile@ = null)
  3838. - void SetPosition(int, int)
  3839. - void SetSize(int, int)
  3840. - void SetMinSize(int, int)
  3841. - void SetMaxSize(int, int)
  3842. - void SetFixedSize(int, int)
  3843. - void SetFixedWidth(int)
  3844. - void SetFixedHeight(int)
  3845. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3846. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  3847. - void UpdateLayout()
  3848. - void DisableLayoutUpdate()
  3849. - void EnableLayoutUpdate()
  3850. - void BringToFront()
  3851. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3852. - void AddChild(UIElement@)
  3853. - void InsertChild(uint, UIElement@)
  3854. - void RemoveChild(UIElement@, uint = 0)
  3855. - void RemoveChild(uint)
  3856. - void RemoveAllChildren()
  3857. - void Remove()
  3858. - uint FindChild(UIElement@) const
  3859. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3860. - UIElement@ GetChild(const String&, bool = false) const
  3861. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3862. - UIElement@[]@ GetChildren(bool = false) const
  3863. - UIElement@ GetElementEventSender() const
  3864. - const Variant& GetVar(const ShortStringHash&)
  3865. - IntVector2 ScreenToElement(const IntVector2&)
  3866. - IntVector2 ElementToScreen(const IntVector2&)
  3867. - bool IsInside(IntVector2, bool)
  3868. - bool IsInsideCombined(IntVector2, bool)
  3869. - uint GetNumChildren(bool) const
  3870. - void SetFullImageRect()
  3871. - void SetHoverOffset(int, int)
  3872. - void DefineShape(CursorShape, Texture@, const IntRect&, const IntVector2&)
  3873. Properties:
  3874. - int refs (readonly)
  3875. - int weakRefs (readonly)
  3876. - ShortStringHash type (readonly)
  3877. - ShortStringHash baseType (readonly)
  3878. - String typeName (readonly)
  3879. - String category (readonly)
  3880. - uint numAttributes (readonly)
  3881. - Variant[] attributes
  3882. - Variant[] attributeDefaults (readonly)
  3883. - AttributeInfo[] attributeInfos (readonly)
  3884. - bool temporary
  3885. - String style
  3886. - String name
  3887. - IntVector2 position
  3888. - IntVector2 size
  3889. - int width
  3890. - int height
  3891. - IntVector2 minSize
  3892. - int minWidth
  3893. - int minHeight
  3894. - IntVector2 maxSize
  3895. - int maxWidth
  3896. - int maxHeight
  3897. - bool fixedSize (readonly)
  3898. - bool fixedWidth (readonly)
  3899. - bool fixedHeight (readonly)
  3900. - HorizontalAlignment horizontalAlignment
  3901. - VerticalAlignment verticalAlignment
  3902. - IntRect clipBorder
  3903. - Color color (writeonly)
  3904. - Color[] colors
  3905. - int priority
  3906. - float opacity
  3907. - bool bringToFront
  3908. - bool bringToBack
  3909. - bool clipChildren
  3910. - bool sortChildren
  3911. - bool useDerivedOpacity
  3912. - bool enabled
  3913. - bool editable
  3914. - bool focus
  3915. - bool selected
  3916. - bool visible
  3917. - bool hovering (readonly)
  3918. - bool internal
  3919. - bool colorGradient (readonly)
  3920. - FocusMode focusMode
  3921. - uint dragDropMode
  3922. - TraversalMode traversalMode
  3923. - XMLFile@ defaultStyle
  3924. - LayoutMode layoutMode
  3925. - int layoutSpacing
  3926. - IntRect layoutBorder
  3927. - int indent
  3928. - int indentSpacing
  3929. - int indentWidth (readonly)
  3930. - IntVector2 childOffset (readonly)
  3931. - bool elementEventSender
  3932. - uint numChildren (readonly)
  3933. - uint numAllChildren (readonly)
  3934. - UIElement@[] children (readonly)
  3935. - UIElement@ parent
  3936. - UIElement@ root (readonly)
  3937. - IntVector2 screenPosition (readonly)
  3938. - IntRect combinedScreenRect (readonly)
  3939. - float derivedOpacity (readonly)
  3940. - VariantMap vars (readonly)
  3941. - Texture@ texture
  3942. - IntRect imageRect
  3943. - IntRect border
  3944. - IntVector2 hoverOffset
  3945. - BlendMode blendMode
  3946. - bool tiled
  3947. - CursorShape shape
  3948. - bool useSystemShapes
  3949. ### Slider
  3950. Methods:
  3951. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  3952. - bool Load(File@, bool = false)
  3953. - bool Save(File@) const
  3954. - bool LoadXML(const XMLElement&, bool = false)
  3955. - bool SaveXML(XMLElement&) const
  3956. - void ApplyAttributes()
  3957. - bool SetAttribute(const String&, const Variant&)
  3958. - void ResetToDefault()
  3959. - void RemoveInstanceDefault()
  3960. - Variant GetAttribute(const String&) const
  3961. - Variant GetAttributeDefault(const String&) const
  3962. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  3963. - bool LoadXML(File@)
  3964. - bool LoadXML(XMLFile@, XMLFile@)
  3965. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  3966. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  3967. - bool SaveXML(File@)
  3968. - bool SetStyle(const XMLElement&)
  3969. - bool SetStyle(const String&, XMLFile@ = null)
  3970. - bool SetStyleAuto(XMLFile@ = null)
  3971. - void SetPosition(int, int)
  3972. - void SetSize(int, int)
  3973. - void SetMinSize(int, int)
  3974. - void SetMaxSize(int, int)
  3975. - void SetFixedSize(int, int)
  3976. - void SetFixedWidth(int)
  3977. - void SetFixedHeight(int)
  3978. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3979. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  3980. - void UpdateLayout()
  3981. - void DisableLayoutUpdate()
  3982. - void EnableLayoutUpdate()
  3983. - void BringToFront()
  3984. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  3985. - void AddChild(UIElement@)
  3986. - void InsertChild(uint, UIElement@)
  3987. - void RemoveChild(UIElement@, uint = 0)
  3988. - void RemoveChild(uint)
  3989. - void RemoveAllChildren()
  3990. - void Remove()
  3991. - uint FindChild(UIElement@) const
  3992. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  3993. - UIElement@ GetChild(const String&, bool = false) const
  3994. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  3995. - UIElement@[]@ GetChildren(bool = false) const
  3996. - UIElement@ GetElementEventSender() const
  3997. - const Variant& GetVar(const ShortStringHash&)
  3998. - IntVector2 ScreenToElement(const IntVector2&)
  3999. - IntVector2 ElementToScreen(const IntVector2&)
  4000. - bool IsInside(IntVector2, bool)
  4001. - bool IsInsideCombined(IntVector2, bool)
  4002. - uint GetNumChildren(bool) const
  4003. - void SetFullImageRect()
  4004. - void SetHoverOffset(int, int)
  4005. - void ChangeValue(float)
  4006. Properties:
  4007. - int refs (readonly)
  4008. - int weakRefs (readonly)
  4009. - ShortStringHash type (readonly)
  4010. - ShortStringHash baseType (readonly)
  4011. - String typeName (readonly)
  4012. - String category (readonly)
  4013. - uint numAttributes (readonly)
  4014. - Variant[] attributes
  4015. - Variant[] attributeDefaults (readonly)
  4016. - AttributeInfo[] attributeInfos (readonly)
  4017. - bool temporary
  4018. - String style
  4019. - String name
  4020. - IntVector2 position
  4021. - IntVector2 size
  4022. - int width
  4023. - int height
  4024. - IntVector2 minSize
  4025. - int minWidth
  4026. - int minHeight
  4027. - IntVector2 maxSize
  4028. - int maxWidth
  4029. - int maxHeight
  4030. - bool fixedSize (readonly)
  4031. - bool fixedWidth (readonly)
  4032. - bool fixedHeight (readonly)
  4033. - HorizontalAlignment horizontalAlignment
  4034. - VerticalAlignment verticalAlignment
  4035. - IntRect clipBorder
  4036. - Color color (writeonly)
  4037. - Color[] colors
  4038. - int priority
  4039. - float opacity
  4040. - bool bringToFront
  4041. - bool bringToBack
  4042. - bool clipChildren
  4043. - bool sortChildren
  4044. - bool useDerivedOpacity
  4045. - bool enabled
  4046. - bool editable
  4047. - bool focus
  4048. - bool selected
  4049. - bool visible
  4050. - bool hovering (readonly)
  4051. - bool internal
  4052. - bool colorGradient (readonly)
  4053. - FocusMode focusMode
  4054. - uint dragDropMode
  4055. - TraversalMode traversalMode
  4056. - XMLFile@ defaultStyle
  4057. - LayoutMode layoutMode
  4058. - int layoutSpacing
  4059. - IntRect layoutBorder
  4060. - int indent
  4061. - int indentSpacing
  4062. - int indentWidth (readonly)
  4063. - IntVector2 childOffset (readonly)
  4064. - bool elementEventSender
  4065. - uint numChildren (readonly)
  4066. - uint numAllChildren (readonly)
  4067. - UIElement@[] children (readonly)
  4068. - UIElement@ parent
  4069. - UIElement@ root (readonly)
  4070. - IntVector2 screenPosition (readonly)
  4071. - IntRect combinedScreenRect (readonly)
  4072. - float derivedOpacity (readonly)
  4073. - VariantMap vars (readonly)
  4074. - Texture@ texture
  4075. - IntRect imageRect
  4076. - IntRect border
  4077. - IntVector2 hoverOffset
  4078. - BlendMode blendMode
  4079. - bool tiled
  4080. - Orientation orientation
  4081. - float range
  4082. - float value
  4083. - BorderImage@ knob (readonly)
  4084. - float repeatRate
  4085. ### ScrollBar
  4086. Methods:
  4087. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4088. - bool Load(File@, bool = false)
  4089. - bool Save(File@) const
  4090. - bool LoadXML(const XMLElement&, bool = false)
  4091. - bool SaveXML(XMLElement&) const
  4092. - void ApplyAttributes()
  4093. - bool SetAttribute(const String&, const Variant&)
  4094. - void ResetToDefault()
  4095. - void RemoveInstanceDefault()
  4096. - Variant GetAttribute(const String&) const
  4097. - Variant GetAttributeDefault(const String&) const
  4098. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  4099. - bool LoadXML(File@)
  4100. - bool LoadXML(XMLFile@, XMLFile@)
  4101. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  4102. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  4103. - bool SaveXML(File@)
  4104. - bool SetStyle(const XMLElement&)
  4105. - bool SetStyle(const String&, XMLFile@ = null)
  4106. - bool SetStyleAuto(XMLFile@ = null)
  4107. - void SetPosition(int, int)
  4108. - void SetSize(int, int)
  4109. - void SetMinSize(int, int)
  4110. - void SetMaxSize(int, int)
  4111. - void SetFixedSize(int, int)
  4112. - void SetFixedWidth(int)
  4113. - void SetFixedHeight(int)
  4114. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4115. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  4116. - void UpdateLayout()
  4117. - void DisableLayoutUpdate()
  4118. - void EnableLayoutUpdate()
  4119. - void BringToFront()
  4120. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  4121. - void AddChild(UIElement@)
  4122. - void InsertChild(uint, UIElement@)
  4123. - void RemoveChild(UIElement@, uint = 0)
  4124. - void RemoveChild(uint)
  4125. - void RemoveAllChildren()
  4126. - void Remove()
  4127. - uint FindChild(UIElement@) const
  4128. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  4129. - UIElement@ GetChild(const String&, bool = false) const
  4130. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  4131. - UIElement@[]@ GetChildren(bool = false) const
  4132. - UIElement@ GetElementEventSender() const
  4133. - const Variant& GetVar(const ShortStringHash&)
  4134. - IntVector2 ScreenToElement(const IntVector2&)
  4135. - IntVector2 ElementToScreen(const IntVector2&)
  4136. - bool IsInside(IntVector2, bool)
  4137. - bool IsInsideCombined(IntVector2, bool)
  4138. - uint GetNumChildren(bool) const
  4139. - void ChangeValue(float)
  4140. - void StepBack()
  4141. - void StepForward()
  4142. Properties:
  4143. - int refs (readonly)
  4144. - int weakRefs (readonly)
  4145. - ShortStringHash type (readonly)
  4146. - ShortStringHash baseType (readonly)
  4147. - String typeName (readonly)
  4148. - String category (readonly)
  4149. - uint numAttributes (readonly)
  4150. - Variant[] attributes
  4151. - Variant[] attributeDefaults (readonly)
  4152. - AttributeInfo[] attributeInfos (readonly)
  4153. - bool temporary
  4154. - String style
  4155. - String name
  4156. - IntVector2 position
  4157. - IntVector2 size
  4158. - int width
  4159. - int height
  4160. - IntVector2 minSize
  4161. - int minWidth
  4162. - int minHeight
  4163. - IntVector2 maxSize
  4164. - int maxWidth
  4165. - int maxHeight
  4166. - bool fixedSize (readonly)
  4167. - bool fixedWidth (readonly)
  4168. - bool fixedHeight (readonly)
  4169. - HorizontalAlignment horizontalAlignment
  4170. - VerticalAlignment verticalAlignment
  4171. - IntRect clipBorder
  4172. - Color color (writeonly)
  4173. - Color[] colors
  4174. - int priority
  4175. - float opacity
  4176. - bool bringToFront
  4177. - bool bringToBack
  4178. - bool clipChildren
  4179. - bool sortChildren
  4180. - bool useDerivedOpacity
  4181. - bool enabled
  4182. - bool editable
  4183. - bool focus
  4184. - bool selected
  4185. - bool visible
  4186. - bool hovering (readonly)
  4187. - bool internal
  4188. - bool colorGradient (readonly)
  4189. - FocusMode focusMode
  4190. - uint dragDropMode
  4191. - TraversalMode traversalMode
  4192. - XMLFile@ defaultStyle
  4193. - LayoutMode layoutMode
  4194. - int layoutSpacing
  4195. - IntRect layoutBorder
  4196. - int indent
  4197. - int indentSpacing
  4198. - int indentWidth (readonly)
  4199. - IntVector2 childOffset (readonly)
  4200. - bool elementEventSender
  4201. - uint numChildren (readonly)
  4202. - uint numAllChildren (readonly)
  4203. - UIElement@[] children (readonly)
  4204. - UIElement@ parent
  4205. - UIElement@ root (readonly)
  4206. - IntVector2 screenPosition (readonly)
  4207. - IntRect combinedScreenRect (readonly)
  4208. - float derivedOpacity (readonly)
  4209. - VariantMap vars (readonly)
  4210. - Orientation orientation
  4211. - float range
  4212. - float value
  4213. - float scrollStep
  4214. - float stepFactor
  4215. - float effectiveScrollStep (readonly)
  4216. - Button@ backButton (readonly)
  4217. - Button@ forwardButton (readonly)
  4218. - Slider@ slider (readonly)
  4219. ### ScrollView
  4220. Methods:
  4221. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4222. - bool Load(File@, bool = false)
  4223. - bool Save(File@) const
  4224. - bool LoadXML(const XMLElement&, bool = false)
  4225. - bool SaveXML(XMLElement&) const
  4226. - void ApplyAttributes()
  4227. - bool SetAttribute(const String&, const Variant&)
  4228. - void ResetToDefault()
  4229. - void RemoveInstanceDefault()
  4230. - Variant GetAttribute(const String&) const
  4231. - Variant GetAttributeDefault(const String&) const
  4232. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  4233. - bool LoadXML(File@)
  4234. - bool LoadXML(XMLFile@, XMLFile@)
  4235. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  4236. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  4237. - bool SaveXML(File@)
  4238. - bool SetStyle(const XMLElement&)
  4239. - bool SetStyle(const String&, XMLFile@ = null)
  4240. - bool SetStyleAuto(XMLFile@ = null)
  4241. - void SetPosition(int, int)
  4242. - void SetSize(int, int)
  4243. - void SetMinSize(int, int)
  4244. - void SetMaxSize(int, int)
  4245. - void SetFixedSize(int, int)
  4246. - void SetFixedWidth(int)
  4247. - void SetFixedHeight(int)
  4248. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4249. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  4250. - void UpdateLayout()
  4251. - void DisableLayoutUpdate()
  4252. - void EnableLayoutUpdate()
  4253. - void BringToFront()
  4254. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  4255. - void AddChild(UIElement@)
  4256. - void InsertChild(uint, UIElement@)
  4257. - void RemoveChild(UIElement@, uint = 0)
  4258. - void RemoveChild(uint)
  4259. - void RemoveAllChildren()
  4260. - void Remove()
  4261. - uint FindChild(UIElement@) const
  4262. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  4263. - UIElement@ GetChild(const String&, bool = false) const
  4264. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  4265. - UIElement@[]@ GetChildren(bool = false) const
  4266. - UIElement@ GetElementEventSender() const
  4267. - const Variant& GetVar(const ShortStringHash&)
  4268. - IntVector2 ScreenToElement(const IntVector2&)
  4269. - IntVector2 ElementToScreen(const IntVector2&)
  4270. - bool IsInside(IntVector2, bool)
  4271. - bool IsInsideCombined(IntVector2, bool)
  4272. - uint GetNumChildren(bool) const
  4273. - void SetViewPosition(int, int)
  4274. - void SetScrollBarsVisible(bool, bool)
  4275. Properties:
  4276. - int refs (readonly)
  4277. - int weakRefs (readonly)
  4278. - ShortStringHash type (readonly)
  4279. - ShortStringHash baseType (readonly)
  4280. - String typeName (readonly)
  4281. - String category (readonly)
  4282. - uint numAttributes (readonly)
  4283. - Variant[] attributes
  4284. - Variant[] attributeDefaults (readonly)
  4285. - AttributeInfo[] attributeInfos (readonly)
  4286. - bool temporary
  4287. - String style
  4288. - String name
  4289. - IntVector2 position
  4290. - IntVector2 size
  4291. - int width
  4292. - int height
  4293. - IntVector2 minSize
  4294. - int minWidth
  4295. - int minHeight
  4296. - IntVector2 maxSize
  4297. - int maxWidth
  4298. - int maxHeight
  4299. - bool fixedSize (readonly)
  4300. - bool fixedWidth (readonly)
  4301. - bool fixedHeight (readonly)
  4302. - HorizontalAlignment horizontalAlignment
  4303. - VerticalAlignment verticalAlignment
  4304. - IntRect clipBorder
  4305. - Color color (writeonly)
  4306. - Color[] colors
  4307. - int priority
  4308. - float opacity
  4309. - bool bringToFront
  4310. - bool bringToBack
  4311. - bool clipChildren
  4312. - bool sortChildren
  4313. - bool useDerivedOpacity
  4314. - bool enabled
  4315. - bool editable
  4316. - bool focus
  4317. - bool selected
  4318. - bool visible
  4319. - bool hovering (readonly)
  4320. - bool internal
  4321. - bool colorGradient (readonly)
  4322. - FocusMode focusMode
  4323. - uint dragDropMode
  4324. - TraversalMode traversalMode
  4325. - XMLFile@ defaultStyle
  4326. - LayoutMode layoutMode
  4327. - int layoutSpacing
  4328. - IntRect layoutBorder
  4329. - int indent
  4330. - int indentSpacing
  4331. - int indentWidth (readonly)
  4332. - IntVector2 childOffset (readonly)
  4333. - bool elementEventSender
  4334. - uint numChildren (readonly)
  4335. - uint numAllChildren (readonly)
  4336. - UIElement@[] children (readonly)
  4337. - UIElement@ parent
  4338. - UIElement@ root (readonly)
  4339. - IntVector2 screenPosition (readonly)
  4340. - IntRect combinedScreenRect (readonly)
  4341. - float derivedOpacity (readonly)
  4342. - VariantMap vars (readonly)
  4343. - UIElement@ contentElement
  4344. - IntVector2 viewPosition
  4345. - float scrollStep
  4346. - float pageStep
  4347. - ScrollBar@ horizontalScrollBar (readonly)
  4348. - ScrollBar@ verticalScrollBar (readonly)
  4349. - BorderImage@ scrollPanel (readonly)
  4350. - bool scrollBarsAutoVisible
  4351. ### ListView
  4352. Methods:
  4353. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4354. - bool Load(File@, bool = false)
  4355. - bool Save(File@) const
  4356. - bool LoadXML(const XMLElement&, bool = false)
  4357. - bool SaveXML(XMLElement&) const
  4358. - void ApplyAttributes()
  4359. - bool SetAttribute(const String&, const Variant&)
  4360. - void ResetToDefault()
  4361. - void RemoveInstanceDefault()
  4362. - Variant GetAttribute(const String&) const
  4363. - Variant GetAttributeDefault(const String&) const
  4364. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  4365. - bool LoadXML(File@)
  4366. - bool LoadXML(XMLFile@, XMLFile@)
  4367. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  4368. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  4369. - bool SaveXML(File@)
  4370. - bool SetStyle(const XMLElement&)
  4371. - bool SetStyle(const String&, XMLFile@ = null)
  4372. - bool SetStyleAuto(XMLFile@ = null)
  4373. - void SetPosition(int, int)
  4374. - void SetSize(int, int)
  4375. - void SetMinSize(int, int)
  4376. - void SetMaxSize(int, int)
  4377. - void SetFixedSize(int, int)
  4378. - void SetFixedWidth(int)
  4379. - void SetFixedHeight(int)
  4380. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4381. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  4382. - void UpdateLayout()
  4383. - void DisableLayoutUpdate()
  4384. - void EnableLayoutUpdate()
  4385. - void BringToFront()
  4386. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  4387. - void AddChild(UIElement@)
  4388. - void InsertChild(uint, UIElement@)
  4389. - void RemoveChild(UIElement@, uint = 0)
  4390. - void RemoveChild(uint)
  4391. - void RemoveAllChildren()
  4392. - void Remove()
  4393. - uint FindChild(UIElement@) const
  4394. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  4395. - UIElement@ GetChild(const String&, bool = false) const
  4396. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  4397. - UIElement@[]@ GetChildren(bool = false) const
  4398. - UIElement@ GetElementEventSender() const
  4399. - const Variant& GetVar(const ShortStringHash&)
  4400. - IntVector2 ScreenToElement(const IntVector2&)
  4401. - IntVector2 ElementToScreen(const IntVector2&)
  4402. - bool IsInside(IntVector2, bool)
  4403. - bool IsInsideCombined(IntVector2, bool)
  4404. - uint GetNumChildren(bool) const
  4405. - void SetViewPosition(int, int)
  4406. - void SetScrollBarsVisible(bool, bool)
  4407. - void AddItem(UIElement@)
  4408. - void InsertItem(uint, UIElement@, UIElement@ = null)
  4409. - void RemoveItem(UIElement@, uint = 0)
  4410. - void RemoveItem(uint)
  4411. - void RemoveAllItems()
  4412. - void AddSelection(uint)
  4413. - void RemoveSelection(uint)
  4414. - void ToggleSelection(uint)
  4415. - void ChangeSelection(int, bool)
  4416. - void SetSelections(uint[]@)
  4417. - void ClearSelection()
  4418. - void Expand(uint, bool, bool = false)
  4419. - void ToggleExpand(uint, bool = false)
  4420. - bool IsSelected(uint) const
  4421. - bool IsExpanded(uint) const
  4422. - UIElement@[]@ GetItems() const
  4423. - uint FindItem(UIElement@)
  4424. Properties:
  4425. - int refs (readonly)
  4426. - int weakRefs (readonly)
  4427. - ShortStringHash type (readonly)
  4428. - ShortStringHash baseType (readonly)
  4429. - String typeName (readonly)
  4430. - String category (readonly)
  4431. - uint numAttributes (readonly)
  4432. - Variant[] attributes
  4433. - Variant[] attributeDefaults (readonly)
  4434. - AttributeInfo[] attributeInfos (readonly)
  4435. - bool temporary
  4436. - String style
  4437. - String name
  4438. - IntVector2 position
  4439. - IntVector2 size
  4440. - int width
  4441. - int height
  4442. - IntVector2 minSize
  4443. - int minWidth
  4444. - int minHeight
  4445. - IntVector2 maxSize
  4446. - int maxWidth
  4447. - int maxHeight
  4448. - bool fixedSize (readonly)
  4449. - bool fixedWidth (readonly)
  4450. - bool fixedHeight (readonly)
  4451. - HorizontalAlignment horizontalAlignment
  4452. - VerticalAlignment verticalAlignment
  4453. - IntRect clipBorder
  4454. - Color color (writeonly)
  4455. - Color[] colors
  4456. - int priority
  4457. - float opacity
  4458. - bool bringToFront
  4459. - bool bringToBack
  4460. - bool clipChildren
  4461. - bool sortChildren
  4462. - bool useDerivedOpacity
  4463. - bool enabled
  4464. - bool editable
  4465. - bool focus
  4466. - bool selected
  4467. - bool visible
  4468. - bool hovering (readonly)
  4469. - bool internal
  4470. - bool colorGradient (readonly)
  4471. - FocusMode focusMode
  4472. - uint dragDropMode
  4473. - TraversalMode traversalMode
  4474. - XMLFile@ defaultStyle
  4475. - LayoutMode layoutMode
  4476. - int layoutSpacing
  4477. - IntRect layoutBorder
  4478. - int indent
  4479. - int indentSpacing
  4480. - int indentWidth (readonly)
  4481. - IntVector2 childOffset (readonly)
  4482. - bool elementEventSender
  4483. - uint numChildren (readonly)
  4484. - uint numAllChildren (readonly)
  4485. - UIElement@[] children (readonly)
  4486. - UIElement@ parent
  4487. - UIElement@ root (readonly)
  4488. - IntVector2 screenPosition (readonly)
  4489. - IntRect combinedScreenRect (readonly)
  4490. - float derivedOpacity (readonly)
  4491. - VariantMap vars (readonly)
  4492. - IntVector2 viewPosition
  4493. - UIElement@ contentElement (readonly)
  4494. - ScrollBar@ horizontalScrollBar (readonly)
  4495. - ScrollBar@ verticalScrollBar (readonly)
  4496. - BorderImage@ scrollPanel (readonly)
  4497. - bool scrollBarsAutoVisible
  4498. - float scrollStep
  4499. - float pageStep
  4500. - uint numItems (readonly)
  4501. - UIElement@[] items (readonly)
  4502. - uint selection
  4503. - uint[]@ selections (readonly)
  4504. - UIElement@ selectedItem (readonly)
  4505. - UIElement@[]@ selectedItems (readonly)
  4506. - HighlightMode highlightMode
  4507. - bool multiselect
  4508. - bool hierarchyMode
  4509. - int baseIndent
  4510. - bool clearSelectionOnDefocus
  4511. ### Text
  4512. Methods:
  4513. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4514. - bool Load(File@, bool = false)
  4515. - bool Save(File@) const
  4516. - bool LoadXML(const XMLElement&, bool = false)
  4517. - bool SaveXML(XMLElement&) const
  4518. - void ApplyAttributes()
  4519. - bool SetAttribute(const String&, const Variant&)
  4520. - void ResetToDefault()
  4521. - void RemoveInstanceDefault()
  4522. - Variant GetAttribute(const String&) const
  4523. - Variant GetAttributeDefault(const String&) const
  4524. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  4525. - bool LoadXML(File@)
  4526. - bool LoadXML(XMLFile@, XMLFile@)
  4527. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  4528. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  4529. - bool SaveXML(File@)
  4530. - bool SetStyle(const XMLElement&)
  4531. - bool SetStyle(const String&, XMLFile@ = null)
  4532. - bool SetStyleAuto(XMLFile@ = null)
  4533. - void SetPosition(int, int)
  4534. - void SetSize(int, int)
  4535. - void SetMinSize(int, int)
  4536. - void SetMaxSize(int, int)
  4537. - void SetFixedSize(int, int)
  4538. - void SetFixedWidth(int)
  4539. - void SetFixedHeight(int)
  4540. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4541. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  4542. - void UpdateLayout()
  4543. - void DisableLayoutUpdate()
  4544. - void EnableLayoutUpdate()
  4545. - void BringToFront()
  4546. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  4547. - void AddChild(UIElement@)
  4548. - void InsertChild(uint, UIElement@)
  4549. - void RemoveChild(UIElement@, uint = 0)
  4550. - void RemoveChild(uint)
  4551. - void RemoveAllChildren()
  4552. - void Remove()
  4553. - uint FindChild(UIElement@) const
  4554. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  4555. - UIElement@ GetChild(const String&, bool = false) const
  4556. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  4557. - UIElement@[]@ GetChildren(bool = false) const
  4558. - UIElement@ GetElementEventSender() const
  4559. - const Variant& GetVar(const ShortStringHash&)
  4560. - IntVector2 ScreenToElement(const IntVector2&)
  4561. - IntVector2 ElementToScreen(const IntVector2&)
  4562. - bool IsInside(IntVector2, bool)
  4563. - bool IsInsideCombined(IntVector2, bool)
  4564. - uint GetNumChildren(bool) const
  4565. - bool SetFont(const String&, int)
  4566. - bool SetFont(Font@, int)
  4567. - void SetSelection(uint, uint = M_MAX_UNSIGNED)
  4568. - void ClearSelection()
  4569. Properties:
  4570. - int refs (readonly)
  4571. - int weakRefs (readonly)
  4572. - ShortStringHash type (readonly)
  4573. - ShortStringHash baseType (readonly)
  4574. - String typeName (readonly)
  4575. - String category (readonly)
  4576. - uint numAttributes (readonly)
  4577. - Variant[] attributes
  4578. - Variant[] attributeDefaults (readonly)
  4579. - AttributeInfo[] attributeInfos (readonly)
  4580. - bool temporary
  4581. - String style
  4582. - String name
  4583. - IntVector2 position
  4584. - IntVector2 size
  4585. - int width
  4586. - int height
  4587. - IntVector2 minSize
  4588. - int minWidth
  4589. - int minHeight
  4590. - IntVector2 maxSize
  4591. - int maxWidth
  4592. - int maxHeight
  4593. - bool fixedSize (readonly)
  4594. - bool fixedWidth (readonly)
  4595. - bool fixedHeight (readonly)
  4596. - HorizontalAlignment horizontalAlignment
  4597. - VerticalAlignment verticalAlignment
  4598. - IntRect clipBorder
  4599. - Color color (writeonly)
  4600. - Color[] colors
  4601. - int priority
  4602. - float opacity
  4603. - bool bringToFront
  4604. - bool bringToBack
  4605. - bool clipChildren
  4606. - bool sortChildren
  4607. - bool useDerivedOpacity
  4608. - bool enabled
  4609. - bool editable
  4610. - bool focus
  4611. - bool selected
  4612. - bool visible
  4613. - bool hovering (readonly)
  4614. - bool internal
  4615. - bool colorGradient (readonly)
  4616. - FocusMode focusMode
  4617. - uint dragDropMode
  4618. - TraversalMode traversalMode
  4619. - XMLFile@ defaultStyle
  4620. - LayoutMode layoutMode
  4621. - int layoutSpacing
  4622. - IntRect layoutBorder
  4623. - int indent
  4624. - int indentSpacing
  4625. - int indentWidth (readonly)
  4626. - IntVector2 childOffset (readonly)
  4627. - bool elementEventSender
  4628. - uint numChildren (readonly)
  4629. - uint numAllChildren (readonly)
  4630. - UIElement@[] children (readonly)
  4631. - UIElement@ parent
  4632. - UIElement@ root (readonly)
  4633. - IntVector2 screenPosition (readonly)
  4634. - IntRect combinedScreenRect (readonly)
  4635. - float derivedOpacity (readonly)
  4636. - VariantMap vars (readonly)
  4637. - Font@ font (readonly)
  4638. - int fontSize (readonly)
  4639. - String text
  4640. - HorizontalAlignment textAlignment
  4641. - float rowSpacing
  4642. - bool wordwrap
  4643. - uint selectionStart (readonly)
  4644. - uint selectionLength (readonly)
  4645. - Color selectionColor
  4646. - Color hoverColor
  4647. - TextEffect textEffect
  4648. - Color effectColor
  4649. - uint numRows (readonly)
  4650. - int rowHeight (readonly)
  4651. ### Text3D
  4652. Methods:
  4653. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4654. - bool Load(File@, bool = false)
  4655. - bool Save(File@) const
  4656. - bool LoadXML(const XMLElement&, bool = false)
  4657. - bool SaveXML(XMLElement&) const
  4658. - void ApplyAttributes()
  4659. - bool SetAttribute(const String&, const Variant&)
  4660. - void ResetToDefault()
  4661. - void RemoveInstanceDefault()
  4662. - Variant GetAttribute(const String&) const
  4663. - Variant GetAttributeDefault(const String&) const
  4664. - void Remove()
  4665. - void MarkNetworkUpdate() const
  4666. - void DrawDebugGeometry(DebugRenderer@, bool)
  4667. - bool SetFont(const String&, int)
  4668. - bool SetFont(Font@, int)
  4669. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4670. Properties:
  4671. - int refs (readonly)
  4672. - int weakRefs (readonly)
  4673. - ShortStringHash type (readonly)
  4674. - ShortStringHash baseType (readonly)
  4675. - String typeName (readonly)
  4676. - String category (readonly)
  4677. - uint numAttributes (readonly)
  4678. - Variant[] attributes
  4679. - Variant[] attributeDefaults (readonly)
  4680. - AttributeInfo[] attributeInfos (readonly)
  4681. - bool temporary
  4682. - bool enabled
  4683. - bool enabledEffective (readonly)
  4684. - uint id (readonly)
  4685. - Node@ node (readonly)
  4686. - bool inView (readonly)
  4687. - bool castShadows
  4688. - bool occluder
  4689. - bool occludee
  4690. - float drawDistance
  4691. - float shadowDistance
  4692. - float lodBias
  4693. - uint viewMask
  4694. - uint lightMask
  4695. - uint shadowMask
  4696. - uint zoneMask
  4697. - uint maxLights
  4698. - BoundingBox boundingBox (readonly)
  4699. - BoundingBox worldBoundingBox (readonly)
  4700. - Font@ font (readonly)
  4701. - int fontSize (readonly)
  4702. - Material@ material
  4703. - String text
  4704. - HorizontalAlignment textAlignment
  4705. - HorizontalAlignment horizontalAlignment
  4706. - VerticalAlignment verticalAlignment
  4707. - float rowSpacing
  4708. - bool wordwrap
  4709. - TextEffect textEffect
  4710. - Color effectColor
  4711. - float effectDepthBias
  4712. - int width
  4713. - Color color (writeonly)
  4714. - Color[] colors
  4715. - float opacity
  4716. - bool faceCamera
  4717. - uint numRows (readonly)
  4718. - int rowHeight (readonly)
  4719. ### LineEdit
  4720. Methods:
  4721. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4722. - bool Load(File@, bool = false)
  4723. - bool Save(File@) const
  4724. - bool LoadXML(const XMLElement&, bool = false)
  4725. - bool SaveXML(XMLElement&) const
  4726. - void ApplyAttributes()
  4727. - bool SetAttribute(const String&, const Variant&)
  4728. - void ResetToDefault()
  4729. - void RemoveInstanceDefault()
  4730. - Variant GetAttribute(const String&) const
  4731. - Variant GetAttributeDefault(const String&) const
  4732. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  4733. - bool LoadXML(File@)
  4734. - bool LoadXML(XMLFile@, XMLFile@)
  4735. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  4736. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  4737. - bool SaveXML(File@)
  4738. - bool SetStyle(const XMLElement&)
  4739. - bool SetStyle(const String&, XMLFile@ = null)
  4740. - bool SetStyleAuto(XMLFile@ = null)
  4741. - void SetPosition(int, int)
  4742. - void SetSize(int, int)
  4743. - void SetMinSize(int, int)
  4744. - void SetMaxSize(int, int)
  4745. - void SetFixedSize(int, int)
  4746. - void SetFixedWidth(int)
  4747. - void SetFixedHeight(int)
  4748. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4749. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  4750. - void UpdateLayout()
  4751. - void DisableLayoutUpdate()
  4752. - void EnableLayoutUpdate()
  4753. - void BringToFront()
  4754. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  4755. - void AddChild(UIElement@)
  4756. - void InsertChild(uint, UIElement@)
  4757. - void RemoveChild(UIElement@, uint = 0)
  4758. - void RemoveChild(uint)
  4759. - void RemoveAllChildren()
  4760. - void Remove()
  4761. - uint FindChild(UIElement@) const
  4762. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  4763. - UIElement@ GetChild(const String&, bool = false) const
  4764. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  4765. - UIElement@[]@ GetChildren(bool = false) const
  4766. - UIElement@ GetElementEventSender() const
  4767. - const Variant& GetVar(const ShortStringHash&)
  4768. - IntVector2 ScreenToElement(const IntVector2&)
  4769. - IntVector2 ElementToScreen(const IntVector2&)
  4770. - bool IsInside(IntVector2, bool)
  4771. - bool IsInsideCombined(IntVector2, bool)
  4772. - uint GetNumChildren(bool) const
  4773. - void SetFullImageRect()
  4774. - void SetHoverOffset(int, int)
  4775. Properties:
  4776. - int refs (readonly)
  4777. - int weakRefs (readonly)
  4778. - ShortStringHash type (readonly)
  4779. - ShortStringHash baseType (readonly)
  4780. - String typeName (readonly)
  4781. - String category (readonly)
  4782. - uint numAttributes (readonly)
  4783. - Variant[] attributes
  4784. - Variant[] attributeDefaults (readonly)
  4785. - AttributeInfo[] attributeInfos (readonly)
  4786. - bool temporary
  4787. - String style
  4788. - String name
  4789. - IntVector2 position
  4790. - IntVector2 size
  4791. - int width
  4792. - int height
  4793. - IntVector2 minSize
  4794. - int minWidth
  4795. - int minHeight
  4796. - IntVector2 maxSize
  4797. - int maxWidth
  4798. - int maxHeight
  4799. - bool fixedSize (readonly)
  4800. - bool fixedWidth (readonly)
  4801. - bool fixedHeight (readonly)
  4802. - HorizontalAlignment horizontalAlignment
  4803. - VerticalAlignment verticalAlignment
  4804. - IntRect clipBorder
  4805. - Color color (writeonly)
  4806. - Color[] colors
  4807. - int priority
  4808. - float opacity
  4809. - bool bringToFront
  4810. - bool bringToBack
  4811. - bool clipChildren
  4812. - bool sortChildren
  4813. - bool useDerivedOpacity
  4814. - bool enabled
  4815. - bool editable
  4816. - bool focus
  4817. - bool selected
  4818. - bool visible
  4819. - bool hovering (readonly)
  4820. - bool internal
  4821. - bool colorGradient (readonly)
  4822. - FocusMode focusMode
  4823. - uint dragDropMode
  4824. - TraversalMode traversalMode
  4825. - XMLFile@ defaultStyle
  4826. - LayoutMode layoutMode
  4827. - int layoutSpacing
  4828. - IntRect layoutBorder
  4829. - int indent
  4830. - int indentSpacing
  4831. - int indentWidth (readonly)
  4832. - IntVector2 childOffset (readonly)
  4833. - bool elementEventSender
  4834. - uint numChildren (readonly)
  4835. - uint numAllChildren (readonly)
  4836. - UIElement@[] children (readonly)
  4837. - UIElement@ parent
  4838. - UIElement@ root (readonly)
  4839. - IntVector2 screenPosition (readonly)
  4840. - IntRect combinedScreenRect (readonly)
  4841. - float derivedOpacity (readonly)
  4842. - VariantMap vars (readonly)
  4843. - Texture@ texture
  4844. - IntRect imageRect
  4845. - IntRect border
  4846. - IntVector2 hoverOffset
  4847. - BlendMode blendMode
  4848. - bool tiled
  4849. - String text
  4850. - uint cursorPosition
  4851. - float cursorBlinkRate
  4852. - uint maxLength
  4853. - uint echoCharacter
  4854. - bool cursorMovable
  4855. - bool textSelectable
  4856. - bool textCopyable
  4857. - Text@ textElement (readonly)
  4858. - BorderImage@ cursor (readonly)
  4859. ### Menu
  4860. Methods:
  4861. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  4862. - bool Load(File@, bool = false)
  4863. - bool Save(File@) const
  4864. - bool LoadXML(const XMLElement&, bool = false)
  4865. - bool SaveXML(XMLElement&) const
  4866. - void ApplyAttributes()
  4867. - bool SetAttribute(const String&, const Variant&)
  4868. - void ResetToDefault()
  4869. - void RemoveInstanceDefault()
  4870. - Variant GetAttribute(const String&) const
  4871. - Variant GetAttributeDefault(const String&) const
  4872. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  4873. - bool LoadXML(File@)
  4874. - bool LoadXML(XMLFile@, XMLFile@)
  4875. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  4876. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  4877. - bool SaveXML(File@)
  4878. - bool SetStyle(const XMLElement&)
  4879. - bool SetStyle(const String&, XMLFile@ = null)
  4880. - bool SetStyleAuto(XMLFile@ = null)
  4881. - void SetPosition(int, int)
  4882. - void SetSize(int, int)
  4883. - void SetMinSize(int, int)
  4884. - void SetMaxSize(int, int)
  4885. - void SetFixedSize(int, int)
  4886. - void SetFixedWidth(int)
  4887. - void SetFixedHeight(int)
  4888. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4889. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  4890. - void UpdateLayout()
  4891. - void DisableLayoutUpdate()
  4892. - void EnableLayoutUpdate()
  4893. - void BringToFront()
  4894. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  4895. - void AddChild(UIElement@)
  4896. - void InsertChild(uint, UIElement@)
  4897. - void RemoveChild(UIElement@, uint = 0)
  4898. - void RemoveChild(uint)
  4899. - void RemoveAllChildren()
  4900. - void Remove()
  4901. - uint FindChild(UIElement@) const
  4902. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  4903. - UIElement@ GetChild(const String&, bool = false) const
  4904. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  4905. - UIElement@[]@ GetChildren(bool = false) const
  4906. - UIElement@ GetElementEventSender() const
  4907. - const Variant& GetVar(const ShortStringHash&)
  4908. - IntVector2 ScreenToElement(const IntVector2&)
  4909. - IntVector2 ElementToScreen(const IntVector2&)
  4910. - bool IsInside(IntVector2, bool)
  4911. - bool IsInsideCombined(IntVector2, bool)
  4912. - uint GetNumChildren(bool) const
  4913. - void SetFullImageRect()
  4914. - void SetHoverOffset(int, int)
  4915. - void SetPressedOffset(int, int)
  4916. - void SetPressedChildOffset(int, int)
  4917. - void SetRepeat(float, float)
  4918. - void SetPopupOffset(int, int)
  4919. - void SetAccelerator(int, int)
  4920. Properties:
  4921. - int refs (readonly)
  4922. - int weakRefs (readonly)
  4923. - ShortStringHash type (readonly)
  4924. - ShortStringHash baseType (readonly)
  4925. - String typeName (readonly)
  4926. - String category (readonly)
  4927. - uint numAttributes (readonly)
  4928. - Variant[] attributes
  4929. - Variant[] attributeDefaults (readonly)
  4930. - AttributeInfo[] attributeInfos (readonly)
  4931. - bool temporary
  4932. - String style
  4933. - String name
  4934. - IntVector2 position
  4935. - IntVector2 size
  4936. - int width
  4937. - int height
  4938. - IntVector2 minSize
  4939. - int minWidth
  4940. - int minHeight
  4941. - IntVector2 maxSize
  4942. - int maxWidth
  4943. - int maxHeight
  4944. - bool fixedSize (readonly)
  4945. - bool fixedWidth (readonly)
  4946. - bool fixedHeight (readonly)
  4947. - HorizontalAlignment horizontalAlignment
  4948. - VerticalAlignment verticalAlignment
  4949. - IntRect clipBorder
  4950. - Color color (writeonly)
  4951. - Color[] colors
  4952. - int priority
  4953. - float opacity
  4954. - bool bringToFront
  4955. - bool bringToBack
  4956. - bool clipChildren
  4957. - bool sortChildren
  4958. - bool useDerivedOpacity
  4959. - bool enabled
  4960. - bool editable
  4961. - bool focus
  4962. - bool selected
  4963. - bool visible
  4964. - bool hovering (readonly)
  4965. - bool internal
  4966. - bool colorGradient (readonly)
  4967. - FocusMode focusMode
  4968. - uint dragDropMode
  4969. - TraversalMode traversalMode
  4970. - XMLFile@ defaultStyle
  4971. - LayoutMode layoutMode
  4972. - int layoutSpacing
  4973. - IntRect layoutBorder
  4974. - int indent
  4975. - int indentSpacing
  4976. - int indentWidth (readonly)
  4977. - IntVector2 childOffset (readonly)
  4978. - bool elementEventSender
  4979. - uint numChildren (readonly)
  4980. - uint numAllChildren (readonly)
  4981. - UIElement@[] children (readonly)
  4982. - UIElement@ parent
  4983. - UIElement@ root (readonly)
  4984. - IntVector2 screenPosition (readonly)
  4985. - IntRect combinedScreenRect (readonly)
  4986. - float derivedOpacity (readonly)
  4987. - VariantMap vars (readonly)
  4988. - Texture@ texture
  4989. - IntRect imageRect
  4990. - IntRect border
  4991. - IntVector2 hoverOffset
  4992. - BlendMode blendMode
  4993. - bool tiled
  4994. - IntVector2 pressedOffset
  4995. - IntVector2 pressedChildOffset
  4996. - float repeatDelay
  4997. - float repeatRate
  4998. - bool pressed (readonly)
  4999. - UIElement@ popup
  5000. - IntVector2 popupOffset
  5001. - bool showPopup
  5002. - int acceleratorKey (readonly)
  5003. - int acceleratorQualifiers (readonly)
  5004. ### MessageBox
  5005. Methods:
  5006. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5007. Properties:
  5008. - int refs (readonly)
  5009. - int weakRefs (readonly)
  5010. - ShortStringHash type (readonly)
  5011. - ShortStringHash baseType (readonly)
  5012. - String typeName (readonly)
  5013. - String category (readonly)
  5014. - String title
  5015. - String message
  5016. - UIElement@ window (readonly)
  5017. ### DropDownList
  5018. Methods:
  5019. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5020. - bool Load(File@, bool = false)
  5021. - bool Save(File@) const
  5022. - bool LoadXML(const XMLElement&, bool = false)
  5023. - bool SaveXML(XMLElement&) const
  5024. - void ApplyAttributes()
  5025. - bool SetAttribute(const String&, const Variant&)
  5026. - void ResetToDefault()
  5027. - void RemoveInstanceDefault()
  5028. - Variant GetAttribute(const String&) const
  5029. - Variant GetAttributeDefault(const String&) const
  5030. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  5031. - bool LoadXML(File@)
  5032. - bool LoadXML(XMLFile@, XMLFile@)
  5033. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  5034. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  5035. - bool SaveXML(File@)
  5036. - bool SetStyle(const XMLElement&)
  5037. - bool SetStyle(const String&, XMLFile@ = null)
  5038. - bool SetStyleAuto(XMLFile@ = null)
  5039. - void SetPosition(int, int)
  5040. - void SetSize(int, int)
  5041. - void SetMinSize(int, int)
  5042. - void SetMaxSize(int, int)
  5043. - void SetFixedSize(int, int)
  5044. - void SetFixedWidth(int)
  5045. - void SetFixedHeight(int)
  5046. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  5047. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  5048. - void UpdateLayout()
  5049. - void DisableLayoutUpdate()
  5050. - void EnableLayoutUpdate()
  5051. - void BringToFront()
  5052. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  5053. - void AddChild(UIElement@)
  5054. - void InsertChild(uint, UIElement@)
  5055. - void RemoveChild(UIElement@, uint = 0)
  5056. - void RemoveChild(uint)
  5057. - void RemoveAllChildren()
  5058. - void Remove()
  5059. - uint FindChild(UIElement@) const
  5060. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  5061. - UIElement@ GetChild(const String&, bool = false) const
  5062. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  5063. - UIElement@[]@ GetChildren(bool = false) const
  5064. - UIElement@ GetElementEventSender() const
  5065. - const Variant& GetVar(const ShortStringHash&)
  5066. - IntVector2 ScreenToElement(const IntVector2&)
  5067. - IntVector2 ElementToScreen(const IntVector2&)
  5068. - bool IsInside(IntVector2, bool)
  5069. - bool IsInsideCombined(IntVector2, bool)
  5070. - uint GetNumChildren(bool) const
  5071. - void SetFullImageRect()
  5072. - void SetHoverOffset(int, int)
  5073. - void SetPressedOffset(int, int)
  5074. - void SetPressedChildOffset(int, int)
  5075. - void SetRepeat(float, float)
  5076. - void SetAccelerator(int, int)
  5077. - void AddItem(UIElement@)
  5078. - void InsertItem(uint, UIElement@)
  5079. - void RemoveItem(UIElement@)
  5080. - void RemoveItem(uint)
  5081. - void RemoveAllItems()
  5082. - UIElement@[]@ GetItems() const
  5083. - UIElement@ getPopup() const
  5084. Properties:
  5085. - int refs (readonly)
  5086. - int weakRefs (readonly)
  5087. - ShortStringHash type (readonly)
  5088. - ShortStringHash baseType (readonly)
  5089. - String typeName (readonly)
  5090. - String category (readonly)
  5091. - uint numAttributes (readonly)
  5092. - Variant[] attributes
  5093. - Variant[] attributeDefaults (readonly)
  5094. - AttributeInfo[] attributeInfos (readonly)
  5095. - bool temporary
  5096. - String style
  5097. - String name
  5098. - IntVector2 position
  5099. - IntVector2 size
  5100. - int width
  5101. - int height
  5102. - IntVector2 minSize
  5103. - int minWidth
  5104. - int minHeight
  5105. - IntVector2 maxSize
  5106. - int maxWidth
  5107. - int maxHeight
  5108. - bool fixedSize (readonly)
  5109. - bool fixedWidth (readonly)
  5110. - bool fixedHeight (readonly)
  5111. - HorizontalAlignment horizontalAlignment
  5112. - VerticalAlignment verticalAlignment
  5113. - IntRect clipBorder
  5114. - Color color (writeonly)
  5115. - Color[] colors
  5116. - int priority
  5117. - float opacity
  5118. - bool bringToFront
  5119. - bool bringToBack
  5120. - bool clipChildren
  5121. - bool sortChildren
  5122. - bool useDerivedOpacity
  5123. - bool enabled
  5124. - bool editable
  5125. - bool focus
  5126. - bool selected
  5127. - bool visible
  5128. - bool hovering (readonly)
  5129. - bool internal
  5130. - bool colorGradient (readonly)
  5131. - FocusMode focusMode
  5132. - uint dragDropMode
  5133. - TraversalMode traversalMode
  5134. - XMLFile@ defaultStyle
  5135. - LayoutMode layoutMode
  5136. - int layoutSpacing
  5137. - IntRect layoutBorder
  5138. - int indent
  5139. - int indentSpacing
  5140. - int indentWidth (readonly)
  5141. - IntVector2 childOffset (readonly)
  5142. - bool elementEventSender
  5143. - uint numChildren (readonly)
  5144. - uint numAllChildren (readonly)
  5145. - UIElement@[] children (readonly)
  5146. - UIElement@ parent
  5147. - UIElement@ root (readonly)
  5148. - IntVector2 screenPosition (readonly)
  5149. - IntRect combinedScreenRect (readonly)
  5150. - float derivedOpacity (readonly)
  5151. - VariantMap vars (readonly)
  5152. - Texture@ texture
  5153. - IntRect imageRect
  5154. - IntRect border
  5155. - IntVector2 hoverOffset
  5156. - BlendMode blendMode
  5157. - bool tiled
  5158. - IntVector2 pressedOffset
  5159. - IntVector2 pressedChildOffset
  5160. - float repeatDelay
  5161. - float repeatRate
  5162. - bool pressed (readonly)
  5163. - bool showPopup
  5164. - uint selection
  5165. - bool resizePopup
  5166. - int acceleratorKey (readonly)
  5167. - int acceleratorQualifiers (readonly)
  5168. - uint numItems (readonly)
  5169. - UIElement@[] items (readonly)
  5170. - UIElement@ selectedItem (readonly)
  5171. - ListView@ listView (readonly)
  5172. - UIElement@ placeholder (readonly)
  5173. - String placeholderText
  5174. ### Window
  5175. Methods:
  5176. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5177. - bool Load(File@, bool = false)
  5178. - bool Save(File@) const
  5179. - bool LoadXML(const XMLElement&, bool = false)
  5180. - bool SaveXML(XMLElement&) const
  5181. - void ApplyAttributes()
  5182. - bool SetAttribute(const String&, const Variant&)
  5183. - void ResetToDefault()
  5184. - void RemoveInstanceDefault()
  5185. - Variant GetAttribute(const String&) const
  5186. - Variant GetAttributeDefault(const String&) const
  5187. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  5188. - bool LoadXML(File@)
  5189. - bool LoadXML(XMLFile@, XMLFile@)
  5190. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  5191. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  5192. - bool SaveXML(File@)
  5193. - bool SetStyle(const XMLElement&)
  5194. - bool SetStyle(const String&, XMLFile@ = null)
  5195. - bool SetStyleAuto(XMLFile@ = null)
  5196. - void SetPosition(int, int)
  5197. - void SetSize(int, int)
  5198. - void SetMinSize(int, int)
  5199. - void SetMaxSize(int, int)
  5200. - void SetFixedSize(int, int)
  5201. - void SetFixedWidth(int)
  5202. - void SetFixedHeight(int)
  5203. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  5204. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  5205. - void UpdateLayout()
  5206. - void DisableLayoutUpdate()
  5207. - void EnableLayoutUpdate()
  5208. - void BringToFront()
  5209. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  5210. - void AddChild(UIElement@)
  5211. - void InsertChild(uint, UIElement@)
  5212. - void RemoveChild(UIElement@, uint = 0)
  5213. - void RemoveChild(uint)
  5214. - void RemoveAllChildren()
  5215. - void Remove()
  5216. - uint FindChild(UIElement@) const
  5217. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  5218. - UIElement@ GetChild(const String&, bool = false) const
  5219. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  5220. - UIElement@[]@ GetChildren(bool = false) const
  5221. - UIElement@ GetElementEventSender() const
  5222. - const Variant& GetVar(const ShortStringHash&)
  5223. - IntVector2 ScreenToElement(const IntVector2&)
  5224. - IntVector2 ElementToScreen(const IntVector2&)
  5225. - bool IsInside(IntVector2, bool)
  5226. - bool IsInsideCombined(IntVector2, bool)
  5227. - uint GetNumChildren(bool) const
  5228. Properties:
  5229. - int refs (readonly)
  5230. - int weakRefs (readonly)
  5231. - ShortStringHash type (readonly)
  5232. - ShortStringHash baseType (readonly)
  5233. - String typeName (readonly)
  5234. - String category (readonly)
  5235. - uint numAttributes (readonly)
  5236. - Variant[] attributes
  5237. - Variant[] attributeDefaults (readonly)
  5238. - AttributeInfo[] attributeInfos (readonly)
  5239. - bool temporary
  5240. - String style
  5241. - String name
  5242. - IntVector2 position
  5243. - IntVector2 size
  5244. - int width
  5245. - int height
  5246. - IntVector2 minSize
  5247. - int minWidth
  5248. - int minHeight
  5249. - IntVector2 maxSize
  5250. - int maxWidth
  5251. - int maxHeight
  5252. - bool fixedSize (readonly)
  5253. - bool fixedWidth (readonly)
  5254. - bool fixedHeight (readonly)
  5255. - HorizontalAlignment horizontalAlignment
  5256. - VerticalAlignment verticalAlignment
  5257. - IntRect clipBorder
  5258. - Color color (writeonly)
  5259. - Color[] colors
  5260. - int priority
  5261. - float opacity
  5262. - bool bringToFront
  5263. - bool bringToBack
  5264. - bool clipChildren
  5265. - bool sortChildren
  5266. - bool useDerivedOpacity
  5267. - bool enabled
  5268. - bool editable
  5269. - bool focus
  5270. - bool selected
  5271. - bool visible
  5272. - bool hovering (readonly)
  5273. - bool internal
  5274. - bool colorGradient (readonly)
  5275. - FocusMode focusMode
  5276. - uint dragDropMode
  5277. - TraversalMode traversalMode
  5278. - XMLFile@ defaultStyle
  5279. - LayoutMode layoutMode
  5280. - int layoutSpacing
  5281. - IntRect layoutBorder
  5282. - int indent
  5283. - int indentSpacing
  5284. - int indentWidth (readonly)
  5285. - IntVector2 childOffset (readonly)
  5286. - bool elementEventSender
  5287. - uint numChildren (readonly)
  5288. - uint numAllChildren (readonly)
  5289. - UIElement@[] children (readonly)
  5290. - UIElement@ parent
  5291. - UIElement@ root (readonly)
  5292. - IntVector2 screenPosition (readonly)
  5293. - IntRect combinedScreenRect (readonly)
  5294. - float derivedOpacity (readonly)
  5295. - VariantMap vars (readonly)
  5296. - bool movable
  5297. - bool resizable
  5298. - IntRect resizeBorder
  5299. - bool modal
  5300. - Color modalShadeColor
  5301. - Color modalFrameColor
  5302. - IntVector2 modalFrameSize
  5303. - bool fixedWidthResizing
  5304. - bool fixedHeightResizing
  5305. ### View3D
  5306. Methods:
  5307. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5308. - bool Load(File@, bool = false)
  5309. - bool Save(File@) const
  5310. - bool LoadXML(const XMLElement&, bool = false)
  5311. - bool SaveXML(XMLElement&) const
  5312. - void ApplyAttributes()
  5313. - bool SetAttribute(const String&, const Variant&)
  5314. - void ResetToDefault()
  5315. - void RemoveInstanceDefault()
  5316. - Variant GetAttribute(const String&) const
  5317. - Variant GetAttributeDefault(const String&) const
  5318. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  5319. - bool LoadXML(File@)
  5320. - bool LoadXML(XMLFile@, XMLFile@)
  5321. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  5322. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  5323. - bool SaveXML(File@)
  5324. - bool SetStyle(const XMLElement&)
  5325. - bool SetStyle(const String&, XMLFile@ = null)
  5326. - bool SetStyleAuto(XMLFile@ = null)
  5327. - void SetPosition(int, int)
  5328. - void SetSize(int, int)
  5329. - void SetMinSize(int, int)
  5330. - void SetMaxSize(int, int)
  5331. - void SetFixedSize(int, int)
  5332. - void SetFixedWidth(int)
  5333. - void SetFixedHeight(int)
  5334. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  5335. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  5336. - void UpdateLayout()
  5337. - void DisableLayoutUpdate()
  5338. - void EnableLayoutUpdate()
  5339. - void BringToFront()
  5340. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  5341. - void AddChild(UIElement@)
  5342. - void InsertChild(uint, UIElement@)
  5343. - void RemoveChild(UIElement@, uint = 0)
  5344. - void RemoveChild(uint)
  5345. - void RemoveAllChildren()
  5346. - void Remove()
  5347. - uint FindChild(UIElement@) const
  5348. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  5349. - UIElement@ GetChild(const String&, bool = false) const
  5350. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  5351. - UIElement@[]@ GetChildren(bool = false) const
  5352. - UIElement@ GetElementEventSender() const
  5353. - const Variant& GetVar(const ShortStringHash&)
  5354. - IntVector2 ScreenToElement(const IntVector2&)
  5355. - IntVector2 ElementToScreen(const IntVector2&)
  5356. - bool IsInside(IntVector2, bool)
  5357. - bool IsInsideCombined(IntVector2, bool)
  5358. - uint GetNumChildren(bool) const
  5359. - void SetView(Scene@, Camera@)
  5360. - void QueueUpdate()
  5361. Properties:
  5362. - int refs (readonly)
  5363. - int weakRefs (readonly)
  5364. - ShortStringHash type (readonly)
  5365. - ShortStringHash baseType (readonly)
  5366. - String typeName (readonly)
  5367. - String category (readonly)
  5368. - uint numAttributes (readonly)
  5369. - Variant[] attributes
  5370. - Variant[] attributeDefaults (readonly)
  5371. - AttributeInfo[] attributeInfos (readonly)
  5372. - bool temporary
  5373. - String style
  5374. - String name
  5375. - IntVector2 position
  5376. - IntVector2 size
  5377. - int width
  5378. - int height
  5379. - IntVector2 minSize
  5380. - int minWidth
  5381. - int minHeight
  5382. - IntVector2 maxSize
  5383. - int maxWidth
  5384. - int maxHeight
  5385. - bool fixedSize (readonly)
  5386. - bool fixedWidth (readonly)
  5387. - bool fixedHeight (readonly)
  5388. - HorizontalAlignment horizontalAlignment
  5389. - VerticalAlignment verticalAlignment
  5390. - IntRect clipBorder
  5391. - Color color (writeonly)
  5392. - Color[] colors
  5393. - int priority
  5394. - float opacity
  5395. - bool bringToFront
  5396. - bool bringToBack
  5397. - bool clipChildren
  5398. - bool sortChildren
  5399. - bool useDerivedOpacity
  5400. - bool enabled
  5401. - bool editable
  5402. - bool focus
  5403. - bool selected
  5404. - bool visible
  5405. - bool hovering (readonly)
  5406. - bool internal
  5407. - bool colorGradient (readonly)
  5408. - FocusMode focusMode
  5409. - uint dragDropMode
  5410. - TraversalMode traversalMode
  5411. - XMLFile@ defaultStyle
  5412. - LayoutMode layoutMode
  5413. - int layoutSpacing
  5414. - IntRect layoutBorder
  5415. - int indent
  5416. - int indentSpacing
  5417. - int indentWidth (readonly)
  5418. - IntVector2 childOffset (readonly)
  5419. - bool elementEventSender
  5420. - uint numChildren (readonly)
  5421. - uint numAllChildren (readonly)
  5422. - UIElement@[] children (readonly)
  5423. - UIElement@ parent
  5424. - UIElement@ root (readonly)
  5425. - IntVector2 screenPosition (readonly)
  5426. - IntRect combinedScreenRect (readonly)
  5427. - float derivedOpacity (readonly)
  5428. - VariantMap vars (readonly)
  5429. - bool movable
  5430. - bool resizable
  5431. - IntRect resizeBorder
  5432. - bool modal
  5433. - Color modalShadeColor
  5434. - Color modalFrameColor
  5435. - IntVector2 modalFrameSize
  5436. - bool fixedWidthResizing
  5437. - bool fixedHeightResizing
  5438. - uint format
  5439. - bool autoUpdate
  5440. - Texture2D@ renderTexture (readonly)
  5441. - Texture2D@ depthTexture (readonly)
  5442. - Viewport@ viewport (readonly)
  5443. - Scene@ scene (readonly)
  5444. - Node@ cameraNode (readonly)
  5445. ### FileSelector
  5446. Methods:
  5447. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5448. - void SetButtonTexts(const String&, const String&)
  5449. - void SetFilters(String[]@, uint)
  5450. - void UpdateElements()
  5451. Properties:
  5452. - int refs (readonly)
  5453. - int weakRefs (readonly)
  5454. - ShortStringHash type (readonly)
  5455. - ShortStringHash baseType (readonly)
  5456. - String typeName (readonly)
  5457. - String category (readonly)
  5458. - String title
  5459. - String path
  5460. - String fileName
  5461. - bool directoryMode
  5462. - String filter (readonly)
  5463. - uint filterIndex (readonly)
  5464. - XMLFile@ defaultStyle
  5465. - Window@ window (readonly)
  5466. - Text@ titleText (readonly)
  5467. - ListView@ fileList (readonly)
  5468. - LineEdit@ pathEdit (readonly)
  5469. - LineEdit@ fileNameEdit (readonly)
  5470. - DropDownList@ filterList (readonly)
  5471. - Button@ okButton (readonly)
  5472. - Button@ cancelButton (readonly)
  5473. ### ToolTip
  5474. Methods:
  5475. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5476. - bool Load(File@, bool = false)
  5477. - bool Save(File@) const
  5478. - bool LoadXML(const XMLElement&, bool = false)
  5479. - bool SaveXML(XMLElement&) const
  5480. - void ApplyAttributes()
  5481. - bool SetAttribute(const String&, const Variant&)
  5482. - void ResetToDefault()
  5483. - void RemoveInstanceDefault()
  5484. - Variant GetAttribute(const String&) const
  5485. - Variant GetAttributeDefault(const String&) const
  5486. - bool LoadXML(const XMLElement&, XMLFile@, bool = false)
  5487. - bool LoadXML(File@)
  5488. - bool LoadXML(XMLFile@, XMLFile@)
  5489. - bool LoadChildXML(const XMLElement&, XMLFile@ = null, bool = false)
  5490. - bool LoadChildXML(XMLFile@, XMLFile@ = null)
  5491. - bool SaveXML(File@)
  5492. - bool SetStyle(const XMLElement&)
  5493. - bool SetStyle(const String&, XMLFile@ = null)
  5494. - bool SetStyleAuto(XMLFile@ = null)
  5495. - void SetPosition(int, int)
  5496. - void SetSize(int, int)
  5497. - void SetMinSize(int, int)
  5498. - void SetMaxSize(int, int)
  5499. - void SetFixedSize(int, int)
  5500. - void SetFixedWidth(int)
  5501. - void SetFixedHeight(int)
  5502. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  5503. - void SetLayout(LayoutMode, int = 0, const IntRect& = IntRect ( 0 , 0 , 0 , 0 ))
  5504. - void UpdateLayout()
  5505. - void DisableLayoutUpdate()
  5506. - void EnableLayoutUpdate()
  5507. - void BringToFront()
  5508. - UIElement@ CreateChild(const String&, const String& = String ( ), uint = M_MAX_UNSIGNED)
  5509. - void AddChild(UIElement@)
  5510. - void InsertChild(uint, UIElement@)
  5511. - void RemoveChild(UIElement@, uint = 0)
  5512. - void RemoveChild(uint)
  5513. - void RemoveAllChildren()
  5514. - void Remove()
  5515. - uint FindChild(UIElement@) const
  5516. - void SetParent(UIElement@, uint = M_MAX_UNSIGNED)
  5517. - UIElement@ GetChild(const String&, bool = false) const
  5518. - UIElement@ GetChild(const ShortStringHash&, const Variant& = Variant ( ), bool = false) const
  5519. - UIElement@[]@ GetChildren(bool = false) const
  5520. - UIElement@ GetElementEventSender() const
  5521. - const Variant& GetVar(const ShortStringHash&)
  5522. - IntVector2 ScreenToElement(const IntVector2&)
  5523. - IntVector2 ElementToScreen(const IntVector2&)
  5524. - bool IsInside(IntVector2, bool)
  5525. - bool IsInsideCombined(IntVector2, bool)
  5526. - uint GetNumChildren(bool) const
  5527. Properties:
  5528. - int refs (readonly)
  5529. - int weakRefs (readonly)
  5530. - ShortStringHash type (readonly)
  5531. - ShortStringHash baseType (readonly)
  5532. - String typeName (readonly)
  5533. - String category (readonly)
  5534. - uint numAttributes (readonly)
  5535. - Variant[] attributes
  5536. - Variant[] attributeDefaults (readonly)
  5537. - AttributeInfo[] attributeInfos (readonly)
  5538. - bool temporary
  5539. - String style
  5540. - String name
  5541. - IntVector2 position
  5542. - IntVector2 size
  5543. - int width
  5544. - int height
  5545. - IntVector2 minSize
  5546. - int minWidth
  5547. - int minHeight
  5548. - IntVector2 maxSize
  5549. - int maxWidth
  5550. - int maxHeight
  5551. - bool fixedSize (readonly)
  5552. - bool fixedWidth (readonly)
  5553. - bool fixedHeight (readonly)
  5554. - HorizontalAlignment horizontalAlignment
  5555. - VerticalAlignment verticalAlignment
  5556. - IntRect clipBorder
  5557. - Color color (writeonly)
  5558. - Color[] colors
  5559. - int priority
  5560. - float opacity
  5561. - bool bringToFront
  5562. - bool bringToBack
  5563. - bool clipChildren
  5564. - bool sortChildren
  5565. - bool useDerivedOpacity
  5566. - bool enabled
  5567. - bool editable
  5568. - bool focus
  5569. - bool selected
  5570. - bool visible
  5571. - bool hovering (readonly)
  5572. - bool internal
  5573. - bool colorGradient (readonly)
  5574. - FocusMode focusMode
  5575. - uint dragDropMode
  5576. - TraversalMode traversalMode
  5577. - XMLFile@ defaultStyle
  5578. - LayoutMode layoutMode
  5579. - int layoutSpacing
  5580. - IntRect layoutBorder
  5581. - int indent
  5582. - int indentSpacing
  5583. - int indentWidth (readonly)
  5584. - IntVector2 childOffset (readonly)
  5585. - bool elementEventSender
  5586. - uint numChildren (readonly)
  5587. - uint numAllChildren (readonly)
  5588. - UIElement@[] children (readonly)
  5589. - UIElement@ parent
  5590. - UIElement@ root (readonly)
  5591. - IntVector2 screenPosition (readonly)
  5592. - IntRect combinedScreenRect (readonly)
  5593. - float derivedOpacity (readonly)
  5594. - VariantMap vars (readonly)
  5595. - float delay
  5596. ### UI
  5597. Methods:
  5598. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5599. - void Clear()
  5600. - void DebugDraw(UIElement@)
  5601. - UIElement@ LoadLayout(File@)
  5602. - UIElement@ LoadLayout(File@, XMLFile@)
  5603. - UIElement@ LoadLayout(XMLFile@)
  5604. - UIElement@ LoadLayout(XMLFile@, XMLFile@)
  5605. - bool SaveLayout(File@, UIElement@)
  5606. - void SetFocusElement(UIElement@, bool = false)
  5607. - UIElement@ GetElementAt(const IntVector2&, bool = true)
  5608. - UIElement@ GetElementAt(int, int, bool = true)
  5609. - bool HasModalElement() const
  5610. Properties:
  5611. - int refs (readonly)
  5612. - int weakRefs (readonly)
  5613. - ShortStringHash type (readonly)
  5614. - ShortStringHash baseType (readonly)
  5615. - String typeName (readonly)
  5616. - String category (readonly)
  5617. - Cursor@ cursor
  5618. - IntVector2 cursorPosition (readonly)
  5619. - UIElement@ focusElement
  5620. - UIElement@ frontElement (readonly)
  5621. - UIElement@ dragElement (readonly)
  5622. - UIElement@ root (readonly)
  5623. - UIElement@ modalRoot (readonly)
  5624. - String clipBoardText
  5625. - float doubleClickInterval
  5626. - float dragBeginInterval
  5627. - int dragBeginDistance
  5628. - float defaultToolTipDelay
  5629. - int maxFontTextureSize
  5630. - bool nonFocusedMouseWheel
  5631. - bool useSystemClipBoard
  5632. - bool useScreenKeyboard
  5633. - bool useMutableGlyphs
  5634. - bool forceAutoHint
  5635. ### Controls
  5636. Methods:
  5637. - void Reset()
  5638. - void Set(uint, bool)
  5639. - bool IsDown(uint) const
  5640. - bool IsPressed(uint, const Controls&) const
  5641. Properties:
  5642. - uint buttons
  5643. - float yaw
  5644. - float pitch
  5645. - VariantMap extraData
  5646. ### NetworkPriority
  5647. Methods:
  5648. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5649. - bool Load(File@, bool = false)
  5650. - bool Save(File@) const
  5651. - bool LoadXML(const XMLElement&, bool = false)
  5652. - bool SaveXML(XMLElement&) const
  5653. - void ApplyAttributes()
  5654. - bool SetAttribute(const String&, const Variant&)
  5655. - void ResetToDefault()
  5656. - void RemoveInstanceDefault()
  5657. - Variant GetAttribute(const String&) const
  5658. - Variant GetAttributeDefault(const String&) const
  5659. - void Remove()
  5660. - void MarkNetworkUpdate() const
  5661. - void DrawDebugGeometry(DebugRenderer@, bool)
  5662. Properties:
  5663. - int refs (readonly)
  5664. - int weakRefs (readonly)
  5665. - ShortStringHash type (readonly)
  5666. - ShortStringHash baseType (readonly)
  5667. - String typeName (readonly)
  5668. - String category (readonly)
  5669. - uint numAttributes (readonly)
  5670. - Variant[] attributes
  5671. - Variant[] attributeDefaults (readonly)
  5672. - AttributeInfo[] attributeInfos (readonly)
  5673. - bool temporary
  5674. - bool enabled
  5675. - bool enabledEffective (readonly)
  5676. - uint id (readonly)
  5677. - Node@ node (readonly)
  5678. - float basePriority
  5679. - float distanceFactor
  5680. - float minPriority
  5681. - bool alwaysUpdateOwner
  5682. ### Connection
  5683. Methods:
  5684. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5685. - void SendMessage(int, bool, bool, const VectorBuffer&, uint = 0)
  5686. - void SendRemoteEvent(const String&, bool, const VariantMap& = VariantMap ( ))
  5687. - void SendRemoteEvent(Node@, const String&, bool, const VariantMap& = VariantMap ( ))
  5688. - void Disconnect(int = 0)
  5689. - String ToString() const
  5690. Properties:
  5691. - int refs (readonly)
  5692. - int weakRefs (readonly)
  5693. - ShortStringHash type (readonly)
  5694. - ShortStringHash baseType (readonly)
  5695. - String typeName (readonly)
  5696. - String category (readonly)
  5697. - Scene@ scene
  5698. - bool logStatistics
  5699. - bool client (readonly)
  5700. - bool connected (readonly)
  5701. - bool connectPending (readonly)
  5702. - bool sceneLoaded (readonly)
  5703. - String address (readonly)
  5704. - uint16 port (readonly)
  5705. - uint numDownloads (readonly)
  5706. - String downloadName (readonly)
  5707. - float downloadProgress (readonly)
  5708. - Vector3 position
  5709. - Controls controls
  5710. - VariantMap identity
  5711. ### HttpRequest
  5712. Methods:
  5713. - uint8[]@ Read(uint)
  5714. - int ReadInt()
  5715. - int16 ReadShort()
  5716. - int8 ReadByte()
  5717. - uint ReadUInt()
  5718. - uint16 ReadUShort()
  5719. - uint8 ReadUByte()
  5720. - bool ReadBool()
  5721. - float ReadFloat()
  5722. - IntRect ReadIntRect()
  5723. - IntVector2 ReadIntVector2()
  5724. - Vector2 ReadVector2()
  5725. - Vector3 ReadVector3()
  5726. - Vector3 ReadPackedVector3(float)
  5727. - Vector4 ReadVector4()
  5728. - Quaternion ReadQuaternion()
  5729. - Quaternion ReadPackedQuaternion()
  5730. - Color ReadColor()
  5731. - BoundingBox ReadBoundingBox()
  5732. - String ReadString()
  5733. - String ReadFileID()
  5734. - StringHash ReadStringHash()
  5735. - ShortStringHash ReadShortStringHash()
  5736. - Variant ReadVariant()
  5737. - VariantMap ReadVariantMap()
  5738. - uint ReadVLE()
  5739. - uint ReadNetID()
  5740. - String ReadLine()
  5741. - uint Seek(uint)
  5742. Properties:
  5743. - int refs (readonly)
  5744. - int weakRefs (readonly)
  5745. - String name (readonly)
  5746. - uint checksum (readonly)
  5747. - uint position (readonly)
  5748. - uint size (readonly)
  5749. - bool eof (readonly)
  5750. - String url (readonly)
  5751. - String verb (readonly)
  5752. - String error (readonly)
  5753. - HttpRequestState state (readonly)
  5754. - uint availableSize (readonly)
  5755. - bool open (readonly)
  5756. ### Network
  5757. Methods:
  5758. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5759. - bool Connect(const String&, uint16, Scene@, const VariantMap& = VariantMap ( ))
  5760. - void Disconnect(int = 0)
  5761. - bool StartServer(uint16)
  5762. - void StopServer()
  5763. - void BroadcastMessage(int, bool, bool, const VectorBuffer&, uint = 0)
  5764. - void BroadcastRemoteEvent(const String&, bool, const VariantMap& = VariantMap ( ))
  5765. - void BroadcastRemoteEvent(Scene@, const String&, bool, const VariantMap& = VariantMap ( ))
  5766. - void BroadcastRemoteEvent(Node@, const String&, bool, const VariantMap& = VariantMap ( ))
  5767. - void RegisterRemoteEvent(const String&) const
  5768. - void UnregisterRemoteEvent(const String&) const
  5769. - void UnregisterAllRemoteEvents()
  5770. - bool CheckRemoteEvent(const String&) const
  5771. - HttpRequest@ MakeHttpRequest(const String&, const String& = String ( ), String[]@ = null, const String& = String ( ))
  5772. Properties:
  5773. - int refs (readonly)
  5774. - int weakRefs (readonly)
  5775. - ShortStringHash type (readonly)
  5776. - ShortStringHash baseType (readonly)
  5777. - String typeName (readonly)
  5778. - String category (readonly)
  5779. - int updateFps
  5780. - String packageCacheDir
  5781. - bool serverRunning (readonly)
  5782. - Connection@ serverConnection (readonly)
  5783. - Connection@[]@ clientConnections (readonly)
  5784. ### CollisionShape
  5785. Methods:
  5786. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5787. - bool Load(File@, bool = false)
  5788. - bool Save(File@) const
  5789. - bool LoadXML(const XMLElement&, bool = false)
  5790. - bool SaveXML(XMLElement&) const
  5791. - void ApplyAttributes()
  5792. - bool SetAttribute(const String&, const Variant&)
  5793. - void ResetToDefault()
  5794. - void RemoveInstanceDefault()
  5795. - Variant GetAttribute(const String&) const
  5796. - Variant GetAttributeDefault(const String&) const
  5797. - void Remove()
  5798. - void MarkNetworkUpdate() const
  5799. - void DrawDebugGeometry(DebugRenderer@, bool)
  5800. - void SetBox(const Vector3&, const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5801. - void SetSphere(float, const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5802. - void SetStaticPlane(const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5803. - void SetCylinder(float, float, const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5804. - void SetCapsule(float, float, const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5805. - void SetCone(float, float, const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5806. - void SetTriangleMesh(Model@, uint = 0, const Vector3& = Vector3 ( 1 , 1 , 1 ), const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5807. - void SetConvexHull(Model@, uint = 0, const Vector3& = Vector3 ( 1 , 1 , 1 ), const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5808. - void SetCustomConvexHull(CustomGeometry@, const Vector3& = Vector3 ( 1 , 1 , 1 ), const Vector3& = Vector3 ( ), const Quaternion& = Quaternion ( ))
  5809. - void SetTerrain()
  5810. - void SetTransform(const Vector3&, const Quaternion&)
  5811. Properties:
  5812. - int refs (readonly)
  5813. - int weakRefs (readonly)
  5814. - ShortStringHash type (readonly)
  5815. - ShortStringHash baseType (readonly)
  5816. - String typeName (readonly)
  5817. - String category (readonly)
  5818. - uint numAttributes (readonly)
  5819. - Variant[] attributes
  5820. - Variant[] attributeDefaults (readonly)
  5821. - AttributeInfo[] attributeInfos (readonly)
  5822. - bool temporary
  5823. - bool enabled
  5824. - bool enabledEffective (readonly)
  5825. - uint id (readonly)
  5826. - Node@ node (readonly)
  5827. - ShapeType shapeType
  5828. - Vector3 size
  5829. - Vector3 position
  5830. - Quaternion rotation
  5831. - float margin
  5832. - Model@ model
  5833. - uint lodLevel
  5834. - BoundingBox worldBoundingBox (readonly)
  5835. ### RigidBody
  5836. Methods:
  5837. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5838. - bool Load(File@, bool = false)
  5839. - bool Save(File@) const
  5840. - bool LoadXML(const XMLElement&, bool = false)
  5841. - bool SaveXML(XMLElement&) const
  5842. - void ApplyAttributes()
  5843. - bool SetAttribute(const String&, const Variant&)
  5844. - void ResetToDefault()
  5845. - void RemoveInstanceDefault()
  5846. - Variant GetAttribute(const String&) const
  5847. - Variant GetAttributeDefault(const String&) const
  5848. - void Remove()
  5849. - void MarkNetworkUpdate() const
  5850. - void DrawDebugGeometry(DebugRenderer@, bool)
  5851. - void SetTransform(const Vector3&, const Quaternion&)
  5852. - void SetCollisionLayerAndMask(uint, uint)
  5853. - void ApplyForce(const Vector3&)
  5854. - void ApplyForce(const Vector3&, const Vector3&)
  5855. - void ApplyTorque(const Vector3&)
  5856. - void ApplyImpulse(const Vector3&)
  5857. - void ApplyImpulse(const Vector3&, const Vector3&)
  5858. - void ApplyTorqueImpulse(const Vector3&)
  5859. - void ResetForces()
  5860. - void Activate()
  5861. - void ReAddBodyToWorld()
  5862. - Vector3 GetVelocityAtPoint(const Vector3&) const
  5863. Properties:
  5864. - int refs (readonly)
  5865. - int weakRefs (readonly)
  5866. - ShortStringHash type (readonly)
  5867. - ShortStringHash baseType (readonly)
  5868. - String typeName (readonly)
  5869. - String category (readonly)
  5870. - uint numAttributes (readonly)
  5871. - Variant[] attributes
  5872. - Variant[] attributeDefaults (readonly)
  5873. - AttributeInfo[] attributeInfos (readonly)
  5874. - bool temporary
  5875. - bool enabled
  5876. - bool enabledEffective (readonly)
  5877. - uint id (readonly)
  5878. - Node@ node (readonly)
  5879. - float mass
  5880. - Vector3 position
  5881. - Quaternion rotation
  5882. - Vector3 linearVelocity
  5883. - Vector3 linearFactor
  5884. - float linearRestThreshold
  5885. - float linearDamping
  5886. - Vector3 angularVelocity
  5887. - Vector3 angularFactor
  5888. - float angularRestThreshold
  5889. - float angularDamping
  5890. - float friction
  5891. - Vector3 anisotropicFriction
  5892. - float rollingFriction
  5893. - float restitution
  5894. - float contactProcessingThreshold
  5895. - float ccdRadius
  5896. - float ccdMotionThreshold
  5897. - bool useGravity
  5898. - Vector3 gravityOverride
  5899. - Vector3 centerOfMass (readonly)
  5900. - bool phantom
  5901. - bool kinematic
  5902. - bool active (readonly)
  5903. - uint collisionLayer
  5904. - uint collisionMask
  5905. - CollisionEventMode collisionEventMode
  5906. - RigidBody@[]@ collidingBodies (readonly)
  5907. ### Constraint
  5908. Methods:
  5909. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5910. - bool Load(File@, bool = false)
  5911. - bool Save(File@) const
  5912. - bool LoadXML(const XMLElement&, bool = false)
  5913. - bool SaveXML(XMLElement&) const
  5914. - void ApplyAttributes()
  5915. - bool SetAttribute(const String&, const Variant&)
  5916. - void ResetToDefault()
  5917. - void RemoveInstanceDefault()
  5918. - Variant GetAttribute(const String&) const
  5919. - Variant GetAttributeDefault(const String&) const
  5920. - void Remove()
  5921. - void MarkNetworkUpdate() const
  5922. - void DrawDebugGeometry(DebugRenderer@, bool)
  5923. Properties:
  5924. - int refs (readonly)
  5925. - int weakRefs (readonly)
  5926. - ShortStringHash type (readonly)
  5927. - ShortStringHash baseType (readonly)
  5928. - String typeName (readonly)
  5929. - String category (readonly)
  5930. - uint numAttributes (readonly)
  5931. - Variant[] attributes
  5932. - Variant[] attributeDefaults (readonly)
  5933. - AttributeInfo[] attributeInfos (readonly)
  5934. - bool temporary
  5935. - bool enabled
  5936. - bool enabledEffective (readonly)
  5937. - uint id (readonly)
  5938. - Node@ node (readonly)
  5939. - ConstraintType constraintType
  5940. - Vector3 position
  5941. - Quaternion rotation
  5942. - Vector3 axis (writeonly)
  5943. - Vector3 otherPosition
  5944. - Quaternion otherRotation
  5945. - Vector3 otherAxis (writeonly)
  5946. - Vector3 worldPosition
  5947. - Vector2 highLimit
  5948. - Vector2 lowLimit
  5949. - float erp
  5950. - float cfm
  5951. - bool disableCollision
  5952. - RigidBody@ ownBody (readonly)
  5953. - RigidBody@ otherBody
  5954. ### PhysicsRaycastResult
  5955. Properties:
  5956. - RigidBody@ body (readonly)
  5957. - Vector3 position
  5958. - Vector3 normal
  5959. - float distance
  5960. ### PhysicsWorld
  5961. Methods:
  5962. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  5963. - bool Load(File@, bool = false)
  5964. - bool Save(File@) const
  5965. - bool LoadXML(const XMLElement&, bool = false)
  5966. - bool SaveXML(XMLElement&) const
  5967. - void ApplyAttributes()
  5968. - bool SetAttribute(const String&, const Variant&)
  5969. - void ResetToDefault()
  5970. - void RemoveInstanceDefault()
  5971. - Variant GetAttribute(const String&) const
  5972. - Variant GetAttributeDefault(const String&) const
  5973. - void Remove()
  5974. - void MarkNetworkUpdate() const
  5975. - void DrawDebugGeometry(DebugRenderer@, bool)
  5976. - void Update(float)
  5977. - void UpdateCollisions()
  5978. - PhysicsRaycastResult[]@ Raycast(const Ray&, float = M_INFINITY, uint = 0xffff)
  5979. - PhysicsRaycastResult RaycastSingle(const Ray&, float = M_INFINITY, uint = 0xffff)
  5980. - PhysicsRaycastResult SphereCast(const Ray&, float, float = M_INFINITY, uint = 0xffff)
  5981. - RigidBody@[]@ GetRigidBodies(const Sphere&, uint = 0xffff)
  5982. - RigidBody@[]@ GetRigidBodies(const BoundingBox&, uint = 0xffff)
  5983. - RigidBody@[]@ GetRigidBodies(RigidBody@)
  5984. - void DrawDebugGeometry(bool)
  5985. - void RemoveCachedGeometry(Model@)
  5986. Properties:
  5987. - int refs (readonly)
  5988. - int weakRefs (readonly)
  5989. - ShortStringHash type (readonly)
  5990. - ShortStringHash baseType (readonly)
  5991. - String typeName (readonly)
  5992. - String category (readonly)
  5993. - uint numAttributes (readonly)
  5994. - Variant[] attributes
  5995. - Variant[] attributeDefaults (readonly)
  5996. - AttributeInfo[] attributeInfos (readonly)
  5997. - bool temporary
  5998. - bool enabled
  5999. - bool enabledEffective (readonly)
  6000. - uint id (readonly)
  6001. - Node@ node (readonly)
  6002. - Vector3 gravity
  6003. - int numIterations
  6004. - int fps
  6005. - bool interpolation
  6006. - bool internalEdge
  6007. - bool splitImpulse
  6008. ### Navigable
  6009. Methods:
  6010. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6011. - bool Load(File@, bool = false)
  6012. - bool Save(File@) const
  6013. - bool LoadXML(const XMLElement&, bool = false)
  6014. - bool SaveXML(XMLElement&) const
  6015. - void ApplyAttributes()
  6016. - bool SetAttribute(const String&, const Variant&)
  6017. - void ResetToDefault()
  6018. - void RemoveInstanceDefault()
  6019. - Variant GetAttribute(const String&) const
  6020. - Variant GetAttributeDefault(const String&) const
  6021. - void Remove()
  6022. - void MarkNetworkUpdate() const
  6023. - void DrawDebugGeometry(DebugRenderer@, bool)
  6024. Properties:
  6025. - int refs (readonly)
  6026. - int weakRefs (readonly)
  6027. - ShortStringHash type (readonly)
  6028. - ShortStringHash baseType (readonly)
  6029. - String typeName (readonly)
  6030. - String category (readonly)
  6031. - uint numAttributes (readonly)
  6032. - Variant[] attributes
  6033. - Variant[] attributeDefaults (readonly)
  6034. - AttributeInfo[] attributeInfos (readonly)
  6035. - bool temporary
  6036. - bool enabled
  6037. - bool enabledEffective (readonly)
  6038. - uint id (readonly)
  6039. - Node@ node (readonly)
  6040. - bool recursive
  6041. ### NavigationMesh
  6042. Methods:
  6043. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6044. - bool Load(File@, bool = false)
  6045. - bool Save(File@) const
  6046. - bool LoadXML(const XMLElement&, bool = false)
  6047. - bool SaveXML(XMLElement&) const
  6048. - void ApplyAttributes()
  6049. - bool SetAttribute(const String&, const Variant&)
  6050. - void ResetToDefault()
  6051. - void RemoveInstanceDefault()
  6052. - Variant GetAttribute(const String&) const
  6053. - Variant GetAttributeDefault(const String&) const
  6054. - void Remove()
  6055. - void MarkNetworkUpdate() const
  6056. - void DrawDebugGeometry(DebugRenderer@, bool)
  6057. - bool Build()
  6058. - bool Build(const BoundingBox&)
  6059. - Vector3 FindNearestPoint()
  6060. - Vector3 MoveAlongSurface()
  6061. - Vector3[]@ FindPath(const Vector3&, const Vector3&, const Vector3& = Vector3 ( 1.0 , 1.0 , 1.0 ))
  6062. - Vector3 GetRandomPoint()
  6063. - Vector3 GetRandomPointInCircle(const Vector3&, float, const Vector3& = Vector3 ( 1.0 , 1.0 , 1.0 ))
  6064. - float GetDistanceToWall(const Vector3&, float, const Vector3& = Vector3 ( 1.0 , 1.0 , 1.0 ))
  6065. - Vector3 Raycast(const Vector3&, const Vector3&, const Vector3& = Vector3 ( 1.0 , 1.0 , 1.0 ))
  6066. - void DrawDebugGeometry(bool)
  6067. Properties:
  6068. - int refs (readonly)
  6069. - int weakRefs (readonly)
  6070. - ShortStringHash type (readonly)
  6071. - ShortStringHash baseType (readonly)
  6072. - String typeName (readonly)
  6073. - String category (readonly)
  6074. - uint numAttributes (readonly)
  6075. - Variant[] attributes
  6076. - Variant[] attributeDefaults (readonly)
  6077. - AttributeInfo[] attributeInfos (readonly)
  6078. - bool temporary
  6079. - bool enabled
  6080. - bool enabledEffective (readonly)
  6081. - uint id (readonly)
  6082. - Node@ node (readonly)
  6083. - int tileSize
  6084. - float cellSize
  6085. - float cellHeight
  6086. - float agentHeight
  6087. - float agentRadius
  6088. - float agentMaxClimb
  6089. - float agentMaxSlope
  6090. - float regionMinSize
  6091. - float regionMergeSize
  6092. - float edgeMaxLength
  6093. - float edgeMaxError
  6094. - float detailSampleDistance
  6095. - float detailSampleMaxError
  6096. - Vector3 padding
  6097. - bool initialized (readonly)
  6098. - BoundingBox boundingBox (readonly)
  6099. - BoundingBox worldBoundingBox (readonly)
  6100. - IntVector2 numTiles (readonly)
  6101. ### OffMeshConnection
  6102. Methods:
  6103. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6104. - bool Load(File@, bool = false)
  6105. - bool Save(File@) const
  6106. - bool LoadXML(const XMLElement&, bool = false)
  6107. - bool SaveXML(XMLElement&) const
  6108. - void ApplyAttributes()
  6109. - bool SetAttribute(const String&, const Variant&)
  6110. - void ResetToDefault()
  6111. - void RemoveInstanceDefault()
  6112. - Variant GetAttribute(const String&) const
  6113. - Variant GetAttributeDefault(const String&) const
  6114. - void Remove()
  6115. - void MarkNetworkUpdate() const
  6116. - void DrawDebugGeometry(DebugRenderer@, bool)
  6117. Properties:
  6118. - int refs (readonly)
  6119. - int weakRefs (readonly)
  6120. - ShortStringHash type (readonly)
  6121. - ShortStringHash baseType (readonly)
  6122. - String typeName (readonly)
  6123. - String category (readonly)
  6124. - uint numAttributes (readonly)
  6125. - Variant[] attributes
  6126. - Variant[] attributeDefaults (readonly)
  6127. - AttributeInfo[] attributeInfos (readonly)
  6128. - bool temporary
  6129. - bool enabled
  6130. - bool enabledEffective (readonly)
  6131. - uint id (readonly)
  6132. - Node@ node (readonly)
  6133. - Node@ endPoint
  6134. - float radius
  6135. - bool bidirectional
  6136. ### ScriptFile
  6137. Methods:
  6138. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6139. - bool Load(File@)
  6140. - bool Save(File@) const
  6141. - bool Execute(const String&, const Variant[]@)
  6142. - void DelayedExecute(float, bool, const String&, const Variant[]@)
  6143. - void DelayedExecute(float, bool, const String&)
  6144. - void ClearDelayedExecute(const String& = String ( ))
  6145. Properties:
  6146. - int refs (readonly)
  6147. - int weakRefs (readonly)
  6148. - ShortStringHash type (readonly)
  6149. - ShortStringHash baseType (readonly)
  6150. - String typeName (readonly)
  6151. - String category (readonly)
  6152. - String name
  6153. - uint memoryUse (readonly)
  6154. - uint useTimer (readonly)
  6155. - bool compiled (readonly)
  6156. ### ScriptObject
  6157. ### ScriptInstance
  6158. Methods:
  6159. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6160. - bool Load(File@, bool = false)
  6161. - bool Save(File@) const
  6162. - bool LoadXML(const XMLElement&, bool = false)
  6163. - bool SaveXML(XMLElement&) const
  6164. - void ApplyAttributes()
  6165. - bool SetAttribute(const String&, const Variant&)
  6166. - void ResetToDefault()
  6167. - void RemoveInstanceDefault()
  6168. - Variant GetAttribute(const String&) const
  6169. - Variant GetAttributeDefault(const String&) const
  6170. - void Remove()
  6171. - void MarkNetworkUpdate() const
  6172. - void DrawDebugGeometry(DebugRenderer@, bool)
  6173. - bool CreateObject(ScriptFile@, const String&)
  6174. - bool Execute(const String&, const Variant[]@)
  6175. - bool Execute(const String&)
  6176. - void DelayedExecute(float, bool, const String&, const Variant[]@)
  6177. - void DelayedExecute(float, bool, const String&)
  6178. - void ClearDelayedExecute(const String& = String ( ))
  6179. Properties:
  6180. - int refs (readonly)
  6181. - int weakRefs (readonly)
  6182. - ShortStringHash type (readonly)
  6183. - ShortStringHash baseType (readonly)
  6184. - String typeName (readonly)
  6185. - String category (readonly)
  6186. - uint numAttributes (readonly)
  6187. - Variant[] attributes
  6188. - Variant[] attributeDefaults (readonly)
  6189. - AttributeInfo[] attributeInfos (readonly)
  6190. - bool temporary
  6191. - bool enabled
  6192. - bool enabledEffective (readonly)
  6193. - uint id (readonly)
  6194. - Node@ node (readonly)
  6195. - int fixedUpdateFps
  6196. - ScriptFile@ scriptFile
  6197. - ScriptObject@ object (readonly)
  6198. - String className
  6199. ### Script
  6200. Methods:
  6201. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6202. - bool Execute(const String&)
  6203. - void DumpAPI(DumpMode = DOXYGEN)
  6204. Properties:
  6205. - int refs (readonly)
  6206. - int weakRefs (readonly)
  6207. - ShortStringHash type (readonly)
  6208. - ShortStringHash baseType (readonly)
  6209. - String typeName (readonly)
  6210. - String category (readonly)
  6211. - ScriptFile@ defaultScriptFile
  6212. - Scene@ defaultScene
  6213. ### Console
  6214. Methods:
  6215. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6216. - void Toggle()
  6217. - void UpdateElements()
  6218. Properties:
  6219. - int refs (readonly)
  6220. - int weakRefs (readonly)
  6221. - ShortStringHash type (readonly)
  6222. - ShortStringHash baseType (readonly)
  6223. - String typeName (readonly)
  6224. - String category (readonly)
  6225. - XMLFile@ defaultStyle
  6226. - bool visible
  6227. - uint numRows
  6228. - uint numHistoryRows
  6229. - uint historyPosition (readonly)
  6230. - String[] historyRow (readonly)
  6231. - BorderImage@ background (readonly)
  6232. - LineEdit@ lineEdit (readonly)
  6233. ### DebugHud
  6234. Methods:
  6235. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6236. - void Toggle(uint)
  6237. - void ToggleAll()
  6238. - void SetAppStats(const String&, const Variant&)
  6239. - void SetAppStats(const String&, const String&)
  6240. - void ResetAppStats(const String&)
  6241. - void ClearAppStats()
  6242. Properties:
  6243. - int refs (readonly)
  6244. - int weakRefs (readonly)
  6245. - ShortStringHash type (readonly)
  6246. - ShortStringHash baseType (readonly)
  6247. - String typeName (readonly)
  6248. - String category (readonly)
  6249. - XMLFile@ defaultStyle
  6250. - uint mode
  6251. - uint profilerMaxDepth
  6252. - float profilerInterval
  6253. - bool useRendererStats
  6254. - Text@ statsText (readonly)
  6255. - Text@ modeText (readonly)
  6256. - Text@ profilerText (readonly)
  6257. ### Engine
  6258. Methods:
  6259. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6260. - void RunFrame()
  6261. - void Exit()
  6262. - void DumpProfiler()
  6263. - void DumpResources()
  6264. - void DumpMemory()
  6265. - Console@ CreateConsole()
  6266. - DebugHud@ CreateDebugHud()
  6267. Properties:
  6268. - int refs (readonly)
  6269. - int weakRefs (readonly)
  6270. - ShortStringHash type (readonly)
  6271. - ShortStringHash baseType (readonly)
  6272. - String typeName (readonly)
  6273. - String category (readonly)
  6274. - int minFps
  6275. - int maxFps
  6276. - int timeStepSmoothing
  6277. - int maxInactiveFps
  6278. - bool pauseMinimized
  6279. - bool autoExit
  6280. - bool initialized (readonly)
  6281. - bool exiting (readonly)
  6282. - bool headless (readonly)
  6283. \section ScriptAPI_GlobalFunctions Global functions
  6284. - bool Equals(float, float)
  6285. - float Sin(float)
  6286. - float Cos(float)
  6287. - float Tan(float)
  6288. - float Asin(float)
  6289. - float Acos(float)
  6290. - float Atan(float)
  6291. - float Atan2(float, float)
  6292. - float Abs(float)
  6293. - float Sqrt(float)
  6294. - float Pow(float, float)
  6295. - float Min(float, float)
  6296. - int Min(int, int)
  6297. - float Max(float, float)
  6298. - int Max(int, int)
  6299. - float Clamp(float, float, float)
  6300. - int Clamp(int, int, int)
  6301. - float Lerp(float, float, float)
  6302. - float Mod(float, float)
  6303. - float Floor(float)
  6304. - float Ceil(float)
  6305. - float Random()
  6306. - float Random(float)
  6307. - float Random(float, float)
  6308. - int RandomInt()
  6309. - int RandomInt(int)
  6310. - int RandomInt(int, int)
  6311. - void SetRandomSeed(uint)
  6312. - uint GetRandomSeed()
  6313. - String ToStringHex(int)
  6314. - String Join(String[]&, const String&)
  6315. - bool IsDigit(uint)
  6316. - bool IsAlpha(uint)
  6317. - void ErrorDialog(const String&, const String&)
  6318. - void OpenConsoleWindow()
  6319. - String GetConsoleInput()
  6320. - String[]@ GetArguments()
  6321. - String GetPlatform()
  6322. - uint GetNumPhysicalCPUs()
  6323. - uint GetNumLogicalCPUs()
  6324. - void SendEvent(const String&, VariantMap& = VariantMap ( ))
  6325. - void SubscribeToEvent(const String&, const String&)
  6326. - void SubscribeToEvent(Object@, const String&, const String&)
  6327. - void UnsubscribeFromEvent(const String&)
  6328. - void UnsubscribeFromEvent(Object@, const String&)
  6329. - void UnsubscribeFromEvents(Object@)
  6330. - void UnsubscribeFromAllEvents()
  6331. - void UnsubscribeFromAllEventsExcept(String[]@)
  6332. - Object@ GetEventSender()
  6333. - const String& GetTypeName(ShortStringHash)
  6334. - void Print(const String&, bool = false)
  6335. - void Print(int, bool = false)
  6336. - void Print(uint, bool = false)
  6337. - void Print(float, bool = false)
  6338. - void Print(bool, bool = false)
  6339. - void Print(const Variant&, bool = false)
  6340. - void PrintCallStack(bool = false)
  6341. - String GetPath(const String&)
  6342. - String GetFileName(const String&)
  6343. - String GetExtension(const String&, bool = true)
  6344. - String GetFileNameAndExtension(const String&, bool = false)
  6345. - String ReplaceExtension(const String&, const String&)
  6346. - String AddTrailingSlash(const String&)
  6347. - String RemoveTrailingSlash(const String&)
  6348. - String GetParentPath(const String&)
  6349. - String GetInternalPath(const String&)
  6350. - bool IsAbsolutePath(const String&)
  6351. - String[]@ GetObjectCategories()
  6352. - String[]@ GetObjectsByCategory(const String&)
  6353. - uint GetAlphaFormat()
  6354. - uint GetLuminanceFormat()
  6355. - uint GetLuminanceAlphaFormat()
  6356. - uint GetRGBFormat()
  6357. - uint GetRGBAFormat()
  6358. - uint GetRGBA16Format()
  6359. - uint GetRGBAFloat16Format()
  6360. - uint GetRGBAFloat32Format()
  6361. - uint GetRG16Format()
  6362. - uint GetRGFloat16Format()
  6363. - uint GetRGFloat32Format()
  6364. - uint GetFloat16Format()
  6365. - uint GetFloat32Format()
  6366. - uint GetDepthStencilFormat()
  6367. - uint GetFormat(const String&)
  6368. - String GetTextureUnitName(TextureUnit)
  6369. - void MarkNetworkUpdate()
  6370. - void DelayedExecute(float, bool, const String&, const Variant[]@)
  6371. - void DelayedExecute(float, bool, const String&)
  6372. - void ClearDelayedExecute(const String& = String ( ))
  6373. - void Remove()
  6374. \section ScriptAPI_GlobalProperties Global properties
  6375. - Time@ time
  6376. - Log@ log
  6377. - FileSystem@ fileSystem
  6378. - ResourceCache@ resourceCache
  6379. - ResourceCache@ cache
  6380. - Node@ node
  6381. - Scene@ scene
  6382. - DebugRenderer@ debugRenderer
  6383. - Octree@ octree
  6384. - Graphics@ graphics
  6385. - Renderer@ renderer
  6386. - Input@ input
  6387. - Audio@ audio
  6388. - UI@ ui
  6389. - Network@ network
  6390. - PhysicsWorld@ physicsWorld
  6391. - ScriptFile@ scriptFile
  6392. - ScriptInstance@ self
  6393. - Script@ script
  6394. - Console@ console
  6395. - DebugHud@ debugHud
  6396. - Engine@ engine
  6397. \section ScriptAPI_GlobalConstants Global constants
  6398. - float M_INFINITY
  6399. - float M_EPSILON
  6400. - float M_LARGE_EPSILON
  6401. - float M_LARGE_VALUE
  6402. - float M_DEGTORAD
  6403. - float M_DEGTORAD_2
  6404. - float M_RADTODEG
  6405. - float M_PI
  6406. - int M_MIN_INT
  6407. - int M_MAX_INT
  6408. - uint M_MIN_UNSIGNED
  6409. - uint M_MAX_UNSIGNED
  6410. - int LOG_DEBUG
  6411. - int LOG_INFO
  6412. - int LOG_WARNING
  6413. - int LOG_ERROR
  6414. - int LOG_NONE
  6415. - uint SCAN_FILES
  6416. - uint SCAN_DIRS
  6417. - uint SCAN_HIDDEN
  6418. - uint AM_FILE
  6419. - uint AM_NET
  6420. - uint AM_DEFAULT
  6421. - uint AM_LATESTDATA
  6422. - uint AM_NOEDIT
  6423. - uint AM_NODEID
  6424. - uint AM_COMPONENTID
  6425. - uint AM_NODEIDVECTOR
  6426. - uint FIRST_REPLICATED_ID
  6427. - uint LAST_REPLICATED_ID
  6428. - uint FIRST_LOCAL_ID
  6429. - uint LAST_LOCAL_ID
  6430. - uint VO_NONE
  6431. - uint VO_LOW_MATERIAL_QUALITY
  6432. - uint VO_DISABLE_SHADOWS
  6433. - uint VO_DISABLE_OCCLUSION
  6434. - uint DRAWABLE_GEOMETRY
  6435. - uint DRAWABLE_LIGHT
  6436. - uint DRAWABLE_ZONE
  6437. - uint DRAWABLE_ANY
  6438. - uint DEFAULT_VIEWMASK
  6439. - uint DEFAULT_LIGHTMASK
  6440. - int QUALITY_LOW
  6441. - int QUALITY_MEDIUM
  6442. - int QUALITY_HIGH
  6443. - int SHADOWQUALITY_LOW_16BIT
  6444. - int SHADOWQUALITY_LOW_24BIT
  6445. - int SHADOWQUALITY_HIGH_16BIT
  6446. - int SHADOWQUALITY_HIGH_24BIT
  6447. - int MOUSEB_LEFT
  6448. - int MOUSEB_RIGHT
  6449. - int MOUSEB_MIDDLE
  6450. - int QUAL_SHIFT
  6451. - int QUAL_CTRL
  6452. - int QUAL_ALT
  6453. - int QUAL_ANY
  6454. - int KEY_BACKSPACE
  6455. - int KEY_TAB
  6456. - int KEY_RETURN
  6457. - int KEY_RETURN2
  6458. - int KEY_KP_ENTER
  6459. - int KEY_PAUSE
  6460. - int KEY_CAPSLOCK
  6461. - int KEY_ESC
  6462. - int KEY_SPACE
  6463. - int KEY_PAGEUP
  6464. - int KEY_PAGEDOWN
  6465. - int KEY_END
  6466. - int KEY_HOME
  6467. - int KEY_LEFT
  6468. - int KEY_UP
  6469. - int KEY_RIGHT
  6470. - int KEY_DOWN
  6471. - int KEY_INSERT
  6472. - int KEY_DELETE
  6473. - int KEY_LWIN
  6474. - int KEY_RWIN
  6475. - int KEY_APPS
  6476. - int KEY_NUMPAD0
  6477. - int KEY_NUMPAD1
  6478. - int KEY_NUMPAD2
  6479. - int KEY_NUMPAD3
  6480. - int KEY_NUMPAD4
  6481. - int KEY_NUMPAD5
  6482. - int KEY_NUMPAD6
  6483. - int KEY_NUMPAD7
  6484. - int KEY_NUMPAD8
  6485. - int KEY_NUMPAD9
  6486. - int KEY_MULTIPLY
  6487. - int KEY_ADD
  6488. - int KEY_SUBTRACT
  6489. - int KEY_DECIMAL
  6490. - int KEY_DIVIDE
  6491. - int KEY_F1
  6492. - int KEY_F2
  6493. - int KEY_F3
  6494. - int KEY_F4
  6495. - int KEY_F5
  6496. - int KEY_F6
  6497. - int KEY_F7
  6498. - int KEY_F8
  6499. - int KEY_F9
  6500. - int KEY_F10
  6501. - int KEY_F11
  6502. - int KEY_F12
  6503. - int KEY_F13
  6504. - int KEY_F14
  6505. - int KEY_F15
  6506. - int KEY_F16
  6507. - int KEY_F17
  6508. - int KEY_F18
  6509. - int KEY_F19
  6510. - int KEY_F20
  6511. - int KEY_F21
  6512. - int KEY_F22
  6513. - int KEY_F23
  6514. - int KEY_F24
  6515. - int KEY_NUMLOCK
  6516. - int KEY_SCROLLLOCK
  6517. - int KEY_LSHIFT
  6518. - int KEY_RSHIFT
  6519. - int KEY_LCTRL
  6520. - int KEY_RCTRL
  6521. - int KEY_LALT
  6522. - int KEY_RALT
  6523. - int HAT_CENTER
  6524. - int HAT_UP
  6525. - int HAT_RIGHT
  6526. - int HAT_DOWN
  6527. - int HAT_LEFT
  6528. - uint DD_DISABLED
  6529. - uint DD_SOURCE
  6530. - uint DD_TARGET
  6531. - uint DD_SOURCE_AND_TARGET
  6532. - uint DEBUGHUD_SHOW_NONE
  6533. - uint DEBUGHUD_SHOW_STATS
  6534. - uint DEBUGHUD_SHOW_MODE
  6535. - uint DEBUGHUD_SHOW_PROFILER
  6536. - uint DEBUGHUD_SHOW_ALL
  6537. \page EventList Event list
  6538. ## %Core events
  6539. ### BeginFrame
  6540. - %FrameNumber : unsigned
  6541. - %TimeStep : float
  6542. ### Update
  6543. - %TimeStep : float
  6544. ### PostUpdate
  6545. - %TimeStep : float
  6546. ### RenderUpdate
  6547. - %TimeStep : float
  6548. ### PostRenderUpdate
  6549. - %TimeStep : float
  6550. ### EndFrame
  6551. ## %Engine events
  6552. ### ConsoleCommand
  6553. - %Command : String
  6554. ## %Drawable events
  6555. ### BoneHierarchyCreated
  6556. - %Node : Node pointer
  6557. ### AnimationTrigger
  6558. - %Node : Node pointer
  6559. - %Name : String
  6560. - %Time : Float
  6561. - %Data : User-defined data type
  6562. ### TerrainCreated
  6563. - %Node : Node pointer
  6564. ## %Graphics events
  6565. ### WindowMessage
  6566. - %Window : int
  6567. - %Msg : int
  6568. - %WParam : int
  6569. - %LParam : int
  6570. - %Handled : bool
  6571. ### ScreenMode
  6572. - %Width : int
  6573. - %Height : int
  6574. - %Fullscreen : bool
  6575. - %Resizable : bool
  6576. - %Borderless : bool
  6577. ### GraphicsFeatures
  6578. ### RenderSurfaceUpdate
  6579. ### BeginRendering
  6580. ### EndRendering
  6581. ### BeginViewUpdate
  6582. - %Texture : Texture pointer
  6583. - %Surface : RenderSurface pointer
  6584. - %Scene : Scene pointer
  6585. - %Camera : Camera pointer
  6586. ### EndViewUpdate
  6587. - %Texture : Texture pointer
  6588. - %Surface : RenderSurface pointer
  6589. - %Scene : Scene pointer
  6590. - %Camera : Camera pointer
  6591. ### BeginViewRender
  6592. - %Texture : Texture pointer
  6593. - %Surface : RenderSurface pointer
  6594. - %Scene : Scene pointer
  6595. - %Camera : Camera pointer
  6596. ### EndViewRender
  6597. - %Texture : Texture pointer
  6598. - %Surface : RenderSurface pointer
  6599. - %Scene : Scene pointer
  6600. - %Camera : Camera pointer
  6601. ## %IO events
  6602. ### LogMessage
  6603. - %Message : String
  6604. - %Level : int
  6605. ## %Input events
  6606. ### MouseButtonDown
  6607. - %Button : int
  6608. - %Buttons : int
  6609. - %Qualifiers : int
  6610. ### MouseButtonUp
  6611. - %Button : int
  6612. - %Buttons : int
  6613. - %Qualifiers : int
  6614. ### MouseMove
  6615. - %X : int (only when mouse visible)
  6616. - %Y : int (only when mouse visible)
  6617. - %DX : int
  6618. - %DY : int
  6619. - %Buttons : int
  6620. - %Qualifiers : int
  6621. ### MouseWheel
  6622. - %Wheel : int
  6623. - %Buttons : int
  6624. - %Qualifiers : int
  6625. ### KeyDown
  6626. - %Key : int
  6627. - %Buttons : int
  6628. - %Qualifiers : int
  6629. - %Repeat : bool
  6630. ### KeyUp
  6631. - %Key : int
  6632. - %Buttons : int
  6633. - %Qualifiers : int
  6634. ### Char
  6635. - %Char : int
  6636. - %Buttons : int
  6637. - %Qualifiers : int
  6638. ### TouchBegin
  6639. - %TouchID : int
  6640. - %X : int
  6641. - %Y : int
  6642. - %Pressure : float
  6643. ### TouchEnd
  6644. - %TouchID : int
  6645. - %X : int
  6646. - %Y : int
  6647. ### TouchMove
  6648. - %TouchID : int
  6649. - %X : int
  6650. - %Y : int
  6651. - %DX : int
  6652. - %DY : int
  6653. - %Pressure : float
  6654. ### JoystickButtonDown
  6655. - %Joystick : int
  6656. - %Button : int
  6657. ### JoystickButtonUp
  6658. - %Joystick : int
  6659. - %Button : int
  6660. ### JoystickAxisMove
  6661. - %Joystick : int
  6662. - %Button : int
  6663. - %Position : float
  6664. ### JoystickHatMove
  6665. - %Joystick : int
  6666. - %Button : int
  6667. - %Position : int
  6668. ### DropFile
  6669. - %FileName : String
  6670. ### InputFocus
  6671. - %Focus : bool
  6672. - %Minimized : bool
  6673. ### MouseVisibleChanged
  6674. - %Visible : bool
  6675. ### ExitRequested
  6676. ## %Network events
  6677. ### ServerConnected
  6678. ### ServerDisconnected
  6679. ### ConnectFailed
  6680. ### ClientConnected
  6681. - %Connection : Connection pointer
  6682. ### ClientDisconnected
  6683. - %Connection : Connection pointer
  6684. ### ClientIdentity
  6685. - %Connection : Connection pointer
  6686. - %Allow : bool
  6687. ### ClientSceneLoaded
  6688. - %Connection : Connection pointer
  6689. ### NetworkMessage
  6690. - %Connection : Connection pointer
  6691. - %MessageID : int
  6692. - %Data : Buffer
  6693. ### NetworkUpdate
  6694. ### NetworkUpdateSent
  6695. ### NetworkSceneLoadFailed
  6696. - %Connection : Connection pointer
  6697. ### RemoteEventData
  6698. - %Connection : Connection pointer
  6699. ## %Physics events
  6700. ### PhysicsPreStep
  6701. - %World : PhysicsWorld pointer
  6702. - %TimeStep : float
  6703. ### PhysicsPostStep
  6704. - %World : PhysicsWorld pointer
  6705. - %TimeStep : float
  6706. ### PhysicsCollisionStart
  6707. - %World : PhysicsWorld pointer
  6708. - %NodeA : Node pointer
  6709. - %NodeB : Node pointer
  6710. - %BodyA : RigidBody pointer
  6711. - %BodyB : RigidBody pointer
  6712. - %Phantom : bool
  6713. ### PhysicsCollision
  6714. - %World : PhysicsWorld pointer
  6715. - %NodeA : Node pointer
  6716. - %NodeB : Node pointer
  6717. - %BodyA : RigidBody pointer
  6718. - %BodyB : RigidBody pointer
  6719. - %Phantom : bool
  6720. ### PhysicsCollisionEnd
  6721. - %World : PhysicsWorld pointer
  6722. - %NodeA : Node pointer
  6723. - %NodeB : Node pointer
  6724. - %BodyA : RigidBody pointer
  6725. - %BodyB : RigidBody pointer
  6726. - %Phantom : bool
  6727. ### NodeCollisionStart
  6728. - %Body : RigidBody pointer
  6729. - %OtherNode : Node pointer
  6730. - %OtherBody : RigidBody pointer
  6731. - %Phantom : bool
  6732. ### NodeCollision
  6733. - %Body : RigidBody pointer
  6734. - %OtherNode : Node pointer
  6735. - %OtherBody : RigidBody pointer
  6736. - %Phantom : bool
  6737. ### NodeCollisionEnd
  6738. - %Body : RigidBody pointer
  6739. - %OtherNode : Node pointer
  6740. - %OtherBody : RigidBody pointer
  6741. - %Phantom : bool
  6742. ## %Resource events
  6743. ### ReloadStarted
  6744. ### ReloadFinished
  6745. ### ReloadFailed
  6746. ## %Scene events
  6747. ### SceneUpdate
  6748. - %Scene : Scene pointer
  6749. - %TimeStep : float
  6750. ### SceneSubsystemUpdate
  6751. - %Scene : Scene pointer
  6752. - %TimeStep : float
  6753. ### UpdateSmoothing
  6754. - %Constant : float
  6755. - %SquaredSnapThreshold : float
  6756. ### SceneDrawableUpdateFinished
  6757. - %Scene : Scene pointer
  6758. - %TimeStep : float
  6759. ### TargetPositionChanged
  6760. ### TargetRotationChanged
  6761. ### ScenePostUpdate
  6762. - %Scene : Scene pointer
  6763. - %TimeStep : float
  6764. ### AsyncLoadProgress
  6765. - %Scene : Scene pointer
  6766. - %Progress : float
  6767. - %LoadedNodes : int
  6768. - %TotalNodes : int
  6769. ### AsyncLoadFinished
  6770. - %Scene : Scene pointer
  6771. ### NodeAdded
  6772. - %Scene : Scene pointer
  6773. - %Parent : Node pointer
  6774. - %Node : Node pointer
  6775. ### NodeRemoved
  6776. - %Scene : Scene pointer
  6777. - %Parent : Node pointer
  6778. - %Node : Node pointer
  6779. ### ComponentAdded
  6780. - %Scene : Scene pointer
  6781. - %Node : Node pointer
  6782. - %Component : Component pointer
  6783. ### ComponentRemoved
  6784. - %Scene : Scene pointer
  6785. - %Node : Node pointer
  6786. - %Component : Component pointer
  6787. ### NodeNameChanged
  6788. - %Scene : Scene pointer
  6789. - %Node : Node pointer
  6790. ### NodeEnabledChanged
  6791. - %Scene : Scene pointer
  6792. - %Node : Node pointer
  6793. ### ComponentEnabledChanged
  6794. - %Scene : Scene pointer
  6795. - %Node : Node pointer
  6796. - %Component : Component pointer
  6797. ### TemporaryChanged
  6798. - %Serializable : Serializable pointer
  6799. ## %UI events
  6800. ### UIMouseClick
  6801. - %Element : UIElement pointer
  6802. - %X : int
  6803. - %Y : int
  6804. - %Button : int
  6805. - %Buttons : int
  6806. - %Qualifiers : int
  6807. ### UIMouseClickEnd
  6808. - %Element : UIElement pointer
  6809. - %BeginElement : UIElement pointer
  6810. - %X : int
  6811. - %Y : int
  6812. - %Button : int
  6813. - %Buttons : int
  6814. - %Qualifiers : int
  6815. ### UIMouseDoubleClick
  6816. - %Element : UIElement pointer
  6817. - %X : int
  6818. - %Y : int
  6819. - %Button : int
  6820. - %Buttons : int
  6821. - %Qualifiers : int
  6822. ### DragDropTest
  6823. - %Source : UIElement pointer
  6824. - %Target : UIElement pointer
  6825. - %Accept : bool
  6826. ### DragDropFinish
  6827. - %Source : UIElement pointer
  6828. - %Target : UIElement pointer
  6829. - %Accept : bool
  6830. ### FocusChanged
  6831. - %Element : UIElement pointer
  6832. - %ClickedElement : UIElement pointer
  6833. ### NameChanged
  6834. - %Element : UIElement pointer
  6835. ### Resized
  6836. - %Element : UIElement pointer
  6837. - %Width : int
  6838. - %Height : int
  6839. ### Positioned
  6840. - %Element : UIElement pointer
  6841. - %X : int
  6842. - %Y : int
  6843. ### VisibleChanged
  6844. - %Element : UIElement pointer
  6845. - %Visible : bool
  6846. ### Focused
  6847. - %Element : UIElement pointer
  6848. - %ByKey : bool
  6849. ### Defocused
  6850. - %Element : UIElement pointer
  6851. ### LayoutUpdated
  6852. - %Element : UIElement pointer
  6853. ### Pressed
  6854. - %Element : UIElement pointer
  6855. ### Released
  6856. - %Element : UIElement pointer
  6857. ### Toggled
  6858. - %Element : UIElement pointer
  6859. - %State : bool
  6860. ### SliderChanged
  6861. - %Element : UIElement pointer
  6862. - %Value : float
  6863. ### SliderPaged
  6864. - %Element : UIElement pointer
  6865. - %Offset : int
  6866. - %Pressed : bool
  6867. ### ScrollBarChanged
  6868. - %Element : UIElement pointer
  6869. - %Value : float
  6870. ### ViewChanged
  6871. - %Element : UIElement pointer
  6872. - %X : int
  6873. - %Y : int
  6874. ### ModalChanged
  6875. - %Element : UIElement pointer
  6876. - %Modal : bool
  6877. ### TextChanged
  6878. - %Element : UIElement pointer
  6879. - %Text : String
  6880. ### TextFinished
  6881. - %Element : UIElement pointer
  6882. - %Text : String
  6883. ### MenuSelected
  6884. - %Element : UIElement pointer
  6885. ### ItemSelected
  6886. - %Element : UIElement pointer
  6887. - %Selection : int
  6888. ### ItemDeselected
  6889. - %Element : UIElement pointer
  6890. - %Selection : int
  6891. ### SelectionChanged
  6892. - %Element : UIElement pointer
  6893. ### ItemClicked
  6894. - %Element : UIElement pointer
  6895. - %Item : UIElement pointer
  6896. - %Selection : int
  6897. - %Button : int
  6898. - %Buttons : int
  6899. - %Qualifiers : int
  6900. ### ItemDoubleClicked
  6901. - %Element : UIElement pointer
  6902. - %Item : UIElement pointer
  6903. - %Selection : int
  6904. - %Button : int
  6905. - %Buttons : int
  6906. - %Qualifiers : int
  6907. ### UnhandledKey
  6908. - %Element : UIElement pointer
  6909. - %Key : int
  6910. - %Buttons : int
  6911. - %Qualifiers : int
  6912. ### FileSelected
  6913. - %FileName : String
  6914. - %Filter : String
  6915. - %Ok : bool
  6916. ### MessageACK
  6917. - %Ok : bool
  6918. ### ElementAdded
  6919. - %Root : UIElement pointer
  6920. - %Parent : UIElement pointer
  6921. - %Element : UIElement pointer
  6922. ### ElementRemoved
  6923. - %Root : UIElement pointer
  6924. - %Parent : UIElement pointer
  6925. - %Element : UIElement pointer
  6926. ### DragBegin
  6927. - %Element : UIElement pointer
  6928. - %X : int
  6929. - %Y : int
  6930. - %ElementX : int
  6931. - %ElementY : int
  6932. ### DragMove
  6933. - %Element : UIElement pointer
  6934. - %X : int
  6935. - %Y : int
  6936. - %ElementX : int
  6937. - %ElementY : int
  6938. ### DragEnd
  6939. - %Element : UIElement pointer
  6940. - %X : int
  6941. - %Y : int
  6942. - %ElementX : int
  6943. - %ElementY : int
  6944. ### UIDropFile
  6945. - %FileName : String
  6946. - %Element : UIElement pointer
  6947. - %X : int
  6948. - %Y : int
  6949. - %ElementX : int (only if element is non-null)
  6950. - %ElementY : int (only if element is non-null)
  6951. */
  6952. }