ScriptAPI.dox 101 KB

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