ScriptAPI.dox 135 KB

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