2
0

ScriptAPI.dox 109 KB

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