ScriptAPI.dox 107 KB

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