ScriptAPI.dox 158 KB

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