ScriptAPI.dox 200 KB

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