ScriptAPI.dox 106 KB

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