ScriptAPI.dox 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159
  1. namespace Urho3D
  2. {
  3. /**
  4. \page ScriptAPI Scripting API
  5. \section ScriptAPI_GlobalFunctions Global functions
  6. - bool Equals(float, float)
  7. - float Sin(float)
  8. - float Cos(float)
  9. - float Tan(float)
  10. - float Asin(float)
  11. - float Acos(float)
  12. - float Atan(float)
  13. - float Atan2(float, float)
  14. - float Abs(float)
  15. - float Sqrt(float)
  16. - float Pow(float)
  17. - float Min(float, float)
  18. - float Max(float, float)
  19. - float Clamp(float, float, float)
  20. - float Lerp(float, float, float)
  21. - float Mod(float, float)
  22. - float Floor(float)
  23. - float Ceil(float)
  24. - float Random()
  25. - float Random(float)
  26. - int RandomInt()
  27. - int RandomInt(int)
  28. - void SetRandomSeed(uint)
  29. - uint GetRandomSeed()
  30. - String ToStringHex(int)
  31. - String Join(String[]&, const String&)
  32. - bool IsDigit(uint)
  33. - bool IsAlpha(uint)
  34. - void ErrorDialog(const String&, const String&)
  35. - void OpenConsoleWindow()
  36. - String GetConsoleInput()
  37. - String[]@ GetArguments()
  38. - String GetPlatform()
  39. - uint GetNumPhysicalCPUs()
  40. - uint GetNumLogicalCPUs()
  41. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  42. - void SubscribeToEvent(const String&, const String&)
  43. - void SubscribeToEvent(Object@, const String&, const String&)
  44. - void UnsubscribeFromEvent(const String&)
  45. - void UnsubscribeFromEvent(Object@, const String&)
  46. - void UnsubscribeFromEvents(Object@)
  47. - void UnsubscribeFromAllEvents()
  48. - void UnsubscribeFromAllEventsExcept(String[]@)
  49. - Object@ GetEventSender()
  50. - const String& GetTypeName(ShortStringHash)
  51. - void Print(const String&, bool arg1 = false)
  52. - void Print(int, bool arg1 = false)
  53. - void Print(uint, bool arg1 = false)
  54. - void Print(float, bool arg1 = false)
  55. - void Print(bool, bool arg1 = false)
  56. - void Print(const Variant&, bool arg1 = false)
  57. - void PrintCallStack(bool arg0 = false)
  58. - String GetPath(const String&)
  59. - String GetFileName(const String&)
  60. - String GetExtension(const String&)
  61. - String GetFileNameAndExtension(const String&)
  62. - String ReplaceExtension(const String&, const String&)
  63. - String AddTrailingSlash(const String&)
  64. - String RemoveTrailingSlash(const String&)
  65. - String GetParentPath(const String&)
  66. - String GetInternalPath(const String&)
  67. - String[]@ GetObjectCategories()
  68. - String[]@ GetObjectsByCategory(const String&)
  69. - uint GetAlphaFormat()
  70. - uint GetLuminanceFormat()
  71. - uint GetLuminanceAlphaFormat()
  72. - uint GetRGBFormat()
  73. - uint GetRGBAFormat()
  74. - uint GetRGBA16Format()
  75. - uint GetRGBAFloat16Format()
  76. - uint GetRGBAFloat32Format()
  77. - uint GetRG16Format()
  78. - uint GetRGFloat16Format()
  79. - uint GetRGFloat32Format()
  80. - uint GetFloat16Format()
  81. - uint GetFloat32Format()
  82. - uint GetDepthStencilFormat()
  83. - uint GetFormat(const String&)
  84. - void MarkNetworkUpdate()
  85. - void DelayedExecute(float, bool, const String&, const Variant[]@)
  86. - void DelayedExecute(float, bool, const String&)
  87. - void ClearDelayedExecute(const String& arg0 = String ( ))
  88. - void Remove()
  89. \section ScriptAPI_GlobalProperties Global properties
  90. - Time@ time
  91. - Log@ log
  92. - FileSystem@ fileSystem
  93. - ResourceCache@ resourceCache
  94. - ResourceCache@ cache
  95. - Node@ node
  96. - Scene@ scene
  97. - DebugRenderer@ debugRenderer
  98. - Octree@ octree
  99. - Graphics@ graphics
  100. - Renderer@ renderer
  101. - Input@ input
  102. - Audio@ audio
  103. - UI@ ui
  104. - Network@ network
  105. - PhysicsWorld@ physicsWorld
  106. - ScriptFile@ scriptFile
  107. - ScriptInstance@ self
  108. - Script@ script
  109. - Console@ console
  110. - DebugHud@ debugHud
  111. - Engine@ engine
  112. \section ScriptAPI_GlobalConstants Global constants
  113. - float M_INFINITY
  114. - float M_EPSILON
  115. - float M_LARGE_EPSILON
  116. - float M_LARGE_VALUE
  117. - float M_DEGTORAD
  118. - float M_DEGTORAD_2
  119. - float M_RADTODEG
  120. - float M_PI
  121. - int M_MIN_INT
  122. - int M_MAX_INT
  123. - uint M_MIN_UNSIGNED
  124. - uint M_MAX_UNSIGNED
  125. - int LOG_DEBUG
  126. - int LOG_INFO
  127. - int LOG_WARNING
  128. - int LOG_ERROR
  129. - int LOG_NONE
  130. - uint SCAN_FILES
  131. - uint SCAN_DIRS
  132. - uint SCAN_HIDDEN
  133. - uint AM_FILE
  134. - uint AM_NET
  135. - uint AM_DEFAULT
  136. - uint AM_LATESTDATA
  137. - uint AM_NOEDIT
  138. - uint AM_NODEID
  139. - uint AM_COMPONENTID
  140. - uint FIRST_REPLICATED_ID
  141. - uint LAST_REPLICATED_ID
  142. - uint FIRST_LOCAL_ID
  143. - uint LAST_LOCAL_ID
  144. - uint VO_NONE
  145. - uint VO_LOW_MATERIAL_QUALITY
  146. - uint VO_DISABLE_SHADOWS
  147. - uint VO_DISABLE_OCCLUSION
  148. - uint DRAWABLE_GEOMETRY
  149. - uint DRAWABLE_LIGHT
  150. - uint DRAWABLE_ZONE
  151. - uint DRAWABLE_ANY
  152. - uint DEFAULT_VIEWMASK
  153. - uint DEFAULT_LIGHTMASK
  154. - int QUALITY_LOW
  155. - int QUALITY_MEDIUM
  156. - int QUALITY_HIGH
  157. - int SHADOWQUALITY_LOW_16BIT
  158. - int SHADOWQUALITY_LOW_24BIT
  159. - int SHADOWQUALITY_HIGH_16BIT
  160. - int SHADOWQUALITY_HIGH_24BIT
  161. - int MOUSEB_LEFT
  162. - int MOUSEB_RIGHT
  163. - int MOUSEB_MIDDLE
  164. - int QUAL_SHIFT
  165. - int QUAL_CTRL
  166. - int QUAL_ALT
  167. - int QUAL_ANY
  168. - int KEY_BACKSPACE
  169. - int KEY_TAB
  170. - int KEY_RETURN
  171. - int KEY_RETURN2
  172. - int KEY_KP_ENTER
  173. - int KEY_PAUSE
  174. - int KEY_CAPSLOCK
  175. - int KEY_ESC
  176. - int KEY_SPACE
  177. - int KEY_PAGEUP
  178. - int KEY_PAGEDOWN
  179. - int KEY_END
  180. - int KEY_HOME
  181. - int KEY_LEFT
  182. - int KEY_UP
  183. - int KEY_RIGHT
  184. - int KEY_DOWN
  185. - int KEY_INSERT
  186. - int KEY_DELETE
  187. - int KEY_LWIN
  188. - int KEY_RWIN
  189. - int KEY_APPS
  190. - int KEY_NUMPAD0
  191. - int KEY_NUMPAD1
  192. - int KEY_NUMPAD2
  193. - int KEY_NUMPAD3
  194. - int KEY_NUMPAD4
  195. - int KEY_NUMPAD5
  196. - int KEY_NUMPAD6
  197. - int KEY_NUMPAD7
  198. - int KEY_NUMPAD8
  199. - int KEY_NUMPAD9
  200. - int KEY_MULTIPLY
  201. - int KEY_ADD
  202. - int KEY_SUBTRACT
  203. - int KEY_DECIMAL
  204. - int KEY_DIVIDE
  205. - int KEY_F1
  206. - int KEY_F2
  207. - int KEY_F3
  208. - int KEY_F4
  209. - int KEY_F5
  210. - int KEY_F6
  211. - int KEY_F7
  212. - int KEY_F8
  213. - int KEY_F9
  214. - int KEY_F10
  215. - int KEY_F11
  216. - int KEY_F12
  217. - int KEY_F13
  218. - int KEY_F14
  219. - int KEY_F15
  220. - int KEY_F16
  221. - int KEY_F17
  222. - int KEY_F18
  223. - int KEY_F19
  224. - int KEY_F20
  225. - int KEY_F21
  226. - int KEY_F22
  227. - int KEY_F23
  228. - int KEY_F24
  229. - int KEY_NUMLOCK
  230. - int KEY_SCROLLLOCK
  231. - int KEY_LSHIFT
  232. - int KEY_RSHIFT
  233. - int KEY_LCTRL
  234. - int KEY_RCTRL
  235. - int KEY_LALT
  236. - int KEY_RALT
  237. - int HAT_CENTER
  238. - int HAT_UP
  239. - int HAT_RIGHT
  240. - int HAT_DOWN
  241. - int HAT_LEFT
  242. - uint DD_DISABLED
  243. - uint DD_SOURCE
  244. - uint DD_TARGET
  245. - uint DD_SOURCE_AND_TARGET
  246. - uint DEBUGHUD_SHOW_NONE
  247. - uint DEBUGHUD_SHOW_STATS
  248. - uint DEBUGHUD_SHOW_MODE
  249. - uint DEBUGHUD_SHOW_PROFILER
  250. - uint DEBUGHUD_SHOW_ALL
  251. \section ScriptAPI_Classes Classes
  252. Array
  253. Methods:<br>
  254. - void Insert(uint, const T&)
  255. - void Erase(uint)
  256. - void Push(const T&)
  257. - void Pop()
  258. - void Resize(uint)
  259. - void Clear()
  260. - void Sort()
  261. - void Sort(uint, uint)
  262. - void SortReverse()
  263. - void SortReverse(uint, uint)
  264. - void Reverse()
  265. - int Find(const T&) const
  266. - int Find(uint, const T&) const
  267. Properties:<br>
  268. - uint length
  269. - bool empty (readonly)
  270. String
  271. Methods:<br>
  272. - void Replace(uint8, uint8)
  273. - void Replace(const String&, const String&)
  274. - String Replaced(uint8, uint8) const
  275. - String Replaced(const String&, const String&) const
  276. - void Resize(uint)
  277. - uint Find(const String&, uint arg1 = 0) const
  278. - uint Find(uint8, uint arg1 = 0) const
  279. - uint FindLast(const String&, uint arg1 = 0xffffffff) const
  280. - uint FindLast(uint8, uint arg1 = 0xffffffff) const
  281. - bool StartsWith(const String&) const
  282. - bool EndsWith(const String&) const
  283. - String Substring(uint) const
  284. - String Substring(uint, uint) const
  285. - String ToUpper() const
  286. - String ToLower() const
  287. - String Trimmed() const
  288. - void SetUTF8FromLatin1(const String&)
  289. - uint ByteOffsetUTF8(uint) const
  290. - uint NextUTF8Char(uint&) const
  291. - uint AtUTF8(uint) const
  292. - void ReplaceUTF8(uint, uint)
  293. - void AppendUTF8(uint)
  294. - String SubstringUTF8(uint) const
  295. - String SubstringUTF8(uint, uint) const
  296. - int Compare(const String&, bool arg1 = true) const
  297. - bool Contains(const String&) const
  298. - bool Contains(uint8) const
  299. - void Clear()
  300. - String[]@ Split(uint8) const
  301. - void Join(String[]&, const String&)
  302. - bool ToBool() const
  303. - float ToFloat() const
  304. - int ToInt() const
  305. - uint ToUInt() const
  306. - Color ToColor() const
  307. - IntRect ToIntRect() const
  308. - IntVector2 ToIntVector2() const
  309. - Quaternion ToQuaternion() const
  310. - Vector2 ToVector2() const
  311. - Vector3 ToVector3() const
  312. - Vector4 ToVector4(bool arg0 = false) const
  313. Properties:<br>
  314. - uint utf8Length (readonly)
  315. - uint length (readonly)
  316. - bool empty (readonly)
  317. IntVector2
  318. Methods:<br>
  319. - String ToString() const
  320. Properties:<br>
  321. - int[] data (readonly)
  322. - int x
  323. - int y
  324. IntRect
  325. Properties:<br>
  326. - int[] data (readonly)
  327. - IntVector2 size (readonly)
  328. - int width (readonly)
  329. - int height (readonly)
  330. - int left
  331. - int top
  332. - int right
  333. - int bottom
  334. Vector2
  335. Methods:<br>
  336. - float Normalize()
  337. - float DotProduct(const Vector2&) const
  338. - float AbsDotProduct(const Vector2&) const
  339. - Vector2 Lerp(const Vector2&, float) const
  340. - bool Equals(const Vector2&) const
  341. - Vector2 Normalized() const
  342. - String ToString() const
  343. Properties:<br>
  344. - float[] data (readonly)
  345. - float length (readonly)
  346. - float lengthSquared (readonly)
  347. - float x
  348. - float y
  349. Vector3
  350. Methods:<br>
  351. - float Normalize()
  352. - float DotProduct(const Vector3&) const
  353. - float AbsDotProduct(const Vector3&) const
  354. - Vector3 CrossProduct(const Vector3&) const
  355. - Vector3 Lerp(const Vector3&, float) const
  356. - bool Equals(const Vector3&) const
  357. - Vector3 Normalized() const
  358. - String ToString() const
  359. Properties:<br>
  360. - float[] data (readonly)
  361. - float length (readonly)
  362. - float lengthSquared (readonly)
  363. - float x
  364. - float y
  365. - float z
  366. Vector4
  367. Methods:<br>
  368. - float DotProduct(const Vector4&) const
  369. - float AbsDotProduct(const Vector4&) const
  370. - Vector4 Lerp(const Vector4&, float) const
  371. - bool Equals(const Vector4&) const
  372. - String ToString() const
  373. Properties:<br>
  374. - float[] data (readonly)
  375. - float x
  376. - float y
  377. - float z
  378. - float w
  379. Quaternion
  380. Methods:<br>
  381. - void FromAngleAxis(float, const Vector3&)
  382. - void FromEulerAngles(float, float, float)
  383. - void FromRotationTo(const Vector3&, const Vector3&)
  384. - void FromAxes(const Vector3&, const Vector3&, const Vector3&)
  385. - void Normalize()
  386. - Quaternion Normalized() const
  387. - Quaternion Inverse() const
  388. - float DotProduct(const Quaternion&) const
  389. - Quaternion Slerp(Quaternion, float) const
  390. - bool Equals(const Quaternion&) const
  391. - String ToString() const
  392. Properties:<br>
  393. - Vector3 eulerAngles (readonly)
  394. - float yaw (readonly)
  395. - float pitch (readonly)
  396. - float roll (readonly)
  397. - float w
  398. - float x
  399. - float y
  400. - float z
  401. Matrix3
  402. Methods:<br>
  403. - Vector3 Scale() const
  404. - Matrix3 Scaled(const Vector3&) const
  405. - void SetScale(const Vector3&)
  406. - void SetScale(float)
  407. - Matrix3 Transpose() const
  408. - Matrix3 Inverse() const
  409. - bool Equals(const Matrix3&) const
  410. Properties:<br>
  411. - float m00
  412. - float m01
  413. - float m02
  414. - float m10
  415. - float m11
  416. - float m12
  417. - float m20
  418. - float m21
  419. - float m22
  420. Matrix4
  421. Methods:<br>
  422. - Quaternion Rotation() const
  423. - Matrix3 RotationMatrix() const
  424. - Vector3 Scale() const
  425. - void SetRotation(const Matrix3&)
  426. - void SetScale(const Vector3&)
  427. - void SetScale(float)
  428. - void SetTranslation(const Vector3&)
  429. - Matrix3 ToMatrix3() const
  430. - Vector3 Translation() const
  431. - Matrix4 Transpose() const
  432. - void Decompose(Vector3&, Quaternion&, Vector3&) const
  433. - Matrix4 Inverse() const
  434. - bool Equals(const Matrix4&) const
  435. Properties:<br>
  436. - float m00
  437. - float m01
  438. - float m02
  439. - float m03
  440. - float m10
  441. - float m11
  442. - float m12
  443. - float m13
  444. - float m20
  445. - float m21
  446. - float m22
  447. - float m23
  448. - float m30
  449. - float m31
  450. - float m32
  451. - float m33
  452. Matrix3x4
  453. Methods:<br>
  454. - Quaternion Rotation() const
  455. - Matrix3 RotationMatrix() const
  456. - Vector3 Scale() const
  457. - void SetRotation(const Matrix3&)
  458. - void SetScale(const Vector3&)
  459. - void SetScale(float)
  460. - void SetTranslation(const Vector3&)
  461. - Matrix3 ToMatrix3() const
  462. - Vector3 Translation() const
  463. - void Decompose(Vector3&, Quaternion&, Vector3&) const
  464. - Matrix3x4 Inverse() const
  465. - bool Equals(const Matrix3x4&) const
  466. Properties:<br>
  467. - float m00
  468. - float m01
  469. - float m02
  470. - float m03
  471. - float m10
  472. - float m11
  473. - float m12
  474. - float m13
  475. - float m20
  476. - float m21
  477. - float m22
  478. - float m23
  479. Rect
  480. Methods:<br>
  481. - void Define(const Vector2&, const Vector2&)
  482. - void Define(const Vector2&)
  483. - void Merge(const Vector2&)
  484. - void Merge(const Rect&)
  485. - void Clip(const Rect&)
  486. - void Clear()
  487. - bool Equals(const Rect&) const
  488. - Vector4 ToVector4() const
  489. Properties:<br>
  490. - Vector2 center (readonly)
  491. - Vector2 size (readonly)
  492. - Vector2 halfSize (readonly)
  493. - Vector2 min
  494. - Vector2 max
  495. - float left
  496. - float top
  497. - float right
  498. - float bottom
  499. - bool defined
  500. BoundingBox
  501. Methods:<br>
  502. - void Define(const Vector3&, const Vector3&)
  503. - void Define(float, float)
  504. - void Define(const Vector3&)
  505. - void Define(const BoundingBox&)
  506. - void Define(const Frustum&)
  507. - void Define(const Polyhedron&)
  508. - void Define(const Sphere&)
  509. - void Merge(const Vector3&)
  510. - void Merge(const BoundingBox&)
  511. - void Merge(const Frustum&)
  512. - void Merge(const Polyhedron&)
  513. - void Merge(const Sphere&)
  514. - void Clip(const BoundingBox&)
  515. - void Clear()
  516. - void Transform(const Matrix3&)
  517. - void Transform(const Matrix3x4&)
  518. - Intersection IsInside(const Vector3&) const
  519. - Intersection IsInside(const Sphere&) const
  520. - Intersection IsInside(const BoundingBox&) const
  521. - BoundingBox Transformed(const Matrix3&) const
  522. - BoundingBox Transformed(const Matrix3x4&) const
  523. - Rect Projected(const Matrix4&) const
  524. - String ToString() const
  525. Properties:<br>
  526. - Vector3 center (readonly)
  527. - Vector3 size (readonly)
  528. - Vector3 halfSize (readonly)
  529. - Vector3 min
  530. - Vector3 max
  531. - bool defined
  532. Frustum
  533. Methods:<br>
  534. - void Define(float, float, float, float, float, const Matrix3x4&)
  535. - void Define(const Vector3&, const Vector3&, const Matrix3x4&)
  536. - void Define(const BoundingBox&, const Matrix3x4&)
  537. - void DefineOrtho(float, float, float, float, float, const Matrix3x4&)
  538. - void Transform(const Matrix3&)
  539. - void Transform(const Matrix3x4&)
  540. - Intersection IsInside(const Vector3&)
  541. - Intersection IsInside(const BoundingBox&)
  542. - Intersection IsInside(const Sphere&)
  543. - float Distance(const Vector3&) const
  544. - Frustum Transformed(const Matrix3&) const
  545. - Frustum Transformed(const Matrix3x4&) const
  546. Properties:<br>
  547. - Vector3[] vertices (readonly)
  548. Polyhedron
  549. Methods:<br>
  550. - void AddFace(const Vector3&, const Vector3&, const Vector3&)
  551. - void AddFace(const Vector3&, const Vector3&, const Vector3&, const Vector3&)
  552. - void AddFace(const Vector3[]@)
  553. - void Define(const BoundingBox&)
  554. - void Define(const Frustum&)
  555. - void Clip(const BoundingBox&)
  556. - void Clip(const Frustum&)
  557. - void Clear()
  558. - void Transform(const Matrix3&)
  559. - void Transform(const Matrix3x4&)
  560. - Polyhedron Transformed(const Matrix3&) const
  561. - Polyhedron Transformed(const Matrix3x4&) const
  562. Properties:<br>
  563. - uint numFaces (readonly)
  564. - Vector3[]@[] face (readonly)
  565. Sphere
  566. Methods:<br>
  567. - void Define(const Vector3&, float)
  568. - void Define(const BoundingBox&)
  569. - void Define(const Frustum&)
  570. - void Define(const Polyhedron&)
  571. - void Define(const Sphere&)
  572. - void Merge(const Vector3&)
  573. - void Merge(const BoundingBox&)
  574. - void Merge(const Frustum&)
  575. - void Merge(const Sphere&)
  576. - void Clear()
  577. - Intersection IsInside(const Vector3&) const
  578. - Intersection IsInside(const Sphere&) const
  579. - Intersection IsInside(const BoundingBox&) const
  580. - float Distance(const Vector3&) const
  581. Properties:<br>
  582. - Vector3 center
  583. - float radius
  584. - bool defined
  585. Plane
  586. Methods:<br>
  587. - void Define(const Vector3&, const Vector3&, const Vector3&)
  588. - void Define(const Vector3&, const Vector3&)
  589. - float Distance(const Vector3&) const
  590. Properties:<br>
  591. - Vector3 normal
  592. - Vector3 absNormal
  593. - float intercept
  594. Ray
  595. Methods:<br>
  596. - void Define(const Vector3&, const Vector3&)
  597. - Vector3 Project(const Vector3&) const
  598. - float Distance(const Vector3&) const
  599. - Vector3 ClosestPoint(const Ray&) const
  600. - float HitDistance(const Sphere&) const
  601. - float HitDistance(const BoundingBox&) const
  602. - float HitDistance(const Frustum&, bool arg1 = true) const
  603. - float HitDistance(const Vector3&, const Vector3&, const Vector3&) const
  604. Properties:<br>
  605. - Vector3 origin
  606. - Vector3 direction
  607. Color
  608. Methods:<br>
  609. - Color Lerp(const Color&, float) const
  610. - String ToString() const
  611. Properties:<br>
  612. - float[] data (readonly)
  613. - Vector3 rgb (readonly)
  614. - float intensity (readonly)
  615. - float r
  616. - float g
  617. - float b
  618. - float a
  619. StringHash
  620. Methods:<br>
  621. - String ToString() const
  622. Properties:<br>
  623. - uint value (readonly)
  624. ShortStringHash
  625. Methods:<br>
  626. - String ToString() const
  627. Properties:<br>
  628. - uint16 value (readonly)
  629. ResourceRef
  630. Properties:<br>
  631. - ShortStringHash type
  632. - StringHash id
  633. ResourceRefList
  634. Methods:<br>
  635. - void Resize(uint)
  636. Properties:<br>
  637. - uint length (readonly)
  638. - bool empty (readonly)
  639. - StringHash[] ids
  640. - ShortStringHash type
  641. Variant
  642. Methods:<br>
  643. - void Clear()
  644. - int GetInt() const
  645. - uint GetUInt() const
  646. - StringHash GetStringHash() const
  647. - ShortStringHash GetShortStringHash() const
  648. - bool GetBool() const
  649. - float GetFloat() const
  650. - const Vector2& GetVector2() const
  651. - const Vector3& GetVector3() const
  652. - const Vector4& GetVector4() const
  653. - const Quaternion& GetQuaternion() const
  654. - const Color& GetColor() const
  655. - const String& GetString() const
  656. - const ResourceRef& GetResourceRef() const
  657. - const ResourceRefList& GetResourceRefList() const
  658. - Variant[]@ GetVariantVector() const
  659. - const VariantMap& GetVariantMap() const
  660. - const IntRect& GetIntRect() const
  661. - const IntVector2& GetIntVector2() const
  662. - void FromString(const String&, const String&)
  663. - void FromString(VariantType, const String&)
  664. - String ToString() const
  665. - VectorBuffer GetBuffer() const
  666. - Node@ GetNode() const
  667. - Component@ GetComponent() const
  668. - Scene@ GetScene() const
  669. - Camera@ GetCamera() const
  670. - RenderSurface@ GetRenderSurface() const
  671. - Texture@ GetTexture() const
  672. - UIElement@ GetUIElement() const
  673. - Connection@ GetConnection() const
  674. - CollisionShape@ GetCollisionShape() const
  675. - RigidBody@ GetRigidBody() const
  676. - PhysicsWorld@ GetPhysicsWorld() const
  677. Properties:<br>
  678. - bool zero (readonly)
  679. - bool empty (readonly)
  680. - VariantType type (readonly)
  681. - String typeName (readonly)
  682. VariantMap
  683. Methods:<br>
  684. - bool Contains(const String&) const
  685. - bool Erase(const String&)
  686. - bool Contains(ShortStringHash) const
  687. - bool Erase(ShortStringHash)
  688. - void Clear()
  689. Properties:<br>
  690. - uint length (readonly)
  691. - ShortStringHash[]@ keys (readonly)
  692. AttributeInfo
  693. Properties:<br>
  694. - String[]@ enumNames (readonly)
  695. - VariantType type
  696. - String name
  697. - Variant defaultValue
  698. - uint mode
  699. Object
  700. Methods:<br>
  701. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  702. Properties:<br>
  703. - ShortStringHash type (readonly)
  704. - String typeName (readonly)
  705. - String category (readonly)
  706. - int refs (readonly)
  707. - int weakRefs (readonly)
  708. WeakHandle
  709. Methods:<br>
  710. - Object@ Get() const
  711. Properties:<br>
  712. - int refs (readonly)
  713. - int weakRefs (readonly)
  714. - bool expired (readonly)
  715. Timer
  716. Methods:<br>
  717. - uint GetMSec(bool)
  718. - void Reset()
  719. Time
  720. Methods:<br>
  721. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  722. Properties:<br>
  723. - ShortStringHash type (readonly)
  724. - String typeName (readonly)
  725. - String category (readonly)
  726. - int refs (readonly)
  727. - int weakRefs (readonly)
  728. - uint frameNumber (readonly)
  729. - float timeStep (readonly)
  730. - float elapsedTime (readonly)
  731. - uint systemTime (readonly)
  732. - String timeStamp (readonly)
  733. Log
  734. Methods:<br>
  735. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  736. - void Write(const String&, bool arg1 = false)
  737. - void Debug(const String&)
  738. - void Info(const String&)
  739. - void Warning(const String&)
  740. - void Error(const String&)
  741. Properties:<br>
  742. - ShortStringHash type (readonly)
  743. - String typeName (readonly)
  744. - String category (readonly)
  745. - int refs (readonly)
  746. - int weakRefs (readonly)
  747. - int level
  748. - bool timeStamp
  749. - String lastMessage (readonly)
  750. - bool quiet
  751. Serializer
  752. Methods:<br>
  753. - bool WriteInt(int)
  754. - bool WriteShort(int16)
  755. - bool WriteByte(int8)
  756. - bool WriteUInt(uint)
  757. - bool WriteUShort(uint16)
  758. - bool WriteUByte(uint8)
  759. - bool WriteBool(bool)
  760. - bool WriteFloat(float)
  761. - bool WriteIntRect(const IntRect&)
  762. - bool WriteIntVector2(const IntVector2&)
  763. - bool WriteVector2(const Vector2&)
  764. - bool WriteVector3(const Vector3&)
  765. - bool WritePackedVector3(const Vector3&, float)
  766. - bool WriteVector4(const Vector4&)
  767. - bool WriteQuaternion(const Quaternion&)
  768. - bool WritePackedQuaternion(const Quaternion&)
  769. - bool WriteColor(const Color&)
  770. - bool WriteBoundingBox(const BoundingBox&)
  771. - bool WriteString(const String&)
  772. - bool WriteFileID(const String&)
  773. - bool WriteStringHash(const StringHash&)
  774. - bool WriteShortStringHash(const ShortStringHash&)
  775. - bool WriteVariant(const Variant&)
  776. - bool WriteVariantMap(const VariantMap&)
  777. - bool WriteVLE(uint)
  778. - bool WriteNetID(uint)
  779. - bool WriteLine(const String&)
  780. Deserializer
  781. Methods:<br>
  782. - int ReadInt()
  783. - int16 ReadShort()
  784. - int8 ReadByte()
  785. - uint ReadUInt()
  786. - uint16 ReadUShort()
  787. - uint8 ReadUByte()
  788. - bool ReadBool()
  789. - float ReadFloat()
  790. - IntRect ReadIntRect()
  791. - IntVector2 ReadIntVector2()
  792. - Vector2 ReadVector2()
  793. - Vector3 ReadVector3()
  794. - Vector3 ReadPackedVector3(float)
  795. - Vector4 ReadVector4()
  796. - Quaternion ReadQuaternion()
  797. - Quaternion ReadPackedQuaternion()
  798. - Color ReadColor()
  799. - BoundingBox ReadBoundingBox()
  800. - String ReadString()
  801. - String ReadFileID()
  802. - StringHash ReadStringHash()
  803. - ShortStringHash ReadShortStringHash()
  804. - Variant ReadVariant()
  805. - VariantMap ReadVariantMap()
  806. - uint ReadVLE()
  807. - uint ReadNetID()
  808. - String ReadLine()
  809. - uint Seek(uint)
  810. Properties:<br>
  811. - String name (readonly)
  812. - uint checksum (readonly)
  813. - uint position (readonly)
  814. - uint size (readonly)
  815. - bool eof (readonly)
  816. File
  817. Methods:<br>
  818. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  819. - bool Open(const String&, FileMode arg1 = FILE_READ)
  820. - void Close()
  821. - bool WriteInt(int)
  822. - bool WriteShort(int16)
  823. - bool WriteByte(int8)
  824. - bool WriteUInt(uint)
  825. - bool WriteUShort(uint16)
  826. - bool WriteUByte(uint8)
  827. - bool WriteBool(bool)
  828. - bool WriteFloat(float)
  829. - bool WriteIntRect(const IntRect&)
  830. - bool WriteIntVector2(const IntVector2&)
  831. - bool WriteVector2(const Vector2&)
  832. - bool WriteVector3(const Vector3&)
  833. - bool WritePackedVector3(const Vector3&, float)
  834. - bool WriteVector4(const Vector4&)
  835. - bool WriteQuaternion(const Quaternion&)
  836. - bool WritePackedQuaternion(const Quaternion&)
  837. - bool WriteColor(const Color&)
  838. - bool WriteBoundingBox(const BoundingBox&)
  839. - bool WriteString(const String&)
  840. - bool WriteFileID(const String&)
  841. - bool WriteStringHash(const StringHash&)
  842. - bool WriteShortStringHash(const ShortStringHash&)
  843. - bool WriteVariant(const Variant&)
  844. - bool WriteVariantMap(const VariantMap&)
  845. - bool WriteVLE(uint)
  846. - bool WriteNetID(uint)
  847. - bool WriteLine(const String&)
  848. - int ReadInt()
  849. - int16 ReadShort()
  850. - int8 ReadByte()
  851. - uint ReadUInt()
  852. - uint16 ReadUShort()
  853. - uint8 ReadUByte()
  854. - bool ReadBool()
  855. - float ReadFloat()
  856. - IntRect ReadIntRect()
  857. - IntVector2 ReadIntVector2()
  858. - Vector2 ReadVector2()
  859. - Vector3 ReadVector3()
  860. - Vector3 ReadPackedVector3(float)
  861. - Vector4 ReadVector4()
  862. - Quaternion ReadQuaternion()
  863. - Quaternion ReadPackedQuaternion()
  864. - Color ReadColor()
  865. - BoundingBox ReadBoundingBox()
  866. - String ReadString()
  867. - String ReadFileID()
  868. - StringHash ReadStringHash()
  869. - ShortStringHash ReadShortStringHash()
  870. - Variant ReadVariant()
  871. - VariantMap ReadVariantMap()
  872. - uint ReadVLE()
  873. - uint ReadNetID()
  874. - String ReadLine()
  875. - uint Seek(uint)
  876. Properties:<br>
  877. - ShortStringHash type (readonly)
  878. - String typeName (readonly)
  879. - String category (readonly)
  880. - int refs (readonly)
  881. - int weakRefs (readonly)
  882. - FileMode mode (readonly)
  883. - bool open (readonly)
  884. - bool packaged (readonly)
  885. - String name (readonly)
  886. - uint checksum (readonly)
  887. - uint position (readonly)
  888. - uint size (readonly)
  889. - bool eof (readonly)
  890. VectorBuffer
  891. Methods:<br>
  892. - void SetData(Deserializer@, uint)
  893. - void Clear()
  894. - void Resize(uint)
  895. - bool WriteInt(int)
  896. - bool WriteShort(int16)
  897. - bool WriteByte(int8)
  898. - bool WriteUInt(uint)
  899. - bool WriteUShort(uint16)
  900. - bool WriteUByte(uint8)
  901. - bool WriteBool(bool)
  902. - bool WriteFloat(float)
  903. - bool WriteIntRect(const IntRect&)
  904. - bool WriteIntVector2(const IntVector2&)
  905. - bool WriteVector2(const Vector2&)
  906. - bool WriteVector3(const Vector3&)
  907. - bool WritePackedVector3(const Vector3&, float)
  908. - bool WriteVector4(const Vector4&)
  909. - bool WriteQuaternion(const Quaternion&)
  910. - bool WritePackedQuaternion(const Quaternion&)
  911. - bool WriteColor(const Color&)
  912. - bool WriteBoundingBox(const BoundingBox&)
  913. - bool WriteString(const String&)
  914. - bool WriteFileID(const String&)
  915. - bool WriteStringHash(const StringHash&)
  916. - bool WriteShortStringHash(const ShortStringHash&)
  917. - bool WriteVariant(const Variant&)
  918. - bool WriteVariantMap(const VariantMap&)
  919. - bool WriteVLE(uint)
  920. - bool WriteNetID(uint)
  921. - bool WriteLine(const String&)
  922. - int ReadInt()
  923. - int16 ReadShort()
  924. - int8 ReadByte()
  925. - uint ReadUInt()
  926. - uint16 ReadUShort()
  927. - uint8 ReadUByte()
  928. - bool ReadBool()
  929. - float ReadFloat()
  930. - IntRect ReadIntRect()
  931. - IntVector2 ReadIntVector2()
  932. - Vector2 ReadVector2()
  933. - Vector3 ReadVector3()
  934. - Vector3 ReadPackedVector3(float)
  935. - Vector4 ReadVector4()
  936. - Quaternion ReadQuaternion()
  937. - Quaternion ReadPackedQuaternion()
  938. - Color ReadColor()
  939. - BoundingBox ReadBoundingBox()
  940. - String ReadString()
  941. - String ReadFileID()
  942. - StringHash ReadStringHash()
  943. - ShortStringHash ReadShortStringHash()
  944. - Variant ReadVariant()
  945. - VariantMap ReadVariantMap()
  946. - uint ReadVLE()
  947. - uint ReadNetID()
  948. - String ReadLine()
  949. - uint Seek(uint)
  950. Properties:<br>
  951. - String name (readonly)
  952. - uint checksum (readonly)
  953. - uint position (readonly)
  954. - uint size (readonly)
  955. - bool eof (readonly)
  956. FileSystem
  957. Methods:<br>
  958. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  959. - bool FileExists(const String&) const
  960. - bool DirExists(const String&) const
  961. - uint GetLastModifiedTime(const String&) const
  962. - String[]@ ScanDir(const String&, const String&, uint, bool) const
  963. - bool CreateDir(const String&)
  964. - int SystemCommand(const String&)
  965. - int SystemRun(const String&, String[]@)
  966. - bool SystemOpen(const String&, const String&)
  967. - bool Copy(const String&, const String&)
  968. - bool Rename(const String&, const String&)
  969. - bool Delete(const String&)
  970. Properties:<br>
  971. - ShortStringHash type (readonly)
  972. - String typeName (readonly)
  973. - String category (readonly)
  974. - int refs (readonly)
  975. - int weakRefs (readonly)
  976. - String currentDir
  977. - String programDir (readonly)
  978. - String userDocumentsDir (readonly)
  979. PackageFile
  980. Methods:<br>
  981. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  982. - bool Open(const String&) const
  983. - bool Exists(const String&) const
  984. Properties:<br>
  985. - ShortStringHash type (readonly)
  986. - String typeName (readonly)
  987. - String category (readonly)
  988. - int refs (readonly)
  989. - int weakRefs (readonly)
  990. - String name (readonly)
  991. - uint numFiles (readonly)
  992. - uint totalSize (readonly)
  993. - uint checksum (readonly)
  994. Resource
  995. Methods:<br>
  996. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  997. - bool Load(File@)
  998. - bool Save(File@) const
  999. Properties:<br>
  1000. - ShortStringHash type (readonly)
  1001. - String typeName (readonly)
  1002. - String category (readonly)
  1003. - int refs (readonly)
  1004. - int weakRefs (readonly)
  1005. - String name
  1006. - uint memoryUse (readonly)
  1007. - uint useTimer (readonly)
  1008. ResourceCache
  1009. Methods:<br>
  1010. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1011. - bool AddResourceDir(const String&)
  1012. - void AddPackageFile(PackageFile@, bool arg1 = false)
  1013. - bool AddManualResource(Resource@)
  1014. - void RemoveResourceDir(const String&)
  1015. - void RemovePackageFile(PackageFile@, bool arg1 = true, bool arg2 = false)
  1016. - void RemovePackageFile(const String&, bool arg1 = true, bool arg2 = false)
  1017. - void ReleaseResource(const String&, const String&, bool arg2 = false)
  1018. - void ReleaseResources(const String&, bool arg1 = false)
  1019. - void ReleaseResources(const String&, const String&, bool arg2 = false)
  1020. - void ReleaseAllResources(bool arg0 = false)
  1021. - bool ReloadResource(Resource@)
  1022. - bool Exists(const String&) const
  1023. - File@ GetFile(const String&)
  1024. - String GetPreferredResourceDir(const String&) const
  1025. - String SanitateResourceName(const String&) const
  1026. - const String& GetResourceName(StringHash) const
  1027. - String GetResourceFileName(const String&) const
  1028. - Resource@ GetResource(const String&, const String&)
  1029. - Resource@ GetResource(ShortStringHash, StringHash)
  1030. Properties:<br>
  1031. - ShortStringHash type (readonly)
  1032. - String typeName (readonly)
  1033. - String category (readonly)
  1034. - int refs (readonly)
  1035. - int weakRefs (readonly)
  1036. - uint[] memoryBudget
  1037. - uint[] memoryUse (readonly)
  1038. - uint totalMemoryUse (readonly)
  1039. - String[]@ resourceDirs (readonly)
  1040. - PackageFile@[]@ packageFiles (readonly)
  1041. - bool autoReloadResources
  1042. Image
  1043. Methods:<br>
  1044. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1045. - bool Load(File@)
  1046. - bool Save(File@) const
  1047. - void FlipVertical()
  1048. - void SaveBMP(const String&)
  1049. - void SavePNG(const String&)
  1050. - void SaveTGA(const String&)
  1051. - void SaveJPG(const String&, int)
  1052. Properties:<br>
  1053. - ShortStringHash type (readonly)
  1054. - String typeName (readonly)
  1055. - String category (readonly)
  1056. - int refs (readonly)
  1057. - int weakRefs (readonly)
  1058. - String name
  1059. - uint memoryUse (readonly)
  1060. - uint useTimer (readonly)
  1061. - int width (readonly)
  1062. - int height (readonly)
  1063. - uint components (readonly)
  1064. - bool compressed (readonly)
  1065. XMLFile
  1066. Methods:<br>
  1067. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1068. - bool Load(File@)
  1069. - bool Save(File@) const
  1070. - XMLElement CreateRoot(const String&)
  1071. - XMLElement GetRoot(const String& arg0 = String ( ))
  1072. Properties:<br>
  1073. - ShortStringHash type (readonly)
  1074. - String typeName (readonly)
  1075. - String category (readonly)
  1076. - int refs (readonly)
  1077. - int weakRefs (readonly)
  1078. - String name
  1079. - uint memoryUse (readonly)
  1080. - uint useTimer (readonly)
  1081. - XMLElement root (readonly)
  1082. XMLElement
  1083. Methods:<br>
  1084. - XMLElement CreateChild(const String&)
  1085. - bool RemoveChild(const XMLElement&)
  1086. - bool RemoveChild(const String&)
  1087. - bool RemoveChildren(const String& arg0 = String ( ))
  1088. - bool RemoveAttribute(const String& arg0 = String ( ))
  1089. - XMLElement SelectSingle(const String&)
  1090. - XMLElement SelectSinglePrepared(const XPathQuery&)
  1091. - XPathResultSet Select(const String&)
  1092. - XPathResultSet SelectPrepared(const XPathQuery&)
  1093. - bool SetAttribute(const String&, const String&)
  1094. - bool SetAttribute(const String&)
  1095. - bool SetBool(const String&, bool)
  1096. - bool SetBoundingBox(const BoundingBox&)
  1097. - bool SetColor(const String&, const Color&)
  1098. - bool SetFloat(const String&, float)
  1099. - bool SetInt(const String&, int)
  1100. - bool SetUInt(const String&, uint)
  1101. - bool SetQuaternion(const String&, const Quaternion&)
  1102. - bool SetVariant(const Variant&)
  1103. - bool SetResourceRef(const String&, const ResourceRef&)
  1104. - bool SetResourceRefList(const String&, const ResourceRefList&)
  1105. - bool SetVariantVector(Variant[]@)
  1106. - bool SetVariantMap(const VariantMap&)
  1107. - bool SetVector2(const String&, const Vector2&)
  1108. - bool SetVector3(const String&, const Vector3&)
  1109. - bool SetVector4(const String&, const Vector3&)
  1110. - bool HasAttribute(const String&) const
  1111. - String GetAttribute(const String& arg0 = String ( )) const
  1112. - String GetAttributeLower(const String&) const
  1113. - String GetAttributeUpper(const String&) const
  1114. - String[]@ GetAttributeNames() const
  1115. - bool HasChild(const String&) const
  1116. - XMLElement GetChild(const String& arg0 = String ( )) const
  1117. - XMLElement GetNext(const String& arg0 = String ( )) const
  1118. - bool GetBool(const String&) const
  1119. - BoundingBox GetBoundingBox() const
  1120. - Color GetColor(const String&) const
  1121. - float GetFloat(const String&) const
  1122. - uint GetUInt(const String&) const
  1123. - int GetInt(const String&) const
  1124. - Quaternion GetQuaternion(const String&) const
  1125. - Variant GetVariant() const
  1126. - ResourceRef GetResourceRef() const
  1127. - ResourceRefList GetResourceRefList() const
  1128. - Variant[]@ GetVariantVector() const
  1129. - VariantMap GetVariantMap() const
  1130. - Vector2 GetVector2(const String&) const
  1131. - Vector3 GetVector3(const String&) const
  1132. - Vector4 GetVector4(const String&) const
  1133. Properties:<br>
  1134. - String name (readonly)
  1135. - uint numAttributes (readonly)
  1136. - bool isNull (readonly)
  1137. - bool notNull (readonly)
  1138. - XMLElement parent (readonly)
  1139. - XMLFile@ file (readonly)
  1140. - XMLElement nextResult (readonly)
  1141. XPathResultSet
  1142. Properties:<br>
  1143. - XMLElement firstResult (readonly)
  1144. - uint size (readonly)
  1145. - bool empty (readonly)
  1146. XPathQuery
  1147. Methods:<br>
  1148. - void Bind()
  1149. - bool SetVariable(const String&, bool)
  1150. - bool SetVariable(const String&, float)
  1151. - bool SetVariable(const String&, const String&)
  1152. - bool SetVariable(const String&, const XPathResultSet&)
  1153. - bool SetQuery(const String&, const String& arg1 = String ( ), bool arg2 = true)
  1154. - void Clear()
  1155. - bool EvaluateToBool(XMLElement)
  1156. - float EvaluateToFloat(XMLElement)
  1157. - String EvaluateToString(XMLElement)
  1158. - XPathResultSet Evaluate(XMLElement)
  1159. Properties:<br>
  1160. - String query
  1161. Serializable
  1162. Methods:<br>
  1163. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1164. - bool Load(File@, bool arg1 = false)
  1165. - bool Save(File@) const
  1166. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1167. - bool SaveXML(XMLElement&) const
  1168. - void ApplyAttributes()
  1169. - bool SetAttribute(const String&, const Variant&)
  1170. - void ResetToDefault()
  1171. - void RemoveInstanceDefault()
  1172. - Variant GetAttribute(const String&) const
  1173. - Variant GetAttributeDefault(const String&) const
  1174. Properties:<br>
  1175. - ShortStringHash type (readonly)
  1176. - String typeName (readonly)
  1177. - String category (readonly)
  1178. - int refs (readonly)
  1179. - int weakRefs (readonly)
  1180. - uint numAttributes (readonly)
  1181. - Variant[] attributes
  1182. - Variant[] attributeDefaults (readonly)
  1183. - AttributeInfo[] attributeInfos (readonly)
  1184. Component
  1185. Methods:<br>
  1186. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1187. - bool Load(File@, bool arg1 = false)
  1188. - bool Save(File@) const
  1189. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1190. - bool SaveXML(XMLElement&) const
  1191. - void ApplyAttributes()
  1192. - bool SetAttribute(const String&, const Variant&)
  1193. - void ResetToDefault()
  1194. - void RemoveInstanceDefault()
  1195. - Variant GetAttribute(const String&) const
  1196. - Variant GetAttributeDefault(const String&) const
  1197. - void Remove()
  1198. - void MarkNetworkUpdate() const
  1199. - void DrawDebugGeometry(DebugRenderer@, bool)
  1200. Properties:<br>
  1201. - ShortStringHash type (readonly)
  1202. - String typeName (readonly)
  1203. - String category (readonly)
  1204. - int refs (readonly)
  1205. - int weakRefs (readonly)
  1206. - uint numAttributes (readonly)
  1207. - Variant[] attributes
  1208. - Variant[] attributeDefaults (readonly)
  1209. - AttributeInfo[] attributeInfos (readonly)
  1210. - bool enabled
  1211. - bool enabledEffective (readonly)
  1212. - uint id (readonly)
  1213. - Node@ node (readonly)
  1214. Node
  1215. Methods:<br>
  1216. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1217. - bool Load(File@, bool arg1 = false)
  1218. - bool Save(File@) const
  1219. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1220. - bool SaveXML(XMLElement&) const
  1221. - void ApplyAttributes()
  1222. - bool SetAttribute(const String&, const Variant&)
  1223. - void ResetToDefault()
  1224. - void RemoveInstanceDefault()
  1225. - Variant GetAttribute(const String&) const
  1226. - Variant GetAttributeDefault(const String&) const
  1227. - void SetScale(float)
  1228. - void SetTransform(const Vector3&, const Quaternion&)
  1229. - void SetTransform(const Vector3&, const Quaternion&, float)
  1230. - void SetTransform(const Vector3&, const Quaternion&, const Vector3&)
  1231. - void SetWorldTransform(const Vector3&, const Quaternion&)
  1232. - void SetWorldTransform(const Vector3&, const Quaternion&, float)
  1233. - void SetWorldTransform(const Vector3&, const Quaternion&, const Vector3&)
  1234. - void Translate(const Vector3&)
  1235. - void TranslateRelative(const Vector3&)
  1236. - void Rotate(const Quaternion&, bool arg1 = false)
  1237. - void Pitch(float, bool arg1 = false)
  1238. - void Yaw(float, bool arg1 = false)
  1239. - void Roll(float, bool arg1 = false)
  1240. - void LookAt(const Vector3&, const Vector3& arg1 = Vector3 ( 0 , 1 , 0 ))
  1241. - void Scale(float)
  1242. - void Scale(const Vector3&)
  1243. - Node@ CreateChild(const String& arg0 = "", CreateMode arg1 = REPLICATED, uint arg2 = 0)
  1244. - void AddChild(Node@)
  1245. - void RemoveChild(Node@)
  1246. - void RemoveAllChildren()
  1247. - void Remove()
  1248. - Component@ CreateComponent(const String&, CreateMode arg1 = REPLICATED, uint arg2 = 0)
  1249. - Component@ GetOrCreateComponent(const String&, CreateMode arg1 = REPLICATED, uint arg2 = 0)
  1250. - void RemoveComponent(Component@)
  1251. - void RemoveComponent(const String&)
  1252. - Node@[]@ GetChildren(bool arg0 = false) const
  1253. - Node@[]@ GetChildrenWithComponent(const String&, bool arg1 = false) const
  1254. - Node@[]@ GetChildrenWithScript(bool arg0 = false) const
  1255. - Node@[]@ GetChildrenWithScript(const String&, bool arg1 = false) const
  1256. - Node@ GetChild(const String&, bool arg1 = false) const
  1257. - Component@[]@ GetComponents() const
  1258. - Component@[]@ GetComponents(const String&, bool arg1 = false) const
  1259. - Component@ GetComponent(const String&) const
  1260. - bool HasComponent(const String&) const
  1261. - Vector3 LocalToWorld(const Vector3&) const
  1262. - Vector3 LocalToWorld(const Vector4&) const
  1263. - Vector3 WorldToLocal(const Vector3&) const
  1264. - Vector3 WorldToLocal(const Vector4&) const
  1265. - void SetEnabled(bool, bool)
  1266. - bool SaveXML(File@)
  1267. - Node@ Clone(CreateMode arg0 = REPLICATED)
  1268. - ScriptObject@ CreateScriptObject(ScriptFile@, const String&, CreateMode arg2 = REPLICATED)
  1269. - ScriptObject@ CreateScriptObject(const String&, const String&, CreateMode arg2 = REPLICATED)
  1270. - ScriptObject@ GetScriptObject() const
  1271. - ScriptObject@ GetScriptObject(const String&) const
  1272. Properties:<br>
  1273. - ShortStringHash type (readonly)
  1274. - String typeName (readonly)
  1275. - String category (readonly)
  1276. - int refs (readonly)
  1277. - int weakRefs (readonly)
  1278. - uint numAttributes (readonly)
  1279. - Variant[] attributes
  1280. - Variant[] attributeDefaults (readonly)
  1281. - AttributeInfo[] attributeInfos (readonly)
  1282. - Vector3 position
  1283. - Quaternion rotation
  1284. - Vector3 direction
  1285. - Vector3 scale
  1286. - Vector3 worldPosition
  1287. - Quaternion worldRotation
  1288. - Vector3 worldDirection
  1289. - Vector3 worldScale
  1290. - Matrix3x4 transform (readonly)
  1291. - Matrix3x4 worldTransform (readonly)
  1292. - uint id (readonly)
  1293. - uint numChildren (readonly)
  1294. - uint numAllChildren (readonly)
  1295. - Node@[] children (readonly)
  1296. - uint numComponents (readonly)
  1297. - Component@[] components (readonly)
  1298. - String name
  1299. - Node@ parent
  1300. - VariantMap vars (readonly)
  1301. - bool enabled
  1302. - Scene@ scene (readonly)
  1303. - Connection@ owner
  1304. - ScriptObject@ scriptObject (readonly)
  1305. SmoothedTransform
  1306. Methods:<br>
  1307. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1308. - bool Load(File@, bool arg1 = false)
  1309. - bool Save(File@) const
  1310. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1311. - bool SaveXML(XMLElement&) const
  1312. - void ApplyAttributes()
  1313. - bool SetAttribute(const String&, const Variant&)
  1314. - void ResetToDefault()
  1315. - void RemoveInstanceDefault()
  1316. - Variant GetAttribute(const String&) const
  1317. - Variant GetAttributeDefault(const String&) const
  1318. - void Remove()
  1319. - void MarkNetworkUpdate() const
  1320. - void Update(float, float)
  1321. - void DrawDebugGeometry(DebugRenderer@, bool)
  1322. Properties:<br>
  1323. - ShortStringHash type (readonly)
  1324. - String typeName (readonly)
  1325. - String category (readonly)
  1326. - int refs (readonly)
  1327. - int weakRefs (readonly)
  1328. - uint numAttributes (readonly)
  1329. - Variant[] attributes
  1330. - Variant[] attributeDefaults (readonly)
  1331. - AttributeInfo[] attributeInfos (readonly)
  1332. - bool enabled
  1333. - bool enabledEffective (readonly)
  1334. - uint id (readonly)
  1335. - Node@ node (readonly)
  1336. - Vector3 targetPosition
  1337. - Quaternion targetRotation
  1338. - Vector3 targetWorldPosition
  1339. - Quaternion targetWorldRotation
  1340. - bool inProgress (readonly)
  1341. Scene
  1342. Methods:<br>
  1343. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1344. - bool Load(File@, bool arg1 = false)
  1345. - bool Save(File@) const
  1346. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1347. - bool SaveXML(XMLElement&) const
  1348. - void ApplyAttributes()
  1349. - bool SetAttribute(const String&, const Variant&)
  1350. - void ResetToDefault()
  1351. - void RemoveInstanceDefault()
  1352. - Variant GetAttribute(const String&) const
  1353. - Variant GetAttributeDefault(const String&) const
  1354. - void SetScale(float)
  1355. - void SetTransform(const Vector3&, const Quaternion&)
  1356. - void SetTransform(const Vector3&, const Quaternion&, float)
  1357. - void SetTransform(const Vector3&, const Quaternion&, const Vector3&)
  1358. - void SetWorldTransform(const Vector3&, const Quaternion&)
  1359. - void SetWorldTransform(const Vector3&, const Quaternion&, float)
  1360. - void SetWorldTransform(const Vector3&, const Quaternion&, const Vector3&)
  1361. - void Translate(const Vector3&)
  1362. - void TranslateRelative(const Vector3&)
  1363. - void Rotate(const Quaternion&, bool arg1 = false)
  1364. - void Pitch(float, bool arg1 = false)
  1365. - void Yaw(float, bool arg1 = false)
  1366. - void Roll(float, bool arg1 = false)
  1367. - void LookAt(const Vector3&, const Vector3& arg1 = Vector3 ( 0 , 1 , 0 ))
  1368. - void Scale(float)
  1369. - void Scale(const Vector3&)
  1370. - Node@ CreateChild(const String& arg0 = "", CreateMode arg1 = REPLICATED, uint arg2 = 0)
  1371. - void AddChild(Node@)
  1372. - void RemoveChild(Node@)
  1373. - void RemoveAllChildren()
  1374. - void Remove()
  1375. - Component@ CreateComponent(const String&, CreateMode arg1 = REPLICATED, uint arg2 = 0)
  1376. - Component@ GetOrCreateComponent(const String&, CreateMode arg1 = REPLICATED, uint arg2 = 0)
  1377. - void RemoveComponent(Component@)
  1378. - void RemoveComponent(const String&)
  1379. - Node@[]@ GetChildren(bool arg0 = false) const
  1380. - Node@[]@ GetChildrenWithComponent(const String&, bool arg1 = false) const
  1381. - Node@[]@ GetChildrenWithScript(bool arg0 = false) const
  1382. - Node@[]@ GetChildrenWithScript(const String&, bool arg1 = false) const
  1383. - Node@ GetChild(const String&, bool arg1 = false) const
  1384. - Component@[]@ GetComponents() const
  1385. - Component@[]@ GetComponents(const String&, bool arg1 = false) const
  1386. - Component@ GetComponent(const String&) const
  1387. - bool HasComponent(const String&) const
  1388. - Vector3 LocalToWorld(const Vector3&) const
  1389. - Vector3 LocalToWorld(const Vector4&) const
  1390. - Vector3 WorldToLocal(const Vector3&) const
  1391. - Vector3 WorldToLocal(const Vector4&) const
  1392. - bool LoadXML(File@)
  1393. - bool SaveXML(File@)
  1394. - bool LoadAsync(File@)
  1395. - bool LoadAsyncXML(File@)
  1396. - void StopAsyncLoading()
  1397. - Node@ Instantiate(File@, const Vector3&, const Quaternion&, CreateMode arg3 = REPLICATED)
  1398. - Node@ InstantiateXML(File@, const Vector3&, const Quaternion&, CreateMode arg3 = REPLICATED)
  1399. - Node@ InstantiateXML(XMLFile@, const Vector3&, const Quaternion&, CreateMode arg3 = REPLICATED)
  1400. - Node@ InstantiateXML(const XMLElement&, const Vector3&, const Quaternion&, CreateMode arg3 = REPLICATED)
  1401. - void Clear()
  1402. - void AddRequiredPackageFile(PackageFile@)
  1403. - void ClearRequiredPackageFiles()
  1404. - void RegisterVar(const String&)
  1405. - void UnregisterVar(const String&)
  1406. - void UnregisterAllVars(const String&)
  1407. - Component@ GetComponent(uint)
  1408. - Node@ GetNode(uint)
  1409. - const String& GetVarName(ShortStringHash) const
  1410. - void Update(float)
  1411. Properties:<br>
  1412. - ShortStringHash type (readonly)
  1413. - String typeName (readonly)
  1414. - String category (readonly)
  1415. - int refs (readonly)
  1416. - int weakRefs (readonly)
  1417. - uint numAttributes (readonly)
  1418. - Variant[] attributes
  1419. - Variant[] attributeDefaults (readonly)
  1420. - AttributeInfo[] attributeInfos (readonly)
  1421. - Vector3 position
  1422. - Quaternion rotation
  1423. - Vector3 direction
  1424. - Vector3 scale
  1425. - Vector3 worldPosition
  1426. - Quaternion worldRotation
  1427. - Vector3 worldDirection
  1428. - Vector3 worldScale
  1429. - Matrix3x4 transform (readonly)
  1430. - Matrix3x4 worldTransform (readonly)
  1431. - uint id (readonly)
  1432. - uint numChildren (readonly)
  1433. - uint numAllChildren (readonly)
  1434. - Node@[] children (readonly)
  1435. - uint numComponents (readonly)
  1436. - Component@[] components (readonly)
  1437. - String name
  1438. - Node@ parent
  1439. - VariantMap vars (readonly)
  1440. - bool updateEnabled
  1441. - float timeScale
  1442. - float elapsedTime
  1443. - float smoothingConstant
  1444. - float snapThreshold
  1445. - bool asyncLoading (readonly)
  1446. - float asyncProgress (readonly)
  1447. - uint checksum (readonly)
  1448. - String fileName (readonly)
  1449. - PackageFile@[]@ requiredPackageFiles (readonly)
  1450. - DebugRenderer@ debugRenderer (readonly)
  1451. - Octree@ octree (readonly)
  1452. - PhysicsWorld@ physicsWorld (readonly)
  1453. Bone
  1454. Properties:<br>
  1455. - Node@ node
  1456. - String name
  1457. - Vector3 initialPosition
  1458. - Quaternion initialRotation
  1459. - Vector3 initialScale
  1460. - bool animated
  1461. - float radius
  1462. - BoundingBox boundingBox
  1463. Skeleton
  1464. Methods:<br>
  1465. - void Reset()
  1466. - Bone@ GetBone(const String&) const
  1467. Properties:<br>
  1468. - Bone@ rootBone (readonly)
  1469. - uint numBones (readonly)
  1470. - Bone@[] bones (readonly)
  1471. DebugRenderer
  1472. Methods:<br>
  1473. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1474. - bool Load(File@, bool arg1 = false)
  1475. - bool Save(File@) const
  1476. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1477. - bool SaveXML(XMLElement&) const
  1478. - void ApplyAttributes()
  1479. - bool SetAttribute(const String&, const Variant&)
  1480. - void ResetToDefault()
  1481. - void RemoveInstanceDefault()
  1482. - Variant GetAttribute(const String&) const
  1483. - Variant GetAttributeDefault(const String&) const
  1484. - void Remove()
  1485. - void MarkNetworkUpdate() const
  1486. - void AddLine(const Vector3&, const Vector3&, const Color&, bool arg3 = true)
  1487. - void AddNode(Node@, float arg1 = 1.0, bool arg2 = true)
  1488. - void AddBoundingBox(const BoundingBox&, const Color&, bool arg2 = true)
  1489. - void AddFrustum(const Frustum&, const Color&, bool arg2 = true)
  1490. - void AddPolyhedron(const Polyhedron&, const Color&, bool arg2 = true)
  1491. - void AddSphere(const Sphere&, const Color&, bool arg2 = true)
  1492. - void AddSkeleton(Skeleton@, const Color&, bool arg2 = true)
  1493. - void DrawDebugGeometry(DebugRenderer@, bool)
  1494. Properties:<br>
  1495. - ShortStringHash type (readonly)
  1496. - String typeName (readonly)
  1497. - String category (readonly)
  1498. - int refs (readonly)
  1499. - int weakRefs (readonly)
  1500. - uint numAttributes (readonly)
  1501. - Variant[] attributes
  1502. - Variant[] attributeDefaults (readonly)
  1503. - AttributeInfo[] attributeInfos (readonly)
  1504. - bool enabled
  1505. - bool enabledEffective (readonly)
  1506. - uint id (readonly)
  1507. - Node@ node (readonly)
  1508. Camera
  1509. Methods:<br>
  1510. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1511. - bool Load(File@, bool arg1 = false)
  1512. - bool Save(File@) const
  1513. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1514. - bool SaveXML(XMLElement&) const
  1515. - void ApplyAttributes()
  1516. - bool SetAttribute(const String&, const Variant&)
  1517. - void ResetToDefault()
  1518. - void RemoveInstanceDefault()
  1519. - Variant GetAttribute(const String&) const
  1520. - Variant GetAttributeDefault(const String&) const
  1521. - void Remove()
  1522. - void MarkNetworkUpdate() const
  1523. - void DrawDebugGeometry(DebugRenderer@, bool)
  1524. - void SetOrthoSize(const Vector2&)
  1525. - Frustum GetSplitFrustum(float, float) const
  1526. - Ray GetScreenRay(float, float) const
  1527. - Vector2 WorldToScreenPoint(const Vector3&) const
  1528. - Vector3 ScreenToWorldPoint(const Vector3&) const
  1529. - float GetDistance(const Vector3&) const
  1530. - float GetDistanceSquared(const Vector3&) const
  1531. Properties:<br>
  1532. - ShortStringHash type (readonly)
  1533. - String typeName (readonly)
  1534. - String category (readonly)
  1535. - int refs (readonly)
  1536. - int weakRefs (readonly)
  1537. - uint numAttributes (readonly)
  1538. - Variant[] attributes
  1539. - Variant[] attributeDefaults (readonly)
  1540. - AttributeInfo[] attributeInfos (readonly)
  1541. - bool enabled
  1542. - bool enabledEffective (readonly)
  1543. - uint id (readonly)
  1544. - Node@ node (readonly)
  1545. - float nearClip
  1546. - float farClip
  1547. - float fov
  1548. - float orthoSize
  1549. - float aspectRatio
  1550. - float zoom
  1551. - float lodBias
  1552. - bool orthographic
  1553. - bool autoAspectRatio
  1554. - Vector2 projectionOffset
  1555. - uint viewMask
  1556. - uint viewOverrideFlags
  1557. - FillMode fillMode
  1558. - Frustum frustum (readonly)
  1559. - Matrix4 projection (readonly)
  1560. - Matrix3x4 view (readonly)
  1561. - Frustum viewSpaceFrustum (readonly)
  1562. - float halfViewSize (readonly)
  1563. - Vector3 forwardVector (readonly)
  1564. - Vector3 rightVector (readonly)
  1565. - Vector3 upVector (readonly)
  1566. RenderTargetInfo
  1567. Properties:<br>
  1568. - String name
  1569. - String tag
  1570. - uint format
  1571. - IntVector2 size
  1572. - RenderTargetSizeMode sizeMode
  1573. - bool enabled
  1574. - bool filtered
  1575. - bool sRGB
  1576. RenderPathCommand
  1577. Methods:<br>
  1578. - void RemoveShaderParameter(const String&)
  1579. Properties:<br>
  1580. - String[] textureNames
  1581. - Vector4[] shaderParameters
  1582. - uint numOutputs
  1583. - String[] outputNames
  1584. - String tag
  1585. - RenderCommandType type
  1586. - RenderCommandSortMode sortMode
  1587. - String pass
  1588. - String metadata
  1589. - uint clearFlags
  1590. - Color clearColor
  1591. - float clearDepth
  1592. - uint clearStencil
  1593. - bool enabled
  1594. - bool useFogColor
  1595. - bool markToStencil
  1596. - bool vertexLights
  1597. - bool useLitBase
  1598. - bool useScissor
  1599. - String vertexShaderName
  1600. - String pixelShaderName
  1601. RenderPath
  1602. Methods:<br>
  1603. - RenderPath@ Clone()
  1604. - bool Load(XMLFile@)
  1605. - bool Append(XMLFile@)
  1606. - void SetEnabled(const String&, bool)
  1607. - void ToggleEnabled(const String&)
  1608. - void AddRenderTarget(const RenderTargetInfo&)
  1609. - void RemoveRenderTarget(uint)
  1610. - void RemoveRenderTarget(const String&)
  1611. - void RemoveRenderTargts(const String&)
  1612. - void AddCommand(const RenderPathCommand&)
  1613. - void InsertCommand(uint, const RenderPathCommand&)
  1614. - void RemoveCommand(uint)
  1615. - void RemoveCommands(const String&)
  1616. Properties:<br>
  1617. - int refs (readonly)
  1618. - int weakRefs (readonly)
  1619. - uint numRenderTargets (readonly)
  1620. - RenderTargetInfo[] renderTargets
  1621. - uint numCommands (readonly)
  1622. - RenderPathCommand[] commands
  1623. - Vector4[] shaderParameters
  1624. Texture
  1625. Methods:<br>
  1626. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1627. - bool Load(File@)
  1628. - bool Save(File@) const
  1629. - void SetNumLevels(uint)
  1630. - void ClearDataLost()
  1631. Properties:<br>
  1632. - ShortStringHash type (readonly)
  1633. - String typeName (readonly)
  1634. - String category (readonly)
  1635. - int refs (readonly)
  1636. - int weakRefs (readonly)
  1637. - String name
  1638. - uint memoryUse (readonly)
  1639. - uint useTimer (readonly)
  1640. - TextureUsage usage (readonly)
  1641. - uint format (readonly)
  1642. - bool compressed (readonly)
  1643. - uint levels (readonly)
  1644. - int width (readonly)
  1645. - int height (readonly)
  1646. - int[] levelWidth (readonly)
  1647. - int[] levelHeight (readonly)
  1648. - TextureFilterMode filterMode
  1649. - TextureAddressMode[] addressMode
  1650. - Color borderColor
  1651. - bool sRGB
  1652. - Texture@ backupTexture
  1653. - bool dataLost (readonly)
  1654. Viewport
  1655. Methods:<br>
  1656. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1657. - void SetRenderPath(XMLFile@)
  1658. Properties:<br>
  1659. - ShortStringHash type (readonly)
  1660. - String typeName (readonly)
  1661. - String category (readonly)
  1662. - int refs (readonly)
  1663. - int weakRefs (readonly)
  1664. - Scene@ scene
  1665. - Camera@ camera
  1666. - RenderPath@ renderPath
  1667. - IntRect rect
  1668. RenderSurface
  1669. Methods:<br>
  1670. - void QueueUpdate()
  1671. Properties:<br>
  1672. - Texture@ parentTexture (readonly)
  1673. - int width (readonly)
  1674. - int height (readonly)
  1675. - TextureUsage usage (readonly)
  1676. - uint numViewports
  1677. - Viewport@[] viewports
  1678. - RenderSurfaceUpdateMode updateMode
  1679. - RenderSurface@ linkedRenderTarget
  1680. - RenderSurface@ linkedDepthStencil
  1681. Texture2D
  1682. Methods:<br>
  1683. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1684. - bool Load(File@)
  1685. - bool Save(File@) const
  1686. - void SetNumLevels(uint)
  1687. - void ClearDataLost()
  1688. - bool SetSize(int, int, uint, TextureUsage arg3 = TEXTURE_STATIC)
  1689. - bool Load(Image@, bool arg1 = false)
  1690. Properties:<br>
  1691. - ShortStringHash type (readonly)
  1692. - String typeName (readonly)
  1693. - String category (readonly)
  1694. - int refs (readonly)
  1695. - int weakRefs (readonly)
  1696. - String name
  1697. - uint memoryUse (readonly)
  1698. - uint useTimer (readonly)
  1699. - TextureUsage usage (readonly)
  1700. - uint format (readonly)
  1701. - bool compressed (readonly)
  1702. - uint levels (readonly)
  1703. - int width (readonly)
  1704. - int height (readonly)
  1705. - int[] levelWidth (readonly)
  1706. - int[] levelHeight (readonly)
  1707. - TextureFilterMode filterMode
  1708. - TextureAddressMode[] addressMode
  1709. - Color borderColor
  1710. - bool sRGB
  1711. - Texture@ backupTexture
  1712. - bool dataLost (readonly)
  1713. - RenderSurface@ renderSurface (readonly)
  1714. TextureCube
  1715. Methods:<br>
  1716. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1717. - bool Load(File@)
  1718. - bool Save(File@) const
  1719. - void SetNumLevels(uint)
  1720. - void ClearDataLost()
  1721. - bool SetSize(int, uint, TextureUsage arg2 = TEXTURE_STATIC)
  1722. - bool Load(CubeMapFace, Image@, bool arg2 = false)
  1723. Properties:<br>
  1724. - ShortStringHash type (readonly)
  1725. - String typeName (readonly)
  1726. - String category (readonly)
  1727. - int refs (readonly)
  1728. - int weakRefs (readonly)
  1729. - String name
  1730. - uint memoryUse (readonly)
  1731. - uint useTimer (readonly)
  1732. - TextureUsage usage (readonly)
  1733. - uint format (readonly)
  1734. - bool compressed (readonly)
  1735. - uint levels (readonly)
  1736. - int width (readonly)
  1737. - int height (readonly)
  1738. - int[] levelWidth (readonly)
  1739. - int[] levelHeight (readonly)
  1740. - TextureFilterMode filterMode
  1741. - TextureAddressMode[] addressMode
  1742. - Color borderColor
  1743. - bool sRGB
  1744. - Texture@ backupTexture
  1745. - bool dataLost (readonly)
  1746. - RenderSurface@[] renderSurfaces (readonly)
  1747. BiasParameters
  1748. Properties:<br>
  1749. - float constantBias
  1750. - float slopeScaledBias
  1751. Pass
  1752. Properties:<br>
  1753. - int refs (readonly)
  1754. - int weakRefs (readonly)
  1755. - BlendMode blendMode
  1756. - CompareMode depthTestMode
  1757. - PassLightingMode lightingMode
  1758. - bool depthWrite
  1759. - bool alphaMask
  1760. - String vertexShader
  1761. - String pixelShader
  1762. Technique
  1763. Methods:<br>
  1764. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1765. - bool Load(File@)
  1766. - bool Save(File@) const
  1767. - Pass@ CreatePass(StringHash)
  1768. - void RemovePass(StringHash)
  1769. - bool HasPass(StringHash) const
  1770. Properties:<br>
  1771. - ShortStringHash type (readonly)
  1772. - String typeName (readonly)
  1773. - String category (readonly)
  1774. - int refs (readonly)
  1775. - int weakRefs (readonly)
  1776. - String name
  1777. - uint memoryUse (readonly)
  1778. - uint useTimer (readonly)
  1779. - bool sm3
  1780. - Pass@[] passes (readonly)
  1781. Material
  1782. Methods:<br>
  1783. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1784. - bool Load(File@)
  1785. - bool Save(File@) const
  1786. - void SetTechnique(uint, Technique@, uint arg2 = 0, float arg3 = 0.0)
  1787. - void SetUVTransform(const Vector2&, float, const Vector2&)
  1788. - void SetUVTransform(const Vector2&, float, float)
  1789. - void RemoveShaderParameter(const String&)
  1790. - Material@ Clone(const String& arg0 = String ( )) const
  1791. Properties:<br>
  1792. - ShortStringHash type (readonly)
  1793. - String typeName (readonly)
  1794. - String category (readonly)
  1795. - int refs (readonly)
  1796. - int weakRefs (readonly)
  1797. - String name
  1798. - uint memoryUse (readonly)
  1799. - uint useTimer (readonly)
  1800. - uint numTechniques
  1801. - Technique@[] techniques (readonly)
  1802. - Vector4[] shaderParameters
  1803. - Texture@[] textures
  1804. - bool occlusion (readonly)
  1805. - CullMode cullMode
  1806. - CullMode shadowCullMode
  1807. - BiasParameters depthBias
  1808. Model
  1809. Methods:<br>
  1810. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1811. - bool Load(File@)
  1812. - bool Save(File@) const
  1813. Properties:<br>
  1814. - ShortStringHash type (readonly)
  1815. - String typeName (readonly)
  1816. - String category (readonly)
  1817. - int refs (readonly)
  1818. - int weakRefs (readonly)
  1819. - String name
  1820. - uint memoryUse (readonly)
  1821. - uint useTimer (readonly)
  1822. - BoundingBox boundingBox (readonly)
  1823. - Skeleton@ skeleton (readonly)
  1824. - uint numGeometries (readonly)
  1825. - uint[] numGeometryLodLevels (readonly)
  1826. - uint numMorphs (readonly)
  1827. AnimationTriggerPoint
  1828. Properties:<br>
  1829. - float time
  1830. - Variant data
  1831. Animation
  1832. Methods:<br>
  1833. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1834. - bool Load(File@)
  1835. - bool Save(File@) const
  1836. - void AddTrigger(float, bool, const Variant&)
  1837. - void RemoveTrigger(uint)
  1838. - void RemoveAllTriggers()
  1839. Properties:<br>
  1840. - ShortStringHash type (readonly)
  1841. - String typeName (readonly)
  1842. - String category (readonly)
  1843. - int refs (readonly)
  1844. - int weakRefs (readonly)
  1845. - String name
  1846. - uint memoryUse (readonly)
  1847. - uint useTimer (readonly)
  1848. - String animationName (readonly)
  1849. - float length (readonly)
  1850. - uint numTracks (readonly)
  1851. - uint numTriggers
  1852. - AnimationTriggerPoint@[] triggers (readonly)
  1853. Drawable
  1854. Methods:<br>
  1855. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1856. - bool Load(File@, bool arg1 = false)
  1857. - bool Save(File@) const
  1858. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1859. - bool SaveXML(XMLElement&) const
  1860. - void ApplyAttributes()
  1861. - bool SetAttribute(const String&, const Variant&)
  1862. - void ResetToDefault()
  1863. - void RemoveInstanceDefault()
  1864. - Variant GetAttribute(const String&) const
  1865. - Variant GetAttributeDefault(const String&) const
  1866. - void Remove()
  1867. - void MarkNetworkUpdate() const
  1868. - void DrawDebugGeometry(DebugRenderer@, bool)
  1869. Properties:<br>
  1870. - ShortStringHash type (readonly)
  1871. - String typeName (readonly)
  1872. - String category (readonly)
  1873. - int refs (readonly)
  1874. - int weakRefs (readonly)
  1875. - uint numAttributes (readonly)
  1876. - Variant[] attributes
  1877. - Variant[] attributeDefaults (readonly)
  1878. - AttributeInfo[] attributeInfos (readonly)
  1879. - bool enabled
  1880. - bool enabledEffective (readonly)
  1881. - uint id (readonly)
  1882. - Node@ node (readonly)
  1883. - bool inView (readonly)
  1884. - bool castShadows
  1885. - bool occluder
  1886. - bool occludee
  1887. - float drawDistance
  1888. - float shadowDistance
  1889. - float lodBias
  1890. - uint viewMask
  1891. - uint lightMask
  1892. - uint shadowMask
  1893. - uint zoneMask
  1894. - uint maxLights
  1895. - BoundingBox worldBoundingBox (readonly)
  1896. CascadeParameters
  1897. Properties:<br>
  1898. - float split1
  1899. - float split2
  1900. - float split3
  1901. - float split4
  1902. - float fadeStart
  1903. - float biasAutoAdjust
  1904. FocusParameters
  1905. Properties:<br>
  1906. - bool focus
  1907. - bool nonUniform
  1908. - bool autoSize
  1909. - float quantize
  1910. - float minView
  1911. Light
  1912. Methods:<br>
  1913. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1914. - bool Load(File@, bool arg1 = false)
  1915. - bool Save(File@) const
  1916. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1917. - bool SaveXML(XMLElement&) const
  1918. - void ApplyAttributes()
  1919. - bool SetAttribute(const String&, const Variant&)
  1920. - void ResetToDefault()
  1921. - void RemoveInstanceDefault()
  1922. - Variant GetAttribute(const String&) const
  1923. - Variant GetAttributeDefault(const String&) const
  1924. - void Remove()
  1925. - void MarkNetworkUpdate() const
  1926. - void DrawDebugGeometry(DebugRenderer@, bool)
  1927. Properties:<br>
  1928. - ShortStringHash type (readonly)
  1929. - String typeName (readonly)
  1930. - String category (readonly)
  1931. - int refs (readonly)
  1932. - int weakRefs (readonly)
  1933. - uint numAttributes (readonly)
  1934. - Variant[] attributes
  1935. - Variant[] attributeDefaults (readonly)
  1936. - AttributeInfo[] attributeInfos (readonly)
  1937. - bool enabled
  1938. - bool enabledEffective (readonly)
  1939. - uint id (readonly)
  1940. - Node@ node (readonly)
  1941. - bool inView (readonly)
  1942. - bool castShadows
  1943. - bool occluder
  1944. - bool occludee
  1945. - float drawDistance
  1946. - float shadowDistance
  1947. - float lodBias
  1948. - uint viewMask
  1949. - uint lightMask
  1950. - uint shadowMask
  1951. - uint zoneMask
  1952. - uint maxLights
  1953. - BoundingBox worldBoundingBox (readonly)
  1954. - LightType lightType
  1955. - bool perVertex
  1956. - Color color
  1957. - float specularIntensity
  1958. - float range
  1959. - float fov
  1960. - float aspectRatio
  1961. - float fadeDistance
  1962. - BiasParameters shadowBias
  1963. - CascadeParameters shadowCascade
  1964. - FocusParameters shadowFocus
  1965. - float shadowFadeDistance
  1966. - float shadowIntensity
  1967. - float shadowResolution
  1968. - float shadowNearFarRatio
  1969. - Texture@ rampTexture
  1970. - Texture@ shapeTexture
  1971. - Frustum frustum (readonly)
  1972. Zone
  1973. Methods:<br>
  1974. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  1975. - bool Load(File@, bool arg1 = false)
  1976. - bool Save(File@) const
  1977. - bool LoadXML(const XMLElement&, bool arg1 = false)
  1978. - bool SaveXML(XMLElement&) const
  1979. - void ApplyAttributes()
  1980. - bool SetAttribute(const String&, const Variant&)
  1981. - void ResetToDefault()
  1982. - void RemoveInstanceDefault()
  1983. - Variant GetAttribute(const String&) const
  1984. - Variant GetAttributeDefault(const String&) const
  1985. - void Remove()
  1986. - void MarkNetworkUpdate() const
  1987. - void DrawDebugGeometry(DebugRenderer@, bool)
  1988. Properties:<br>
  1989. - ShortStringHash type (readonly)
  1990. - String typeName (readonly)
  1991. - String category (readonly)
  1992. - int refs (readonly)
  1993. - int weakRefs (readonly)
  1994. - uint numAttributes (readonly)
  1995. - Variant[] attributes
  1996. - Variant[] attributeDefaults (readonly)
  1997. - AttributeInfo[] attributeInfos (readonly)
  1998. - bool enabled
  1999. - bool enabledEffective (readonly)
  2000. - uint id (readonly)
  2001. - Node@ node (readonly)
  2002. - bool inView (readonly)
  2003. - bool castShadows
  2004. - bool occluder
  2005. - bool occludee
  2006. - float drawDistance
  2007. - float shadowDistance
  2008. - float lodBias
  2009. - uint viewMask
  2010. - uint lightMask
  2011. - uint shadowMask
  2012. - uint zoneMask
  2013. - uint maxLights
  2014. - BoundingBox worldBoundingBox (readonly)
  2015. - BoundingBox boundingBox
  2016. - Matrix3x4 inverseWorldTransform (readonly)
  2017. - Color ambientColor
  2018. - Color ambientStartColor (readonly)
  2019. - Color ambientEndColor (readonly)
  2020. - Color fogColor
  2021. - float fogStart
  2022. - float fogEnd
  2023. - int priority
  2024. - bool override
  2025. - bool ambientGradient
  2026. StaticModel
  2027. Methods:<br>
  2028. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2029. - bool Load(File@, bool arg1 = false)
  2030. - bool Save(File@) const
  2031. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2032. - bool SaveXML(XMLElement&) const
  2033. - void ApplyAttributes()
  2034. - bool SetAttribute(const String&, const Variant&)
  2035. - void ResetToDefault()
  2036. - void RemoveInstanceDefault()
  2037. - Variant GetAttribute(const String&) const
  2038. - Variant GetAttributeDefault(const String&) const
  2039. - void Remove()
  2040. - void MarkNetworkUpdate() const
  2041. - void DrawDebugGeometry(DebugRenderer@, bool)
  2042. - bool IsInside(const Vector3&) const
  2043. - bool IsInsideLocal(const Vector3&) const
  2044. Properties:<br>
  2045. - ShortStringHash type (readonly)
  2046. - String typeName (readonly)
  2047. - String category (readonly)
  2048. - int refs (readonly)
  2049. - int weakRefs (readonly)
  2050. - uint numAttributes (readonly)
  2051. - Variant[] attributes
  2052. - Variant[] attributeDefaults (readonly)
  2053. - AttributeInfo[] attributeInfos (readonly)
  2054. - bool enabled
  2055. - bool enabledEffective (readonly)
  2056. - uint id (readonly)
  2057. - Node@ node (readonly)
  2058. - bool inView (readonly)
  2059. - bool castShadows
  2060. - bool occluder
  2061. - bool occludee
  2062. - float drawDistance
  2063. - float shadowDistance
  2064. - float lodBias
  2065. - uint viewMask
  2066. - uint lightMask
  2067. - uint shadowMask
  2068. - uint zoneMask
  2069. - uint maxLights
  2070. - BoundingBox worldBoundingBox (readonly)
  2071. - Model@ model
  2072. - Material@ material (writeonly)
  2073. - Material@[] materials
  2074. - BoundingBox boundingBox (readonly)
  2075. - uint numGeometries (readonly)
  2076. - uint occlusionLodLevel
  2077. Skybox
  2078. Methods:<br>
  2079. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2080. - bool Load(File@, bool arg1 = false)
  2081. - bool Save(File@) const
  2082. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2083. - bool SaveXML(XMLElement&) const
  2084. - void ApplyAttributes()
  2085. - bool SetAttribute(const String&, const Variant&)
  2086. - void ResetToDefault()
  2087. - void RemoveInstanceDefault()
  2088. - Variant GetAttribute(const String&) const
  2089. - Variant GetAttributeDefault(const String&) const
  2090. - void Remove()
  2091. - void MarkNetworkUpdate() const
  2092. - void DrawDebugGeometry(DebugRenderer@, bool)
  2093. Properties:<br>
  2094. - ShortStringHash type (readonly)
  2095. - String typeName (readonly)
  2096. - String category (readonly)
  2097. - int refs (readonly)
  2098. - int weakRefs (readonly)
  2099. - uint numAttributes (readonly)
  2100. - Variant[] attributes
  2101. - Variant[] attributeDefaults (readonly)
  2102. - AttributeInfo[] attributeInfos (readonly)
  2103. - bool enabled
  2104. - bool enabledEffective (readonly)
  2105. - uint id (readonly)
  2106. - Node@ node (readonly)
  2107. - bool inView (readonly)
  2108. - bool castShadows
  2109. - bool occluder
  2110. - bool occludee
  2111. - float drawDistance
  2112. - float shadowDistance
  2113. - float lodBias
  2114. - uint viewMask
  2115. - uint lightMask
  2116. - uint shadowMask
  2117. - uint zoneMask
  2118. - uint maxLights
  2119. - BoundingBox worldBoundingBox (readonly)
  2120. - Model@ model
  2121. - Material@ material (writeonly)
  2122. - Material@[] materials
  2123. - BoundingBox boundingBox (readonly)
  2124. - uint numGeometries (readonly)
  2125. - Zone@ zone (readonly)
  2126. AnimationState
  2127. Methods:<br>
  2128. - void AddWeight(float)
  2129. - void AddTime(float)
  2130. - void Apply()
  2131. Properties:<br>
  2132. - int refs (readonly)
  2133. - int weakRefs (readonly)
  2134. - Bone@ startBone
  2135. - bool looped
  2136. - float weight
  2137. - float time
  2138. - uint8 layer
  2139. - Animation@ animation (readonly)
  2140. - bool enabled (readonly)
  2141. - float length (readonly)
  2142. AnimatedModel
  2143. Methods:<br>
  2144. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2145. - bool Load(File@, bool arg1 = false)
  2146. - bool Save(File@) const
  2147. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2148. - bool SaveXML(XMLElement&) const
  2149. - void ApplyAttributes()
  2150. - bool SetAttribute(const String&, const Variant&)
  2151. - void ResetToDefault()
  2152. - void RemoveInstanceDefault()
  2153. - Variant GetAttribute(const String&) const
  2154. - Variant GetAttributeDefault(const String&) const
  2155. - void Remove()
  2156. - void MarkNetworkUpdate() const
  2157. - void DrawDebugGeometry(DebugRenderer@, bool)
  2158. - AnimationState@ AddAnimationState(Animation@)
  2159. - void RemoveAnimationState(Animation@)
  2160. - void RemoveAnimationState(const String&)
  2161. - void RemoveAnimationState(AnimationState@)
  2162. - void RemoveAnimationState(uint)
  2163. - void RemoveAllAnimationStates()
  2164. - void SetMorphWeight(uint, float)
  2165. - void ResetMorphWeights()
  2166. - float GetMorphWeight(uint) const
  2167. - AnimationState@ GetAnimationState(Animation@) const
  2168. - AnimationState@ GetAnimationState(uint) const
  2169. Properties:<br>
  2170. - ShortStringHash type (readonly)
  2171. - String typeName (readonly)
  2172. - String category (readonly)
  2173. - int refs (readonly)
  2174. - int weakRefs (readonly)
  2175. - uint numAttributes (readonly)
  2176. - Variant[] attributes
  2177. - Variant[] attributeDefaults (readonly)
  2178. - AttributeInfo[] attributeInfos (readonly)
  2179. - bool enabled
  2180. - bool enabledEffective (readonly)
  2181. - uint id (readonly)
  2182. - Node@ node (readonly)
  2183. - bool inView (readonly)
  2184. - bool castShadows
  2185. - bool occluder
  2186. - bool occludee
  2187. - float drawDistance
  2188. - float shadowDistance
  2189. - float lodBias
  2190. - uint viewMask
  2191. - uint lightMask
  2192. - uint shadowMask
  2193. - uint zoneMask
  2194. - uint maxLights
  2195. - BoundingBox worldBoundingBox (readonly)
  2196. - Model@ model
  2197. - Material@ material (writeonly)
  2198. - Material@[] materials
  2199. - BoundingBox boundingBox (readonly)
  2200. - uint numGeometries (readonly)
  2201. - Zone@ zone (readonly)
  2202. - float animationLodBias
  2203. - float invisibleLodFactor
  2204. - Skeleton@ skeleton (readonly)
  2205. - uint numAnimationStates (readonly)
  2206. - AnimationState@[] animationStates (readonly)
  2207. - uint numMorphs (readonly)
  2208. - String[] morphNames (readonly)
  2209. - float[] morphWeights
  2210. AnimationController
  2211. Methods:<br>
  2212. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2213. - bool Load(File@, bool arg1 = false)
  2214. - bool Save(File@) const
  2215. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2216. - bool SaveXML(XMLElement&) const
  2217. - void ApplyAttributes()
  2218. - bool SetAttribute(const String&, const Variant&)
  2219. - void ResetToDefault()
  2220. - void RemoveInstanceDefault()
  2221. - Variant GetAttribute(const String&) const
  2222. - Variant GetAttributeDefault(const String&) const
  2223. - void Remove()
  2224. - void MarkNetworkUpdate() const
  2225. - void DrawDebugGeometry(DebugRenderer@, bool)
  2226. - bool Play(const String&, uint8, bool, float arg3 = 0.0f)
  2227. - bool PlayExclusive(const String&, uint8, bool, float arg3 = 0.0f)
  2228. - void Stop(const String&, float arg1 = 0.0f)
  2229. - void StopLayer(uint8, float arg1 = 0.0f)
  2230. - void StopAll(float arg0 = 0.0f)
  2231. - bool Fade(const String&, float, float)
  2232. - bool FadeOthers(const String&, float, float)
  2233. - bool SetLayer(const String&, uint8)
  2234. - bool SetStartBone(const String&, const String&)
  2235. - bool SetTime(const String&, float)
  2236. - bool SetWeight(const String&, float)
  2237. - bool SetLooped(const String&, bool)
  2238. - bool SetSpeed(const String&, float)
  2239. - bool SetAutoFade(const String&, float)
  2240. - bool IsPlaying(const String&) const
  2241. - bool IsFadingIn(const String&) const
  2242. - bool IsFadingOut(const String&) const
  2243. - uint8 GetLayer(const String&) const
  2244. - const String& GetStartBone(const String&) const
  2245. - float GetTime(const String&) const
  2246. - float GetWeight(const String&) const
  2247. - bool GetLooped(const String&) const
  2248. - float GetLength(const String&) const
  2249. - float GetSpeed(const String&) const
  2250. - float GetAutoFade(const String&) const
  2251. - float GetFadeTarget(const String&) const
  2252. Properties:<br>
  2253. - ShortStringHash type (readonly)
  2254. - String typeName (readonly)
  2255. - String category (readonly)
  2256. - int refs (readonly)
  2257. - int weakRefs (readonly)
  2258. - uint numAttributes (readonly)
  2259. - Variant[] attributes
  2260. - Variant[] attributeDefaults (readonly)
  2261. - AttributeInfo[] attributeInfos (readonly)
  2262. - bool enabled
  2263. - bool enabledEffective (readonly)
  2264. - uint id (readonly)
  2265. - Node@ node (readonly)
  2266. Billboard
  2267. Properties:<br>
  2268. - Vector3 position
  2269. - Vector2 size
  2270. - Rect uv
  2271. - Color color
  2272. - float rotation
  2273. - bool enabled
  2274. BillboardSet
  2275. Methods:<br>
  2276. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2277. - bool Load(File@, bool arg1 = false)
  2278. - bool Save(File@) const
  2279. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2280. - bool SaveXML(XMLElement&) const
  2281. - void ApplyAttributes()
  2282. - bool SetAttribute(const String&, const Variant&)
  2283. - void ResetToDefault()
  2284. - void RemoveInstanceDefault()
  2285. - Variant GetAttribute(const String&) const
  2286. - Variant GetAttributeDefault(const String&) const
  2287. - void Remove()
  2288. - void MarkNetworkUpdate() const
  2289. - void DrawDebugGeometry(DebugRenderer@, bool)
  2290. - void Commit()
  2291. Properties:<br>
  2292. - ShortStringHash type (readonly)
  2293. - String typeName (readonly)
  2294. - String category (readonly)
  2295. - int refs (readonly)
  2296. - int weakRefs (readonly)
  2297. - uint numAttributes (readonly)
  2298. - Variant[] attributes
  2299. - Variant[] attributeDefaults (readonly)
  2300. - AttributeInfo[] attributeInfos (readonly)
  2301. - bool enabled
  2302. - bool enabledEffective (readonly)
  2303. - uint id (readonly)
  2304. - Node@ node (readonly)
  2305. - bool inView (readonly)
  2306. - bool castShadows
  2307. - bool occluder
  2308. - bool occludee
  2309. - float drawDistance
  2310. - float shadowDistance
  2311. - float lodBias
  2312. - uint viewMask
  2313. - uint lightMask
  2314. - uint shadowMask
  2315. - uint zoneMask
  2316. - uint maxLights
  2317. - BoundingBox worldBoundingBox (readonly)
  2318. - Material@ material
  2319. - uint numBillboards
  2320. - bool relative
  2321. - bool sorted
  2322. - bool scaled
  2323. - float animationLodBias
  2324. - Billboard@[] billboards (readonly)
  2325. - Zone@ zone (readonly)
  2326. ColorFrame
  2327. Properties:<br>
  2328. - Color color
  2329. - float time
  2330. TextureFrame
  2331. Properties:<br>
  2332. - Rect uv
  2333. - float time
  2334. ParticleEmitter
  2335. Methods:<br>
  2336. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2337. - bool Load(File@, bool arg1 = false)
  2338. - bool Save(File@) const
  2339. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2340. - bool SaveXML(XMLElement&) const
  2341. - void ApplyAttributes()
  2342. - bool SetAttribute(const String&, const Variant&)
  2343. - void ResetToDefault()
  2344. - void RemoveInstanceDefault()
  2345. - Variant GetAttribute(const String&) const
  2346. - Variant GetAttributeDefault(const String&) const
  2347. - void Remove()
  2348. - void MarkNetworkUpdate() const
  2349. - void DrawDebugGeometry(DebugRenderer@, bool)
  2350. - bool Load(XMLFile@)
  2351. - void SetEmitting(bool, bool)
  2352. - void SetColor(const Color&)
  2353. Properties:<br>
  2354. - ShortStringHash type (readonly)
  2355. - String typeName (readonly)
  2356. - String category (readonly)
  2357. - int refs (readonly)
  2358. - int weakRefs (readonly)
  2359. - uint numAttributes (readonly)
  2360. - Variant[] attributes
  2361. - Variant[] attributeDefaults (readonly)
  2362. - AttributeInfo[] attributeInfos (readonly)
  2363. - bool enabled
  2364. - bool enabledEffective (readonly)
  2365. - uint id (readonly)
  2366. - Node@ node (readonly)
  2367. - bool inView (readonly)
  2368. - bool castShadows
  2369. - bool occluder
  2370. - bool occludee
  2371. - float drawDistance
  2372. - float shadowDistance
  2373. - float lodBias
  2374. - uint viewMask
  2375. - uint lightMask
  2376. - uint shadowMask
  2377. - uint zoneMask
  2378. - uint maxLights
  2379. - BoundingBox worldBoundingBox (readonly)
  2380. - Material@ material
  2381. - bool relative
  2382. - bool sorted
  2383. - bool scaled
  2384. - bool updateInvisible
  2385. - float animationLodBias
  2386. - bool emitting
  2387. - uint numParticles
  2388. - float emissionRate (writeonly)
  2389. - float minEmissionRate
  2390. - float maxEmissionRate
  2391. - EmitterType emitterType
  2392. - Vector3 emitterSize
  2393. - float activeTime
  2394. - float inactiveTime
  2395. - float timeToLive (writeonly)
  2396. - float minTimeToLive
  2397. - float maxTimeToLive
  2398. - Vector2 particleSize (writeonly)
  2399. - Vector2 minParticleSize
  2400. - Vector3 maxParticleSize
  2401. - Vector3 minDirection
  2402. - Vector3 maxDirection
  2403. - float velocity (writeonly)
  2404. - float minVelocity
  2405. - float maxVelocity
  2406. - float rotation (writeonly)
  2407. - float minRotation
  2408. - float maxRotation
  2409. - float rotationSpeed (writeonly)
  2410. - float minRotationSpeed
  2411. - float maxRotationSpeed
  2412. - Vector3 constantForce
  2413. - float dampingForce
  2414. - float sizeAdd
  2415. - float sizeMul
  2416. - ColorFrame@[] colors (readonly)
  2417. - uint numColors
  2418. - TextureFrame@[] textureFrames (readonly)
  2419. - uint numTextureFrames
  2420. - Zone@ zone (readonly)
  2421. CustomGeometry
  2422. Methods:<br>
  2423. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2424. - bool Load(File@, bool arg1 = false)
  2425. - bool Save(File@) const
  2426. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2427. - bool SaveXML(XMLElement&) const
  2428. - void ApplyAttributes()
  2429. - bool SetAttribute(const String&, const Variant&)
  2430. - void ResetToDefault()
  2431. - void RemoveInstanceDefault()
  2432. - Variant GetAttribute(const String&) const
  2433. - Variant GetAttributeDefault(const String&) const
  2434. - void Remove()
  2435. - void MarkNetworkUpdate() const
  2436. - void DrawDebugGeometry(DebugRenderer@, bool)
  2437. - void Clear()
  2438. - void BeginGeometry(uint, PrimitiveType)
  2439. - void DefineVertex(const Vector3&)
  2440. - void DefineNormal(const Vector3&)
  2441. - void DefineColor(const Color&)
  2442. - void DefineTexCoord(const Vector2&)
  2443. - void DefineTangent(const Vector4&)
  2444. - void Commit()
  2445. Properties:<br>
  2446. - ShortStringHash type (readonly)
  2447. - String typeName (readonly)
  2448. - String category (readonly)
  2449. - int refs (readonly)
  2450. - int weakRefs (readonly)
  2451. - uint numAttributes (readonly)
  2452. - Variant[] attributes
  2453. - Variant[] attributeDefaults (readonly)
  2454. - AttributeInfo[] attributeInfos (readonly)
  2455. - bool enabled
  2456. - bool enabledEffective (readonly)
  2457. - uint id (readonly)
  2458. - Node@ node (readonly)
  2459. - bool inView (readonly)
  2460. - bool castShadows
  2461. - bool occluder
  2462. - bool occludee
  2463. - float drawDistance
  2464. - float shadowDistance
  2465. - float lodBias
  2466. - uint viewMask
  2467. - uint lightMask
  2468. - uint shadowMask
  2469. - uint zoneMask
  2470. - uint maxLights
  2471. - BoundingBox worldBoundingBox (readonly)
  2472. - Material@ material (writeonly)
  2473. - Material@[] materials
  2474. - BoundingBox boundingBox (readonly)
  2475. - uint numGeometries
  2476. - Zone@ zone (readonly)
  2477. DecalSet
  2478. Methods:<br>
  2479. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2480. - bool Load(File@, bool arg1 = false)
  2481. - bool Save(File@) const
  2482. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2483. - bool SaveXML(XMLElement&) const
  2484. - void ApplyAttributes()
  2485. - bool SetAttribute(const String&, const Variant&)
  2486. - void ResetToDefault()
  2487. - void RemoveInstanceDefault()
  2488. - Variant GetAttribute(const String&) const
  2489. - Variant GetAttributeDefault(const String&) const
  2490. - void Remove()
  2491. - void MarkNetworkUpdate() const
  2492. - void DrawDebugGeometry(DebugRenderer@, bool)
  2493. - bool AddDecal(Drawable@, const Vector3&, const Quaternion&, float, float, float, const Vector2&, const Vector2&, float arg8 = 0.0, float arg9 = 0.1, uint arg10 = 0xffffffff)
  2494. - void RemoveDecals(uint)
  2495. - void RemoveAllDecals()
  2496. Properties:<br>
  2497. - ShortStringHash type (readonly)
  2498. - String typeName (readonly)
  2499. - String category (readonly)
  2500. - int refs (readonly)
  2501. - int weakRefs (readonly)
  2502. - uint numAttributes (readonly)
  2503. - Variant[] attributes
  2504. - Variant[] attributeDefaults (readonly)
  2505. - AttributeInfo[] attributeInfos (readonly)
  2506. - bool enabled
  2507. - bool enabledEffective (readonly)
  2508. - uint id (readonly)
  2509. - Node@ node (readonly)
  2510. - bool inView (readonly)
  2511. - bool castShadows
  2512. - bool occluder
  2513. - bool occludee
  2514. - float drawDistance
  2515. - float shadowDistance
  2516. - float lodBias
  2517. - uint viewMask
  2518. - uint lightMask
  2519. - uint shadowMask
  2520. - uint zoneMask
  2521. - uint maxLights
  2522. - BoundingBox worldBoundingBox (readonly)
  2523. - Material@ material
  2524. - uint numDecals (readonly)
  2525. - uint numVertices (readonly)
  2526. - uint numIndices (readonly)
  2527. - uint maxVertices
  2528. - uint maxIndices
  2529. - Zone@ zone (readonly)
  2530. TerrainPatch
  2531. Methods:<br>
  2532. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2533. - bool Load(File@, bool arg1 = false)
  2534. - bool Save(File@) const
  2535. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2536. - bool SaveXML(XMLElement&) const
  2537. - void ApplyAttributes()
  2538. - bool SetAttribute(const String&, const Variant&)
  2539. - void ResetToDefault()
  2540. - void RemoveInstanceDefault()
  2541. - Variant GetAttribute(const String&) const
  2542. - Variant GetAttributeDefault(const String&) const
  2543. - void Remove()
  2544. - void MarkNetworkUpdate() const
  2545. - void DrawDebugGeometry(DebugRenderer@, bool)
  2546. Properties:<br>
  2547. - ShortStringHash type (readonly)
  2548. - String typeName (readonly)
  2549. - String category (readonly)
  2550. - int refs (readonly)
  2551. - int weakRefs (readonly)
  2552. - uint numAttributes (readonly)
  2553. - Variant[] attributes
  2554. - Variant[] attributeDefaults (readonly)
  2555. - AttributeInfo[] attributeInfos (readonly)
  2556. - bool enabled
  2557. - bool enabledEffective (readonly)
  2558. - uint id (readonly)
  2559. - Node@ node (readonly)
  2560. - bool inView (readonly)
  2561. - bool castShadows
  2562. - bool occluder
  2563. - bool occludee
  2564. - float drawDistance
  2565. - float shadowDistance
  2566. - float lodBias
  2567. - uint viewMask
  2568. - uint lightMask
  2569. - uint shadowMask
  2570. - uint zoneMask
  2571. - uint maxLights
  2572. - BoundingBox worldBoundingBox (readonly)
  2573. Terrain
  2574. Methods:<br>
  2575. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2576. - bool Load(File@, bool arg1 = false)
  2577. - bool Save(File@) const
  2578. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2579. - bool SaveXML(XMLElement&) const
  2580. - void ApplyAttributes()
  2581. - bool SetAttribute(const String&, const Variant&)
  2582. - void ResetToDefault()
  2583. - void RemoveInstanceDefault()
  2584. - Variant GetAttribute(const String&) const
  2585. - Variant GetAttributeDefault(const String&) const
  2586. - void Remove()
  2587. - void MarkNetworkUpdate() const
  2588. - void DrawDebugGeometry(DebugRenderer@, bool)
  2589. - float GetHeight(const Vector3&) const
  2590. - Vector3 GetNormal(const Vector3&) const
  2591. - TerrainPatch@ GetPatch(int, int) const
  2592. Properties:<br>
  2593. - ShortStringHash type (readonly)
  2594. - String typeName (readonly)
  2595. - String category (readonly)
  2596. - int refs (readonly)
  2597. - int weakRefs (readonly)
  2598. - uint numAttributes (readonly)
  2599. - Variant[] attributes
  2600. - Variant[] attributeDefaults (readonly)
  2601. - AttributeInfo[] attributeInfos (readonly)
  2602. - bool enabled
  2603. - bool enabledEffective (readonly)
  2604. - uint id (readonly)
  2605. - Node@ node (readonly)
  2606. - Material@ material
  2607. - bool smoothing
  2608. - Image@ heightMap
  2609. - int patchSize
  2610. - Vector3 spacing
  2611. - IntVector2 numVertices (readonly)
  2612. - IntVector2 numPatches (readonly)
  2613. - TerrainPatch@[] patches (readonly)
  2614. - bool castShadows
  2615. - bool occluder
  2616. - bool occludee
  2617. - float drawDistance
  2618. - float shadowDistance
  2619. - float lodBias
  2620. - uint viewMask
  2621. - uint lightMask
  2622. - uint shadowMask
  2623. - uint zoneMask
  2624. - uint maxLights
  2625. RayQueryResult
  2626. Properties:<br>
  2627. - Drawable@ drawable (readonly)
  2628. - Node@ node (readonly)
  2629. - float distance
  2630. - uint subObject
  2631. Octree
  2632. Methods:<br>
  2633. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2634. - bool Load(File@, bool arg1 = false)
  2635. - bool Save(File@) const
  2636. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2637. - bool SaveXML(XMLElement&) const
  2638. - void ApplyAttributes()
  2639. - bool SetAttribute(const String&, const Variant&)
  2640. - void ResetToDefault()
  2641. - void RemoveInstanceDefault()
  2642. - Variant GetAttribute(const String&) const
  2643. - Variant GetAttributeDefault(const String&) const
  2644. - void Remove()
  2645. - void MarkNetworkUpdate() const
  2646. - void DrawDebugGeometry(DebugRenderer@, bool)
  2647. - void Resize(const BoundingBox&, uint)
  2648. - void DrawDebugGeometry(bool) const
  2649. - void AddManualDrawable(Drawable@)
  2650. - void RemoveManualDrawable(Drawable@)
  2651. - RayQueryResult[]@ Raycast(const Ray&, RayQueryLevel arg1 = RAY_TRIANGLE, float arg2 = M_INFINITY, uint8 arg3 = DRAWABLE_ANY, uint arg4 = DEFAULT_VIEWMASK) const
  2652. - RayQueryResult RaycastSingle(const Ray&, RayQueryLevel arg1 = RAY_TRIANGLE, float arg2 = M_INFINITY, uint8 arg3 = DRAWABLE_ANY, uint arg4 = DEFAULT_VIEWMASK) const
  2653. - Node@[]@ GetDrawables(const Vector3&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  2654. - Node@[]@ GetDrawables(const BoundingBox&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  2655. - Node@[]@ GetDrawables(const Frustum&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  2656. - Node@[]@ GetDrawables(const Sphere&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  2657. Properties:<br>
  2658. - ShortStringHash type (readonly)
  2659. - String typeName (readonly)
  2660. - String category (readonly)
  2661. - int refs (readonly)
  2662. - int weakRefs (readonly)
  2663. - uint numAttributes (readonly)
  2664. - Variant[] attributes
  2665. - Variant[] attributeDefaults (readonly)
  2666. - AttributeInfo[] attributeInfos (readonly)
  2667. - bool enabled
  2668. - bool enabledEffective (readonly)
  2669. - uint id (readonly)
  2670. - Node@ node (readonly)
  2671. - BoundingBox worldBoundingBox (readonly)
  2672. - uint numLevels (readonly)
  2673. Graphics
  2674. Methods:<br>
  2675. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2676. - bool SetMode(int, int, bool, bool, bool, bool, int)
  2677. - bool SetMode(int, int)
  2678. - bool ToggleFullscreen()
  2679. - void Close()
  2680. - bool TakeScreenShot(Image@)
  2681. Properties:<br>
  2682. - ShortStringHash type (readonly)
  2683. - String typeName (readonly)
  2684. - String category (readonly)
  2685. - int refs (readonly)
  2686. - int weakRefs (readonly)
  2687. - String windowTitle
  2688. - bool sRGB
  2689. - int width (readonly)
  2690. - int height (readonly)
  2691. - int multiSample (readonly)
  2692. - bool fullscreen (readonly)
  2693. - bool resizable (readonly)
  2694. - bool vsync (readonly)
  2695. - bool tripleBuffer (readonly)
  2696. - bool initialized (readonly)
  2697. - bool deviceLost (readonly)
  2698. - uint numPrimitives (readonly)
  2699. - uint numBatches (readonly)
  2700. - bool sm3Support (readonly)
  2701. - bool instancingSupport (readonly)
  2702. - bool lightPrepassSupport (readonly)
  2703. - bool deferredSupport (readonly)
  2704. - bool hardwareShadowSupport (readonly)
  2705. - bool sRGBSupport (readonly)
  2706. - bool sRGBWriteSupport (readonly)
  2707. - bool forceSM2
  2708. - IntVector2[]@ resolutions (readonly)
  2709. - int[]@ multiSampleLevels (readonly)
  2710. Renderer
  2711. Methods:<br>
  2712. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2713. - void DrawDebugGeometry(bool) const
  2714. - void ReloadShaders() const
  2715. - void SetDefaultRenderPath(XMLFile@)
  2716. Properties:<br>
  2717. - ShortStringHash type (readonly)
  2718. - String typeName (readonly)
  2719. - String category (readonly)
  2720. - int refs (readonly)
  2721. - int weakRefs (readonly)
  2722. - uint numViewports
  2723. - Viewport@[] viewports
  2724. - RenderPath@ defaultRenderPath
  2725. - Zone@ defaultZone (readonly)
  2726. - bool specularLighting
  2727. - int textureAnisotropy
  2728. - TextureFilterMode textureFilterMode
  2729. - int textureQuality
  2730. - int materialQuality
  2731. - bool drawShadows
  2732. - int shadowMapSize
  2733. - int shadowQuality
  2734. - int maxShadowCascades
  2735. - int maxShadowMaps
  2736. - bool reuseShadowMaps
  2737. - bool dynamicInstancing
  2738. - int minInstances
  2739. - int maxInstanceTriangles
  2740. - int maxSortedInstances
  2741. - int maxOccluderTriangles
  2742. - int occlusionBufferSize
  2743. - float occluderSizeThreshold
  2744. - uint numPrimitives (readonly)
  2745. - uint numBatches (readonly)
  2746. - uint numViews (readonly)
  2747. - uint[] numGeometries (readonly)
  2748. - uint[] numLights (readonly)
  2749. - uint[] numShadowMaps (readonly)
  2750. - uint[] numOccluders (readonly)
  2751. TouchState
  2752. Properties:<br>
  2753. - int touchID
  2754. - IntVector2 position
  2755. - IntVector2 delta
  2756. - float pressure
  2757. JoystickState
  2758. Properties:<br>
  2759. - uint numButtons (readonly)
  2760. - uint numAxes (readonly)
  2761. - uint numHats (readonly)
  2762. - bool[] buttonDown (readonly)
  2763. - bool[] buttonPress (readonly)
  2764. - float[] axisPosition (readonly)
  2765. - int[] hatPosition (readonly)
  2766. - String name
  2767. Input
  2768. Methods:<br>
  2769. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2770. - bool OpenJoystick(uint)
  2771. - void CloseJoystick(uint)
  2772. - bool DetectJoysticks()
  2773. Properties:<br>
  2774. - ShortStringHash type (readonly)
  2775. - String typeName (readonly)
  2776. - String category (readonly)
  2777. - int refs (readonly)
  2778. - int weakRefs (readonly)
  2779. - bool mouseVisible
  2780. - bool toggleFullscreen
  2781. - bool[] keyDown (readonly)
  2782. - bool[] keyPress (readonly)
  2783. - bool[] mouseButtonDown (readonly)
  2784. - bool[] mouseButtonPress (readonly)
  2785. - bool[] qualifierDown (readonly)
  2786. - bool[] qualifierPress (readonly)
  2787. - int qualifiers (readonly)
  2788. - IntVector2 mousePosition (readonly)
  2789. - IntVector2 mouseMove (readonly)
  2790. - int mouseMoveX (readonly)
  2791. - int mouseMoveY (readonly)
  2792. - int mouseMoveWheel (readonly)
  2793. - uint numTouches (readonly)
  2794. - TouchState@[] touches (readonly)
  2795. - uint numJoysticks (readonly)
  2796. - String[] joystickNames (readonly)
  2797. - JoystickState@[] joysticks (readonly)
  2798. - bool focus (readonly)
  2799. - bool minimized (readonly)
  2800. Sound
  2801. Methods:<br>
  2802. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2803. - bool Load(File@)
  2804. - bool Save(File@) const
  2805. Properties:<br>
  2806. - ShortStringHash type (readonly)
  2807. - String typeName (readonly)
  2808. - String category (readonly)
  2809. - int refs (readonly)
  2810. - int weakRefs (readonly)
  2811. - String name
  2812. - uint memoryUse (readonly)
  2813. - uint useTimer (readonly)
  2814. - float length (readonly)
  2815. - uint sampleSize (readonly)
  2816. - float frequency (readonly)
  2817. - bool looped
  2818. - bool sixteenBit (readonly)
  2819. - bool stereo (readonly)
  2820. - bool compressed (readonly)
  2821. SoundListener
  2822. Methods:<br>
  2823. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2824. - bool Load(File@, bool arg1 = false)
  2825. - bool Save(File@) const
  2826. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2827. - bool SaveXML(XMLElement&) const
  2828. - void ApplyAttributes()
  2829. - bool SetAttribute(const String&, const Variant&)
  2830. - void ResetToDefault()
  2831. - void RemoveInstanceDefault()
  2832. - Variant GetAttribute(const String&) const
  2833. - Variant GetAttributeDefault(const String&) const
  2834. - void Remove()
  2835. - void MarkNetworkUpdate() const
  2836. - void DrawDebugGeometry(DebugRenderer@, bool)
  2837. Properties:<br>
  2838. - ShortStringHash type (readonly)
  2839. - String typeName (readonly)
  2840. - String category (readonly)
  2841. - int refs (readonly)
  2842. - int weakRefs (readonly)
  2843. - uint numAttributes (readonly)
  2844. - Variant[] attributes
  2845. - Variant[] attributeDefaults (readonly)
  2846. - AttributeInfo[] attributeInfos (readonly)
  2847. - bool enabled
  2848. - bool enabledEffective (readonly)
  2849. - uint id (readonly)
  2850. - Node@ node (readonly)
  2851. SoundSource
  2852. Methods:<br>
  2853. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2854. - bool Load(File@, bool arg1 = false)
  2855. - bool Save(File@) const
  2856. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2857. - bool SaveXML(XMLElement&) const
  2858. - void ApplyAttributes()
  2859. - bool SetAttribute(const String&, const Variant&)
  2860. - void ResetToDefault()
  2861. - void RemoveInstanceDefault()
  2862. - Variant GetAttribute(const String&) const
  2863. - Variant GetAttributeDefault(const String&) const
  2864. - void Remove()
  2865. - void MarkNetworkUpdate() const
  2866. - void DrawDebugGeometry(DebugRenderer@, bool)
  2867. - void Play(Sound@)
  2868. - void Play(Sound@, float)
  2869. - void Play(Sound@, float, float)
  2870. - void Play(Sound@, float, float, float)
  2871. - void Stop()
  2872. Properties:<br>
  2873. - ShortStringHash type (readonly)
  2874. - String typeName (readonly)
  2875. - String category (readonly)
  2876. - int refs (readonly)
  2877. - int weakRefs (readonly)
  2878. - uint numAttributes (readonly)
  2879. - Variant[] attributes
  2880. - Variant[] attributeDefaults (readonly)
  2881. - AttributeInfo[] attributeInfos (readonly)
  2882. - bool enabled
  2883. - bool enabledEffective (readonly)
  2884. - uint id (readonly)
  2885. - Node@ node (readonly)
  2886. - SoundType soundType
  2887. - float frequency
  2888. - float gain
  2889. - float panning
  2890. - Sound@ sound (readonly)
  2891. - float timePosition (readonly)
  2892. - float attenuation (readonly)
  2893. - bool autoRemove
  2894. - bool playing (readonly)
  2895. SoundSource3D
  2896. Methods:<br>
  2897. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2898. - bool Load(File@, bool arg1 = false)
  2899. - bool Save(File@) const
  2900. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2901. - bool SaveXML(XMLElement&) const
  2902. - void ApplyAttributes()
  2903. - bool SetAttribute(const String&, const Variant&)
  2904. - void ResetToDefault()
  2905. - void RemoveInstanceDefault()
  2906. - Variant GetAttribute(const String&) const
  2907. - Variant GetAttributeDefault(const String&) const
  2908. - void Remove()
  2909. - void MarkNetworkUpdate() const
  2910. - void DrawDebugGeometry(DebugRenderer@, bool)
  2911. - void Play(Sound@)
  2912. - void Play(Sound@, float)
  2913. - void Play(Sound@, float, float)
  2914. - void Play(Sound@, float, float, float)
  2915. - void Stop()
  2916. - void SetDistanceAttenuation(float, float, float)
  2917. Properties:<br>
  2918. - ShortStringHash type (readonly)
  2919. - String typeName (readonly)
  2920. - String category (readonly)
  2921. - int refs (readonly)
  2922. - int weakRefs (readonly)
  2923. - uint numAttributes (readonly)
  2924. - Variant[] attributes
  2925. - Variant[] attributeDefaults (readonly)
  2926. - AttributeInfo[] attributeInfos (readonly)
  2927. - bool enabled
  2928. - bool enabledEffective (readonly)
  2929. - uint id (readonly)
  2930. - Node@ node (readonly)
  2931. - SoundType soundType
  2932. - float frequency
  2933. - float gain
  2934. - float panning
  2935. - Sound@ sound (readonly)
  2936. - float timePosition (readonly)
  2937. - float attenuation (readonly)
  2938. - bool autoRemove
  2939. - bool playing (readonly)
  2940. - float nearDistance
  2941. - float farDistance
  2942. - float rolloffFactor
  2943. Audio
  2944. Methods:<br>
  2945. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2946. - void SetMode(int, int, bool, bool arg3 = true)
  2947. - bool Play()
  2948. - void Stop()
  2949. Properties:<br>
  2950. - ShortStringHash type (readonly)
  2951. - String typeName (readonly)
  2952. - String category (readonly)
  2953. - int refs (readonly)
  2954. - int weakRefs (readonly)
  2955. - float[] masterGain
  2956. - SoundListener@ listener
  2957. - uint sampleSize (readonly)
  2958. - int mixRate (readonly)
  2959. - bool stereo (readonly)
  2960. - bool interpolation (readonly)
  2961. - bool playing (readonly)
  2962. - bool initialized (readonly)
  2963. Font
  2964. Methods:<br>
  2965. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2966. - bool Load(File@)
  2967. - bool Save(File@) const
  2968. - bool SaveXML(File@, int, bool arg2 = false)
  2969. - bool SaveXML(const String&, int, bool arg2 = false)
  2970. Properties:<br>
  2971. - ShortStringHash type (readonly)
  2972. - String typeName (readonly)
  2973. - String category (readonly)
  2974. - int refs (readonly)
  2975. - int weakRefs (readonly)
  2976. - String name
  2977. - uint memoryUse (readonly)
  2978. - uint useTimer (readonly)
  2979. UIElement
  2980. Methods:<br>
  2981. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  2982. - bool Load(File@, bool arg1 = false)
  2983. - bool Save(File@) const
  2984. - bool LoadXML(const XMLElement&, bool arg1 = false)
  2985. - bool SaveXML(XMLElement&) const
  2986. - void ApplyAttributes()
  2987. - bool SetAttribute(const String&, const Variant&)
  2988. - void ResetToDefault()
  2989. - void RemoveInstanceDefault()
  2990. - Variant GetAttribute(const String&) const
  2991. - Variant GetAttributeDefault(const String&) const
  2992. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  2993. - bool LoadXML(File@)
  2994. - bool LoadXML(XMLFile@, XMLFile@)
  2995. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  2996. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  2997. - bool SaveXML(File@)
  2998. - bool SetStyle(const XMLElement&)
  2999. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3000. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3001. - void SetPosition(int, int)
  3002. - void SetSize(int, int)
  3003. - void SetMinSize(int, int)
  3004. - void SetMaxSize(int, int)
  3005. - void SetFixedSize(int, int)
  3006. - void SetFixedWidth(int)
  3007. - void SetFixedHeight(int)
  3008. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3009. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3010. - void UpdateLayout()
  3011. - void DisableLayoutUpdate()
  3012. - void EnableLayoutUpdate()
  3013. - void BringToFront()
  3014. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3015. - void AddChild(UIElement@)
  3016. - void InsertChild(uint, UIElement@)
  3017. - void RemoveChild(UIElement@, uint arg1 = 0)
  3018. - void RemoveChild(uint)
  3019. - void RemoveAllChildren()
  3020. - void Remove()
  3021. - uint FindChild(UIElement@) const
  3022. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3023. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3024. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3025. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3026. - UIElement@ GetElementEventSender() const
  3027. - const Variant& GetVar(const ShortStringHash&)
  3028. - IntVector2 ScreenToElement(const IntVector2&)
  3029. - IntVector2 ElementToScreen(const IntVector2&)
  3030. - bool IsInside(IntVector2, bool)
  3031. - bool IsInsideCombined(IntVector2, bool)
  3032. Properties:<br>
  3033. - ShortStringHash type (readonly)
  3034. - String typeName (readonly)
  3035. - String category (readonly)
  3036. - int refs (readonly)
  3037. - int weakRefs (readonly)
  3038. - uint numAttributes (readonly)
  3039. - Variant[] attributes
  3040. - Variant[] attributeDefaults (readonly)
  3041. - AttributeInfo[] attributeInfos (readonly)
  3042. - String style
  3043. - String name
  3044. - IntVector2 position
  3045. - IntVector2 size
  3046. - int width
  3047. - int height
  3048. - IntVector2 minSize
  3049. - int minWidth
  3050. - int minHeight
  3051. - IntVector2 maxSize
  3052. - int maxWidth
  3053. - int maxHeight
  3054. - bool fixedSize (readonly)
  3055. - bool fixedWidth (readonly)
  3056. - bool fixedHeight (readonly)
  3057. - HorizontalAlignment horizontalAlignment
  3058. - VerticalAlignment verticalAlignment
  3059. - IntRect clipBorder
  3060. - Color color (writeonly)
  3061. - Color[] colors
  3062. - int priority
  3063. - float opacity
  3064. - bool bringToFront
  3065. - bool bringToBack
  3066. - bool clipChildren
  3067. - bool sortChildren
  3068. - bool useDerivedOpacity
  3069. - bool enabled
  3070. - bool focus
  3071. - bool selected
  3072. - bool visible
  3073. - bool hovering (readonly)
  3074. - bool internal
  3075. - bool colorGradient (readonly)
  3076. - FocusMode focusMode
  3077. - uint dragDropMode
  3078. - TraversalMode traversalMode
  3079. - XMLFile@ defaultStyle
  3080. - LayoutMode layoutMode
  3081. - int layoutSpacing
  3082. - IntRect layoutBorder
  3083. - int indent
  3084. - int indentSpacing
  3085. - int indentWidth (readonly)
  3086. - IntVector2 childOffset (readonly)
  3087. - bool elementEventSender
  3088. - uint[] numChildren (readonly)
  3089. - uint numAllChildren (readonly)
  3090. - UIElement@[] children (readonly)
  3091. - UIElement@ parent
  3092. - UIElement@ root (readonly)
  3093. - IntVector2 screenPosition (readonly)
  3094. - IntRect combinedScreenRect (readonly)
  3095. - float derivedOpacity (readonly)
  3096. - VariantMap vars (readonly)
  3097. BorderImage
  3098. Methods:<br>
  3099. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3100. - bool Load(File@, bool arg1 = false)
  3101. - bool Save(File@) const
  3102. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3103. - bool SaveXML(XMLElement&) const
  3104. - void ApplyAttributes()
  3105. - bool SetAttribute(const String&, const Variant&)
  3106. - void ResetToDefault()
  3107. - void RemoveInstanceDefault()
  3108. - Variant GetAttribute(const String&) const
  3109. - Variant GetAttributeDefault(const String&) const
  3110. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3111. - bool LoadXML(File@)
  3112. - bool LoadXML(XMLFile@, XMLFile@)
  3113. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3114. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3115. - bool SaveXML(File@)
  3116. - bool SetStyle(const XMLElement&)
  3117. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3118. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3119. - void SetPosition(int, int)
  3120. - void SetSize(int, int)
  3121. - void SetMinSize(int, int)
  3122. - void SetMaxSize(int, int)
  3123. - void SetFixedSize(int, int)
  3124. - void SetFixedWidth(int)
  3125. - void SetFixedHeight(int)
  3126. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3127. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3128. - void UpdateLayout()
  3129. - void DisableLayoutUpdate()
  3130. - void EnableLayoutUpdate()
  3131. - void BringToFront()
  3132. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3133. - void AddChild(UIElement@)
  3134. - void InsertChild(uint, UIElement@)
  3135. - void RemoveChild(UIElement@, uint arg1 = 0)
  3136. - void RemoveChild(uint)
  3137. - void RemoveAllChildren()
  3138. - void Remove()
  3139. - uint FindChild(UIElement@) const
  3140. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3141. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3142. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3143. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3144. - UIElement@ GetElementEventSender() const
  3145. - const Variant& GetVar(const ShortStringHash&)
  3146. - IntVector2 ScreenToElement(const IntVector2&)
  3147. - IntVector2 ElementToScreen(const IntVector2&)
  3148. - bool IsInside(IntVector2, bool)
  3149. - bool IsInsideCombined(IntVector2, bool)
  3150. - void SetFullImageRect()
  3151. - void SetHoverOffset(int, int)
  3152. Properties:<br>
  3153. - ShortStringHash type (readonly)
  3154. - String typeName (readonly)
  3155. - String category (readonly)
  3156. - int refs (readonly)
  3157. - int weakRefs (readonly)
  3158. - uint numAttributes (readonly)
  3159. - Variant[] attributes
  3160. - Variant[] attributeDefaults (readonly)
  3161. - AttributeInfo[] attributeInfos (readonly)
  3162. - String style
  3163. - String name
  3164. - IntVector2 position
  3165. - IntVector2 size
  3166. - int width
  3167. - int height
  3168. - IntVector2 minSize
  3169. - int minWidth
  3170. - int minHeight
  3171. - IntVector2 maxSize
  3172. - int maxWidth
  3173. - int maxHeight
  3174. - bool fixedSize (readonly)
  3175. - bool fixedWidth (readonly)
  3176. - bool fixedHeight (readonly)
  3177. - HorizontalAlignment horizontalAlignment
  3178. - VerticalAlignment verticalAlignment
  3179. - IntRect clipBorder
  3180. - Color color (writeonly)
  3181. - Color[] colors
  3182. - int priority
  3183. - float opacity
  3184. - bool bringToFront
  3185. - bool bringToBack
  3186. - bool clipChildren
  3187. - bool sortChildren
  3188. - bool useDerivedOpacity
  3189. - bool enabled
  3190. - bool focus
  3191. - bool selected
  3192. - bool visible
  3193. - bool hovering (readonly)
  3194. - bool internal
  3195. - bool colorGradient (readonly)
  3196. - FocusMode focusMode
  3197. - uint dragDropMode
  3198. - TraversalMode traversalMode
  3199. - XMLFile@ defaultStyle
  3200. - LayoutMode layoutMode
  3201. - int layoutSpacing
  3202. - IntRect layoutBorder
  3203. - int indent
  3204. - int indentSpacing
  3205. - int indentWidth (readonly)
  3206. - IntVector2 childOffset (readonly)
  3207. - bool elementEventSender
  3208. - uint[] numChildren (readonly)
  3209. - uint numAllChildren (readonly)
  3210. - UIElement@[] children (readonly)
  3211. - UIElement@ parent
  3212. - UIElement@ root (readonly)
  3213. - IntVector2 screenPosition (readonly)
  3214. - IntRect combinedScreenRect (readonly)
  3215. - float derivedOpacity (readonly)
  3216. - VariantMap vars (readonly)
  3217. - Texture@ texture
  3218. - IntRect imageRect
  3219. - IntRect border
  3220. - IntVector2 hoverOffset
  3221. - BlendMode blendMode
  3222. - bool tiled
  3223. Sprite
  3224. Methods:<br>
  3225. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3226. - bool Load(File@, bool arg1 = false)
  3227. - bool Save(File@) const
  3228. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3229. - bool SaveXML(XMLElement&) const
  3230. - void ApplyAttributes()
  3231. - bool SetAttribute(const String&, const Variant&)
  3232. - void ResetToDefault()
  3233. - void RemoveInstanceDefault()
  3234. - Variant GetAttribute(const String&) const
  3235. - Variant GetAttributeDefault(const String&) const
  3236. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3237. - bool LoadXML(File@)
  3238. - bool LoadXML(XMLFile@, XMLFile@)
  3239. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3240. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3241. - bool SaveXML(File@)
  3242. - bool SetStyle(const XMLElement&)
  3243. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3244. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3245. - void SetSize(int, int)
  3246. - void SetMinSize(int, int)
  3247. - void SetMaxSize(int, int)
  3248. - void SetFixedSize(int, int)
  3249. - void SetFixedWidth(int)
  3250. - void SetFixedHeight(int)
  3251. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3252. - void BringToFront()
  3253. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3254. - void AddChild(UIElement@)
  3255. - void InsertChild(uint, UIElement@)
  3256. - void RemoveChild(UIElement@, uint arg1 = 0)
  3257. - void RemoveChild(uint)
  3258. - void RemoveAllChildren()
  3259. - void Remove()
  3260. - uint FindChild(UIElement@) const
  3261. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3262. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3263. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3264. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3265. - UIElement@ GetElementEventSender() const
  3266. - const Variant& GetVar(const ShortStringHash&)
  3267. - void SetPosition(float, float)
  3268. - void SetHotSpot(int, int)
  3269. - void SetScale(float, float)
  3270. - void SetScale(float)
  3271. - void SetFullImageRect()
  3272. Properties:<br>
  3273. - ShortStringHash type (readonly)
  3274. - String typeName (readonly)
  3275. - String category (readonly)
  3276. - int refs (readonly)
  3277. - int weakRefs (readonly)
  3278. - uint numAttributes (readonly)
  3279. - Variant[] attributes
  3280. - Variant[] attributeDefaults (readonly)
  3281. - AttributeInfo[] attributeInfos (readonly)
  3282. - String style
  3283. - String name
  3284. - IntVector2 size
  3285. - int width
  3286. - int height
  3287. - HorizontalAlignment horizontalAlignment
  3288. - VerticalAlignment verticalAlignment
  3289. - Color color (writeonly)
  3290. - Color[] colors
  3291. - int priority
  3292. - float opacity
  3293. - bool bringToFront
  3294. - bool bringToBack
  3295. - bool sortChildren
  3296. - bool useDerivedOpacity
  3297. - bool visible
  3298. - bool colorGradient (readonly)
  3299. - XMLFile@ defaultStyle
  3300. - bool elementEventSender
  3301. - uint[] numChildren (readonly)
  3302. - uint numAllChildren (readonly)
  3303. - UIElement@[] children (readonly)
  3304. - UIElement@ parent
  3305. - UIElement@ root (readonly)
  3306. - float derivedOpacity (readonly)
  3307. - VariantMap vars (readonly)
  3308. - Vector2 position
  3309. - IntVector2 hotSpot
  3310. - Vector2 scale
  3311. - float rotation
  3312. - Texture@ texture
  3313. - IntRect imageRect
  3314. - BlendMode blendMode
  3315. Button
  3316. Methods:<br>
  3317. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3318. - bool Load(File@, bool arg1 = false)
  3319. - bool Save(File@) const
  3320. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3321. - bool SaveXML(XMLElement&) const
  3322. - void ApplyAttributes()
  3323. - bool SetAttribute(const String&, const Variant&)
  3324. - void ResetToDefault()
  3325. - void RemoveInstanceDefault()
  3326. - Variant GetAttribute(const String&) const
  3327. - Variant GetAttributeDefault(const String&) const
  3328. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3329. - bool LoadXML(File@)
  3330. - bool LoadXML(XMLFile@, XMLFile@)
  3331. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3332. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3333. - bool SaveXML(File@)
  3334. - bool SetStyle(const XMLElement&)
  3335. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3336. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3337. - void SetPosition(int, int)
  3338. - void SetSize(int, int)
  3339. - void SetMinSize(int, int)
  3340. - void SetMaxSize(int, int)
  3341. - void SetFixedSize(int, int)
  3342. - void SetFixedWidth(int)
  3343. - void SetFixedHeight(int)
  3344. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3345. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3346. - void UpdateLayout()
  3347. - void DisableLayoutUpdate()
  3348. - void EnableLayoutUpdate()
  3349. - void BringToFront()
  3350. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3351. - void AddChild(UIElement@)
  3352. - void InsertChild(uint, UIElement@)
  3353. - void RemoveChild(UIElement@, uint arg1 = 0)
  3354. - void RemoveChild(uint)
  3355. - void RemoveAllChildren()
  3356. - void Remove()
  3357. - uint FindChild(UIElement@) const
  3358. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3359. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3360. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3361. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3362. - UIElement@ GetElementEventSender() const
  3363. - const Variant& GetVar(const ShortStringHash&)
  3364. - IntVector2 ScreenToElement(const IntVector2&)
  3365. - IntVector2 ElementToScreen(const IntVector2&)
  3366. - bool IsInside(IntVector2, bool)
  3367. - bool IsInsideCombined(IntVector2, bool)
  3368. - void SetFullImageRect()
  3369. - void SetHoverOffset(int, int)
  3370. - void SetPressedOffset(int, int)
  3371. - void SetLabelOffset(int, int)
  3372. - void SetRepeat(float, float)
  3373. Properties:<br>
  3374. - ShortStringHash type (readonly)
  3375. - String typeName (readonly)
  3376. - String category (readonly)
  3377. - int refs (readonly)
  3378. - int weakRefs (readonly)
  3379. - uint numAttributes (readonly)
  3380. - Variant[] attributes
  3381. - Variant[] attributeDefaults (readonly)
  3382. - AttributeInfo[] attributeInfos (readonly)
  3383. - String style
  3384. - String name
  3385. - IntVector2 position
  3386. - IntVector2 size
  3387. - int width
  3388. - int height
  3389. - IntVector2 minSize
  3390. - int minWidth
  3391. - int minHeight
  3392. - IntVector2 maxSize
  3393. - int maxWidth
  3394. - int maxHeight
  3395. - bool fixedSize (readonly)
  3396. - bool fixedWidth (readonly)
  3397. - bool fixedHeight (readonly)
  3398. - HorizontalAlignment horizontalAlignment
  3399. - VerticalAlignment verticalAlignment
  3400. - IntRect clipBorder
  3401. - Color color (writeonly)
  3402. - Color[] colors
  3403. - int priority
  3404. - float opacity
  3405. - bool bringToFront
  3406. - bool bringToBack
  3407. - bool clipChildren
  3408. - bool sortChildren
  3409. - bool useDerivedOpacity
  3410. - bool enabled
  3411. - bool focus
  3412. - bool selected
  3413. - bool visible
  3414. - bool hovering (readonly)
  3415. - bool internal
  3416. - bool colorGradient (readonly)
  3417. - FocusMode focusMode
  3418. - uint dragDropMode
  3419. - TraversalMode traversalMode
  3420. - XMLFile@ defaultStyle
  3421. - LayoutMode layoutMode
  3422. - int layoutSpacing
  3423. - IntRect layoutBorder
  3424. - int indent
  3425. - int indentSpacing
  3426. - int indentWidth (readonly)
  3427. - IntVector2 childOffset (readonly)
  3428. - bool elementEventSender
  3429. - uint[] numChildren (readonly)
  3430. - uint numAllChildren (readonly)
  3431. - UIElement@[] children (readonly)
  3432. - UIElement@ parent
  3433. - UIElement@ root (readonly)
  3434. - IntVector2 screenPosition (readonly)
  3435. - IntRect combinedScreenRect (readonly)
  3436. - float derivedOpacity (readonly)
  3437. - VariantMap vars (readonly)
  3438. - Texture@ texture
  3439. - IntRect imageRect
  3440. - IntRect border
  3441. - IntVector2 hoverOffset
  3442. - BlendMode blendMode
  3443. - bool tiled
  3444. - IntVector2 pressedOffset
  3445. - IntVector2 labelOffset
  3446. - float repeatDelay
  3447. - float repeatRate
  3448. CheckBox
  3449. Methods:<br>
  3450. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3451. - bool Load(File@, bool arg1 = false)
  3452. - bool Save(File@) const
  3453. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3454. - bool SaveXML(XMLElement&) const
  3455. - void ApplyAttributes()
  3456. - bool SetAttribute(const String&, const Variant&)
  3457. - void ResetToDefault()
  3458. - void RemoveInstanceDefault()
  3459. - Variant GetAttribute(const String&) const
  3460. - Variant GetAttributeDefault(const String&) const
  3461. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3462. - bool LoadXML(File@)
  3463. - bool LoadXML(XMLFile@, XMLFile@)
  3464. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3465. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3466. - bool SaveXML(File@)
  3467. - bool SetStyle(const XMLElement&)
  3468. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3469. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3470. - void SetPosition(int, int)
  3471. - void SetSize(int, int)
  3472. - void SetMinSize(int, int)
  3473. - void SetMaxSize(int, int)
  3474. - void SetFixedSize(int, int)
  3475. - void SetFixedWidth(int)
  3476. - void SetFixedHeight(int)
  3477. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3478. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3479. - void UpdateLayout()
  3480. - void DisableLayoutUpdate()
  3481. - void EnableLayoutUpdate()
  3482. - void BringToFront()
  3483. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3484. - void AddChild(UIElement@)
  3485. - void InsertChild(uint, UIElement@)
  3486. - void RemoveChild(UIElement@, uint arg1 = 0)
  3487. - void RemoveChild(uint)
  3488. - void RemoveAllChildren()
  3489. - void Remove()
  3490. - uint FindChild(UIElement@) const
  3491. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3492. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3493. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3494. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3495. - UIElement@ GetElementEventSender() const
  3496. - const Variant& GetVar(const ShortStringHash&)
  3497. - IntVector2 ScreenToElement(const IntVector2&)
  3498. - IntVector2 ElementToScreen(const IntVector2&)
  3499. - bool IsInside(IntVector2, bool)
  3500. - bool IsInsideCombined(IntVector2, bool)
  3501. - void SetFullImageRect()
  3502. - void SetHoverOffset(int, int)
  3503. - void SetCheckedOffset(int, int)
  3504. Properties:<br>
  3505. - ShortStringHash type (readonly)
  3506. - String typeName (readonly)
  3507. - String category (readonly)
  3508. - int refs (readonly)
  3509. - int weakRefs (readonly)
  3510. - uint numAttributes (readonly)
  3511. - Variant[] attributes
  3512. - Variant[] attributeDefaults (readonly)
  3513. - AttributeInfo[] attributeInfos (readonly)
  3514. - String style
  3515. - String name
  3516. - IntVector2 position
  3517. - IntVector2 size
  3518. - int width
  3519. - int height
  3520. - IntVector2 minSize
  3521. - int minWidth
  3522. - int minHeight
  3523. - IntVector2 maxSize
  3524. - int maxWidth
  3525. - int maxHeight
  3526. - bool fixedSize (readonly)
  3527. - bool fixedWidth (readonly)
  3528. - bool fixedHeight (readonly)
  3529. - HorizontalAlignment horizontalAlignment
  3530. - VerticalAlignment verticalAlignment
  3531. - IntRect clipBorder
  3532. - Color color (writeonly)
  3533. - Color[] colors
  3534. - int priority
  3535. - float opacity
  3536. - bool bringToFront
  3537. - bool bringToBack
  3538. - bool clipChildren
  3539. - bool sortChildren
  3540. - bool useDerivedOpacity
  3541. - bool enabled
  3542. - bool focus
  3543. - bool selected
  3544. - bool visible
  3545. - bool hovering (readonly)
  3546. - bool internal
  3547. - bool colorGradient (readonly)
  3548. - FocusMode focusMode
  3549. - uint dragDropMode
  3550. - TraversalMode traversalMode
  3551. - XMLFile@ defaultStyle
  3552. - LayoutMode layoutMode
  3553. - int layoutSpacing
  3554. - IntRect layoutBorder
  3555. - int indent
  3556. - int indentSpacing
  3557. - int indentWidth (readonly)
  3558. - IntVector2 childOffset (readonly)
  3559. - bool elementEventSender
  3560. - uint[] numChildren (readonly)
  3561. - uint numAllChildren (readonly)
  3562. - UIElement@[] children (readonly)
  3563. - UIElement@ parent
  3564. - UIElement@ root (readonly)
  3565. - IntVector2 screenPosition (readonly)
  3566. - IntRect combinedScreenRect (readonly)
  3567. - float derivedOpacity (readonly)
  3568. - VariantMap vars (readonly)
  3569. - Texture@ texture
  3570. - IntRect imageRect
  3571. - IntRect border
  3572. - IntVector2 hoverOffset
  3573. - BlendMode blendMode
  3574. - bool tiled
  3575. - bool checked
  3576. - IntVector2 checkedOffset
  3577. Cursor
  3578. Methods:<br>
  3579. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3580. - bool Load(File@, bool arg1 = false)
  3581. - bool Save(File@) const
  3582. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3583. - bool SaveXML(XMLElement&) const
  3584. - void ApplyAttributes()
  3585. - bool SetAttribute(const String&, const Variant&)
  3586. - void ResetToDefault()
  3587. - void RemoveInstanceDefault()
  3588. - Variant GetAttribute(const String&) const
  3589. - Variant GetAttributeDefault(const String&) const
  3590. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3591. - bool LoadXML(File@)
  3592. - bool LoadXML(XMLFile@, XMLFile@)
  3593. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3594. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3595. - bool SaveXML(File@)
  3596. - bool SetStyle(const XMLElement&)
  3597. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3598. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3599. - void SetPosition(int, int)
  3600. - void SetSize(int, int)
  3601. - void SetMinSize(int, int)
  3602. - void SetMaxSize(int, int)
  3603. - void SetFixedSize(int, int)
  3604. - void SetFixedWidth(int)
  3605. - void SetFixedHeight(int)
  3606. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3607. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3608. - void UpdateLayout()
  3609. - void DisableLayoutUpdate()
  3610. - void EnableLayoutUpdate()
  3611. - void BringToFront()
  3612. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3613. - void AddChild(UIElement@)
  3614. - void InsertChild(uint, UIElement@)
  3615. - void RemoveChild(UIElement@, uint arg1 = 0)
  3616. - void RemoveChild(uint)
  3617. - void RemoveAllChildren()
  3618. - void Remove()
  3619. - uint FindChild(UIElement@) const
  3620. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3621. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3622. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3623. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3624. - UIElement@ GetElementEventSender() const
  3625. - const Variant& GetVar(const ShortStringHash&)
  3626. - IntVector2 ScreenToElement(const IntVector2&)
  3627. - IntVector2 ElementToScreen(const IntVector2&)
  3628. - bool IsInside(IntVector2, bool)
  3629. - bool IsInsideCombined(IntVector2, bool)
  3630. - void SetFullImageRect()
  3631. - void SetHoverOffset(int, int)
  3632. - void DefineShape(CursorShape, Texture@, const IntRect&, const IntVector2&, bool arg4 = false)
  3633. Properties:<br>
  3634. - ShortStringHash type (readonly)
  3635. - String typeName (readonly)
  3636. - String category (readonly)
  3637. - int refs (readonly)
  3638. - int weakRefs (readonly)
  3639. - uint numAttributes (readonly)
  3640. - Variant[] attributes
  3641. - Variant[] attributeDefaults (readonly)
  3642. - AttributeInfo[] attributeInfos (readonly)
  3643. - String style
  3644. - String name
  3645. - IntVector2 position
  3646. - IntVector2 size
  3647. - int width
  3648. - int height
  3649. - IntVector2 minSize
  3650. - int minWidth
  3651. - int minHeight
  3652. - IntVector2 maxSize
  3653. - int maxWidth
  3654. - int maxHeight
  3655. - bool fixedSize (readonly)
  3656. - bool fixedWidth (readonly)
  3657. - bool fixedHeight (readonly)
  3658. - HorizontalAlignment horizontalAlignment
  3659. - VerticalAlignment verticalAlignment
  3660. - IntRect clipBorder
  3661. - Color color (writeonly)
  3662. - Color[] colors
  3663. - int priority
  3664. - float opacity
  3665. - bool bringToFront
  3666. - bool bringToBack
  3667. - bool clipChildren
  3668. - bool sortChildren
  3669. - bool useDerivedOpacity
  3670. - bool enabled
  3671. - bool focus
  3672. - bool selected
  3673. - bool visible
  3674. - bool hovering (readonly)
  3675. - bool internal
  3676. - bool colorGradient (readonly)
  3677. - FocusMode focusMode
  3678. - uint dragDropMode
  3679. - TraversalMode traversalMode
  3680. - XMLFile@ defaultStyle
  3681. - LayoutMode layoutMode
  3682. - int layoutSpacing
  3683. - IntRect layoutBorder
  3684. - int indent
  3685. - int indentSpacing
  3686. - int indentWidth (readonly)
  3687. - IntVector2 childOffset (readonly)
  3688. - bool elementEventSender
  3689. - uint[] numChildren (readonly)
  3690. - uint numAllChildren (readonly)
  3691. - UIElement@[] children (readonly)
  3692. - UIElement@ parent
  3693. - UIElement@ root (readonly)
  3694. - IntVector2 screenPosition (readonly)
  3695. - IntRect combinedScreenRect (readonly)
  3696. - float derivedOpacity (readonly)
  3697. - VariantMap vars (readonly)
  3698. - Texture@ texture
  3699. - IntRect imageRect
  3700. - IntRect border
  3701. - IntVector2 hoverOffset
  3702. - BlendMode blendMode
  3703. - bool tiled
  3704. - CursorShape shape
  3705. Slider
  3706. Methods:<br>
  3707. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3708. - bool Load(File@, bool arg1 = false)
  3709. - bool Save(File@) const
  3710. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3711. - bool SaveXML(XMLElement&) const
  3712. - void ApplyAttributes()
  3713. - bool SetAttribute(const String&, const Variant&)
  3714. - void ResetToDefault()
  3715. - void RemoveInstanceDefault()
  3716. - Variant GetAttribute(const String&) const
  3717. - Variant GetAttributeDefault(const String&) const
  3718. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3719. - bool LoadXML(File@)
  3720. - bool LoadXML(XMLFile@, XMLFile@)
  3721. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3722. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3723. - bool SaveXML(File@)
  3724. - bool SetStyle(const XMLElement&)
  3725. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3726. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3727. - void SetPosition(int, int)
  3728. - void SetSize(int, int)
  3729. - void SetMinSize(int, int)
  3730. - void SetMaxSize(int, int)
  3731. - void SetFixedSize(int, int)
  3732. - void SetFixedWidth(int)
  3733. - void SetFixedHeight(int)
  3734. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3735. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3736. - void UpdateLayout()
  3737. - void DisableLayoutUpdate()
  3738. - void EnableLayoutUpdate()
  3739. - void BringToFront()
  3740. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3741. - void AddChild(UIElement@)
  3742. - void InsertChild(uint, UIElement@)
  3743. - void RemoveChild(UIElement@, uint arg1 = 0)
  3744. - void RemoveChild(uint)
  3745. - void RemoveAllChildren()
  3746. - void Remove()
  3747. - uint FindChild(UIElement@) const
  3748. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3749. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3750. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3751. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3752. - UIElement@ GetElementEventSender() const
  3753. - const Variant& GetVar(const ShortStringHash&)
  3754. - IntVector2 ScreenToElement(const IntVector2&)
  3755. - IntVector2 ElementToScreen(const IntVector2&)
  3756. - bool IsInside(IntVector2, bool)
  3757. - bool IsInsideCombined(IntVector2, bool)
  3758. - void SetFullImageRect()
  3759. - void SetHoverOffset(int, int)
  3760. - void ChangeValue(float)
  3761. Properties:<br>
  3762. - ShortStringHash type (readonly)
  3763. - String typeName (readonly)
  3764. - String category (readonly)
  3765. - int refs (readonly)
  3766. - int weakRefs (readonly)
  3767. - uint numAttributes (readonly)
  3768. - Variant[] attributes
  3769. - Variant[] attributeDefaults (readonly)
  3770. - AttributeInfo[] attributeInfos (readonly)
  3771. - String style
  3772. - String name
  3773. - IntVector2 position
  3774. - IntVector2 size
  3775. - int width
  3776. - int height
  3777. - IntVector2 minSize
  3778. - int minWidth
  3779. - int minHeight
  3780. - IntVector2 maxSize
  3781. - int maxWidth
  3782. - int maxHeight
  3783. - bool fixedSize (readonly)
  3784. - bool fixedWidth (readonly)
  3785. - bool fixedHeight (readonly)
  3786. - HorizontalAlignment horizontalAlignment
  3787. - VerticalAlignment verticalAlignment
  3788. - IntRect clipBorder
  3789. - Color color (writeonly)
  3790. - Color[] colors
  3791. - int priority
  3792. - float opacity
  3793. - bool bringToFront
  3794. - bool bringToBack
  3795. - bool clipChildren
  3796. - bool sortChildren
  3797. - bool useDerivedOpacity
  3798. - bool enabled
  3799. - bool focus
  3800. - bool selected
  3801. - bool visible
  3802. - bool hovering (readonly)
  3803. - bool internal
  3804. - bool colorGradient (readonly)
  3805. - FocusMode focusMode
  3806. - uint dragDropMode
  3807. - TraversalMode traversalMode
  3808. - XMLFile@ defaultStyle
  3809. - LayoutMode layoutMode
  3810. - int layoutSpacing
  3811. - IntRect layoutBorder
  3812. - int indent
  3813. - int indentSpacing
  3814. - int indentWidth (readonly)
  3815. - IntVector2 childOffset (readonly)
  3816. - bool elementEventSender
  3817. - uint[] numChildren (readonly)
  3818. - uint numAllChildren (readonly)
  3819. - UIElement@[] children (readonly)
  3820. - UIElement@ parent
  3821. - UIElement@ root (readonly)
  3822. - IntVector2 screenPosition (readonly)
  3823. - IntRect combinedScreenRect (readonly)
  3824. - float derivedOpacity (readonly)
  3825. - VariantMap vars (readonly)
  3826. - Texture@ texture
  3827. - IntRect imageRect
  3828. - IntRect border
  3829. - IntVector2 hoverOffset
  3830. - BlendMode blendMode
  3831. - bool tiled
  3832. - Orientation orientation
  3833. - float range
  3834. - float value
  3835. - BorderImage@ knob (readonly)
  3836. - float repeatRate
  3837. ScrollBar
  3838. Methods:<br>
  3839. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3840. - bool Load(File@, bool arg1 = false)
  3841. - bool Save(File@) const
  3842. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3843. - bool SaveXML(XMLElement&) const
  3844. - void ApplyAttributes()
  3845. - bool SetAttribute(const String&, const Variant&)
  3846. - void ResetToDefault()
  3847. - void RemoveInstanceDefault()
  3848. - Variant GetAttribute(const String&) const
  3849. - Variant GetAttributeDefault(const String&) const
  3850. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3851. - bool LoadXML(File@)
  3852. - bool LoadXML(XMLFile@, XMLFile@)
  3853. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3854. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3855. - bool SaveXML(File@)
  3856. - bool SetStyle(const XMLElement&)
  3857. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3858. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3859. - void SetPosition(int, int)
  3860. - void SetSize(int, int)
  3861. - void SetMinSize(int, int)
  3862. - void SetMaxSize(int, int)
  3863. - void SetFixedSize(int, int)
  3864. - void SetFixedWidth(int)
  3865. - void SetFixedHeight(int)
  3866. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3867. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3868. - void UpdateLayout()
  3869. - void DisableLayoutUpdate()
  3870. - void EnableLayoutUpdate()
  3871. - void BringToFront()
  3872. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  3873. - void AddChild(UIElement@)
  3874. - void InsertChild(uint, UIElement@)
  3875. - void RemoveChild(UIElement@, uint arg1 = 0)
  3876. - void RemoveChild(uint)
  3877. - void RemoveAllChildren()
  3878. - void Remove()
  3879. - uint FindChild(UIElement@) const
  3880. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  3881. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3882. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  3883. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3884. - UIElement@ GetElementEventSender() const
  3885. - const Variant& GetVar(const ShortStringHash&)
  3886. - IntVector2 ScreenToElement(const IntVector2&)
  3887. - IntVector2 ElementToScreen(const IntVector2&)
  3888. - bool IsInside(IntVector2, bool)
  3889. - bool IsInsideCombined(IntVector2, bool)
  3890. - void ChangeValue(float)
  3891. - void StepBack()
  3892. - void StepForward()
  3893. Properties:<br>
  3894. - ShortStringHash type (readonly)
  3895. - String typeName (readonly)
  3896. - String category (readonly)
  3897. - int refs (readonly)
  3898. - int weakRefs (readonly)
  3899. - uint numAttributes (readonly)
  3900. - Variant[] attributes
  3901. - Variant[] attributeDefaults (readonly)
  3902. - AttributeInfo[] attributeInfos (readonly)
  3903. - String style
  3904. - String name
  3905. - IntVector2 position
  3906. - IntVector2 size
  3907. - int width
  3908. - int height
  3909. - IntVector2 minSize
  3910. - int minWidth
  3911. - int minHeight
  3912. - IntVector2 maxSize
  3913. - int maxWidth
  3914. - int maxHeight
  3915. - bool fixedSize (readonly)
  3916. - bool fixedWidth (readonly)
  3917. - bool fixedHeight (readonly)
  3918. - HorizontalAlignment horizontalAlignment
  3919. - VerticalAlignment verticalAlignment
  3920. - IntRect clipBorder
  3921. - Color color (writeonly)
  3922. - Color[] colors
  3923. - int priority
  3924. - float opacity
  3925. - bool bringToFront
  3926. - bool bringToBack
  3927. - bool clipChildren
  3928. - bool sortChildren
  3929. - bool useDerivedOpacity
  3930. - bool enabled
  3931. - bool focus
  3932. - bool selected
  3933. - bool visible
  3934. - bool hovering (readonly)
  3935. - bool internal
  3936. - bool colorGradient (readonly)
  3937. - FocusMode focusMode
  3938. - uint dragDropMode
  3939. - TraversalMode traversalMode
  3940. - XMLFile@ defaultStyle
  3941. - LayoutMode layoutMode
  3942. - int layoutSpacing
  3943. - IntRect layoutBorder
  3944. - int indent
  3945. - int indentSpacing
  3946. - int indentWidth (readonly)
  3947. - IntVector2 childOffset (readonly)
  3948. - bool elementEventSender
  3949. - uint[] numChildren (readonly)
  3950. - uint numAllChildren (readonly)
  3951. - UIElement@[] children (readonly)
  3952. - UIElement@ parent
  3953. - UIElement@ root (readonly)
  3954. - IntVector2 screenPosition (readonly)
  3955. - IntRect combinedScreenRect (readonly)
  3956. - float derivedOpacity (readonly)
  3957. - VariantMap vars (readonly)
  3958. - Orientation orientation
  3959. - float range
  3960. - float value
  3961. - float scrollStep
  3962. - float stepFactor
  3963. - float effectiveScrollStep (readonly)
  3964. - Button@ backButton (readonly)
  3965. - Button@ forwardButton (readonly)
  3966. - Slider@ slider (readonly)
  3967. ScrollView
  3968. Methods:<br>
  3969. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  3970. - bool Load(File@, bool arg1 = false)
  3971. - bool Save(File@) const
  3972. - bool LoadXML(const XMLElement&, bool arg1 = false)
  3973. - bool SaveXML(XMLElement&) const
  3974. - void ApplyAttributes()
  3975. - bool SetAttribute(const String&, const Variant&)
  3976. - void ResetToDefault()
  3977. - void RemoveInstanceDefault()
  3978. - Variant GetAttribute(const String&) const
  3979. - Variant GetAttributeDefault(const String&) const
  3980. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  3981. - bool LoadXML(File@)
  3982. - bool LoadXML(XMLFile@, XMLFile@)
  3983. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  3984. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  3985. - bool SaveXML(File@)
  3986. - bool SetStyle(const XMLElement&)
  3987. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  3988. - bool SetStyleAuto(XMLFile@ arg0 = null)
  3989. - void SetPosition(int, int)
  3990. - void SetSize(int, int)
  3991. - void SetMinSize(int, int)
  3992. - void SetMaxSize(int, int)
  3993. - void SetFixedSize(int, int)
  3994. - void SetFixedWidth(int)
  3995. - void SetFixedHeight(int)
  3996. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3997. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3998. - void UpdateLayout()
  3999. - void DisableLayoutUpdate()
  4000. - void EnableLayoutUpdate()
  4001. - void BringToFront()
  4002. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4003. - void AddChild(UIElement@)
  4004. - void InsertChild(uint, UIElement@)
  4005. - void RemoveChild(UIElement@, uint arg1 = 0)
  4006. - void RemoveChild(uint)
  4007. - void RemoveAllChildren()
  4008. - void Remove()
  4009. - uint FindChild(UIElement@) const
  4010. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4011. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4012. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4013. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4014. - UIElement@ GetElementEventSender() const
  4015. - const Variant& GetVar(const ShortStringHash&)
  4016. - IntVector2 ScreenToElement(const IntVector2&)
  4017. - IntVector2 ElementToScreen(const IntVector2&)
  4018. - bool IsInside(IntVector2, bool)
  4019. - bool IsInsideCombined(IntVector2, bool)
  4020. - void SetViewPosition(int, int)
  4021. - void SetScrollBarsVisible(bool, bool)
  4022. Properties:<br>
  4023. - ShortStringHash type (readonly)
  4024. - String typeName (readonly)
  4025. - String category (readonly)
  4026. - int refs (readonly)
  4027. - int weakRefs (readonly)
  4028. - uint numAttributes (readonly)
  4029. - Variant[] attributes
  4030. - Variant[] attributeDefaults (readonly)
  4031. - AttributeInfo[] attributeInfos (readonly)
  4032. - String style
  4033. - String name
  4034. - IntVector2 position
  4035. - IntVector2 size
  4036. - int width
  4037. - int height
  4038. - IntVector2 minSize
  4039. - int minWidth
  4040. - int minHeight
  4041. - IntVector2 maxSize
  4042. - int maxWidth
  4043. - int maxHeight
  4044. - bool fixedSize (readonly)
  4045. - bool fixedWidth (readonly)
  4046. - bool fixedHeight (readonly)
  4047. - HorizontalAlignment horizontalAlignment
  4048. - VerticalAlignment verticalAlignment
  4049. - IntRect clipBorder
  4050. - Color color (writeonly)
  4051. - Color[] colors
  4052. - int priority
  4053. - float opacity
  4054. - bool bringToFront
  4055. - bool bringToBack
  4056. - bool clipChildren
  4057. - bool sortChildren
  4058. - bool useDerivedOpacity
  4059. - bool enabled
  4060. - bool focus
  4061. - bool selected
  4062. - bool visible
  4063. - bool hovering (readonly)
  4064. - bool internal
  4065. - bool colorGradient (readonly)
  4066. - FocusMode focusMode
  4067. - uint dragDropMode
  4068. - TraversalMode traversalMode
  4069. - XMLFile@ defaultStyle
  4070. - LayoutMode layoutMode
  4071. - int layoutSpacing
  4072. - IntRect layoutBorder
  4073. - int indent
  4074. - int indentSpacing
  4075. - int indentWidth (readonly)
  4076. - IntVector2 childOffset (readonly)
  4077. - bool elementEventSender
  4078. - uint[] numChildren (readonly)
  4079. - uint numAllChildren (readonly)
  4080. - UIElement@[] children (readonly)
  4081. - UIElement@ parent
  4082. - UIElement@ root (readonly)
  4083. - IntVector2 screenPosition (readonly)
  4084. - IntRect combinedScreenRect (readonly)
  4085. - float derivedOpacity (readonly)
  4086. - VariantMap vars (readonly)
  4087. - UIElement@ contentElement
  4088. - IntVector2 viewPosition
  4089. - float scrollStep
  4090. - float pageStep
  4091. - ScrollBar@ horizontalScrollBar (readonly)
  4092. - ScrollBar@ verticalScrollBar (readonly)
  4093. - BorderImage@ scrollPanel (readonly)
  4094. - bool scrollBarsAutoVisible
  4095. ListView
  4096. Methods:<br>
  4097. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4098. - bool Load(File@, bool arg1 = false)
  4099. - bool Save(File@) const
  4100. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4101. - bool SaveXML(XMLElement&) const
  4102. - void ApplyAttributes()
  4103. - bool SetAttribute(const String&, const Variant&)
  4104. - void ResetToDefault()
  4105. - void RemoveInstanceDefault()
  4106. - Variant GetAttribute(const String&) const
  4107. - Variant GetAttributeDefault(const String&) const
  4108. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  4109. - bool LoadXML(File@)
  4110. - bool LoadXML(XMLFile@, XMLFile@)
  4111. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  4112. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  4113. - bool SaveXML(File@)
  4114. - bool SetStyle(const XMLElement&)
  4115. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  4116. - bool SetStyleAuto(XMLFile@ arg0 = null)
  4117. - void SetPosition(int, int)
  4118. - void SetSize(int, int)
  4119. - void SetMinSize(int, int)
  4120. - void SetMaxSize(int, int)
  4121. - void SetFixedSize(int, int)
  4122. - void SetFixedWidth(int)
  4123. - void SetFixedHeight(int)
  4124. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4125. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  4126. - void UpdateLayout()
  4127. - void DisableLayoutUpdate()
  4128. - void EnableLayoutUpdate()
  4129. - void BringToFront()
  4130. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4131. - void AddChild(UIElement@)
  4132. - void InsertChild(uint, UIElement@)
  4133. - void RemoveChild(UIElement@, uint arg1 = 0)
  4134. - void RemoveChild(uint)
  4135. - void RemoveAllChildren()
  4136. - void Remove()
  4137. - uint FindChild(UIElement@) const
  4138. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4139. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4140. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4141. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4142. - UIElement@ GetElementEventSender() const
  4143. - const Variant& GetVar(const ShortStringHash&)
  4144. - IntVector2 ScreenToElement(const IntVector2&)
  4145. - IntVector2 ElementToScreen(const IntVector2&)
  4146. - bool IsInside(IntVector2, bool)
  4147. - bool IsInsideCombined(IntVector2, bool)
  4148. - void SetViewPosition(int, int)
  4149. - void SetScrollBarsVisible(bool, bool)
  4150. - void AddItem(UIElement@)
  4151. - void InsertItem(uint, UIElement@, UIElement@ arg2 = null)
  4152. - void RemoveItem(UIElement@, uint arg1 = 0)
  4153. - void RemoveItem(uint)
  4154. - void RemoveAllItems()
  4155. - void AddSelection(uint)
  4156. - void RemoveSelection(uint)
  4157. - void ToggleSelection(uint)
  4158. - void ChangeSelection(int, bool)
  4159. - void SetSelections(uint[]@)
  4160. - void ClearSelection()
  4161. - void Expand(uint, bool, bool arg2 = false)
  4162. - void ToggleExpand(uint, bool arg1 = false)
  4163. - bool IsSelected(uint) const
  4164. - bool IsExpanded(uint) const
  4165. - UIElement@[]@ GetItems() const
  4166. - uint FindItem(UIElement@)
  4167. Properties:<br>
  4168. - ShortStringHash type (readonly)
  4169. - String typeName (readonly)
  4170. - String category (readonly)
  4171. - int refs (readonly)
  4172. - int weakRefs (readonly)
  4173. - uint numAttributes (readonly)
  4174. - Variant[] attributes
  4175. - Variant[] attributeDefaults (readonly)
  4176. - AttributeInfo[] attributeInfos (readonly)
  4177. - String style
  4178. - String name
  4179. - IntVector2 position
  4180. - IntVector2 size
  4181. - int width
  4182. - int height
  4183. - IntVector2 minSize
  4184. - int minWidth
  4185. - int minHeight
  4186. - IntVector2 maxSize
  4187. - int maxWidth
  4188. - int maxHeight
  4189. - bool fixedSize (readonly)
  4190. - bool fixedWidth (readonly)
  4191. - bool fixedHeight (readonly)
  4192. - HorizontalAlignment horizontalAlignment
  4193. - VerticalAlignment verticalAlignment
  4194. - IntRect clipBorder
  4195. - Color color (writeonly)
  4196. - Color[] colors
  4197. - int priority
  4198. - float opacity
  4199. - bool bringToFront
  4200. - bool bringToBack
  4201. - bool clipChildren
  4202. - bool sortChildren
  4203. - bool useDerivedOpacity
  4204. - bool enabled
  4205. - bool focus
  4206. - bool selected
  4207. - bool visible
  4208. - bool hovering (readonly)
  4209. - bool internal
  4210. - bool colorGradient (readonly)
  4211. - FocusMode focusMode
  4212. - uint dragDropMode
  4213. - TraversalMode traversalMode
  4214. - XMLFile@ defaultStyle
  4215. - LayoutMode layoutMode
  4216. - int layoutSpacing
  4217. - IntRect layoutBorder
  4218. - int indent
  4219. - int indentSpacing
  4220. - int indentWidth (readonly)
  4221. - IntVector2 childOffset (readonly)
  4222. - bool elementEventSender
  4223. - uint[] numChildren (readonly)
  4224. - uint numAllChildren (readonly)
  4225. - UIElement@[] children (readonly)
  4226. - UIElement@ parent
  4227. - UIElement@ root (readonly)
  4228. - IntVector2 screenPosition (readonly)
  4229. - IntRect combinedScreenRect (readonly)
  4230. - float derivedOpacity (readonly)
  4231. - VariantMap vars (readonly)
  4232. - IntVector2 viewPosition
  4233. - UIElement@ contentElement (readonly)
  4234. - ScrollBar@ horizontalScrollBar (readonly)
  4235. - ScrollBar@ verticalScrollBar (readonly)
  4236. - BorderImage@ scrollPanel (readonly)
  4237. - bool scrollBarsAutoVisible
  4238. - float scrollStep
  4239. - float pageStep
  4240. - uint numItems (readonly)
  4241. - UIElement@[] items (readonly)
  4242. - uint selection
  4243. - uint[]@ selections (readonly)
  4244. - UIElement@ selectedItem (readonly)
  4245. - UIElement@[]@ selectedItems (readonly)
  4246. - HighlightMode highlightMode
  4247. - bool multiselect
  4248. - bool hierarchyMode
  4249. - int baseIndent
  4250. - bool clearSelectionOnDefocus
  4251. - float doubleClickInterval
  4252. Text
  4253. Methods:<br>
  4254. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4255. - bool Load(File@, bool arg1 = false)
  4256. - bool Save(File@) const
  4257. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4258. - bool SaveXML(XMLElement&) const
  4259. - void ApplyAttributes()
  4260. - bool SetAttribute(const String&, const Variant&)
  4261. - void ResetToDefault()
  4262. - void RemoveInstanceDefault()
  4263. - Variant GetAttribute(const String&) const
  4264. - Variant GetAttributeDefault(const String&) const
  4265. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  4266. - bool LoadXML(File@)
  4267. - bool LoadXML(XMLFile@, XMLFile@)
  4268. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  4269. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  4270. - bool SaveXML(File@)
  4271. - bool SetStyle(const XMLElement&)
  4272. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  4273. - bool SetStyleAuto(XMLFile@ arg0 = null)
  4274. - void SetPosition(int, int)
  4275. - void SetSize(int, int)
  4276. - void SetMinSize(int, int)
  4277. - void SetMaxSize(int, int)
  4278. - void SetFixedSize(int, int)
  4279. - void SetFixedWidth(int)
  4280. - void SetFixedHeight(int)
  4281. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4282. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  4283. - void UpdateLayout()
  4284. - void DisableLayoutUpdate()
  4285. - void EnableLayoutUpdate()
  4286. - void BringToFront()
  4287. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4288. - void AddChild(UIElement@)
  4289. - void InsertChild(uint, UIElement@)
  4290. - void RemoveChild(UIElement@, uint arg1 = 0)
  4291. - void RemoveChild(uint)
  4292. - void RemoveAllChildren()
  4293. - void Remove()
  4294. - uint FindChild(UIElement@) const
  4295. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4296. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4297. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4298. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4299. - UIElement@ GetElementEventSender() const
  4300. - const Variant& GetVar(const ShortStringHash&)
  4301. - IntVector2 ScreenToElement(const IntVector2&)
  4302. - IntVector2 ElementToScreen(const IntVector2&)
  4303. - bool IsInside(IntVector2, bool)
  4304. - bool IsInsideCombined(IntVector2, bool)
  4305. - bool SetFont(const String&, int)
  4306. - bool SetFont(Font@, int)
  4307. - void SetSelection(uint, uint arg1 = M_MAX_UNSIGNED)
  4308. - void ClearSelection()
  4309. Properties:<br>
  4310. - ShortStringHash type (readonly)
  4311. - String typeName (readonly)
  4312. - String category (readonly)
  4313. - int refs (readonly)
  4314. - int weakRefs (readonly)
  4315. - uint numAttributes (readonly)
  4316. - Variant[] attributes
  4317. - Variant[] attributeDefaults (readonly)
  4318. - AttributeInfo[] attributeInfos (readonly)
  4319. - String style
  4320. - String name
  4321. - IntVector2 position
  4322. - IntVector2 size
  4323. - int width
  4324. - int height
  4325. - IntVector2 minSize
  4326. - int minWidth
  4327. - int minHeight
  4328. - IntVector2 maxSize
  4329. - int maxWidth
  4330. - int maxHeight
  4331. - bool fixedSize (readonly)
  4332. - bool fixedWidth (readonly)
  4333. - bool fixedHeight (readonly)
  4334. - HorizontalAlignment horizontalAlignment
  4335. - VerticalAlignment verticalAlignment
  4336. - IntRect clipBorder
  4337. - Color color (writeonly)
  4338. - Color[] colors
  4339. - int priority
  4340. - float opacity
  4341. - bool bringToFront
  4342. - bool bringToBack
  4343. - bool clipChildren
  4344. - bool sortChildren
  4345. - bool useDerivedOpacity
  4346. - bool enabled
  4347. - bool focus
  4348. - bool selected
  4349. - bool visible
  4350. - bool hovering (readonly)
  4351. - bool internal
  4352. - bool colorGradient (readonly)
  4353. - FocusMode focusMode
  4354. - uint dragDropMode
  4355. - TraversalMode traversalMode
  4356. - XMLFile@ defaultStyle
  4357. - LayoutMode layoutMode
  4358. - int layoutSpacing
  4359. - IntRect layoutBorder
  4360. - int indent
  4361. - int indentSpacing
  4362. - int indentWidth (readonly)
  4363. - IntVector2 childOffset (readonly)
  4364. - bool elementEventSender
  4365. - uint[] numChildren (readonly)
  4366. - uint numAllChildren (readonly)
  4367. - UIElement@[] children (readonly)
  4368. - UIElement@ parent
  4369. - UIElement@ root (readonly)
  4370. - IntVector2 screenPosition (readonly)
  4371. - IntRect combinedScreenRect (readonly)
  4372. - float derivedOpacity (readonly)
  4373. - VariantMap vars (readonly)
  4374. - Font@ font (readonly)
  4375. - int fontSize (readonly)
  4376. - String text
  4377. - HorizontalAlignment textAlignment
  4378. - float rowSpacing
  4379. - bool wordwrap
  4380. - uint selectionStart (readonly)
  4381. - uint selectionLength (readonly)
  4382. - Color selectionColor
  4383. - Color hoverColor
  4384. - uint numRows (readonly)
  4385. - int rowHeight (readonly)
  4386. Text3D
  4387. Methods:<br>
  4388. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4389. - bool Load(File@, bool arg1 = false)
  4390. - bool Save(File@) const
  4391. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4392. - bool SaveXML(XMLElement&) const
  4393. - void ApplyAttributes()
  4394. - bool SetAttribute(const String&, const Variant&)
  4395. - void ResetToDefault()
  4396. - void RemoveInstanceDefault()
  4397. - Variant GetAttribute(const String&) const
  4398. - Variant GetAttributeDefault(const String&) const
  4399. - void Remove()
  4400. - void MarkNetworkUpdate() const
  4401. - void DrawDebugGeometry(DebugRenderer@, bool)
  4402. - bool SetFont(const String&, int)
  4403. - bool SetFont(Font@, int)
  4404. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4405. Properties:<br>
  4406. - ShortStringHash type (readonly)
  4407. - String typeName (readonly)
  4408. - String category (readonly)
  4409. - int refs (readonly)
  4410. - int weakRefs (readonly)
  4411. - uint numAttributes (readonly)
  4412. - Variant[] attributes
  4413. - Variant[] attributeDefaults (readonly)
  4414. - AttributeInfo[] attributeInfos (readonly)
  4415. - bool enabled
  4416. - bool enabledEffective (readonly)
  4417. - uint id (readonly)
  4418. - Node@ node (readonly)
  4419. - bool inView (readonly)
  4420. - bool castShadows
  4421. - bool occluder
  4422. - bool occludee
  4423. - float drawDistance
  4424. - float shadowDistance
  4425. - float lodBias
  4426. - uint viewMask
  4427. - uint lightMask
  4428. - uint shadowMask
  4429. - uint zoneMask
  4430. - uint maxLights
  4431. - BoundingBox worldBoundingBox (readonly)
  4432. - Font@ font (readonly)
  4433. - int fontSize (readonly)
  4434. - Material@ material
  4435. - String text
  4436. - HorizontalAlignment textAlignment
  4437. - HorizontalAlignment horizontalAlignment
  4438. - VerticalAlignment verticalAlignment
  4439. - float rowSpacing
  4440. - bool wordwrap
  4441. - int width
  4442. - Color color (writeonly)
  4443. - Color[] colors
  4444. - float opacity
  4445. - bool faceCamera
  4446. - uint numRows (readonly)
  4447. - int rowHeight (readonly)
  4448. LineEdit
  4449. Methods:<br>
  4450. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4451. - bool Load(File@, bool arg1 = false)
  4452. - bool Save(File@) const
  4453. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4454. - bool SaveXML(XMLElement&) const
  4455. - void ApplyAttributes()
  4456. - bool SetAttribute(const String&, const Variant&)
  4457. - void ResetToDefault()
  4458. - void RemoveInstanceDefault()
  4459. - Variant GetAttribute(const String&) const
  4460. - Variant GetAttributeDefault(const String&) const
  4461. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  4462. - bool LoadXML(File@)
  4463. - bool LoadXML(XMLFile@, XMLFile@)
  4464. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  4465. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  4466. - bool SaveXML(File@)
  4467. - bool SetStyle(const XMLElement&)
  4468. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  4469. - bool SetStyleAuto(XMLFile@ arg0 = null)
  4470. - void SetPosition(int, int)
  4471. - void SetSize(int, int)
  4472. - void SetMinSize(int, int)
  4473. - void SetMaxSize(int, int)
  4474. - void SetFixedSize(int, int)
  4475. - void SetFixedWidth(int)
  4476. - void SetFixedHeight(int)
  4477. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4478. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  4479. - void UpdateLayout()
  4480. - void DisableLayoutUpdate()
  4481. - void EnableLayoutUpdate()
  4482. - void BringToFront()
  4483. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4484. - void AddChild(UIElement@)
  4485. - void InsertChild(uint, UIElement@)
  4486. - void RemoveChild(UIElement@, uint arg1 = 0)
  4487. - void RemoveChild(uint)
  4488. - void RemoveAllChildren()
  4489. - void Remove()
  4490. - uint FindChild(UIElement@) const
  4491. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4492. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4493. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4494. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4495. - UIElement@ GetElementEventSender() const
  4496. - const Variant& GetVar(const ShortStringHash&)
  4497. - IntVector2 ScreenToElement(const IntVector2&)
  4498. - IntVector2 ElementToScreen(const IntVector2&)
  4499. - bool IsInside(IntVector2, bool)
  4500. - bool IsInsideCombined(IntVector2, bool)
  4501. - void SetFullImageRect()
  4502. - void SetHoverOffset(int, int)
  4503. Properties:<br>
  4504. - ShortStringHash type (readonly)
  4505. - String typeName (readonly)
  4506. - String category (readonly)
  4507. - int refs (readonly)
  4508. - int weakRefs (readonly)
  4509. - uint numAttributes (readonly)
  4510. - Variant[] attributes
  4511. - Variant[] attributeDefaults (readonly)
  4512. - AttributeInfo[] attributeInfos (readonly)
  4513. - String style
  4514. - String name
  4515. - IntVector2 position
  4516. - IntVector2 size
  4517. - int width
  4518. - int height
  4519. - IntVector2 minSize
  4520. - int minWidth
  4521. - int minHeight
  4522. - IntVector2 maxSize
  4523. - int maxWidth
  4524. - int maxHeight
  4525. - bool fixedSize (readonly)
  4526. - bool fixedWidth (readonly)
  4527. - bool fixedHeight (readonly)
  4528. - HorizontalAlignment horizontalAlignment
  4529. - VerticalAlignment verticalAlignment
  4530. - IntRect clipBorder
  4531. - Color color (writeonly)
  4532. - Color[] colors
  4533. - int priority
  4534. - float opacity
  4535. - bool bringToFront
  4536. - bool bringToBack
  4537. - bool clipChildren
  4538. - bool sortChildren
  4539. - bool useDerivedOpacity
  4540. - bool enabled
  4541. - bool focus
  4542. - bool selected
  4543. - bool visible
  4544. - bool hovering (readonly)
  4545. - bool internal
  4546. - bool colorGradient (readonly)
  4547. - FocusMode focusMode
  4548. - uint dragDropMode
  4549. - TraversalMode traversalMode
  4550. - XMLFile@ defaultStyle
  4551. - LayoutMode layoutMode
  4552. - int layoutSpacing
  4553. - IntRect layoutBorder
  4554. - int indent
  4555. - int indentSpacing
  4556. - int indentWidth (readonly)
  4557. - IntVector2 childOffset (readonly)
  4558. - bool elementEventSender
  4559. - uint[] numChildren (readonly)
  4560. - uint numAllChildren (readonly)
  4561. - UIElement@[] children (readonly)
  4562. - UIElement@ parent
  4563. - UIElement@ root (readonly)
  4564. - IntVector2 screenPosition (readonly)
  4565. - IntRect combinedScreenRect (readonly)
  4566. - float derivedOpacity (readonly)
  4567. - VariantMap vars (readonly)
  4568. - Texture@ texture
  4569. - IntRect imageRect
  4570. - IntRect border
  4571. - IntVector2 hoverOffset
  4572. - BlendMode blendMode
  4573. - bool tiled
  4574. - String text
  4575. - uint cursorPosition
  4576. - float cursorBlinkRate
  4577. - uint maxLength
  4578. - uint echoCharacter
  4579. - bool cursorMovable
  4580. - bool textSelectable
  4581. - bool textCopyable
  4582. - Text@ textElement (readonly)
  4583. - BorderImage@ cursor (readonly)
  4584. - float doubleClickInterval
  4585. Menu
  4586. Methods:<br>
  4587. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4588. - bool Load(File@, bool arg1 = false)
  4589. - bool Save(File@) const
  4590. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4591. - bool SaveXML(XMLElement&) const
  4592. - void ApplyAttributes()
  4593. - bool SetAttribute(const String&, const Variant&)
  4594. - void ResetToDefault()
  4595. - void RemoveInstanceDefault()
  4596. - Variant GetAttribute(const String&) const
  4597. - Variant GetAttributeDefault(const String&) const
  4598. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  4599. - bool LoadXML(File@)
  4600. - bool LoadXML(XMLFile@, XMLFile@)
  4601. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  4602. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  4603. - bool SaveXML(File@)
  4604. - bool SetStyle(const XMLElement&)
  4605. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  4606. - bool SetStyleAuto(XMLFile@ arg0 = null)
  4607. - void SetPosition(int, int)
  4608. - void SetSize(int, int)
  4609. - void SetMinSize(int, int)
  4610. - void SetMaxSize(int, int)
  4611. - void SetFixedSize(int, int)
  4612. - void SetFixedWidth(int)
  4613. - void SetFixedHeight(int)
  4614. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4615. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  4616. - void UpdateLayout()
  4617. - void DisableLayoutUpdate()
  4618. - void EnableLayoutUpdate()
  4619. - void BringToFront()
  4620. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4621. - void AddChild(UIElement@)
  4622. - void InsertChild(uint, UIElement@)
  4623. - void RemoveChild(UIElement@, uint arg1 = 0)
  4624. - void RemoveChild(uint)
  4625. - void RemoveAllChildren()
  4626. - void Remove()
  4627. - uint FindChild(UIElement@) const
  4628. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4629. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4630. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4631. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4632. - UIElement@ GetElementEventSender() const
  4633. - const Variant& GetVar(const ShortStringHash&)
  4634. - IntVector2 ScreenToElement(const IntVector2&)
  4635. - IntVector2 ElementToScreen(const IntVector2&)
  4636. - bool IsInside(IntVector2, bool)
  4637. - bool IsInsideCombined(IntVector2, bool)
  4638. - void SetFullImageRect()
  4639. - void SetHoverOffset(int, int)
  4640. - void SetPressedOffset(int, int)
  4641. - void SetLabelOffset(int, int)
  4642. - void SetRepeat(float, float)
  4643. - void SetPopupOffset(int, int)
  4644. - void SetAccelerator(int, int)
  4645. Properties:<br>
  4646. - ShortStringHash type (readonly)
  4647. - String typeName (readonly)
  4648. - String category (readonly)
  4649. - int refs (readonly)
  4650. - int weakRefs (readonly)
  4651. - uint numAttributes (readonly)
  4652. - Variant[] attributes
  4653. - Variant[] attributeDefaults (readonly)
  4654. - AttributeInfo[] attributeInfos (readonly)
  4655. - String style
  4656. - String name
  4657. - IntVector2 position
  4658. - IntVector2 size
  4659. - int width
  4660. - int height
  4661. - IntVector2 minSize
  4662. - int minWidth
  4663. - int minHeight
  4664. - IntVector2 maxSize
  4665. - int maxWidth
  4666. - int maxHeight
  4667. - bool fixedSize (readonly)
  4668. - bool fixedWidth (readonly)
  4669. - bool fixedHeight (readonly)
  4670. - HorizontalAlignment horizontalAlignment
  4671. - VerticalAlignment verticalAlignment
  4672. - IntRect clipBorder
  4673. - Color color (writeonly)
  4674. - Color[] colors
  4675. - int priority
  4676. - float opacity
  4677. - bool bringToFront
  4678. - bool bringToBack
  4679. - bool clipChildren
  4680. - bool sortChildren
  4681. - bool useDerivedOpacity
  4682. - bool enabled
  4683. - bool focus
  4684. - bool selected
  4685. - bool visible
  4686. - bool hovering (readonly)
  4687. - bool internal
  4688. - bool colorGradient (readonly)
  4689. - FocusMode focusMode
  4690. - uint dragDropMode
  4691. - TraversalMode traversalMode
  4692. - XMLFile@ defaultStyle
  4693. - LayoutMode layoutMode
  4694. - int layoutSpacing
  4695. - IntRect layoutBorder
  4696. - int indent
  4697. - int indentSpacing
  4698. - int indentWidth (readonly)
  4699. - IntVector2 childOffset (readonly)
  4700. - bool elementEventSender
  4701. - uint[] numChildren (readonly)
  4702. - uint numAllChildren (readonly)
  4703. - UIElement@[] children (readonly)
  4704. - UIElement@ parent
  4705. - UIElement@ root (readonly)
  4706. - IntVector2 screenPosition (readonly)
  4707. - IntRect combinedScreenRect (readonly)
  4708. - float derivedOpacity (readonly)
  4709. - VariantMap vars (readonly)
  4710. - Texture@ texture
  4711. - IntRect imageRect
  4712. - IntRect border
  4713. - IntVector2 hoverOffset
  4714. - BlendMode blendMode
  4715. - bool tiled
  4716. - IntVector2 pressedOffset
  4717. - IntVector2 labelOffset
  4718. - float repeatDelay
  4719. - float repeatRate
  4720. - UIElement@ popup
  4721. - IntVector2 popupOffset
  4722. - bool showPopup
  4723. - int acceleratorKey (readonly)
  4724. - int acceleratorQualifiers (readonly)
  4725. DropDownList
  4726. Methods:<br>
  4727. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4728. - bool Load(File@, bool arg1 = false)
  4729. - bool Save(File@) const
  4730. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4731. - bool SaveXML(XMLElement&) const
  4732. - void ApplyAttributes()
  4733. - bool SetAttribute(const String&, const Variant&)
  4734. - void ResetToDefault()
  4735. - void RemoveInstanceDefault()
  4736. - Variant GetAttribute(const String&) const
  4737. - Variant GetAttributeDefault(const String&) const
  4738. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  4739. - bool LoadXML(File@)
  4740. - bool LoadXML(XMLFile@, XMLFile@)
  4741. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  4742. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  4743. - bool SaveXML(File@)
  4744. - bool SetStyle(const XMLElement&)
  4745. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  4746. - bool SetStyleAuto(XMLFile@ arg0 = null)
  4747. - void SetPosition(int, int)
  4748. - void SetSize(int, int)
  4749. - void SetMinSize(int, int)
  4750. - void SetMaxSize(int, int)
  4751. - void SetFixedSize(int, int)
  4752. - void SetFixedWidth(int)
  4753. - void SetFixedHeight(int)
  4754. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4755. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  4756. - void UpdateLayout()
  4757. - void DisableLayoutUpdate()
  4758. - void EnableLayoutUpdate()
  4759. - void BringToFront()
  4760. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4761. - void AddChild(UIElement@)
  4762. - void InsertChild(uint, UIElement@)
  4763. - void RemoveChild(UIElement@, uint arg1 = 0)
  4764. - void RemoveChild(uint)
  4765. - void RemoveAllChildren()
  4766. - void Remove()
  4767. - uint FindChild(UIElement@) const
  4768. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4769. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4770. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4771. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4772. - UIElement@ GetElementEventSender() const
  4773. - const Variant& GetVar(const ShortStringHash&)
  4774. - IntVector2 ScreenToElement(const IntVector2&)
  4775. - IntVector2 ElementToScreen(const IntVector2&)
  4776. - bool IsInside(IntVector2, bool)
  4777. - bool IsInsideCombined(IntVector2, bool)
  4778. - void SetFullImageRect()
  4779. - void SetHoverOffset(int, int)
  4780. - void SetPressedOffset(int, int)
  4781. - void SetLabelOffset(int, int)
  4782. - void SetRepeat(float, float)
  4783. - void SetAccelerator(int, int)
  4784. - void AddItem(UIElement@)
  4785. - void InsertItem(uint, UIElement@)
  4786. - void RemoveItem(UIElement@)
  4787. - void RemoveItem(uint)
  4788. - void RemoveAllItems()
  4789. - UIElement@[]@ GetItems() const
  4790. - UIElement@ getPopup() const
  4791. Properties:<br>
  4792. - ShortStringHash type (readonly)
  4793. - String typeName (readonly)
  4794. - String category (readonly)
  4795. - int refs (readonly)
  4796. - int weakRefs (readonly)
  4797. - uint numAttributes (readonly)
  4798. - Variant[] attributes
  4799. - Variant[] attributeDefaults (readonly)
  4800. - AttributeInfo[] attributeInfos (readonly)
  4801. - String style
  4802. - String name
  4803. - IntVector2 position
  4804. - IntVector2 size
  4805. - int width
  4806. - int height
  4807. - IntVector2 minSize
  4808. - int minWidth
  4809. - int minHeight
  4810. - IntVector2 maxSize
  4811. - int maxWidth
  4812. - int maxHeight
  4813. - bool fixedSize (readonly)
  4814. - bool fixedWidth (readonly)
  4815. - bool fixedHeight (readonly)
  4816. - HorizontalAlignment horizontalAlignment
  4817. - VerticalAlignment verticalAlignment
  4818. - IntRect clipBorder
  4819. - Color color (writeonly)
  4820. - Color[] colors
  4821. - int priority
  4822. - float opacity
  4823. - bool bringToFront
  4824. - bool bringToBack
  4825. - bool clipChildren
  4826. - bool sortChildren
  4827. - bool useDerivedOpacity
  4828. - bool enabled
  4829. - bool focus
  4830. - bool selected
  4831. - bool visible
  4832. - bool hovering (readonly)
  4833. - bool internal
  4834. - bool colorGradient (readonly)
  4835. - FocusMode focusMode
  4836. - uint dragDropMode
  4837. - TraversalMode traversalMode
  4838. - XMLFile@ defaultStyle
  4839. - LayoutMode layoutMode
  4840. - int layoutSpacing
  4841. - IntRect layoutBorder
  4842. - int indent
  4843. - int indentSpacing
  4844. - int indentWidth (readonly)
  4845. - IntVector2 childOffset (readonly)
  4846. - bool elementEventSender
  4847. - uint[] numChildren (readonly)
  4848. - uint numAllChildren (readonly)
  4849. - UIElement@[] children (readonly)
  4850. - UIElement@ parent
  4851. - UIElement@ root (readonly)
  4852. - IntVector2 screenPosition (readonly)
  4853. - IntRect combinedScreenRect (readonly)
  4854. - float derivedOpacity (readonly)
  4855. - VariantMap vars (readonly)
  4856. - Texture@ texture
  4857. - IntRect imageRect
  4858. - IntRect border
  4859. - IntVector2 hoverOffset
  4860. - BlendMode blendMode
  4861. - bool tiled
  4862. - IntVector2 pressedOffset
  4863. - IntVector2 labelOffset
  4864. - float repeatDelay
  4865. - float repeatRate
  4866. - bool showPopup
  4867. - uint selection
  4868. - bool resizePopup
  4869. - int acceleratorKey (readonly)
  4870. - int acceleratorQualifiers (readonly)
  4871. - uint numItems (readonly)
  4872. - UIElement@[] items (readonly)
  4873. - UIElement@ selectedItem (readonly)
  4874. - ListView@ listView (readonly)
  4875. - UIElement@ placeholder (readonly)
  4876. - String placeholderText
  4877. Window
  4878. Methods:<br>
  4879. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  4880. - bool Load(File@, bool arg1 = false)
  4881. - bool Save(File@) const
  4882. - bool LoadXML(const XMLElement&, bool arg1 = false)
  4883. - bool SaveXML(XMLElement&) const
  4884. - void ApplyAttributes()
  4885. - bool SetAttribute(const String&, const Variant&)
  4886. - void ResetToDefault()
  4887. - void RemoveInstanceDefault()
  4888. - Variant GetAttribute(const String&) const
  4889. - Variant GetAttributeDefault(const String&) const
  4890. - bool LoadXML(const XMLElement&, XMLFile@, bool arg2 = false)
  4891. - bool LoadXML(File@)
  4892. - bool LoadXML(XMLFile@, XMLFile@)
  4893. - bool LoadChildXML(const XMLElement&, XMLFile@ arg1 = null, bool arg2 = false)
  4894. - bool LoadChildXML(XMLFile@, XMLFile@ arg1 = null)
  4895. - bool SaveXML(File@)
  4896. - bool SetStyle(const XMLElement&)
  4897. - bool SetStyle(const String&, XMLFile@ arg1 = null)
  4898. - bool SetStyleAuto(XMLFile@ arg0 = null)
  4899. - void SetPosition(int, int)
  4900. - void SetSize(int, int)
  4901. - void SetMinSize(int, int)
  4902. - void SetMaxSize(int, int)
  4903. - void SetFixedSize(int, int)
  4904. - void SetFixedWidth(int)
  4905. - void SetFixedHeight(int)
  4906. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  4907. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  4908. - void UpdateLayout()
  4909. - void DisableLayoutUpdate()
  4910. - void EnableLayoutUpdate()
  4911. - void BringToFront()
  4912. - UIElement@ CreateChild(const String&, const String& arg1 = String ( ), uint arg2 = M_MAX_UNSIGNED)
  4913. - void AddChild(UIElement@)
  4914. - void InsertChild(uint, UIElement@)
  4915. - void RemoveChild(UIElement@, uint arg1 = 0)
  4916. - void RemoveChild(uint)
  4917. - void RemoveAllChildren()
  4918. - void Remove()
  4919. - uint FindChild(UIElement@) const
  4920. - void SetParent(UIElement@, uint arg1 = M_MAX_UNSIGNED)
  4921. - UIElement@ GetChild(const String&, bool arg1 = false) const
  4922. - UIElement@ GetChild(const ShortStringHash&, const Variant& arg1 = Variant ( ), bool arg2 = false) const
  4923. - UIElement@[]@ GetChildren(bool arg0 = false) const
  4924. - UIElement@ GetElementEventSender() const
  4925. - const Variant& GetVar(const ShortStringHash&)
  4926. - IntVector2 ScreenToElement(const IntVector2&)
  4927. - IntVector2 ElementToScreen(const IntVector2&)
  4928. - bool IsInside(IntVector2, bool)
  4929. - bool IsInsideCombined(IntVector2, bool)
  4930. - void SetFullImageRect()
  4931. - void SetHoverOffset(int, int)
  4932. Properties:<br>
  4933. - ShortStringHash type (readonly)
  4934. - String typeName (readonly)
  4935. - String category (readonly)
  4936. - int refs (readonly)
  4937. - int weakRefs (readonly)
  4938. - uint numAttributes (readonly)
  4939. - Variant[] attributes
  4940. - Variant[] attributeDefaults (readonly)
  4941. - AttributeInfo[] attributeInfos (readonly)
  4942. - String style
  4943. - String name
  4944. - IntVector2 position
  4945. - IntVector2 size
  4946. - int width
  4947. - int height
  4948. - IntVector2 minSize
  4949. - int minWidth
  4950. - int minHeight
  4951. - IntVector2 maxSize
  4952. - int maxWidth
  4953. - int maxHeight
  4954. - bool fixedSize (readonly)
  4955. - bool fixedWidth (readonly)
  4956. - bool fixedHeight (readonly)
  4957. - HorizontalAlignment horizontalAlignment
  4958. - VerticalAlignment verticalAlignment
  4959. - IntRect clipBorder
  4960. - Color color (writeonly)
  4961. - Color[] colors
  4962. - int priority
  4963. - float opacity
  4964. - bool bringToFront
  4965. - bool bringToBack
  4966. - bool clipChildren
  4967. - bool sortChildren
  4968. - bool useDerivedOpacity
  4969. - bool enabled
  4970. - bool focus
  4971. - bool selected
  4972. - bool visible
  4973. - bool hovering (readonly)
  4974. - bool internal
  4975. - bool colorGradient (readonly)
  4976. - FocusMode focusMode
  4977. - uint dragDropMode
  4978. - TraversalMode traversalMode
  4979. - XMLFile@ defaultStyle
  4980. - LayoutMode layoutMode
  4981. - int layoutSpacing
  4982. - IntRect layoutBorder
  4983. - int indent
  4984. - int indentSpacing
  4985. - int indentWidth (readonly)
  4986. - IntVector2 childOffset (readonly)
  4987. - bool elementEventSender
  4988. - uint[] numChildren (readonly)
  4989. - uint numAllChildren (readonly)
  4990. - UIElement@[] children (readonly)
  4991. - UIElement@ parent
  4992. - UIElement@ root (readonly)
  4993. - IntVector2 screenPosition (readonly)
  4994. - IntRect combinedScreenRect (readonly)
  4995. - float derivedOpacity (readonly)
  4996. - VariantMap vars (readonly)
  4997. - Texture@ texture
  4998. - IntRect imageRect
  4999. - IntRect border
  5000. - IntVector2 hoverOffset
  5001. - BlendMode blendMode
  5002. - bool tiled
  5003. - bool movable
  5004. - bool resizable
  5005. - IntRect resizeBorder
  5006. - bool modal
  5007. - Color modalShadeColor
  5008. - Color modalFrameColor
  5009. - IntVector2 modalFrameSize
  5010. FileSelector
  5011. Methods:<br>
  5012. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5013. - void SetButtonTexts(const String&, const String&)
  5014. - void SetFilters(String[]@, uint)
  5015. - void UpdateElements()
  5016. Properties:<br>
  5017. - ShortStringHash type (readonly)
  5018. - String typeName (readonly)
  5019. - String category (readonly)
  5020. - int refs (readonly)
  5021. - int weakRefs (readonly)
  5022. - String title
  5023. - String path
  5024. - String fileName
  5025. - bool directoryMode
  5026. - String filter (readonly)
  5027. - uint filterIndex (readonly)
  5028. - XMLFile@ defaultStyle
  5029. - Window@ window (readonly)
  5030. - Text@ titleText (readonly)
  5031. - ListView@ fileList (readonly)
  5032. - LineEdit@ pathEdit (readonly)
  5033. - LineEdit@ fileNameEdit (readonly)
  5034. - DropDownList@ filterList (readonly)
  5035. - Button@ okButton (readonly)
  5036. - Button@ cancelButton (readonly)
  5037. UI
  5038. Methods:<br>
  5039. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5040. - void Clear()
  5041. - void DebugDraw(UIElement@)
  5042. - UIElement@ LoadLayout(File@)
  5043. - UIElement@ LoadLayout(File@, XMLFile@)
  5044. - UIElement@ LoadLayout(XMLFile@)
  5045. - UIElement@ LoadLayout(XMLFile@, XMLFile@)
  5046. - bool SaveLayout(File@, UIElement@)
  5047. - UIElement@ GetElementAt(const IntVector2&, bool arg1 = true)
  5048. - UIElement@ GetElementAt(int, int, bool arg2 = true)
  5049. - bool HasModalElement() const
  5050. Properties:<br>
  5051. - ShortStringHash type (readonly)
  5052. - String typeName (readonly)
  5053. - String category (readonly)
  5054. - int refs (readonly)
  5055. - int weakRefs (readonly)
  5056. - Cursor@ cursor
  5057. - IntVector2 cursorPosition (readonly)
  5058. - UIElement@ focusElement
  5059. - UIElement@ frontElement (readonly)
  5060. - UIElement@ root (readonly)
  5061. - UIElement@ modalRoot (readonly)
  5062. - bool nonFocusedMouseWheel
  5063. Controls
  5064. Methods:<br>
  5065. - void Reset()
  5066. - void Set(uint, bool)
  5067. - bool IsDown(uint) const
  5068. - bool IsPressed(uint, const Controls&) const
  5069. Properties:<br>
  5070. - uint buttons
  5071. - float yaw
  5072. - float pitch
  5073. - VariantMap extraData
  5074. NetworkPriority
  5075. Methods:<br>
  5076. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5077. - bool Load(File@, bool arg1 = false)
  5078. - bool Save(File@) const
  5079. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5080. - bool SaveXML(XMLElement&) const
  5081. - void ApplyAttributes()
  5082. - bool SetAttribute(const String&, const Variant&)
  5083. - void ResetToDefault()
  5084. - void RemoveInstanceDefault()
  5085. - Variant GetAttribute(const String&) const
  5086. - Variant GetAttributeDefault(const String&) const
  5087. - void Remove()
  5088. - void MarkNetworkUpdate() const
  5089. - void DrawDebugGeometry(DebugRenderer@, bool)
  5090. Properties:<br>
  5091. - ShortStringHash type (readonly)
  5092. - String typeName (readonly)
  5093. - String category (readonly)
  5094. - int refs (readonly)
  5095. - int weakRefs (readonly)
  5096. - uint numAttributes (readonly)
  5097. - Variant[] attributes
  5098. - Variant[] attributeDefaults (readonly)
  5099. - AttributeInfo[] attributeInfos (readonly)
  5100. - bool enabled
  5101. - bool enabledEffective (readonly)
  5102. - uint id (readonly)
  5103. - Node@ node (readonly)
  5104. - float basePriority
  5105. - float distanceFactor
  5106. - float minPriority
  5107. - bool alwaysUpdateOwner
  5108. Connection
  5109. Methods:<br>
  5110. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5111. - void SendMessage(int, bool, bool, const VectorBuffer&, uint arg4 = 0)
  5112. - void SendRemoteEvent(const String&, bool, const VariantMap& arg2 = VariantMap ( ))
  5113. - void SendRemoteEvent(Node@, const String&, bool, const VariantMap& arg3 = VariantMap ( ))
  5114. - void Disconnect(int arg0 = 0)
  5115. - String ToString() const
  5116. Properties:<br>
  5117. - ShortStringHash type (readonly)
  5118. - String typeName (readonly)
  5119. - String category (readonly)
  5120. - int refs (readonly)
  5121. - int weakRefs (readonly)
  5122. - Scene@ scene
  5123. - bool logStatistics
  5124. - bool client (readonly)
  5125. - bool connected (readonly)
  5126. - bool connectPending (readonly)
  5127. - bool sceneLoaded (readonly)
  5128. - String address (readonly)
  5129. - uint16 port (readonly)
  5130. - uint numDownloads (readonly)
  5131. - String downloadName (readonly)
  5132. - float downloadProgress (readonly)
  5133. - Vector3 position
  5134. - Controls controls
  5135. - VariantMap identity
  5136. Network
  5137. Methods:<br>
  5138. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5139. - bool Connect(const String&, uint16, Scene@, const VariantMap& arg3 = VariantMap ( ))
  5140. - void Disconnect(int arg0 = 0)
  5141. - bool StartServer(uint16)
  5142. - void StopServer()
  5143. - void BroadcastMessage(int, bool, bool, const VectorBuffer&, uint arg4 = 0)
  5144. - void BroadcastRemoteEvent(const String&, bool, const VariantMap& arg2 = VariantMap ( ))
  5145. - void BroadcastRemoteEvent(Scene@, const String&, bool, const VariantMap& arg3 = VariantMap ( ))
  5146. - void BroadcastRemoteEvent(Node@, const String&, bool, const VariantMap& arg3 = VariantMap ( ))
  5147. - void RegisterRemoteEvent(const String&) const
  5148. - void UnregisterRemoteEvent(const String&) const
  5149. - void UnregisterAllRemoteEvents()
  5150. - bool CheckRemoteEvent(const String&) const
  5151. Properties:<br>
  5152. - ShortStringHash type (readonly)
  5153. - String typeName (readonly)
  5154. - String category (readonly)
  5155. - int refs (readonly)
  5156. - int weakRefs (readonly)
  5157. - int updateFps
  5158. - String packageCacheDir
  5159. - bool serverRunning (readonly)
  5160. - Connection@ serverConnection (readonly)
  5161. - Connection@[]@ clientConnections (readonly)
  5162. CollisionShape
  5163. Methods:<br>
  5164. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5165. - bool Load(File@, bool arg1 = false)
  5166. - bool Save(File@) const
  5167. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5168. - bool SaveXML(XMLElement&) const
  5169. - void ApplyAttributes()
  5170. - bool SetAttribute(const String&, const Variant&)
  5171. - void ResetToDefault()
  5172. - void RemoveInstanceDefault()
  5173. - Variant GetAttribute(const String&) const
  5174. - Variant GetAttributeDefault(const String&) const
  5175. - void Remove()
  5176. - void MarkNetworkUpdate() const
  5177. - void DrawDebugGeometry(DebugRenderer@, bool)
  5178. - void SetBox(const Vector3&, const Vector3& arg1 = Vector3 ( ), const Quaternion& arg2 = Quaternion ( ))
  5179. - void SetSphere(float, const Vector3& arg1 = Vector3 ( ), const Quaternion& arg2 = Quaternion ( ))
  5180. - void SetStaticPlane(const Vector3& arg0 = Vector3 ( ), const Quaternion& arg1 = Quaternion ( ))
  5181. - void SetCylinder(float, float, const Vector3& arg2 = Vector3 ( ), const Quaternion& arg3 = Quaternion ( ))
  5182. - void SetCapsule(float, float, const Vector3& arg2 = Vector3 ( ), const Quaternion& arg3 = Quaternion ( ))
  5183. - void SetCone(float, float, const Vector3& arg2 = Vector3 ( ), const Quaternion& arg3 = Quaternion ( ))
  5184. - void SetTriangleMesh(Model@, uint arg1 = 0, const Vector3& arg2 = Vector3 ( 1 , 1 , 1 ), const Vector3& arg3 = Vector3 ( ), const Quaternion& arg4 = Quaternion ( ))
  5185. - void SetConvexHull(Model@, uint arg1 = 0, const Vector3& arg2 = Vector3 ( 1 , 1 , 1 ), const Vector3& arg3 = Vector3 ( ), const Quaternion& arg4 = Quaternion ( ))
  5186. - void SetCustomConvexHull(CustomGeometry@, const Vector3& arg1 = Vector3 ( 1 , 1 , 1 ), const Vector3& arg2 = Vector3 ( ), const Quaternion& arg3 = Quaternion ( ))
  5187. - void SetTerrain()
  5188. - void SetTransform(const Vector3&, const Quaternion&)
  5189. Properties:<br>
  5190. - ShortStringHash type (readonly)
  5191. - String typeName (readonly)
  5192. - String category (readonly)
  5193. - int refs (readonly)
  5194. - int weakRefs (readonly)
  5195. - uint numAttributes (readonly)
  5196. - Variant[] attributes
  5197. - Variant[] attributeDefaults (readonly)
  5198. - AttributeInfo[] attributeInfos (readonly)
  5199. - bool enabled
  5200. - bool enabledEffective (readonly)
  5201. - uint id (readonly)
  5202. - Node@ node (readonly)
  5203. - ShapeType shapeType
  5204. - Vector3 size
  5205. - Vector3 position
  5206. - Quaternion rotation
  5207. - float margin
  5208. - Model@ model
  5209. - uint lodLevel
  5210. - BoundingBox worldBoundingBox (readonly)
  5211. RigidBody
  5212. Methods:<br>
  5213. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5214. - bool Load(File@, bool arg1 = false)
  5215. - bool Save(File@) const
  5216. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5217. - bool SaveXML(XMLElement&) const
  5218. - void ApplyAttributes()
  5219. - bool SetAttribute(const String&, const Variant&)
  5220. - void ResetToDefault()
  5221. - void RemoveInstanceDefault()
  5222. - Variant GetAttribute(const String&) const
  5223. - Variant GetAttributeDefault(const String&) const
  5224. - void Remove()
  5225. - void MarkNetworkUpdate() const
  5226. - void DrawDebugGeometry(DebugRenderer@, bool)
  5227. - void SetTransform(const Vector3&, const Quaternion&)
  5228. - void SetCollisionLayerAndMask(uint, uint)
  5229. - void ApplyForce(const Vector3&)
  5230. - void ApplyForce(const Vector3&, const Vector3&)
  5231. - void ApplyTorque(const Vector3&)
  5232. - void ApplyImpulse(const Vector3&)
  5233. - void ApplyImpulse(const Vector3&, const Vector3&)
  5234. - void ApplyTorqueImpulse(const Vector3&)
  5235. - void ResetForces()
  5236. - void Activate()
  5237. - void ReAddBodyToWorld()
  5238. - Vector3 GetVelocityAtPoint(const Vector3&) const
  5239. Properties:<br>
  5240. - ShortStringHash type (readonly)
  5241. - String typeName (readonly)
  5242. - String category (readonly)
  5243. - int refs (readonly)
  5244. - int weakRefs (readonly)
  5245. - uint numAttributes (readonly)
  5246. - Variant[] attributes
  5247. - Variant[] attributeDefaults (readonly)
  5248. - AttributeInfo[] attributeInfos (readonly)
  5249. - bool enabled
  5250. - bool enabledEffective (readonly)
  5251. - uint id (readonly)
  5252. - Node@ node (readonly)
  5253. - float mass
  5254. - Vector3 position
  5255. - Quaternion rotation
  5256. - Vector3 linearVelocity
  5257. - Vector3 linearFactor
  5258. - float linearRestThreshold
  5259. - float linearDamping
  5260. - Vector3 angularVelocity
  5261. - Vector3 angularFactor
  5262. - float angularRestThreshold
  5263. - float angularDamping
  5264. - float friction
  5265. - float restitution
  5266. - float contactProcessingThreshold
  5267. - float ccdRadius
  5268. - float ccdMotionThreshold
  5269. - bool useGravity
  5270. - Vector3 gravityOverride
  5271. - Vector3 centerOfMass (readonly)
  5272. - bool phantom
  5273. - bool kinematic
  5274. - bool active (readonly)
  5275. - uint collisionLayer
  5276. - uint collisionMask
  5277. - CollisionEventMode collisionEventMode
  5278. - RigidBody@[]@ collidingBodies (readonly)
  5279. Constraint
  5280. Methods:<br>
  5281. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5282. - bool Load(File@, bool arg1 = false)
  5283. - bool Save(File@) const
  5284. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5285. - bool SaveXML(XMLElement&) const
  5286. - void ApplyAttributes()
  5287. - bool SetAttribute(const String&, const Variant&)
  5288. - void ResetToDefault()
  5289. - void RemoveInstanceDefault()
  5290. - Variant GetAttribute(const String&) const
  5291. - Variant GetAttributeDefault(const String&) const
  5292. - void Remove()
  5293. - void MarkNetworkUpdate() const
  5294. - void DrawDebugGeometry(DebugRenderer@, bool)
  5295. Properties:<br>
  5296. - ShortStringHash type (readonly)
  5297. - String typeName (readonly)
  5298. - String category (readonly)
  5299. - int refs (readonly)
  5300. - int weakRefs (readonly)
  5301. - uint numAttributes (readonly)
  5302. - Variant[] attributes
  5303. - Variant[] attributeDefaults (readonly)
  5304. - AttributeInfo[] attributeInfos (readonly)
  5305. - bool enabled
  5306. - bool enabledEffective (readonly)
  5307. - uint id (readonly)
  5308. - Node@ node (readonly)
  5309. - ConstraintType constraintType
  5310. - Vector3 position
  5311. - Quaternion rotation
  5312. - Vector3 axis (writeonly)
  5313. - Vector3 otherPosition
  5314. - Quaternion otherRotation
  5315. - Vector3 otherAxis (writeonly)
  5316. - Vector3 worldPosition
  5317. - Vector2 highLimit
  5318. - Vector2 lowLimit
  5319. - float erp
  5320. - float cfm
  5321. - bool disableCollision
  5322. - RigidBody@ ownBody (readonly)
  5323. - RigidBody@ otherBody
  5324. PhysicsRaycastResult
  5325. Properties:<br>
  5326. - RigidBody@ body (readonly)
  5327. - Vector3 position
  5328. - Vector3 normal
  5329. - float distance
  5330. PhysicsWorld
  5331. Methods:<br>
  5332. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5333. - bool Load(File@, bool arg1 = false)
  5334. - bool Save(File@) const
  5335. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5336. - bool SaveXML(XMLElement&) const
  5337. - void ApplyAttributes()
  5338. - bool SetAttribute(const String&, const Variant&)
  5339. - void ResetToDefault()
  5340. - void RemoveInstanceDefault()
  5341. - Variant GetAttribute(const String&) const
  5342. - Variant GetAttributeDefault(const String&) const
  5343. - void Remove()
  5344. - void MarkNetworkUpdate() const
  5345. - void DrawDebugGeometry(DebugRenderer@, bool)
  5346. - void Update(float)
  5347. - void UpdateCollisions()
  5348. - PhysicsRaycastResult[]@ Raycast(const Ray&, float arg1 = M_INFINITY, uint arg2 = 0xffff)
  5349. - PhysicsRaycastResult RaycastSingle(const Ray&, float arg1 = M_INFINITY, uint arg2 = 0xffff)
  5350. - PhysicsRaycastResult SphereCast(const Ray&, float, float arg2 = M_INFINITY, uint arg3 = 0xffff)
  5351. - RigidBody@[]@ GetRigidBodies(const Sphere&, uint arg1 = 0xffff)
  5352. - RigidBody@[]@ GetRigidBodies(const BoundingBox&, uint arg1 = 0xffff)
  5353. - RigidBody@[]@ GetRigidBodies(RigidBody@)
  5354. - void DrawDebugGeometry(bool)
  5355. Properties:<br>
  5356. - ShortStringHash type (readonly)
  5357. - String typeName (readonly)
  5358. - String category (readonly)
  5359. - int refs (readonly)
  5360. - int weakRefs (readonly)
  5361. - uint numAttributes (readonly)
  5362. - Variant[] attributes
  5363. - Variant[] attributeDefaults (readonly)
  5364. - AttributeInfo[] attributeInfos (readonly)
  5365. - bool enabled
  5366. - bool enabledEffective (readonly)
  5367. - uint id (readonly)
  5368. - Node@ node (readonly)
  5369. - Vector3 gravity
  5370. - int numIterations
  5371. - int fps
  5372. - bool interpolation
  5373. - bool internalEdge
  5374. - bool splitImpulse
  5375. Navigable
  5376. Methods:<br>
  5377. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5378. - bool Load(File@, bool arg1 = false)
  5379. - bool Save(File@) const
  5380. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5381. - bool SaveXML(XMLElement&) const
  5382. - void ApplyAttributes()
  5383. - bool SetAttribute(const String&, const Variant&)
  5384. - void ResetToDefault()
  5385. - void RemoveInstanceDefault()
  5386. - Variant GetAttribute(const String&) const
  5387. - Variant GetAttributeDefault(const String&) const
  5388. - void Remove()
  5389. - void MarkNetworkUpdate() const
  5390. - void DrawDebugGeometry(DebugRenderer@, bool)
  5391. Properties:<br>
  5392. - ShortStringHash type (readonly)
  5393. - String typeName (readonly)
  5394. - String category (readonly)
  5395. - int refs (readonly)
  5396. - int weakRefs (readonly)
  5397. - uint numAttributes (readonly)
  5398. - Variant[] attributes
  5399. - Variant[] attributeDefaults (readonly)
  5400. - AttributeInfo[] attributeInfos (readonly)
  5401. - bool enabled
  5402. - bool enabledEffective (readonly)
  5403. - uint id (readonly)
  5404. - Node@ node (readonly)
  5405. - bool recursive
  5406. NavigationMesh
  5407. Methods:<br>
  5408. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5409. - bool Load(File@, bool arg1 = false)
  5410. - bool Save(File@) const
  5411. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5412. - bool SaveXML(XMLElement&) const
  5413. - void ApplyAttributes()
  5414. - bool SetAttribute(const String&, const Variant&)
  5415. - void ResetToDefault()
  5416. - void RemoveInstanceDefault()
  5417. - Variant GetAttribute(const String&) const
  5418. - Variant GetAttributeDefault(const String&) const
  5419. - void Remove()
  5420. - void MarkNetworkUpdate() const
  5421. - void DrawDebugGeometry(DebugRenderer@, bool)
  5422. - bool Build()
  5423. - bool Build(const BoundingBox&)
  5424. - Vector3[]@ FindPath(const Vector3&, const Vector3&, const Vector3& arg2 = Vector3 ( 1.0 , 1.0 , 1.0 ))
  5425. - Vector3 GetRandomPoint()
  5426. - Vector3 GetRandomPointInCircle(const Vector3&, float, const Vector3& arg2 = Vector3 ( 1.0 , 1.0 , 1.0 ))
  5427. - float GetDistanceToWall(const Vector3&, float, const Vector3& arg2 = Vector3 ( 1.0 , 1.0 , 1.0 ))
  5428. - Vector3 Raycast(const Vector3&, const Vector3&, const Vector3& arg2 = Vector3 ( 1.0 , 1.0 , 1.0 ))
  5429. Properties:<br>
  5430. - ShortStringHash type (readonly)
  5431. - String typeName (readonly)
  5432. - String category (readonly)
  5433. - int refs (readonly)
  5434. - int weakRefs (readonly)
  5435. - uint numAttributes (readonly)
  5436. - Variant[] attributes
  5437. - Variant[] attributeDefaults (readonly)
  5438. - AttributeInfo[] attributeInfos (readonly)
  5439. - bool enabled
  5440. - bool enabledEffective (readonly)
  5441. - uint id (readonly)
  5442. - Node@ node (readonly)
  5443. - int tileSize
  5444. - float cellSize
  5445. - float cellHeight
  5446. - float agentHeight
  5447. - float agentRadius
  5448. - float agentMaxClimb
  5449. - float agentMaxSlope
  5450. - float regionMinSize
  5451. - float regionMergeSize
  5452. - float edgeMaxLength
  5453. - float edgeMaxError
  5454. - float detailSampleDistance
  5455. - float detailSampleMaxError
  5456. - Vector3 padding
  5457. - bool initialized (readonly)
  5458. - BoundingBox boundingBox (readonly)
  5459. - BoundingBox worldBoundingBox (readonly)
  5460. - IntVector2 numTiles (readonly)
  5461. OffMeshConnection
  5462. Methods:<br>
  5463. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5464. - bool Load(File@, bool arg1 = false)
  5465. - bool Save(File@) const
  5466. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5467. - bool SaveXML(XMLElement&) const
  5468. - void ApplyAttributes()
  5469. - bool SetAttribute(const String&, const Variant&)
  5470. - void ResetToDefault()
  5471. - void RemoveInstanceDefault()
  5472. - Variant GetAttribute(const String&) const
  5473. - Variant GetAttributeDefault(const String&) const
  5474. - void Remove()
  5475. - void MarkNetworkUpdate() const
  5476. - void DrawDebugGeometry(DebugRenderer@, bool)
  5477. Properties:<br>
  5478. - ShortStringHash type (readonly)
  5479. - String typeName (readonly)
  5480. - String category (readonly)
  5481. - int refs (readonly)
  5482. - int weakRefs (readonly)
  5483. - uint numAttributes (readonly)
  5484. - Variant[] attributes
  5485. - Variant[] attributeDefaults (readonly)
  5486. - AttributeInfo[] attributeInfos (readonly)
  5487. - bool enabled
  5488. - bool enabledEffective (readonly)
  5489. - uint id (readonly)
  5490. - Node@ node (readonly)
  5491. - Node@ endPoint
  5492. - float radius
  5493. - bool bidirectional
  5494. ScriptFile
  5495. Methods:<br>
  5496. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5497. - bool Load(File@)
  5498. - bool Save(File@) const
  5499. - bool Execute(const String&, const Variant[]@)
  5500. Properties:<br>
  5501. - ShortStringHash type (readonly)
  5502. - String typeName (readonly)
  5503. - String category (readonly)
  5504. - int refs (readonly)
  5505. - int weakRefs (readonly)
  5506. - String name
  5507. - uint memoryUse (readonly)
  5508. - uint useTimer (readonly)
  5509. - bool compiled (readonly)
  5510. ScriptObject
  5511. ScriptInstance
  5512. Methods:<br>
  5513. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5514. - bool Load(File@, bool arg1 = false)
  5515. - bool Save(File@) const
  5516. - bool LoadXML(const XMLElement&, bool arg1 = false)
  5517. - bool SaveXML(XMLElement&) const
  5518. - void ApplyAttributes()
  5519. - bool SetAttribute(const String&, const Variant&)
  5520. - void ResetToDefault()
  5521. - void RemoveInstanceDefault()
  5522. - Variant GetAttribute(const String&) const
  5523. - Variant GetAttributeDefault(const String&) const
  5524. - void Remove()
  5525. - void MarkNetworkUpdate() const
  5526. - void DrawDebugGeometry(DebugRenderer@, bool)
  5527. - bool CreateObject(ScriptFile@, const String&)
  5528. - bool Execute(const String&, const Variant[]@)
  5529. - bool Execute(const String&)
  5530. - void DelayedExecute(float, bool, const String&, const Variant[]@)
  5531. - void DelayedExecute(float, bool, const String&)
  5532. - void ClearDelayedExecute(const String& arg0 = String ( ))
  5533. Properties:<br>
  5534. - ShortStringHash type (readonly)
  5535. - String typeName (readonly)
  5536. - String category (readonly)
  5537. - int refs (readonly)
  5538. - int weakRefs (readonly)
  5539. - uint numAttributes (readonly)
  5540. - Variant[] attributes
  5541. - Variant[] attributeDefaults (readonly)
  5542. - AttributeInfo[] attributeInfos (readonly)
  5543. - bool enabled
  5544. - bool enabledEffective (readonly)
  5545. - uint id (readonly)
  5546. - Node@ node (readonly)
  5547. - int fixedUpdateFps
  5548. - ScriptFile@ scriptFile
  5549. - ScriptObject@ object (readonly)
  5550. - String className
  5551. Script
  5552. Methods:<br>
  5553. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5554. - bool Execute(const String&)
  5555. - void DumpAPI()
  5556. Properties:<br>
  5557. - ShortStringHash type (readonly)
  5558. - String typeName (readonly)
  5559. - String category (readonly)
  5560. - int refs (readonly)
  5561. - int weakRefs (readonly)
  5562. - ScriptFile@ defaultScriptFile
  5563. - Scene@ defaultScene
  5564. Console
  5565. Methods:<br>
  5566. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5567. - void Toggle()
  5568. - void UpdateElements()
  5569. Properties:<br>
  5570. - ShortStringHash type (readonly)
  5571. - String typeName (readonly)
  5572. - String category (readonly)
  5573. - int refs (readonly)
  5574. - int weakRefs (readonly)
  5575. - XMLFile@ defaultStyle
  5576. - bool visible
  5577. - uint numRows
  5578. - uint numHistoryRows
  5579. - uint historyPosition (readonly)
  5580. - String[] historyRow (readonly)
  5581. - BorderImage@ background (readonly)
  5582. - LineEdit@ lineEdit (readonly)
  5583. DebugHud
  5584. Methods:<br>
  5585. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5586. - void Toggle(uint)
  5587. - void ToggleAll()
  5588. - void SetAppStats(const String&, const Variant&)
  5589. - void SetAppStats(const String&, const String&)
  5590. - void ResetAppStats(const String&)
  5591. - void ClearAppStats()
  5592. Properties:<br>
  5593. - ShortStringHash type (readonly)
  5594. - String typeName (readonly)
  5595. - String category (readonly)
  5596. - int refs (readonly)
  5597. - int weakRefs (readonly)
  5598. - XMLFile@ defaultStyle
  5599. - uint mode
  5600. - uint profilerMaxDepth
  5601. - float profilerInterval
  5602. - bool useRendererStats
  5603. - Text@ statsText (readonly)
  5604. - Text@ modeText (readonly)
  5605. - Text@ profilerText (readonly)
  5606. Engine
  5607. Methods:<br>
  5608. - void SendEvent(const String&, VariantMap& arg1 = VariantMap ( ))
  5609. - void RunFrame()
  5610. - void Exit()
  5611. - void DumpProfiler()
  5612. - void DumpResources()
  5613. - void DumpMemory()
  5614. - Console@ CreateConsole()
  5615. - DebugHud@ CreateDebugHud()
  5616. Properties:<br>
  5617. - ShortStringHash type (readonly)
  5618. - String typeName (readonly)
  5619. - String category (readonly)
  5620. - int refs (readonly)
  5621. - int weakRefs (readonly)
  5622. - int minFps
  5623. - int maxFps
  5624. - int maxInactiveFps
  5625. - bool pauseMinimized
  5626. - bool initialized (readonly)
  5627. - bool exiting (readonly)
  5628. - bool headless (readonly)
  5629. */
  5630. }