ScriptAPI.dox 147 KB

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