ScriptAPI.dox 144 KB

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