ScriptAPI.dox 164 KB

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