ScriptAPI.dox 106 KB

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