ScriptAPI.dox 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  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. - ScriptObject@ CreateScriptObject(ScriptFile@, const String&, CreateMode arg2 = REPLICATED)
  1076. - ScriptObject@ CreateScriptObject(const String&, const String&, CreateMode arg2 = REPLICATED)
  1077. - ScriptObject@ GetScriptObject() const
  1078. - ScriptObject@ GetScriptObject(const String&) const
  1079. Properties:<br>
  1080. - ShortStringHash type (readonly)
  1081. - String& typeName (readonly)
  1082. - uint numAttributes (readonly)
  1083. - Variant[] attributes
  1084. - AttributeInfo&[] attributeInfos (readonly)
  1085. - Vector3& position
  1086. - Quaternion& rotation
  1087. - Vector3 direction
  1088. - Vector3& scale
  1089. - Vector3 worldPosition
  1090. - Quaternion worldRotation
  1091. - Vector3 worldDirection
  1092. - Vector3 worldScale
  1093. - Vector3& targetPosition (readonly)
  1094. - Quaternion& targetRotation (readonly)
  1095. - Vector3 worldTargetPosition (readonly)
  1096. - Quaternion worldTargetRotation (readonly)
  1097. - Matrix3x4 transform (readonly)
  1098. - Matrix3x4 targetTransform (readonly)
  1099. - Matrix3x4& worldTransform (readonly)
  1100. - bool smoothed
  1101. - uint id (readonly)
  1102. - uint numChildren (readonly)
  1103. - uint numAllChildren (readonly)
  1104. - Node@[] children (readonly)
  1105. - uint numComponents (readonly)
  1106. - Component@[] components (readonly)
  1107. - String& name
  1108. - Node@ parent
  1109. - Scene@ scene (readonly)
  1110. - Connection@ owner
  1111. - ScriptObject@ scriptObject (readonly)
  1112. - VariantMap vars
  1113. Scene
  1114. Methods:<br>
  1115. - bool Load(File@)
  1116. - bool Save(File@)
  1117. - bool LoadXML(const XMLElement&)
  1118. - bool SaveXML(XMLElement&)
  1119. - void ApplyAttributes()
  1120. - bool SetAttribute(const String&, const Variant&)
  1121. - Variant GetAttribute(const String&)
  1122. - void SetScale(float)
  1123. - void SetTransform(const Vector3&, const Quaternion&)
  1124. - void SetTransform(const Vector3&, const Quaternion&, float)
  1125. - void SetTransform(const Vector3&, const Quaternion&, const Vector3&)
  1126. - void SnapPosition(const Vector3&)
  1127. - void SnapRotation(const Quaternion&)
  1128. - void SetWorldTransform(const Vector3&, const Quaternion&)
  1129. - void SetWorldTransform(const Vector3&, const Quaternion&, float)
  1130. - void SetWorldTransform(const Vector3&, const Quaternion&, const Vector3&)
  1131. - void SnapWorldPosition(const Vector3&)
  1132. - void SnapWorldRotation(const Quaternion&)
  1133. - void Translate(const Vector3&)
  1134. - void TranslateRelative(const Vector3&)
  1135. - void Rotate(const Quaternion&, bool arg1 = false)
  1136. - void Pitch(float, bool arg1 = false)
  1137. - void Yaw(float, bool arg1 = false)
  1138. - void Roll(float, bool arg1 = false)
  1139. - void LookAt(const Vector3&, const Vector3& arg1 = Vector3 ( 0 , 1 , 0 ), bool arg2 = false)
  1140. - void Scale(float)
  1141. - void Scale(const Vector3&)
  1142. - Node@ CreateChild(const String& arg0 = "", CreateMode arg1 = REPLICATED)
  1143. - void AddChild(Node@)
  1144. - void RemoveChild(Node@)
  1145. - void RemoveAllChildren()
  1146. - void Remove()
  1147. - Component@ CreateComponent(const String&, CreateMode arg1 = REPLICATED)
  1148. - Component@ GetOrCreateComponent(const String&, CreateMode arg1 = REPLICATED)
  1149. - void RemoveComponent(Component@)
  1150. - Node@[]@ GetChildren(bool arg0 = false) const
  1151. - Node@[]@ GetChildrenWithComponent(const String&, bool arg1 = false) const
  1152. - Node@[]@ GetChildrenWithScript(bool arg0 = false) const
  1153. - Node@[]@ GetChildrenWithScript(const String&, bool arg1 = false) const
  1154. - Node@ GetChild(const String&, bool arg1 = false) const
  1155. - Component@[]@ GetComponents() const
  1156. - Component@[]@ GetComponents(const String&) const
  1157. - Component@ GetComponent(const String&) const
  1158. - bool HasComponent(const String&) const
  1159. - Vector3 LocalToWorld(const Vector3&) const
  1160. - Vector3 LocalToWorld(const Vector4&) const
  1161. - Vector3 WorldToLocal(const Vector3&) const
  1162. - Vector3 WorldToLocal(const Vector4&) const
  1163. - bool LoadXML(File@)
  1164. - bool SaveXML(File@)
  1165. - bool LoadAsync(File@)
  1166. - bool LoadAsyncXML(File@)
  1167. - void StopAsyncLoading()
  1168. - void Clear()
  1169. - void AddRequiredPackageFile(PackageFile@)
  1170. - void ClearRequiredPackageFiles()
  1171. - void RegisterVar(const String&)
  1172. - void UnregisterVar(const String&)
  1173. - void UnregisterAllVars(const String&)
  1174. - Component@ GetComponent(uint)
  1175. - Node@ GetNode(uint)
  1176. - const String& GetVarName(ShortStringHash) const
  1177. - void Update(float)
  1178. Properties:<br>
  1179. - ShortStringHash type (readonly)
  1180. - String& typeName (readonly)
  1181. - uint numAttributes (readonly)
  1182. - Variant[] attributes
  1183. - AttributeInfo&[] attributeInfos (readonly)
  1184. - Vector3& position
  1185. - Quaternion& rotation
  1186. - Vector3 direction
  1187. - Vector3& scale
  1188. - Vector3 worldPosition
  1189. - Quaternion worldRotation
  1190. - Vector3 worldDirection
  1191. - Vector3 worldScale
  1192. - Vector3& targetPosition (readonly)
  1193. - Quaternion& targetRotation (readonly)
  1194. - Vector3 worldTargetPosition (readonly)
  1195. - Quaternion worldTargetRotation (readonly)
  1196. - Matrix3x4 transform (readonly)
  1197. - Matrix3x4 targetTransform (readonly)
  1198. - Matrix3x4& worldTransform (readonly)
  1199. - bool smoothed
  1200. - uint id (readonly)
  1201. - uint numChildren (readonly)
  1202. - uint numAllChildren (readonly)
  1203. - Node@[] children (readonly)
  1204. - uint numComponents (readonly)
  1205. - Component@[] components (readonly)
  1206. - String& name
  1207. - Node@ parent
  1208. - bool active
  1209. - float smoothingConstant
  1210. - float snapThreshold
  1211. - bool asyncLoading (readonly)
  1212. - float asyncProgress (readonly)
  1213. - uint checksum (readonly)
  1214. - String& fileName (readonly)
  1215. - PackageFile@[]@ requiredPackageFiles (readonly)
  1216. - DebugRenderer@ debugRenderer (readonly)
  1217. - Octree@ octree (readonly)
  1218. - PhysicsWorld@ physicsWorld (readonly)
  1219. - VariantMap vars
  1220. Camera
  1221. Methods:<br>
  1222. - bool Load(File@)
  1223. - bool Save(File@)
  1224. - bool LoadXML(const XMLElement&)
  1225. - bool SaveXML(XMLElement&)
  1226. - void ApplyAttributes()
  1227. - bool SetAttribute(const String&, const Variant&)
  1228. - Variant GetAttribute(const String&)
  1229. - void Remove()
  1230. - void SetOrthoSize(const Vector2&)
  1231. - Frustum GetSplitFrustum(float, float)
  1232. - Ray GetScreenRay(float, float)
  1233. - float GetDistance(const Vector3&)
  1234. - float GetDistanceSquared(const Vector3&)
  1235. Properties:<br>
  1236. - ShortStringHash type (readonly)
  1237. - String& typeName (readonly)
  1238. - uint numAttributes (readonly)
  1239. - Variant[] attributes
  1240. - AttributeInfo&[] attributeInfos (readonly)
  1241. - uint id (readonly)
  1242. - Node@ node (readonly)
  1243. - float nearClip
  1244. - float farClip
  1245. - float fov
  1246. - float orthoSize
  1247. - float aspectRatio
  1248. - float zoom
  1249. - float lodBias
  1250. - bool orthographic
  1251. - bool autoAspectRatio
  1252. - Vector2& projectionOffset
  1253. - uint viewMask
  1254. - uint viewOverrideFlags
  1255. - Frustum frustum (readonly)
  1256. - Matrix4 projection (readonly)
  1257. - Frustum viewSpaceFrustum (readonly)
  1258. - float halfViewSize (readonly)
  1259. - Vector3 forwardVector (readonly)
  1260. - Vector3 rightVector (readonly)
  1261. - Vector3 upVector (readonly)
  1262. Bone
  1263. Properties:<br>
  1264. - Node@ node (readonly)
  1265. - String name
  1266. - Vector3 initialPosition
  1267. - Quaternion initialRotation
  1268. - Vector3 initialScale
  1269. - bool animated
  1270. - float radius
  1271. - BoundingBox boundingBox
  1272. Skeleton
  1273. Methods:<br>
  1274. - void Reset()
  1275. - Bone@ GetBone(const String&) const
  1276. Properties:<br>
  1277. - Bone@ rootBone (readonly)
  1278. - uint numBones (readonly)
  1279. - Bone@[] bones (readonly)
  1280. Texture
  1281. Methods:<br>
  1282. - bool Load(File@)
  1283. - bool Save(File@)
  1284. - void SetNumLevels(uint)
  1285. - void ClearDataLost()
  1286. Properties:<br>
  1287. - ShortStringHash type (readonly)
  1288. - String& typeName (readonly)
  1289. - String& name
  1290. - uint memoryUse (readonly)
  1291. - uint useTimer (readonly)
  1292. - TextureUsage usage (readonly)
  1293. - uint format (readonly)
  1294. - uint levels (readonly)
  1295. - int width (readonly)
  1296. - int height (readonly)
  1297. - int[] levelWidth (readonly)
  1298. - int[] levelHeight (readonly)
  1299. - TextureFilterMode filterMode
  1300. - TextureAddressMode[] addressMode
  1301. - Color& borderColor
  1302. - Texture@ backupTexture
  1303. - bool dataLost (readonly)
  1304. Viewport
  1305. Properties:<br>
  1306. - Scene@ scene
  1307. - Camera@ camera
  1308. - IntRect rect
  1309. RenderSurface
  1310. Properties:<br>
  1311. - Texture@ parentTexture (readonly)
  1312. - int width (readonly)
  1313. - int height (readonly)
  1314. - TextureUsage usage (readonly)
  1315. - Viewport& viewport
  1316. - RenderSurface@ linkedRenderTarget
  1317. - RenderSurface@ linkedDepthStencil
  1318. Texture2D
  1319. Methods:<br>
  1320. - bool Load(File@)
  1321. - bool Save(File@)
  1322. - void SetNumLevels(uint)
  1323. - void ClearDataLost()
  1324. - void SetSize(int, int, uint, TextureUsage arg3 = TEXTURE_STATIC)
  1325. - bool Load(Image@, bool arg1 = false)
  1326. Properties:<br>
  1327. - ShortStringHash type (readonly)
  1328. - String& typeName (readonly)
  1329. - String& name
  1330. - uint memoryUse (readonly)
  1331. - uint useTimer (readonly)
  1332. - TextureUsage usage (readonly)
  1333. - uint format (readonly)
  1334. - uint levels (readonly)
  1335. - int width (readonly)
  1336. - int height (readonly)
  1337. - int[] levelWidth (readonly)
  1338. - int[] levelHeight (readonly)
  1339. - TextureFilterMode filterMode
  1340. - TextureAddressMode[] addressMode
  1341. - Color& borderColor
  1342. - Texture@ backupTexture
  1343. - bool dataLost (readonly)
  1344. - RenderSurface@ renderSurface (readonly)
  1345. TextureCube
  1346. Methods:<br>
  1347. - bool Load(File@)
  1348. - bool Save(File@)
  1349. - void SetNumLevels(uint)
  1350. - void ClearDataLost()
  1351. - void SetSize(int, uint, TextureUsage arg2 = TEXTURE_STATIC)
  1352. - bool Load(CubeMapFace, Image@, bool arg2 = false)
  1353. Properties:<br>
  1354. - ShortStringHash type (readonly)
  1355. - String& typeName (readonly)
  1356. - String& name
  1357. - uint memoryUse (readonly)
  1358. - uint useTimer (readonly)
  1359. - TextureUsage usage (readonly)
  1360. - uint format (readonly)
  1361. - uint levels (readonly)
  1362. - int width (readonly)
  1363. - int height (readonly)
  1364. - int[] levelWidth (readonly)
  1365. - int[] levelHeight (readonly)
  1366. - TextureFilterMode filterMode
  1367. - TextureAddressMode[] addressMode
  1368. - Color& borderColor
  1369. - Texture@ backupTexture
  1370. - bool dataLost (readonly)
  1371. - RenderSurface@[] renderSurface (readonly)
  1372. Pass
  1373. Properties:<br>
  1374. - bool alphaTest
  1375. - BlendMode blendMode
  1376. - CompareMode depthTestMode
  1377. - bool depthWrite
  1378. - String& vertexShader
  1379. - String& pixelShader
  1380. Technique
  1381. Methods:<br>
  1382. - bool Load(File@)
  1383. - bool Save(File@)
  1384. - Pass@ CreatePass(PassType)
  1385. - void RemovePass(PassType)
  1386. - bool HasPass(PassType) const
  1387. Properties:<br>
  1388. - ShortStringHash type (readonly)
  1389. - String& typeName (readonly)
  1390. - String& name
  1391. - uint memoryUse (readonly)
  1392. - uint useTimer (readonly)
  1393. - bool sm3
  1394. - Pass@[] passes (readonly)
  1395. Material
  1396. Methods:<br>
  1397. - bool Load(File@)
  1398. - bool Save(File@)
  1399. - void SetUVTransform(const Vector2&, float, const Vector2&)
  1400. - void SetUVTransform(const Vector2&, float, float)
  1401. - void RemoveShaderParameter(const String&)
  1402. - Material@ Clone(const String&) const
  1403. Properties:<br>
  1404. - ShortStringHash type (readonly)
  1405. - String& typeName (readonly)
  1406. - String& name
  1407. - uint memoryUse (readonly)
  1408. - uint useTimer (readonly)
  1409. - uint numTechniques
  1410. - Technique@[] technique (readonly)
  1411. - Vector4[] shaderParameter
  1412. - Texture@[] textures
  1413. - bool occlusion (readonly)
  1414. - CullMode cullMode
  1415. - CullMode shadowCullMode
  1416. Model
  1417. Methods:<br>
  1418. - bool Load(File@)
  1419. - bool Save(File@)
  1420. Properties:<br>
  1421. - ShortStringHash type (readonly)
  1422. - String& typeName (readonly)
  1423. - String& name
  1424. - uint memoryUse (readonly)
  1425. - uint useTimer (readonly)
  1426. - BoundingBox& boundingBox (readonly)
  1427. - Skeleton@ skeleton (readonly)
  1428. - uint numGeometries (readonly)
  1429. - uint[] numGeometryLodLevels (readonly)
  1430. - uint numMorphs (readonly)
  1431. Animation
  1432. Methods:<br>
  1433. - bool Load(File@)
  1434. - bool Save(File@)
  1435. Properties:<br>
  1436. - ShortStringHash type (readonly)
  1437. - String& typeName (readonly)
  1438. - String& name
  1439. - uint memoryUse (readonly)
  1440. - uint useTimer (readonly)
  1441. - String& animationName (readonly)
  1442. - float length (readonly)
  1443. - uint numTracks (readonly)
  1444. DebugRenderer
  1445. Methods:<br>
  1446. - bool Load(File@)
  1447. - bool Save(File@)
  1448. - bool LoadXML(const XMLElement&)
  1449. - bool SaveXML(XMLElement&)
  1450. - void ApplyAttributes()
  1451. - bool SetAttribute(const String&, const Variant&)
  1452. - Variant GetAttribute(const String&)
  1453. - void Remove()
  1454. - void AddLine(const Vector3&, const Vector3&, const Color&, bool arg3 = true)
  1455. - void AddNode(Node@, bool arg1 = true)
  1456. - void AddBoundingBox(const BoundingBox&, const Color&, bool arg2 = true)
  1457. - void AddFrustum(const Frustum&, const Color&, bool arg2 = true)
  1458. - void AddPolyhedron(const Polyhedron&, const Color&, bool arg2 = true)
  1459. - void AddSphere(const Sphere&, const Color&, bool arg2 = true)
  1460. - void AddSkeleton(Skeleton@, const Color&, bool arg2 = true)
  1461. Properties:<br>
  1462. - ShortStringHash type (readonly)
  1463. - String& typeName (readonly)
  1464. - uint numAttributes (readonly)
  1465. - Variant[] attributes
  1466. - AttributeInfo&[] attributeInfos (readonly)
  1467. - uint id (readonly)
  1468. - Node@ node (readonly)
  1469. Drawable
  1470. Methods:<br>
  1471. - bool Load(File@)
  1472. - bool Save(File@)
  1473. - bool LoadXML(const XMLElement&)
  1474. - bool SaveXML(XMLElement&)
  1475. - void ApplyAttributes()
  1476. - bool SetAttribute(const String&, const Variant&)
  1477. - Variant GetAttribute(const String&)
  1478. - void Remove()
  1479. - void DrawDebugGeometry(DebugRenderer@, bool)
  1480. Properties:<br>
  1481. - ShortStringHash type (readonly)
  1482. - String& typeName (readonly)
  1483. - uint numAttributes (readonly)
  1484. - Variant[] attributes
  1485. - AttributeInfo&[] attributeInfos (readonly)
  1486. - uint id (readonly)
  1487. - Node@ node (readonly)
  1488. - bool inView (readonly)
  1489. - bool castShadows
  1490. - bool occluder
  1491. - bool visible
  1492. - float drawDistance
  1493. - float shadowDistance
  1494. - float lodBias
  1495. - uint viewMask
  1496. - uint lightMask
  1497. - uint shadowMask
  1498. - uint zoneMask
  1499. - uint maxLights
  1500. - BoundingBox& worldBoundingBox (readonly)
  1501. BiasParameters
  1502. Properties:<br>
  1503. - float constantBias
  1504. - float slopeScaledBias
  1505. CascadeParameters
  1506. Properties:<br>
  1507. - float split1
  1508. - float split2
  1509. - float split3
  1510. - float split4
  1511. - float fadeStart
  1512. FocusParameters
  1513. Properties:<br>
  1514. - bool focus
  1515. - bool nonUniform
  1516. - bool autoSize
  1517. - float quantize
  1518. - float minView
  1519. Light
  1520. Methods:<br>
  1521. - bool Load(File@)
  1522. - bool Save(File@)
  1523. - bool LoadXML(const XMLElement&)
  1524. - bool SaveXML(XMLElement&)
  1525. - void ApplyAttributes()
  1526. - bool SetAttribute(const String&, const Variant&)
  1527. - Variant GetAttribute(const String&)
  1528. - void Remove()
  1529. - void DrawDebugGeometry(DebugRenderer@, bool)
  1530. Properties:<br>
  1531. - ShortStringHash type (readonly)
  1532. - String& typeName (readonly)
  1533. - uint numAttributes (readonly)
  1534. - Variant[] attributes
  1535. - AttributeInfo&[] attributeInfos (readonly)
  1536. - uint id (readonly)
  1537. - Node@ node (readonly)
  1538. - bool inView (readonly)
  1539. - bool castShadows
  1540. - bool occluder
  1541. - bool visible
  1542. - float drawDistance
  1543. - float shadowDistance
  1544. - float lodBias
  1545. - uint viewMask
  1546. - uint lightMask
  1547. - uint shadowMask
  1548. - uint zoneMask
  1549. - uint maxLights
  1550. - BoundingBox& worldBoundingBox (readonly)
  1551. - LightType lightType
  1552. - bool perVertex
  1553. - Color& color
  1554. - float specularIntensity
  1555. - float range
  1556. - float fov
  1557. - float aspectRatio
  1558. - float fadeDistance
  1559. - BiasParameters& shadowBias
  1560. - CascadeParameters& shadowCascade
  1561. - FocusParameters& shadowFocus
  1562. - float shadowFadeDistance
  1563. - float shadowIntensity
  1564. - float shadowResolution
  1565. - float shadowNearFarRatio
  1566. - Texture@ rampTexture
  1567. - Texture@ shapeTexture
  1568. - Frustum frustum (readonly)
  1569. Zone
  1570. Methods:<br>
  1571. - bool Load(File@)
  1572. - bool Save(File@)
  1573. - bool LoadXML(const XMLElement&)
  1574. - bool SaveXML(XMLElement&)
  1575. - void ApplyAttributes()
  1576. - bool SetAttribute(const String&, const Variant&)
  1577. - Variant GetAttribute(const String&)
  1578. - void Remove()
  1579. - void DrawDebugGeometry(DebugRenderer@, bool)
  1580. Properties:<br>
  1581. - ShortStringHash type (readonly)
  1582. - String& typeName (readonly)
  1583. - uint numAttributes (readonly)
  1584. - Variant[] attributes
  1585. - AttributeInfo&[] attributeInfos (readonly)
  1586. - uint id (readonly)
  1587. - Node@ node (readonly)
  1588. - bool inView (readonly)
  1589. - bool castShadows
  1590. - bool occluder
  1591. - bool visible
  1592. - float drawDistance
  1593. - float shadowDistance
  1594. - float lodBias
  1595. - uint viewMask
  1596. - uint lightMask
  1597. - uint shadowMask
  1598. - uint zoneMask
  1599. - uint maxLights
  1600. - BoundingBox& worldBoundingBox (readonly)
  1601. - BoundingBox& boundingBox
  1602. - Color& ambientColor
  1603. - Color& ambientStartColor (readonly)
  1604. - Color& ambientEndColor (readonly)
  1605. - Color& fogColor
  1606. - float fogStart
  1607. - float fogEnd
  1608. - int priority
  1609. - bool override
  1610. - bool ambientGradient
  1611. StaticModel
  1612. Methods:<br>
  1613. - bool Load(File@)
  1614. - bool Save(File@)
  1615. - bool LoadXML(const XMLElement&)
  1616. - bool SaveXML(XMLElement&)
  1617. - void ApplyAttributes()
  1618. - bool SetAttribute(const String&, const Variant&)
  1619. - Variant GetAttribute(const String&)
  1620. - void Remove()
  1621. - void DrawDebugGeometry(DebugRenderer@, bool)
  1622. Properties:<br>
  1623. - ShortStringHash type (readonly)
  1624. - String& typeName (readonly)
  1625. - uint numAttributes (readonly)
  1626. - Variant[] attributes
  1627. - AttributeInfo&[] attributeInfos (readonly)
  1628. - uint id (readonly)
  1629. - Node@ node (readonly)
  1630. - bool inView (readonly)
  1631. - bool castShadows
  1632. - bool occluder
  1633. - bool visible
  1634. - float drawDistance
  1635. - float shadowDistance
  1636. - float lodBias
  1637. - uint viewMask
  1638. - uint lightMask
  1639. - uint shadowMask
  1640. - uint zoneMask
  1641. - uint maxLights
  1642. - BoundingBox& worldBoundingBox (readonly)
  1643. - Model@ model
  1644. - Material@[] materials
  1645. - BoundingBox& boundingBox (readonly)
  1646. - uint numGeometries (readonly)
  1647. - uint softwareLodLevel
  1648. - Zone@ zone (readonly)
  1649. Skybox
  1650. Methods:<br>
  1651. - bool Load(File@)
  1652. - bool Save(File@)
  1653. - bool LoadXML(const XMLElement&)
  1654. - bool SaveXML(XMLElement&)
  1655. - void ApplyAttributes()
  1656. - bool SetAttribute(const String&, const Variant&)
  1657. - Variant GetAttribute(const String&)
  1658. - void Remove()
  1659. - void DrawDebugGeometry(DebugRenderer@, bool)
  1660. Properties:<br>
  1661. - ShortStringHash type (readonly)
  1662. - String& typeName (readonly)
  1663. - uint numAttributes (readonly)
  1664. - Variant[] attributes
  1665. - AttributeInfo&[] attributeInfos (readonly)
  1666. - uint id (readonly)
  1667. - Node@ node (readonly)
  1668. - bool inView (readonly)
  1669. - bool castShadows
  1670. - bool occluder
  1671. - bool visible
  1672. - float drawDistance
  1673. - float shadowDistance
  1674. - float lodBias
  1675. - uint viewMask
  1676. - uint lightMask
  1677. - uint shadowMask
  1678. - uint zoneMask
  1679. - uint maxLights
  1680. - BoundingBox& worldBoundingBox (readonly)
  1681. - Model@ model
  1682. - Material@[] materials
  1683. - BoundingBox& boundingBox (readonly)
  1684. - uint numGeometries (readonly)
  1685. - uint softwareLodLevel
  1686. - Zone@ zone (readonly)
  1687. AnimationState
  1688. Methods:<br>
  1689. - void AddWeight(float)
  1690. - void AddTime(float)
  1691. Properties:<br>
  1692. - Bone@ startBone
  1693. - bool looped
  1694. - float weight
  1695. - float time
  1696. - uint8 layer
  1697. - bool useNlerp
  1698. - Animation@ animation (readonly)
  1699. - bool enabled (readonly)
  1700. - float length (readonly)
  1701. AnimatedModel
  1702. Methods:<br>
  1703. - bool Load(File@)
  1704. - bool Save(File@)
  1705. - bool LoadXML(const XMLElement&)
  1706. - bool SaveXML(XMLElement&)
  1707. - void ApplyAttributes()
  1708. - bool SetAttribute(const String&, const Variant&)
  1709. - Variant GetAttribute(const String&)
  1710. - void Remove()
  1711. - void DrawDebugGeometry(DebugRenderer@, bool)
  1712. - AnimationState@ AddAnimationState(Animation@)
  1713. - void RemoveAnimationState(Animation@)
  1714. - void RemoveAnimationState(const String&)
  1715. - void RemoveAnimationState(AnimationState@)
  1716. - void RemoveAllAnimationStates()
  1717. - void SetMorphWeight(uint, float)
  1718. - void ResetMorphWeights()
  1719. - float GetMorphWeight(uint) const
  1720. - AnimationState@ GetAnimationState(Animation@) const
  1721. - AnimationState@ GetAnimationState(uint) const
  1722. Properties:<br>
  1723. - ShortStringHash type (readonly)
  1724. - String& typeName (readonly)
  1725. - uint numAttributes (readonly)
  1726. - Variant[] attributes
  1727. - AttributeInfo&[] attributeInfos (readonly)
  1728. - uint id (readonly)
  1729. - Node@ node (readonly)
  1730. - bool inView (readonly)
  1731. - bool castShadows
  1732. - bool occluder
  1733. - bool visible
  1734. - float drawDistance
  1735. - float shadowDistance
  1736. - float lodBias
  1737. - uint viewMask
  1738. - uint lightMask
  1739. - uint shadowMask
  1740. - uint zoneMask
  1741. - uint maxLights
  1742. - BoundingBox& worldBoundingBox (readonly)
  1743. - Model@ model
  1744. - Material@[] materials
  1745. - BoundingBox& boundingBox (readonly)
  1746. - uint numGeometries (readonly)
  1747. - uint softwareLodLevel
  1748. - float animationLodBias
  1749. - float invisibleLodFactor
  1750. - Skeleton@ skeleton (readonly)
  1751. - uint numAnimationStates (readonly)
  1752. - AnimationState@[] animationStates (readonly)
  1753. - uint numMorphs (readonly)
  1754. - float[] morphWeights
  1755. - Zone@ zone (readonly)
  1756. AnimationController
  1757. Methods:<br>
  1758. - bool Load(File@)
  1759. - bool Save(File@)
  1760. - bool LoadXML(const XMLElement&)
  1761. - bool SaveXML(XMLElement&)
  1762. - void ApplyAttributes()
  1763. - bool SetAttribute(const String&, const Variant&)
  1764. - Variant GetAttribute(const String&)
  1765. - void Remove()
  1766. - bool Play(const String&, uint8, bool, float arg3 = 0.0f)
  1767. - bool PlayExclusive(const String&, uint8, bool, float arg3 = 0.0f)
  1768. - void Stop(const String&, float arg1 = 0.0f)
  1769. - void StopLayer(uint8, float arg1 = 0.0f)
  1770. - void StopAll(float arg0 = 0.0f)
  1771. - bool Fade(const String&, float, float)
  1772. - bool FadeOthers(const String&, float, float)
  1773. - bool SetLayer(const String&, uint8)
  1774. - bool SetStartBone(const String&, const String&)
  1775. - bool SetTime(const String&, float)
  1776. - bool SetWeight(const String&, float)
  1777. - bool SetLooped(const String&, bool)
  1778. - bool SetSpeed(const String&, float)
  1779. - bool SetAutoFade(const String&, float)
  1780. - bool IsPlaying(const String&) const
  1781. - bool IsFadingIn(const String&) const
  1782. - bool IsFadingOut(const String&) const
  1783. - uint8 GetLayer(const String&) const
  1784. - const String& GetStartBone(const String&) const
  1785. - float GetTime(const String&) const
  1786. - float GetWeight(const String&) const
  1787. - bool GetLooped(const String&) const
  1788. - float GetLength(const String&) const
  1789. - float GetSpeed(const String&) const
  1790. - float GetAutoFade(const String&) const
  1791. - float GetFadeTarget(const String&) const
  1792. Properties:<br>
  1793. - ShortStringHash type (readonly)
  1794. - String& typeName (readonly)
  1795. - uint numAttributes (readonly)
  1796. - Variant[] attributes
  1797. - AttributeInfo&[] attributeInfos (readonly)
  1798. - uint id (readonly)
  1799. - Node@ node (readonly)
  1800. Billboard
  1801. Properties:<br>
  1802. - Vector3 position
  1803. - Vector2 size
  1804. - Rect uv
  1805. - Color color
  1806. - float rotation
  1807. - bool enabled
  1808. BillboardSet
  1809. Methods:<br>
  1810. - bool Load(File@)
  1811. - bool Save(File@)
  1812. - bool LoadXML(const XMLElement&)
  1813. - bool SaveXML(XMLElement&)
  1814. - void ApplyAttributes()
  1815. - bool SetAttribute(const String&, const Variant&)
  1816. - Variant GetAttribute(const String&)
  1817. - void Remove()
  1818. - void DrawDebugGeometry(DebugRenderer@, bool)
  1819. - void Updated()
  1820. Properties:<br>
  1821. - ShortStringHash type (readonly)
  1822. - String& typeName (readonly)
  1823. - uint numAttributes (readonly)
  1824. - Variant[] attributes
  1825. - AttributeInfo&[] attributeInfos (readonly)
  1826. - uint id (readonly)
  1827. - Node@ node (readonly)
  1828. - bool inView (readonly)
  1829. - bool castShadows
  1830. - bool occluder
  1831. - bool visible
  1832. - float drawDistance
  1833. - float shadowDistance
  1834. - float lodBias
  1835. - uint viewMask
  1836. - uint lightMask
  1837. - uint shadowMask
  1838. - uint zoneMask
  1839. - uint maxLights
  1840. - BoundingBox& worldBoundingBox (readonly)
  1841. - Material@ material
  1842. - uint numBillboards
  1843. - bool relative
  1844. - bool sorted
  1845. - bool scaled
  1846. - float animationLodBias
  1847. - Billboard@[] billboards (readonly)
  1848. - Zone@ zone (readonly)
  1849. ParticleEmitter
  1850. Methods:<br>
  1851. - bool Load(File@)
  1852. - bool Save(File@)
  1853. - bool LoadXML(const XMLElement&)
  1854. - bool SaveXML(XMLElement&)
  1855. - void ApplyAttributes()
  1856. - bool SetAttribute(const String&, const Variant&)
  1857. - Variant GetAttribute(const String&)
  1858. - void Remove()
  1859. - void SetActive(bool, bool)
  1860. Properties:<br>
  1861. - ShortStringHash type (readonly)
  1862. - String& typeName (readonly)
  1863. - uint numAttributes (readonly)
  1864. - Variant[] attributes
  1865. - AttributeInfo&[] attributeInfos (readonly)
  1866. - uint id (readonly)
  1867. - Node@ node (readonly)
  1868. - Material@ material
  1869. - bool relative
  1870. - bool sorted
  1871. - bool scaled
  1872. - float animationLodBias
  1873. - XMLFile@ parameters
  1874. - bool active (readonly)
  1875. - uint numParticles (readonly)
  1876. - Zone@ zone (readonly)
  1877. RayQueryResult
  1878. Properties:<br>
  1879. - Drawable@ drawable (readonly)
  1880. - Node@ node (readonly)
  1881. - float distance
  1882. - uint subObject
  1883. Octree
  1884. Methods:<br>
  1885. - bool Load(File@)
  1886. - bool Save(File@)
  1887. - bool LoadXML(const XMLElement&)
  1888. - bool SaveXML(XMLElement&)
  1889. - void ApplyAttributes()
  1890. - bool SetAttribute(const String&, const Variant&)
  1891. - Variant GetAttribute(const String&)
  1892. - void Remove()
  1893. - void Resize(const BoundingBox&, uint)
  1894. - void DrawDebugGeometry(bool) const
  1895. - void AddManualDrawable(Drawable@, bool)
  1896. - void RemoveManualDrawable(Drawable@)
  1897. - RayQueryResult[]@ Raycast(const Ray&, RayQueryLevel arg1 = RAY_TRIANGLE, float arg2 = M_INFINITY, uint8 arg3 = DRAWABLE_ANY, uint arg4 = DEFAULT_VIEWMASK) const
  1898. - RayQueryResult RaycastSingle(const Ray&, RayQueryLevel arg1 = RAY_TRIANGLE, float arg2 = M_INFINITY, uint8 arg3 = DRAWABLE_ANY, uint arg4 = DEFAULT_VIEWMASK) const
  1899. - Node@[]@ GetDrawables(const Vector3&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  1900. - Node@[]@ GetDrawables(const BoundingBox&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  1901. - Node@[]@ GetDrawables(const Frustum&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  1902. - Node@[]@ GetDrawables(const Sphere&, uint8 arg1 = DRAWABLE_ANY, uint arg2 = DEFAULT_VIEWMASK)
  1903. Properties:<br>
  1904. - ShortStringHash type (readonly)
  1905. - String& typeName (readonly)
  1906. - uint numAttributes (readonly)
  1907. - Variant[] attributes
  1908. - AttributeInfo&[] attributeInfos (readonly)
  1909. - uint id (readonly)
  1910. - Node@ node (readonly)
  1911. - BoundingBox& worldBoundingBox (readonly)
  1912. - uint numLevels (readonly)
  1913. Graphics
  1914. Methods:<br>
  1915. - bool SetMode(int, int, bool, bool, bool, int)
  1916. - bool SetMode(int, int)
  1917. - bool ToggleFullscreen()
  1918. - void Close()
  1919. - bool TakeScreenShot(Image@)
  1920. Properties:<br>
  1921. - ShortStringHash type (readonly)
  1922. - String& typeName (readonly)
  1923. - bool flushGPU
  1924. - String& windowTitle
  1925. - int width (readonly)
  1926. - int height (readonly)
  1927. - int multiSample (readonly)
  1928. - bool fullscreen (readonly)
  1929. - bool vsync (readonly)
  1930. - bool tripleBuffer (readonly)
  1931. - bool initialized (readonly)
  1932. - bool deviceLost (readonly)
  1933. - uint numPrimitives (readonly)
  1934. - uint numBatches (readonly)
  1935. - bool sm3Support (readonly)
  1936. - bool lightPrepassSupport (readonly)
  1937. - bool hardwareDepthSupport (readonly)
  1938. - bool hardwareShadowSupport (readonly)
  1939. - bool hiresShadowSupport (readonly)
  1940. - bool forceSM2
  1941. - IntVector2[]@ resolutions (readonly)
  1942. - int[]@ multiSampleLevels (readonly)
  1943. EdgeFilterParameters
  1944. Properties:<br>
  1945. - float radius
  1946. - float threshold
  1947. - float strength
  1948. Renderer
  1949. Methods:<br>
  1950. - void DrawDebugGeometry(bool) const
  1951. Properties:<br>
  1952. - ShortStringHash type (readonly)
  1953. - String& typeName (readonly)
  1954. - uint numViewports
  1955. - Viewport&[] viewports
  1956. - bool lightPrepass
  1957. - bool specularLighting
  1958. - int textureAnisotropy
  1959. - TextureFilterMode textureFilterMode
  1960. - int textureQuality
  1961. - int materialQuality
  1962. - bool drawShadows
  1963. - int shadowMapSize
  1964. - int shadowQuality
  1965. - int maxShadowCascades
  1966. - int maxShadowMaps
  1967. - bool reuseShadowMaps
  1968. - bool dynamicInstancing
  1969. - int maxInstanceTriangles
  1970. - bool edgeFilter
  1971. - EdgeFilterParameters& edgeFilterParameters
  1972. - int maxOccluderTriangles
  1973. - int occlusionBufferSize
  1974. - float occluderSizeThreshold
  1975. - uint numPrimitives (readonly)
  1976. - uint numBatches (readonly)
  1977. - uint numViews (readonly)
  1978. - uint[] numGeometries (readonly)
  1979. - uint[] numLights (readonly)
  1980. - uint[] numShadowMaps (readonly)
  1981. - uint[] numOccluders (readonly)
  1982. Input
  1983. Methods:<br>
  1984. - void SuppressNextChar()
  1985. Properties:<br>
  1986. - ShortStringHash type (readonly)
  1987. - String& typeName (readonly)
  1988. - bool toggleFullscreen
  1989. - bool[] keyDown (readonly)
  1990. - bool[] keyPress (readonly)
  1991. - bool[] mouseButtonDown (readonly)
  1992. - bool[] mouseButtonPress (readonly)
  1993. - bool[] qualifierDown (readonly)
  1994. - bool[] qualifierPress (readonly)
  1995. - int qualifiers (readonly)
  1996. - IntVector2& mouseMove (readonly)
  1997. - int mouseMoveX (readonly)
  1998. - int mouseMoveY (readonly)
  1999. - int mouseMoveWheel (readonly)
  2000. - bool active (readonly)
  2001. - bool minimized (readonly)
  2002. Sound
  2003. Methods:<br>
  2004. - bool Load(File@)
  2005. - bool Save(File@)
  2006. Properties:<br>
  2007. - ShortStringHash type (readonly)
  2008. - String& typeName (readonly)
  2009. - String& name
  2010. - uint memoryUse (readonly)
  2011. - uint useTimer (readonly)
  2012. - float length (readonly)
  2013. - uint sampleSize (readonly)
  2014. - float frequency (readonly)
  2015. - bool looped
  2016. - bool sixteenBit (readonly)
  2017. - bool stereo (readonly)
  2018. - bool compressed (readonly)
  2019. SoundSource
  2020. Methods:<br>
  2021. - bool Load(File@)
  2022. - bool Save(File@)
  2023. - bool LoadXML(const XMLElement&)
  2024. - bool SaveXML(XMLElement&)
  2025. - void ApplyAttributes()
  2026. - bool SetAttribute(const String&, const Variant&)
  2027. - Variant GetAttribute(const String&)
  2028. - void Remove()
  2029. - void Play(Sound@)
  2030. - void Play(Sound@, float)
  2031. - void Play(Sound@, float, float)
  2032. - void Play(Sound@, float, float, float)
  2033. - void Stop()
  2034. Properties:<br>
  2035. - ShortStringHash type (readonly)
  2036. - String& typeName (readonly)
  2037. - uint numAttributes (readonly)
  2038. - Variant[] attributes
  2039. - AttributeInfo&[] attributeInfos (readonly)
  2040. - uint id (readonly)
  2041. - Node@ node (readonly)
  2042. - SoundType soundType
  2043. - float frequency
  2044. - float gain
  2045. - float panning
  2046. - Sound@ sound (readonly)
  2047. - float timePosition (readonly)
  2048. - float attenuation (readonly)
  2049. - bool autoRemove
  2050. - bool playing (readonly)
  2051. SoundSource3D
  2052. Methods:<br>
  2053. - bool Load(File@)
  2054. - bool Save(File@)
  2055. - bool LoadXML(const XMLElement&)
  2056. - bool SaveXML(XMLElement&)
  2057. - void ApplyAttributes()
  2058. - bool SetAttribute(const String&, const Variant&)
  2059. - Variant GetAttribute(const String&)
  2060. - void Remove()
  2061. - void Play(Sound@)
  2062. - void Play(Sound@, float)
  2063. - void Play(Sound@, float, float)
  2064. - void Play(Sound@, float, float, float)
  2065. - void Stop()
  2066. - void SetDistanceAttenuation(float, float, float)
  2067. Properties:<br>
  2068. - ShortStringHash type (readonly)
  2069. - String& typeName (readonly)
  2070. - uint numAttributes (readonly)
  2071. - Variant[] attributes
  2072. - AttributeInfo&[] attributeInfos (readonly)
  2073. - uint id (readonly)
  2074. - Node@ node (readonly)
  2075. - SoundType soundType
  2076. - float frequency
  2077. - float gain
  2078. - float panning
  2079. - Sound@ sound (readonly)
  2080. - float timePosition (readonly)
  2081. - float attenuation (readonly)
  2082. - bool autoRemove
  2083. - bool playing (readonly)
  2084. - float nearDistance
  2085. - float farDistance
  2086. - float rolloffFactor
  2087. Audio
  2088. Methods:<br>
  2089. - void SetMode(int, int, bool, bool arg3 = true)
  2090. - bool Play()
  2091. - void Stop()
  2092. - void SetListenerTransform(const Vector3&, const Quaternion&)
  2093. Properties:<br>
  2094. - ShortStringHash type (readonly)
  2095. - String& typeName (readonly)
  2096. - float[] masterGain
  2097. - Vector3& listenerPosition
  2098. - Quaternion& listenerRotation
  2099. - uint sampleSize (readonly)
  2100. - int mixRate (readonly)
  2101. - bool stereo (readonly)
  2102. - bool interpolated (readonly)
  2103. - bool playing (readonly)
  2104. - bool initialized (readonly)
  2105. Font
  2106. Methods:<br>
  2107. - bool Load(File@)
  2108. - bool Save(File@)
  2109. Properties:<br>
  2110. - ShortStringHash type (readonly)
  2111. - String& typeName (readonly)
  2112. - String& name
  2113. - uint memoryUse (readonly)
  2114. - uint useTimer (readonly)
  2115. UIElement
  2116. Methods:<br>
  2117. - void SetStyle(const XMLElement&)
  2118. - void SetStyle(XMLFile@, const String&)
  2119. - void SetStyleAuto(XMLFile@)
  2120. - void SetPosition(int, int)
  2121. - void SetSize(int, int)
  2122. - void SetMinSize(int, int)
  2123. - void SetMaxSize(int, int)
  2124. - void SetFixedSize(int, int)
  2125. - void SetFixedWidth(int)
  2126. - void SetFixedHeight(int)
  2127. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2128. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2129. - void UpdateLayout()
  2130. - void DisableLayoutUpdate()
  2131. - void EnableLayoutUpdate()
  2132. - void BringToFront()
  2133. - void AddChild(UIElement@)
  2134. - void InsertChild(uint, UIElement@)
  2135. - void RemoveChild(UIElement@)
  2136. - void RemoveAllChildren()
  2137. - void Remove()
  2138. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2139. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2140. - IntVector2 ScreenToElement(const IntVector2&)
  2141. - IntVector2 ElementToScreen(const IntVector2&)
  2142. - bool IsInside(IntVector2, bool)
  2143. - bool IsInsideCombined(IntVector2, bool)
  2144. Properties:<br>
  2145. - ShortStringHash type (readonly)
  2146. - String& typeName (readonly)
  2147. - String& name
  2148. - IntVector2& position
  2149. - IntVector2& size
  2150. - int width
  2151. - int height
  2152. - IntVector2& minSize
  2153. - int minWidth
  2154. - int minHeight
  2155. - IntVector2& maxSize
  2156. - int maxWidth
  2157. - int maxHeight
  2158. - HorizontalAlignment horizontalAlignment
  2159. - VerticalAlignment verticalAlignment
  2160. - IntRect& clipBorder
  2161. - Color&[] colors
  2162. - int priority
  2163. - float opacity
  2164. - bool bringToFront
  2165. - bool bringToBack
  2166. - bool clipChildren
  2167. - bool sortChildren
  2168. - bool active
  2169. - bool focus
  2170. - bool selected
  2171. - bool visible
  2172. - bool hovering (readonly)
  2173. - bool colorGradient (readonly)
  2174. - FocusMode focusMode
  2175. - uint dragDropMode
  2176. - LayoutMode layoutMode
  2177. - int layoutSpacing
  2178. - IntRect& layoutBorder
  2179. - IntVector2& childOffset (readonly)
  2180. - uint[] numChildren (readonly)
  2181. - uint numAllChildren (readonly)
  2182. - UIElement@[] children (readonly)
  2183. - UIElement@ parent (readonly)
  2184. - UIElement@ root (readonly)
  2185. - IntVector2 screenPosition (readonly)
  2186. - float derivedOpacity (readonly)
  2187. - IntRect combinedScreenRect (readonly)
  2188. - VariantMap vars
  2189. BorderImage
  2190. Methods:<br>
  2191. - void SetStyle(const XMLElement&)
  2192. - void SetStyle(XMLFile@, const String&)
  2193. - void SetStyleAuto(XMLFile@)
  2194. - void SetPosition(int, int)
  2195. - void SetSize(int, int)
  2196. - void SetMinSize(int, int)
  2197. - void SetMaxSize(int, int)
  2198. - void SetFixedSize(int, int)
  2199. - void SetFixedWidth(int)
  2200. - void SetFixedHeight(int)
  2201. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2202. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2203. - void UpdateLayout()
  2204. - void DisableLayoutUpdate()
  2205. - void EnableLayoutUpdate()
  2206. - void BringToFront()
  2207. - void AddChild(UIElement@)
  2208. - void InsertChild(uint, UIElement@)
  2209. - void RemoveChild(UIElement@)
  2210. - void RemoveAllChildren()
  2211. - void Remove()
  2212. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2213. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2214. - IntVector2 ScreenToElement(const IntVector2&)
  2215. - IntVector2 ElementToScreen(const IntVector2&)
  2216. - bool IsInside(IntVector2, bool)
  2217. - bool IsInsideCombined(IntVector2, bool)
  2218. - void SetFullImageRect()
  2219. - void SetHoverOffset(int, int)
  2220. Properties:<br>
  2221. - ShortStringHash type (readonly)
  2222. - String& typeName (readonly)
  2223. - String& name
  2224. - IntVector2& position
  2225. - IntVector2& size
  2226. - int width
  2227. - int height
  2228. - IntVector2& minSize
  2229. - int minWidth
  2230. - int minHeight
  2231. - IntVector2& maxSize
  2232. - int maxWidth
  2233. - int maxHeight
  2234. - HorizontalAlignment horizontalAlignment
  2235. - VerticalAlignment verticalAlignment
  2236. - IntRect& clipBorder
  2237. - Color&[] colors
  2238. - int priority
  2239. - float opacity
  2240. - bool bringToFront
  2241. - bool bringToBack
  2242. - bool clipChildren
  2243. - bool sortChildren
  2244. - bool active
  2245. - bool focus
  2246. - bool selected
  2247. - bool visible
  2248. - bool hovering (readonly)
  2249. - bool colorGradient (readonly)
  2250. - FocusMode focusMode
  2251. - uint dragDropMode
  2252. - LayoutMode layoutMode
  2253. - int layoutSpacing
  2254. - IntRect& layoutBorder
  2255. - IntVector2& childOffset (readonly)
  2256. - uint[] numChildren (readonly)
  2257. - uint numAllChildren (readonly)
  2258. - UIElement@[] children (readonly)
  2259. - UIElement@ parent (readonly)
  2260. - UIElement@ root (readonly)
  2261. - IntVector2 screenPosition (readonly)
  2262. - float derivedOpacity (readonly)
  2263. - IntRect combinedScreenRect (readonly)
  2264. - Texture@ texture
  2265. - IntRect& imageRect
  2266. - IntRect& border
  2267. - IntVector2& hoverOffset
  2268. - VariantMap vars
  2269. Button
  2270. Methods:<br>
  2271. - void SetStyle(const XMLElement&)
  2272. - void SetStyle(XMLFile@, const String&)
  2273. - void SetStyleAuto(XMLFile@)
  2274. - void SetPosition(int, int)
  2275. - void SetSize(int, int)
  2276. - void SetMinSize(int, int)
  2277. - void SetMaxSize(int, int)
  2278. - void SetFixedSize(int, int)
  2279. - void SetFixedWidth(int)
  2280. - void SetFixedHeight(int)
  2281. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2282. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2283. - void UpdateLayout()
  2284. - void DisableLayoutUpdate()
  2285. - void EnableLayoutUpdate()
  2286. - void BringToFront()
  2287. - void AddChild(UIElement@)
  2288. - void InsertChild(uint, UIElement@)
  2289. - void RemoveChild(UIElement@)
  2290. - void RemoveAllChildren()
  2291. - void Remove()
  2292. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2293. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2294. - IntVector2 ScreenToElement(const IntVector2&)
  2295. - IntVector2 ElementToScreen(const IntVector2&)
  2296. - bool IsInside(IntVector2, bool)
  2297. - bool IsInsideCombined(IntVector2, bool)
  2298. - void SetFullImageRect()
  2299. - void SetHoverOffset(int, int)
  2300. - void SetPressedOffset(int, int)
  2301. - void SetLabelOffset(int, int)
  2302. - void SetRepeat(float, float)
  2303. Properties:<br>
  2304. - ShortStringHash type (readonly)
  2305. - String& typeName (readonly)
  2306. - String& name
  2307. - IntVector2& position
  2308. - IntVector2& size
  2309. - int width
  2310. - int height
  2311. - IntVector2& minSize
  2312. - int minWidth
  2313. - int minHeight
  2314. - IntVector2& maxSize
  2315. - int maxWidth
  2316. - int maxHeight
  2317. - HorizontalAlignment horizontalAlignment
  2318. - VerticalAlignment verticalAlignment
  2319. - IntRect& clipBorder
  2320. - Color&[] colors
  2321. - int priority
  2322. - float opacity
  2323. - bool bringToFront
  2324. - bool bringToBack
  2325. - bool clipChildren
  2326. - bool sortChildren
  2327. - bool active
  2328. - bool focus
  2329. - bool selected
  2330. - bool visible
  2331. - bool hovering (readonly)
  2332. - bool colorGradient (readonly)
  2333. - FocusMode focusMode
  2334. - uint dragDropMode
  2335. - LayoutMode layoutMode
  2336. - int layoutSpacing
  2337. - IntRect& layoutBorder
  2338. - IntVector2& childOffset (readonly)
  2339. - uint[] numChildren (readonly)
  2340. - uint numAllChildren (readonly)
  2341. - UIElement@[] children (readonly)
  2342. - UIElement@ parent (readonly)
  2343. - UIElement@ root (readonly)
  2344. - IntVector2 screenPosition (readonly)
  2345. - float derivedOpacity (readonly)
  2346. - IntRect combinedScreenRect (readonly)
  2347. - Texture@ texture
  2348. - IntRect& imageRect
  2349. - IntRect& border
  2350. - IntVector2& hoverOffset
  2351. - IntVector2& pressedOffset
  2352. - IntVector2& labelOffset
  2353. - float repeatDelay
  2354. - float repeatRate
  2355. - VariantMap vars
  2356. CheckBox
  2357. Methods:<br>
  2358. - void SetStyle(const XMLElement&)
  2359. - void SetStyle(XMLFile@, const String&)
  2360. - void SetStyleAuto(XMLFile@)
  2361. - void SetPosition(int, int)
  2362. - void SetSize(int, int)
  2363. - void SetMinSize(int, int)
  2364. - void SetMaxSize(int, int)
  2365. - void SetFixedSize(int, int)
  2366. - void SetFixedWidth(int)
  2367. - void SetFixedHeight(int)
  2368. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2369. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2370. - void UpdateLayout()
  2371. - void DisableLayoutUpdate()
  2372. - void EnableLayoutUpdate()
  2373. - void BringToFront()
  2374. - void AddChild(UIElement@)
  2375. - void InsertChild(uint, UIElement@)
  2376. - void RemoveChild(UIElement@)
  2377. - void RemoveAllChildren()
  2378. - void Remove()
  2379. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2380. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2381. - IntVector2 ScreenToElement(const IntVector2&)
  2382. - IntVector2 ElementToScreen(const IntVector2&)
  2383. - bool IsInside(IntVector2, bool)
  2384. - bool IsInsideCombined(IntVector2, bool)
  2385. - void SetFullImageRect()
  2386. - void SetHoverOffset(int, int)
  2387. - void SetCheckedOffset(int, int)
  2388. Properties:<br>
  2389. - ShortStringHash type (readonly)
  2390. - String& typeName (readonly)
  2391. - String& name
  2392. - IntVector2& position
  2393. - IntVector2& size
  2394. - int width
  2395. - int height
  2396. - IntVector2& minSize
  2397. - int minWidth
  2398. - int minHeight
  2399. - IntVector2& maxSize
  2400. - int maxWidth
  2401. - int maxHeight
  2402. - HorizontalAlignment horizontalAlignment
  2403. - VerticalAlignment verticalAlignment
  2404. - IntRect& clipBorder
  2405. - Color&[] colors
  2406. - int priority
  2407. - float opacity
  2408. - bool bringToFront
  2409. - bool bringToBack
  2410. - bool clipChildren
  2411. - bool sortChildren
  2412. - bool active
  2413. - bool focus
  2414. - bool selected
  2415. - bool visible
  2416. - bool hovering (readonly)
  2417. - bool colorGradient (readonly)
  2418. - FocusMode focusMode
  2419. - uint dragDropMode
  2420. - LayoutMode layoutMode
  2421. - int layoutSpacing
  2422. - IntRect& layoutBorder
  2423. - IntVector2& childOffset (readonly)
  2424. - uint[] numChildren (readonly)
  2425. - uint numAllChildren (readonly)
  2426. - UIElement@[] children (readonly)
  2427. - UIElement@ parent (readonly)
  2428. - UIElement@ root (readonly)
  2429. - IntVector2 screenPosition (readonly)
  2430. - float derivedOpacity (readonly)
  2431. - IntRect combinedScreenRect (readonly)
  2432. - Texture@ texture
  2433. - IntRect& imageRect
  2434. - IntRect& border
  2435. - IntVector2& hoverOffset
  2436. - bool checked
  2437. - IntVector2& checkedOffset
  2438. - VariantMap vars
  2439. Cursor
  2440. Methods:<br>
  2441. - void SetStyle(const XMLElement&)
  2442. - void SetStyle(XMLFile@, const String&)
  2443. - void SetStyleAuto(XMLFile@)
  2444. - void SetPosition(int, int)
  2445. - void SetSize(int, int)
  2446. - void SetMinSize(int, int)
  2447. - void SetMaxSize(int, int)
  2448. - void SetFixedSize(int, int)
  2449. - void SetFixedWidth(int)
  2450. - void SetFixedHeight(int)
  2451. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2452. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2453. - void UpdateLayout()
  2454. - void DisableLayoutUpdate()
  2455. - void EnableLayoutUpdate()
  2456. - void BringToFront()
  2457. - void AddChild(UIElement@)
  2458. - void InsertChild(uint, UIElement@)
  2459. - void RemoveChild(UIElement@)
  2460. - void RemoveAllChildren()
  2461. - void Remove()
  2462. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2463. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2464. - IntVector2 ScreenToElement(const IntVector2&)
  2465. - IntVector2 ElementToScreen(const IntVector2&)
  2466. - bool IsInside(IntVector2, bool)
  2467. - bool IsInsideCombined(IntVector2, bool)
  2468. - void SetFullImageRect()
  2469. - void SetHoverOffset(int, int)
  2470. - void DefineShape(CursorShape, Texture@, const IntRect&, const IntVector2&)
  2471. Properties:<br>
  2472. - ShortStringHash type (readonly)
  2473. - String& typeName (readonly)
  2474. - String& name
  2475. - IntVector2& position
  2476. - IntVector2& size
  2477. - int width
  2478. - int height
  2479. - IntVector2& minSize
  2480. - int minWidth
  2481. - int minHeight
  2482. - IntVector2& maxSize
  2483. - int maxWidth
  2484. - int maxHeight
  2485. - HorizontalAlignment horizontalAlignment
  2486. - VerticalAlignment verticalAlignment
  2487. - IntRect& clipBorder
  2488. - Color&[] colors
  2489. - int priority
  2490. - float opacity
  2491. - bool bringToFront
  2492. - bool bringToBack
  2493. - bool clipChildren
  2494. - bool sortChildren
  2495. - bool active
  2496. - bool focus
  2497. - bool selected
  2498. - bool visible
  2499. - bool hovering (readonly)
  2500. - bool colorGradient (readonly)
  2501. - FocusMode focusMode
  2502. - uint dragDropMode
  2503. - LayoutMode layoutMode
  2504. - int layoutSpacing
  2505. - IntRect& layoutBorder
  2506. - IntVector2& childOffset (readonly)
  2507. - uint[] numChildren (readonly)
  2508. - uint numAllChildren (readonly)
  2509. - UIElement@[] children (readonly)
  2510. - UIElement@ parent (readonly)
  2511. - UIElement@ root (readonly)
  2512. - IntVector2 screenPosition (readonly)
  2513. - float derivedOpacity (readonly)
  2514. - IntRect combinedScreenRect (readonly)
  2515. - Texture@ texture
  2516. - IntRect& imageRect
  2517. - IntRect& border
  2518. - IntVector2& hoverOffset
  2519. - CursorShape shape
  2520. - VariantMap vars
  2521. Slider
  2522. Methods:<br>
  2523. - void SetStyle(const XMLElement&)
  2524. - void SetStyle(XMLFile@, const String&)
  2525. - void SetStyleAuto(XMLFile@)
  2526. - void SetPosition(int, int)
  2527. - void SetSize(int, int)
  2528. - void SetMinSize(int, int)
  2529. - void SetMaxSize(int, int)
  2530. - void SetFixedSize(int, int)
  2531. - void SetFixedWidth(int)
  2532. - void SetFixedHeight(int)
  2533. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2534. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2535. - void UpdateLayout()
  2536. - void DisableLayoutUpdate()
  2537. - void EnableLayoutUpdate()
  2538. - void BringToFront()
  2539. - void AddChild(UIElement@)
  2540. - void InsertChild(uint, UIElement@)
  2541. - void RemoveChild(UIElement@)
  2542. - void RemoveAllChildren()
  2543. - void Remove()
  2544. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2545. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2546. - IntVector2 ScreenToElement(const IntVector2&)
  2547. - IntVector2 ElementToScreen(const IntVector2&)
  2548. - bool IsInside(IntVector2, bool)
  2549. - bool IsInsideCombined(IntVector2, bool)
  2550. - void SetFullImageRect()
  2551. - void SetHoverOffset(int, int)
  2552. - void ChangeValue(float)
  2553. Properties:<br>
  2554. - ShortStringHash type (readonly)
  2555. - String& typeName (readonly)
  2556. - String& name
  2557. - IntVector2& position
  2558. - IntVector2& size
  2559. - int width
  2560. - int height
  2561. - IntVector2& minSize
  2562. - int minWidth
  2563. - int minHeight
  2564. - IntVector2& maxSize
  2565. - int maxWidth
  2566. - int maxHeight
  2567. - HorizontalAlignment horizontalAlignment
  2568. - VerticalAlignment verticalAlignment
  2569. - IntRect& clipBorder
  2570. - Color&[] colors
  2571. - int priority
  2572. - float opacity
  2573. - bool bringToFront
  2574. - bool bringToBack
  2575. - bool clipChildren
  2576. - bool sortChildren
  2577. - bool active
  2578. - bool focus
  2579. - bool selected
  2580. - bool visible
  2581. - bool hovering (readonly)
  2582. - bool colorGradient (readonly)
  2583. - FocusMode focusMode
  2584. - uint dragDropMode
  2585. - LayoutMode layoutMode
  2586. - int layoutSpacing
  2587. - IntRect& layoutBorder
  2588. - IntVector2& childOffset (readonly)
  2589. - uint[] numChildren (readonly)
  2590. - uint numAllChildren (readonly)
  2591. - UIElement@[] children (readonly)
  2592. - UIElement@ parent (readonly)
  2593. - UIElement@ root (readonly)
  2594. - IntVector2 screenPosition (readonly)
  2595. - float derivedOpacity (readonly)
  2596. - IntRect combinedScreenRect (readonly)
  2597. - Texture@ texture
  2598. - IntRect& imageRect
  2599. - IntRect& border
  2600. - IntVector2& hoverOffset
  2601. - Orientation orientation
  2602. - float range
  2603. - float value
  2604. - BorderImage@ knob (readonly)
  2605. - VariantMap vars
  2606. ScrollBar
  2607. Methods:<br>
  2608. - void SetStyle(const XMLElement&)
  2609. - void SetStyle(XMLFile@, const String&)
  2610. - void SetStyleAuto(XMLFile@)
  2611. - void SetPosition(int, int)
  2612. - void SetSize(int, int)
  2613. - void SetMinSize(int, int)
  2614. - void SetMaxSize(int, int)
  2615. - void SetFixedSize(int, int)
  2616. - void SetFixedWidth(int)
  2617. - void SetFixedHeight(int)
  2618. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2619. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2620. - void UpdateLayout()
  2621. - void DisableLayoutUpdate()
  2622. - void EnableLayoutUpdate()
  2623. - void BringToFront()
  2624. - void AddChild(UIElement@)
  2625. - void InsertChild(uint, UIElement@)
  2626. - void RemoveChild(UIElement@)
  2627. - void RemoveAllChildren()
  2628. - void Remove()
  2629. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2630. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2631. - IntVector2 ScreenToElement(const IntVector2&)
  2632. - IntVector2 ElementToScreen(const IntVector2&)
  2633. - bool IsInside(IntVector2, bool)
  2634. - bool IsInsideCombined(IntVector2, bool)
  2635. - void ChangeValue(float)
  2636. - void StepBack()
  2637. - void StepForward()
  2638. Properties:<br>
  2639. - ShortStringHash type (readonly)
  2640. - String& typeName (readonly)
  2641. - String& name
  2642. - IntVector2& position
  2643. - IntVector2& size
  2644. - int width
  2645. - int height
  2646. - IntVector2& minSize
  2647. - int minWidth
  2648. - int minHeight
  2649. - IntVector2& maxSize
  2650. - int maxWidth
  2651. - int maxHeight
  2652. - HorizontalAlignment horizontalAlignment
  2653. - VerticalAlignment verticalAlignment
  2654. - IntRect& clipBorder
  2655. - Color&[] colors
  2656. - int priority
  2657. - float opacity
  2658. - bool bringToFront
  2659. - bool bringToBack
  2660. - bool clipChildren
  2661. - bool sortChildren
  2662. - bool active
  2663. - bool focus
  2664. - bool selected
  2665. - bool visible
  2666. - bool hovering (readonly)
  2667. - bool colorGradient (readonly)
  2668. - FocusMode focusMode
  2669. - uint dragDropMode
  2670. - LayoutMode layoutMode
  2671. - int layoutSpacing
  2672. - IntRect& layoutBorder
  2673. - IntVector2& childOffset (readonly)
  2674. - uint[] numChildren (readonly)
  2675. - uint numAllChildren (readonly)
  2676. - UIElement@[] children (readonly)
  2677. - UIElement@ parent (readonly)
  2678. - UIElement@ root (readonly)
  2679. - IntVector2 screenPosition (readonly)
  2680. - float derivedOpacity (readonly)
  2681. - IntRect combinedScreenRect (readonly)
  2682. - Orientation orientation
  2683. - float range
  2684. - float value
  2685. - float scrollStep
  2686. - float stepFactor
  2687. - float effectiveScrollStep (readonly)
  2688. - Button@ backButton (readonly)
  2689. - Button@ forwardButton (readonly)
  2690. - Slider@ slider (readonly)
  2691. - VariantMap vars
  2692. ScrollView
  2693. Methods:<br>
  2694. - void SetStyle(const XMLElement&)
  2695. - void SetStyle(XMLFile@, const String&)
  2696. - void SetStyleAuto(XMLFile@)
  2697. - void SetPosition(int, int)
  2698. - void SetSize(int, int)
  2699. - void SetMinSize(int, int)
  2700. - void SetMaxSize(int, int)
  2701. - void SetFixedSize(int, int)
  2702. - void SetFixedWidth(int)
  2703. - void SetFixedHeight(int)
  2704. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2705. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2706. - void UpdateLayout()
  2707. - void DisableLayoutUpdate()
  2708. - void EnableLayoutUpdate()
  2709. - void BringToFront()
  2710. - void AddChild(UIElement@)
  2711. - void InsertChild(uint, UIElement@)
  2712. - void RemoveChild(UIElement@)
  2713. - void RemoveAllChildren()
  2714. - void Remove()
  2715. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2716. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2717. - IntVector2 ScreenToElement(const IntVector2&)
  2718. - IntVector2 ElementToScreen(const IntVector2&)
  2719. - bool IsInside(IntVector2, bool)
  2720. - bool IsInsideCombined(IntVector2, bool)
  2721. - void SetViewPosition(int, int)
  2722. - void SetScrollBarsVisible(bool, bool)
  2723. Properties:<br>
  2724. - ShortStringHash type (readonly)
  2725. - String& typeName (readonly)
  2726. - String& name
  2727. - IntVector2& position
  2728. - IntVector2& size
  2729. - int width
  2730. - int height
  2731. - IntVector2& minSize
  2732. - int minWidth
  2733. - int minHeight
  2734. - IntVector2& maxSize
  2735. - int maxWidth
  2736. - int maxHeight
  2737. - HorizontalAlignment horizontalAlignment
  2738. - VerticalAlignment verticalAlignment
  2739. - IntRect& clipBorder
  2740. - Color&[] colors
  2741. - int priority
  2742. - float opacity
  2743. - bool bringToFront
  2744. - bool bringToBack
  2745. - bool clipChildren
  2746. - bool sortChildren
  2747. - bool active
  2748. - bool focus
  2749. - bool selected
  2750. - bool visible
  2751. - bool hovering (readonly)
  2752. - bool colorGradient (readonly)
  2753. - FocusMode focusMode
  2754. - uint dragDropMode
  2755. - LayoutMode layoutMode
  2756. - int layoutSpacing
  2757. - IntRect& layoutBorder
  2758. - IntVector2& childOffset (readonly)
  2759. - uint[] numChildren (readonly)
  2760. - uint numAllChildren (readonly)
  2761. - UIElement@[] children (readonly)
  2762. - UIElement@ parent (readonly)
  2763. - UIElement@ root (readonly)
  2764. - IntVector2 screenPosition (readonly)
  2765. - float derivedOpacity (readonly)
  2766. - IntRect combinedScreenRect (readonly)
  2767. - UIElement@ contentElement
  2768. - IntVector2& viewPosition
  2769. - float scrollStep
  2770. - float pageStep
  2771. - ScrollBar@ horizontalScrollBar (readonly)
  2772. - ScrollBar@ verticalScrollBar (readonly)
  2773. - BorderImage@ scrollPanel (readonly)
  2774. - VariantMap vars
  2775. ListView
  2776. Methods:<br>
  2777. - void SetStyle(const XMLElement&)
  2778. - void SetStyle(XMLFile@, const String&)
  2779. - void SetStyleAuto(XMLFile@)
  2780. - void SetPosition(int, int)
  2781. - void SetSize(int, int)
  2782. - void SetMinSize(int, int)
  2783. - void SetMaxSize(int, int)
  2784. - void SetFixedSize(int, int)
  2785. - void SetFixedWidth(int)
  2786. - void SetFixedHeight(int)
  2787. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2788. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2789. - void UpdateLayout()
  2790. - void DisableLayoutUpdate()
  2791. - void EnableLayoutUpdate()
  2792. - void BringToFront()
  2793. - void AddChild(UIElement@)
  2794. - void InsertChild(uint, UIElement@)
  2795. - void RemoveChild(UIElement@)
  2796. - void RemoveAllChildren()
  2797. - void Remove()
  2798. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2799. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2800. - IntVector2 ScreenToElement(const IntVector2&)
  2801. - IntVector2 ElementToScreen(const IntVector2&)
  2802. - bool IsInside(IntVector2, bool)
  2803. - bool IsInsideCombined(IntVector2, bool)
  2804. - void SetViewPosition(int, int)
  2805. - void SetScrollBarsVisible(bool, bool)
  2806. - void AddItem(UIElement@)
  2807. - void InsertItem(uint, UIElement@)
  2808. - void RemoveItem(UIElement@)
  2809. - void RemoveItem(uint)
  2810. - void RemoveAllItems()
  2811. - void AddSelection(uint)
  2812. - void RemoveSelection(uint)
  2813. - void ToggleSelection(uint)
  2814. - void ChangeSelection(int, bool)
  2815. - void ClearSelection()
  2816. - void SetChildItemsVisible(uint, bool)
  2817. - void SetChildItemsVisible(bool)
  2818. - void ToggleChildItemsVisible(uint)
  2819. - bool IsSelected(uint) const
  2820. - UIElement@[]@ GetItems() const
  2821. Properties:<br>
  2822. - ShortStringHash type (readonly)
  2823. - String& typeName (readonly)
  2824. - String& name
  2825. - IntVector2& position
  2826. - IntVector2& size
  2827. - int width
  2828. - int height
  2829. - IntVector2& minSize
  2830. - int minWidth
  2831. - int minHeight
  2832. - IntVector2& maxSize
  2833. - int maxWidth
  2834. - int maxHeight
  2835. - HorizontalAlignment horizontalAlignment
  2836. - VerticalAlignment verticalAlignment
  2837. - IntRect& clipBorder
  2838. - Color&[] colors
  2839. - int priority
  2840. - float opacity
  2841. - bool bringToFront
  2842. - bool bringToBack
  2843. - bool clipChildren
  2844. - bool sortChildren
  2845. - bool active
  2846. - bool focus
  2847. - bool selected
  2848. - bool visible
  2849. - bool hovering (readonly)
  2850. - bool colorGradient (readonly)
  2851. - FocusMode focusMode
  2852. - uint dragDropMode
  2853. - LayoutMode layoutMode
  2854. - int layoutSpacing
  2855. - IntRect& layoutBorder
  2856. - IntVector2& childOffset (readonly)
  2857. - uint[] numChildren (readonly)
  2858. - uint numAllChildren (readonly)
  2859. - UIElement@[] children (readonly)
  2860. - UIElement@ parent (readonly)
  2861. - UIElement@ root (readonly)
  2862. - IntVector2 screenPosition (readonly)
  2863. - float derivedOpacity (readonly)
  2864. - IntRect combinedScreenRect (readonly)
  2865. - IntVector2& viewPosition
  2866. - UIElement@ contentElement (readonly)
  2867. - ScrollBar@ horizontalScrollBar (readonly)
  2868. - ScrollBar@ verticalScrollBar (readonly)
  2869. - BorderImage@ scrollPanel (readonly)
  2870. - float scrollStep
  2871. - float pageStep
  2872. - uint numItems (readonly)
  2873. - UIElement@[] items (readonly)
  2874. - uint selection
  2875. - uint[]@ selections
  2876. - UIElement@ selectedItem (readonly)
  2877. - UIElement@[]@ selectedItems (readonly)
  2878. - HighlightMode highlightMode
  2879. - bool multiselect
  2880. - bool hierarchyMode
  2881. - bool clearSelectionOnDefocus
  2882. - float floatClickInterval
  2883. - VariantMap vars
  2884. Text
  2885. Methods:<br>
  2886. - void SetStyle(const XMLElement&)
  2887. - void SetStyle(XMLFile@, const String&)
  2888. - void SetStyleAuto(XMLFile@)
  2889. - void SetPosition(int, int)
  2890. - void SetSize(int, int)
  2891. - void SetMinSize(int, int)
  2892. - void SetMaxSize(int, int)
  2893. - void SetFixedSize(int, int)
  2894. - void SetFixedWidth(int)
  2895. - void SetFixedHeight(int)
  2896. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2897. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2898. - void UpdateLayout()
  2899. - void DisableLayoutUpdate()
  2900. - void EnableLayoutUpdate()
  2901. - void BringToFront()
  2902. - void AddChild(UIElement@)
  2903. - void InsertChild(uint, UIElement@)
  2904. - void RemoveChild(UIElement@)
  2905. - void RemoveAllChildren()
  2906. - void Remove()
  2907. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2908. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2909. - IntVector2 ScreenToElement(const IntVector2&)
  2910. - IntVector2 ElementToScreen(const IntVector2&)
  2911. - bool IsInside(IntVector2, bool)
  2912. - bool IsInsideCombined(IntVector2, bool)
  2913. - bool SetFont(const String&, int)
  2914. - bool SetFont(Font@, int)
  2915. - void SetSelection(uint, uint)
  2916. - void ClearSelection()
  2917. Properties:<br>
  2918. - ShortStringHash type (readonly)
  2919. - String& typeName (readonly)
  2920. - String& name
  2921. - IntVector2& position
  2922. - IntVector2& size
  2923. - int width
  2924. - int height
  2925. - IntVector2& minSize
  2926. - int minWidth
  2927. - int minHeight
  2928. - IntVector2& maxSize
  2929. - int maxWidth
  2930. - int maxHeight
  2931. - HorizontalAlignment horizontalAlignment
  2932. - VerticalAlignment verticalAlignment
  2933. - IntRect& clipBorder
  2934. - Color&[] colors
  2935. - int priority
  2936. - float opacity
  2937. - bool bringToFront
  2938. - bool bringToBack
  2939. - bool clipChildren
  2940. - bool sortChildren
  2941. - bool active
  2942. - bool focus
  2943. - bool selected
  2944. - bool visible
  2945. - bool hovering (readonly)
  2946. - bool colorGradient (readonly)
  2947. - FocusMode focusMode
  2948. - uint dragDropMode
  2949. - LayoutMode layoutMode
  2950. - int layoutSpacing
  2951. - IntRect& layoutBorder
  2952. - IntVector2& childOffset (readonly)
  2953. - uint[] numChildren (readonly)
  2954. - uint numAllChildren (readonly)
  2955. - UIElement@[] children (readonly)
  2956. - UIElement@ parent (readonly)
  2957. - UIElement@ root (readonly)
  2958. - IntVector2 screenPosition (readonly)
  2959. - float derivedOpacity (readonly)
  2960. - IntRect combinedScreenRect (readonly)
  2961. - Font@ font (readonly)
  2962. - int fontSize (readonly)
  2963. - String& text
  2964. - HorizontalAlignment textAlignment
  2965. - float rowSpacing
  2966. - bool wordwrap
  2967. - uint selectionStart (readonly)
  2968. - uint selectionLength (readonly)
  2969. - Color& selectionColor
  2970. - Color& hoverColor
  2971. - uint numRows (readonly)
  2972. - int rowHeight (readonly)
  2973. - VariantMap vars
  2974. LineEdit
  2975. Methods:<br>
  2976. - void SetStyle(const XMLElement&)
  2977. - void SetStyle(XMLFile@, const String&)
  2978. - void SetStyleAuto(XMLFile@)
  2979. - void SetPosition(int, int)
  2980. - void SetSize(int, int)
  2981. - void SetMinSize(int, int)
  2982. - void SetMaxSize(int, int)
  2983. - void SetFixedSize(int, int)
  2984. - void SetFixedWidth(int)
  2985. - void SetFixedHeight(int)
  2986. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  2987. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  2988. - void UpdateLayout()
  2989. - void DisableLayoutUpdate()
  2990. - void EnableLayoutUpdate()
  2991. - void BringToFront()
  2992. - void AddChild(UIElement@)
  2993. - void InsertChild(uint, UIElement@)
  2994. - void RemoveChild(UIElement@)
  2995. - void RemoveAllChildren()
  2996. - void Remove()
  2997. - UIElement@ GetChild(const String&, bool arg1 = false) const
  2998. - UIElement@[]@ GetChildren(bool arg0 = false) const
  2999. - IntVector2 ScreenToElement(const IntVector2&)
  3000. - IntVector2 ElementToScreen(const IntVector2&)
  3001. - bool IsInside(IntVector2, bool)
  3002. - bool IsInsideCombined(IntVector2, bool)
  3003. - void SetFullImageRect()
  3004. - void SetHoverOffset(int, int)
  3005. Properties:<br>
  3006. - ShortStringHash type (readonly)
  3007. - String& typeName (readonly)
  3008. - String& name
  3009. - IntVector2& position
  3010. - IntVector2& size
  3011. - int width
  3012. - int height
  3013. - IntVector2& minSize
  3014. - int minWidth
  3015. - int minHeight
  3016. - IntVector2& maxSize
  3017. - int maxWidth
  3018. - int maxHeight
  3019. - HorizontalAlignment horizontalAlignment
  3020. - VerticalAlignment verticalAlignment
  3021. - IntRect& clipBorder
  3022. - Color&[] colors
  3023. - int priority
  3024. - float opacity
  3025. - bool bringToFront
  3026. - bool bringToBack
  3027. - bool clipChildren
  3028. - bool sortChildren
  3029. - bool active
  3030. - bool focus
  3031. - bool selected
  3032. - bool visible
  3033. - bool hovering (readonly)
  3034. - bool colorGradient (readonly)
  3035. - FocusMode focusMode
  3036. - uint dragDropMode
  3037. - LayoutMode layoutMode
  3038. - int layoutSpacing
  3039. - IntRect& layoutBorder
  3040. - IntVector2& childOffset (readonly)
  3041. - uint[] numChildren (readonly)
  3042. - uint numAllChildren (readonly)
  3043. - UIElement@[] children (readonly)
  3044. - UIElement@ parent (readonly)
  3045. - UIElement@ root (readonly)
  3046. - IntVector2 screenPosition (readonly)
  3047. - float derivedOpacity (readonly)
  3048. - IntRect combinedScreenRect (readonly)
  3049. - Texture@ texture
  3050. - IntRect& imageRect
  3051. - IntRect& border
  3052. - IntVector2& hoverOffset
  3053. - String& text
  3054. - uint cursorPosition
  3055. - float cursorBlinkRate
  3056. - uint maxLength
  3057. - uint8 echoCharacter
  3058. - bool cursorMovable
  3059. - bool textSelectable
  3060. - bool textCopyable
  3061. - Text@ textElement (readonly)
  3062. - BorderImage@ cursor (readonly)
  3063. - VariantMap vars
  3064. Menu
  3065. Methods:<br>
  3066. - void SetStyle(const XMLElement&)
  3067. - void SetStyle(XMLFile@, const String&)
  3068. - void SetStyleAuto(XMLFile@)
  3069. - void SetPosition(int, int)
  3070. - void SetSize(int, int)
  3071. - void SetMinSize(int, int)
  3072. - void SetMaxSize(int, int)
  3073. - void SetFixedSize(int, int)
  3074. - void SetFixedWidth(int)
  3075. - void SetFixedHeight(int)
  3076. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3077. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3078. - void UpdateLayout()
  3079. - void DisableLayoutUpdate()
  3080. - void EnableLayoutUpdate()
  3081. - void BringToFront()
  3082. - void AddChild(UIElement@)
  3083. - void InsertChild(uint, UIElement@)
  3084. - void RemoveChild(UIElement@)
  3085. - void RemoveAllChildren()
  3086. - void Remove()
  3087. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3088. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3089. - IntVector2 ScreenToElement(const IntVector2&)
  3090. - IntVector2 ElementToScreen(const IntVector2&)
  3091. - bool IsInside(IntVector2, bool)
  3092. - bool IsInsideCombined(IntVector2, bool)
  3093. - void SetFullImageRect()
  3094. - void SetHoverOffset(int, int)
  3095. - void SetPressedOffset(int, int)
  3096. - void SetLabelOffset(int, int)
  3097. - void SetRepeat(float, float)
  3098. - void SetPopupOffset(int, int)
  3099. - void SetAccelerator(int, int)
  3100. Properties:<br>
  3101. - ShortStringHash type (readonly)
  3102. - String& typeName (readonly)
  3103. - String& name
  3104. - IntVector2& position
  3105. - IntVector2& size
  3106. - int width
  3107. - int height
  3108. - IntVector2& minSize
  3109. - int minWidth
  3110. - int minHeight
  3111. - IntVector2& maxSize
  3112. - int maxWidth
  3113. - int maxHeight
  3114. - HorizontalAlignment horizontalAlignment
  3115. - VerticalAlignment verticalAlignment
  3116. - IntRect& clipBorder
  3117. - Color&[] colors
  3118. - int priority
  3119. - float opacity
  3120. - bool bringToFront
  3121. - bool bringToBack
  3122. - bool clipChildren
  3123. - bool sortChildren
  3124. - bool active
  3125. - bool focus
  3126. - bool selected
  3127. - bool visible
  3128. - bool hovering (readonly)
  3129. - bool colorGradient (readonly)
  3130. - FocusMode focusMode
  3131. - uint dragDropMode
  3132. - LayoutMode layoutMode
  3133. - int layoutSpacing
  3134. - IntRect& layoutBorder
  3135. - IntVector2& childOffset (readonly)
  3136. - uint[] numChildren (readonly)
  3137. - uint numAllChildren (readonly)
  3138. - UIElement@[] children (readonly)
  3139. - UIElement@ parent (readonly)
  3140. - UIElement@ root (readonly)
  3141. - IntVector2 screenPosition (readonly)
  3142. - float derivedOpacity (readonly)
  3143. - IntRect combinedScreenRect (readonly)
  3144. - Texture@ texture
  3145. - IntRect& imageRect
  3146. - IntRect& border
  3147. - IntVector2& hoverOffset
  3148. - IntVector2& pressedOffset
  3149. - IntVector2& labelOffset
  3150. - float repeatDelay
  3151. - float repeatRate
  3152. - UIElement@ popup
  3153. - IntVector2& popupOffset
  3154. - bool showPopup
  3155. - int acceleratorKey (readonly)
  3156. - int acceleratorQualifiers (readonly)
  3157. - VariantMap vars
  3158. DropDownList
  3159. Methods:<br>
  3160. - void SetStyle(const XMLElement&)
  3161. - void SetStyle(XMLFile@, const String&)
  3162. - void SetStyleAuto(XMLFile@)
  3163. - void SetPosition(int, int)
  3164. - void SetSize(int, int)
  3165. - void SetMinSize(int, int)
  3166. - void SetMaxSize(int, int)
  3167. - void SetFixedSize(int, int)
  3168. - void SetFixedWidth(int)
  3169. - void SetFixedHeight(int)
  3170. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3171. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3172. - void UpdateLayout()
  3173. - void DisableLayoutUpdate()
  3174. - void EnableLayoutUpdate()
  3175. - void BringToFront()
  3176. - void AddChild(UIElement@)
  3177. - void InsertChild(uint, UIElement@)
  3178. - void RemoveChild(UIElement@)
  3179. - void RemoveAllChildren()
  3180. - void Remove()
  3181. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3182. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3183. - IntVector2 ScreenToElement(const IntVector2&)
  3184. - IntVector2 ElementToScreen(const IntVector2&)
  3185. - bool IsInside(IntVector2, bool)
  3186. - bool IsInsideCombined(IntVector2, bool)
  3187. - void SetFullImageRect()
  3188. - void SetHoverOffset(int, int)
  3189. - void SetPressedOffset(int, int)
  3190. - void SetLabelOffset(int, int)
  3191. - void SetRepeat(float, float)
  3192. - void SetAccelerator(int, int)
  3193. - void AddItem(UIElement@)
  3194. - void InsertItem(uint, UIElement@)
  3195. - void RemoveItem(UIElement@)
  3196. - void RemoveItem(uint)
  3197. - void RemoveAllItems()
  3198. - UIElement@[]@ GetItems() const
  3199. - UIElement@ getPopup() const
  3200. Properties:<br>
  3201. - ShortStringHash type (readonly)
  3202. - String& typeName (readonly)
  3203. - String& name
  3204. - IntVector2& position
  3205. - IntVector2& size
  3206. - int width
  3207. - int height
  3208. - IntVector2& minSize
  3209. - int minWidth
  3210. - int minHeight
  3211. - IntVector2& maxSize
  3212. - int maxWidth
  3213. - int maxHeight
  3214. - HorizontalAlignment horizontalAlignment
  3215. - VerticalAlignment verticalAlignment
  3216. - IntRect& clipBorder
  3217. - Color&[] colors
  3218. - int priority
  3219. - float opacity
  3220. - bool bringToFront
  3221. - bool bringToBack
  3222. - bool clipChildren
  3223. - bool sortChildren
  3224. - bool active
  3225. - bool focus
  3226. - bool selected
  3227. - bool visible
  3228. - bool hovering (readonly)
  3229. - bool colorGradient (readonly)
  3230. - FocusMode focusMode
  3231. - uint dragDropMode
  3232. - LayoutMode layoutMode
  3233. - int layoutSpacing
  3234. - IntRect& layoutBorder
  3235. - IntVector2& childOffset (readonly)
  3236. - uint[] numChildren (readonly)
  3237. - uint numAllChildren (readonly)
  3238. - UIElement@[] children (readonly)
  3239. - UIElement@ parent (readonly)
  3240. - UIElement@ root (readonly)
  3241. - IntVector2 screenPosition (readonly)
  3242. - float derivedOpacity (readonly)
  3243. - IntRect combinedScreenRect (readonly)
  3244. - Texture@ texture
  3245. - IntRect& imageRect
  3246. - IntRect& border
  3247. - IntVector2& hoverOffset
  3248. - IntVector2& pressedOffset
  3249. - IntVector2& labelOffset
  3250. - float repeatDelay
  3251. - float repeatRate
  3252. - bool showPopup
  3253. - uint selection
  3254. - bool resizePopup
  3255. - int acceleratorKey (readonly)
  3256. - int acceleratorQualifiers (readonly)
  3257. - uint numItems (readonly)
  3258. - UIElement@[] items (readonly)
  3259. - UIElement@ selectedItem (readonly)
  3260. - ListView@ listView (readonly)
  3261. - UIElement@ placeholder (readonly)
  3262. - VariantMap vars
  3263. Window
  3264. Methods:<br>
  3265. - void SetStyle(const XMLElement&)
  3266. - void SetStyle(XMLFile@, const String&)
  3267. - void SetStyleAuto(XMLFile@)
  3268. - void SetPosition(int, int)
  3269. - void SetSize(int, int)
  3270. - void SetMinSize(int, int)
  3271. - void SetMaxSize(int, int)
  3272. - void SetFixedSize(int, int)
  3273. - void SetFixedWidth(int)
  3274. - void SetFixedHeight(int)
  3275. - void SetAlignment(HorizontalAlignment, VerticalAlignment)
  3276. - void SetLayout(LayoutMode, int arg1 = 0, const IntRect& arg2 = IntRect ( 0 , 0 , 0 , 0 ))
  3277. - void UpdateLayout()
  3278. - void DisableLayoutUpdate()
  3279. - void EnableLayoutUpdate()
  3280. - void BringToFront()
  3281. - void AddChild(UIElement@)
  3282. - void InsertChild(uint, UIElement@)
  3283. - void RemoveChild(UIElement@)
  3284. - void RemoveAllChildren()
  3285. - void Remove()
  3286. - UIElement@ GetChild(const String&, bool arg1 = false) const
  3287. - UIElement@[]@ GetChildren(bool arg0 = false) const
  3288. - IntVector2 ScreenToElement(const IntVector2&)
  3289. - IntVector2 ElementToScreen(const IntVector2&)
  3290. - bool IsInside(IntVector2, bool)
  3291. - bool IsInsideCombined(IntVector2, bool)
  3292. - void SetFullImageRect()
  3293. - void SetHoverOffset(int, int)
  3294. Properties:<br>
  3295. - ShortStringHash type (readonly)
  3296. - String& typeName (readonly)
  3297. - String& name
  3298. - IntVector2& position
  3299. - IntVector2& size
  3300. - int width
  3301. - int height
  3302. - IntVector2& minSize
  3303. - int minWidth
  3304. - int minHeight
  3305. - IntVector2& maxSize
  3306. - int maxWidth
  3307. - int maxHeight
  3308. - HorizontalAlignment horizontalAlignment
  3309. - VerticalAlignment verticalAlignment
  3310. - IntRect& clipBorder
  3311. - Color&[] colors
  3312. - int priority
  3313. - float opacity
  3314. - bool bringToFront
  3315. - bool bringToBack
  3316. - bool clipChildren
  3317. - bool sortChildren
  3318. - bool active
  3319. - bool focus
  3320. - bool selected
  3321. - bool visible
  3322. - bool hovering (readonly)
  3323. - bool colorGradient (readonly)
  3324. - FocusMode focusMode
  3325. - uint dragDropMode
  3326. - LayoutMode layoutMode
  3327. - int layoutSpacing
  3328. - IntRect& layoutBorder
  3329. - IntVector2& childOffset (readonly)
  3330. - uint[] numChildren (readonly)
  3331. - uint numAllChildren (readonly)
  3332. - UIElement@[] children (readonly)
  3333. - UIElement@ parent (readonly)
  3334. - UIElement@ root (readonly)
  3335. - IntVector2 screenPosition (readonly)
  3336. - float derivedOpacity (readonly)
  3337. - IntRect combinedScreenRect (readonly)
  3338. - Texture@ texture
  3339. - IntRect& imageRect
  3340. - IntRect& border
  3341. - IntVector2& hoverOffset
  3342. - bool movable
  3343. - bool resizable
  3344. - IntRect& resizeBorder
  3345. - VariantMap vars
  3346. FileSelector
  3347. Methods:<br>
  3348. - void SetButtonTexts(const String&, const String&)
  3349. - void SetFilters(String[]@, uint)
  3350. - void UpdateElements()
  3351. Properties:<br>
  3352. - ShortStringHash type (readonly)
  3353. - String& typeName (readonly)
  3354. - String& title
  3355. - String& path
  3356. - String& fileName
  3357. - bool directoryMode
  3358. - String& filter (readonly)
  3359. - uint filterIndex (readonly)
  3360. - XMLFile@ style
  3361. - Window@ window (readonly)
  3362. - Text@ titleText (readonly)
  3363. - ListView@ fileList (readonly)
  3364. - LineEdit@ pathEdit (readonly)
  3365. - LineEdit@ fileNameEdit (readonly)
  3366. - DropDownList@ filterList (readonly)
  3367. - Button@ okButton (readonly)
  3368. - Button@ cancelButton (readonly)
  3369. UI
  3370. Methods:<br>
  3371. - void Clear()
  3372. - UIElement@ LoadLayout(XMLFile@)
  3373. - UIElement@ LoadLayout(XMLFile@, XMLFile@)
  3374. - UIElement@ GetElementAt(const IntVector2&, bool arg1 = true)
  3375. - UIElement@ GetElementAt(int, int, bool arg2 = true)
  3376. Properties:<br>
  3377. - ShortStringHash type (readonly)
  3378. - String& typeName (readonly)
  3379. - Cursor@ cursor
  3380. - IntVector2 cursorPosition (readonly)
  3381. - UIElement@ focusElement
  3382. - UIElement@ frontElement (readonly)
  3383. - UIElement@ root (readonly)
  3384. Controls
  3385. Methods:<br>
  3386. - void Reset()
  3387. - void Set(uint, bool)
  3388. - bool IsDown(uint) const
  3389. - bool IsPressed(uint, const Controls&) const
  3390. Properties:<br>
  3391. - uint buttons
  3392. - float yaw
  3393. - float pitch
  3394. - VariantMap extraData
  3395. NetworkPriority
  3396. Methods:<br>
  3397. - bool Load(File@)
  3398. - bool Save(File@)
  3399. - bool LoadXML(const XMLElement&)
  3400. - bool SaveXML(XMLElement&)
  3401. - void ApplyAttributes()
  3402. - bool SetAttribute(const String&, const Variant&)
  3403. - Variant GetAttribute(const String&)
  3404. - void Remove()
  3405. Properties:<br>
  3406. - ShortStringHash type (readonly)
  3407. - String& typeName (readonly)
  3408. - uint numAttributes (readonly)
  3409. - Variant[] attributes
  3410. - AttributeInfo&[] attributeInfos (readonly)
  3411. - uint id (readonly)
  3412. - Node@ node (readonly)
  3413. - float basePriority
  3414. - float distanceFactor
  3415. - float minPriority
  3416. - bool alwaysUpdateOwner
  3417. Connection
  3418. Methods:<br>
  3419. - void SendMessage(int, bool, bool, const VectorBuffer&, uint arg4 = 0, uint arg5 = 0)
  3420. - void SendRemoteEvent(const String&, bool, const VariantMap& arg2 = VariantMap ( ))
  3421. - void SendRemoteEvent(Node@, const String&, bool, const VariantMap& arg3 = VariantMap ( ))
  3422. - void Disconnect(int arg0 = 0)
  3423. - String ToString() const
  3424. Properties:<br>
  3425. - ShortStringHash type (readonly)
  3426. - String& typeName (readonly)
  3427. - Scene@ scene
  3428. - bool logStatistics
  3429. - bool client (readonly)
  3430. - bool connected (readonly)
  3431. - bool connectPending (readonly)
  3432. - bool sceneLoaded (readonly)
  3433. - String address (readonly)
  3434. - uint16 port (readonly)
  3435. - uint numDownloads (readonly)
  3436. - String& downloadName (readonly)
  3437. - float downloadProgress (readonly)
  3438. - Vector3 position
  3439. - Controls controls
  3440. - VariantMap identity
  3441. Network
  3442. Methods:<br>
  3443. - bool Connect(const String&, uint16, Scene@, const VariantMap& arg3 = VariantMap ( ))
  3444. - void Disconnect(int arg0 = 0)
  3445. - bool StartServer(uint16)
  3446. - void StopServer()
  3447. - void BroadcastMessage(int, bool, bool, const VectorBuffer&, uint arg4 = 0, uint arg5 = 0)
  3448. - void BroadcastRemoteEvent(const String&, bool, const VariantMap& arg2 = VariantMap ( ))
  3449. - void BroadcastRemoteEvent(Scene@, const String&, bool, const VariantMap& arg3 = VariantMap ( ))
  3450. - void BroadcastRemoteEvent(Node@, const String&, bool, const VariantMap& arg3 = VariantMap ( ))
  3451. - void RegisterRemoteEvent(const String&) const
  3452. - void UnregisterRemoteEvent(const String&) const
  3453. - void UnregisterAllRemoteEvents()
  3454. - bool CheckRemoteEvent(const String&) const
  3455. Properties:<br>
  3456. - ShortStringHash type (readonly)
  3457. - String& typeName (readonly)
  3458. - int updateFps
  3459. - String& packageCacheDir
  3460. - bool serverRunning (readonly)
  3461. - Connection@ serverConnection (readonly)
  3462. - Connection@[]@ clientConnections (readonly)
  3463. CollisionShape
  3464. Methods:<br>
  3465. - bool Load(File@)
  3466. - bool Save(File@)
  3467. - bool LoadXML(const XMLElement&)
  3468. - bool SaveXML(XMLElement&)
  3469. - void ApplyAttributes()
  3470. - bool SetAttribute(const String&, const Variant&)
  3471. - Variant GetAttribute(const String&)
  3472. - void Remove()
  3473. - void Clear()
  3474. - void SetSphere(float, const Vector3& arg1 = Vector3 ( ), const Quaternion& arg2 = Quaternion ( ))
  3475. - void SetBox(const Vector3&, const Vector3& arg1 = Vector3 ( ), const Quaternion& arg2 = Quaternion ( ))
  3476. - void SetCylinder(float, float, const Vector3& arg2 = Vector3 ( ), const Quaternion& arg3 = Quaternion ( ))
  3477. - void SetCapsule(float, float, const Vector3& arg2 = Vector3 ( ), const Quaternion& arg3 = Quaternion ( ))
  3478. - void SetTriangleMesh(Model@, uint, const Vector3& arg2 = Vector3 ( 1 , 1 , 1 ), const Vector3& arg3 = Vector3 ( ), const Quaternion& arg4 = Quaternion ( ))
  3479. - void SetHeightfield(Model@, uint, uint, float, uint, const Vector3& arg5 = Vector3 ( 1 , 1 , 1 ), const Vector3& arg6 = Vector3 ( ), const Quaternion& arg7 = Quaternion ( ))
  3480. - void SetConvexHull(Model@, float, uint, const Vector3& arg3 = Vector3 ( 1 , 1 , 1 ), const Vector3& arg4 = Vector3 ( ), const Quaternion& arg5 = Quaternion ( ))
  3481. - void SetTransform(const Vector3&, const Quaternion&)
  3482. - void DrawDebugGeometry(DebugRenderer@, bool)
  3483. Properties:<br>
  3484. - ShortStringHash type (readonly)
  3485. - String& typeName (readonly)
  3486. - uint numAttributes (readonly)
  3487. - Variant[] attributes
  3488. - AttributeInfo&[] attributeInfos (readonly)
  3489. - uint id (readonly)
  3490. - Node@ node (readonly)
  3491. - Model@ model (readonly)
  3492. - ShapeType shapeType (readonly)
  3493. - Vector3& position
  3494. - Quaternion& rotation
  3495. - uint collisionLayer
  3496. - uint collisionMask
  3497. - float friction
  3498. - float bounce
  3499. - bool phantom
  3500. - BoundingBox worldBoundingBox (readonly)
  3501. RigidBody
  3502. Methods:<br>
  3503. - bool Load(File@)
  3504. - bool Save(File@)
  3505. - bool LoadXML(const XMLElement&)
  3506. - bool SaveXML(XMLElement&)
  3507. - void ApplyAttributes()
  3508. - bool SetAttribute(const String&, const Variant&)
  3509. - Variant GetAttribute(const String&)
  3510. - void Remove()
  3511. - void SetTransform(const Vector3&, const Quaternion&)
  3512. - void ApplyForce(const Vector3&)
  3513. - void ApplyForceAtPosition(const Vector3&, const Vector3&)
  3514. - void ApplyTorque(const Vector3&)
  3515. - void ResetForces()
  3516. Properties:<br>
  3517. - ShortStringHash type (readonly)
  3518. - String& typeName (readonly)
  3519. - uint numAttributes (readonly)
  3520. - Variant[] attributes
  3521. - AttributeInfo&[] attributeInfos (readonly)
  3522. - uint id (readonly)
  3523. - Node@ node (readonly)
  3524. - float mass
  3525. - int massAxis
  3526. - Vector3& linearVelocity
  3527. - float linearRestThreshold
  3528. - Vector3& angularVelocity
  3529. - float angularRestThreshold
  3530. - float angularMaxVelocity
  3531. - bool active
  3532. - Vector3& position
  3533. - Quaternion& rotation
  3534. - float linearDampingThreshold
  3535. - float linearDampingScale
  3536. - float angularDampingThreshold
  3537. - float angularDampingScale
  3538. Joint
  3539. Methods:<br>
  3540. - bool Load(File@)
  3541. - bool Save(File@)
  3542. - bool LoadXML(const XMLElement&)
  3543. - bool SaveXML(XMLElement&)
  3544. - void ApplyAttributes()
  3545. - bool SetAttribute(const String&, const Variant&)
  3546. - Variant GetAttribute(const String&)
  3547. - void Remove()
  3548. - void Clear()
  3549. - bool SetBall(const Vector3&, RigidBody@, RigidBody@)
  3550. - bool SetHinge(const Vector3&, const Vector3&, RigidBody@, RigidBody@)
  3551. Properties:<br>
  3552. - ShortStringHash type (readonly)
  3553. - String& typeName (readonly)
  3554. - uint numAttributes (readonly)
  3555. - Variant[] attributes
  3556. - AttributeInfo&[] attributeInfos (readonly)
  3557. - uint id (readonly)
  3558. - Node@ node (readonly)
  3559. - Vector3 position
  3560. - Vector3 axis
  3561. - RigidBody@ bodyA (readonly)
  3562. - RigidBody@ bodyB (readonly)
  3563. - JointType jointType (readonly)
  3564. PhysicsRaycastResult
  3565. Properties:<br>
  3566. - CollisionShape@ collisionShape (readonly)
  3567. - Vector3 position
  3568. - Vector3 normal
  3569. - float distance
  3570. PhysicsWorld
  3571. Methods:<br>
  3572. - bool Load(File@)
  3573. - bool Save(File@)
  3574. - bool LoadXML(const XMLElement&)
  3575. - bool SaveXML(XMLElement&)
  3576. - void ApplyAttributes()
  3577. - bool SetAttribute(const String&, const Variant&)
  3578. - Variant GetAttribute(const String&)
  3579. - void Remove()
  3580. - void Update(float)
  3581. - PhysicsRaycastResult[]@ Raycast(const Ray&, float arg1 = M_INFINITY, uint arg2 = 0xffffffff)
  3582. - void DrawDebugGeometry(bool)
  3583. Properties:<br>
  3584. - ShortStringHash type (readonly)
  3585. - String& typeName (readonly)
  3586. - uint numAttributes (readonly)
  3587. - Variant[] attributes
  3588. - AttributeInfo&[] attributeInfos (readonly)
  3589. - uint id (readonly)
  3590. - Node@ node (readonly)
  3591. - Vector3 gravity
  3592. - int fps
  3593. - uint maxContacts
  3594. - float linearRestThreshold
  3595. - float angularRestThreshold
  3596. - float bounceThreshold
  3597. - float erp
  3598. - float cfm
  3599. - float contactSurfaceLayer
  3600. - float linearDampingThreshold
  3601. - float linearDampingScale
  3602. - float angularDampingThreshold
  3603. - float angularDampingScale
  3604. ScriptFile
  3605. Methods:<br>
  3606. - bool Load(File@)
  3607. - bool Save(File@)
  3608. - bool Execute(const String&, const Variant[]@)
  3609. Properties:<br>
  3610. - ShortStringHash type (readonly)
  3611. - String& typeName (readonly)
  3612. - String& name
  3613. - uint memoryUse (readonly)
  3614. - uint useTimer (readonly)
  3615. - bool compiled (readonly)
  3616. ScriptObject
  3617. ScriptInstance
  3618. Methods:<br>
  3619. - bool Load(File@)
  3620. - bool Save(File@)
  3621. - bool LoadXML(const XMLElement&)
  3622. - bool SaveXML(XMLElement&)
  3623. - void ApplyAttributes()
  3624. - bool SetAttribute(const String&, const Variant&)
  3625. - Variant GetAttribute(const String&)
  3626. - void Remove()
  3627. - bool CreateObject(ScriptFile@, const String&)
  3628. - bool Execute(const String&, const Variant[]@)
  3629. - bool Execute(const String&)
  3630. - void DelayedExecute(float, const String&, const Variant[]@)
  3631. - void DelayedExecute(float, const String&)
  3632. - void ClearDelayedExecute()
  3633. Properties:<br>
  3634. - ShortStringHash type (readonly)
  3635. - String& typeName (readonly)
  3636. - uint numAttributes (readonly)
  3637. - Variant[] attributes
  3638. - AttributeInfo&[] attributeInfos (readonly)
  3639. - uint id (readonly)
  3640. - Node@ node (readonly)
  3641. - bool active
  3642. - int fixedUpdateFps
  3643. - ScriptFile@ scriptFile
  3644. - ScriptObject@ object (readonly)
  3645. - String& className
  3646. Script
  3647. Methods:<br>
  3648. - bool Execute(const String&)
  3649. - void DumpAPI()
  3650. Properties:<br>
  3651. - ShortStringHash type (readonly)
  3652. - String& typeName (readonly)
  3653. - ScriptFile@ defaultScriptFile
  3654. - Scene@ defaultScene
  3655. Console
  3656. Methods:<br>
  3657. - void Toggle()
  3658. - void UpdateElements()
  3659. Properties:<br>
  3660. - ShortStringHash type (readonly)
  3661. - String& typeName (readonly)
  3662. - XMLFile@ style
  3663. - bool visible
  3664. - uint numRows
  3665. - uint numHistoryRows
  3666. - uint historyPosition (readonly)
  3667. - String&[] historyRow (readonly)
  3668. - BorderImage@ background (readonly)
  3669. - LineEdit@ lineEdit (readonly)
  3670. DebugHud
  3671. Methods:<br>
  3672. - void Toggle(uint)
  3673. - void ToggleAll()
  3674. Properties:<br>
  3675. - ShortStringHash type (readonly)
  3676. - String& typeName (readonly)
  3677. - XMLFile@ style
  3678. - uint mode
  3679. - float profilerInterval
  3680. - bool useRendererStats
  3681. - Text@ statsText (readonly)
  3682. - Text@ modeText (readonly)
  3683. - Text@ profilerText (readonly)
  3684. Engine
  3685. Methods:<br>
  3686. - void RunFrame()
  3687. - void Exit()
  3688. - void DumpProfilingData()
  3689. - void DumpResources()
  3690. - Console@ CreateConsole()
  3691. - DebugHud@ CreateDebugHud()
  3692. Properties:<br>
  3693. - ShortStringHash type (readonly)
  3694. - String& typeName (readonly)
  3695. - int minFps
  3696. - int maxFps
  3697. - int maxInactiveFps
  3698. - bool initialized (readonly)
  3699. - bool exiting (readonly)
  3700. - bool headless (readonly)
  3701. */