ScriptAPI.dox 162 KB

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