ScriptAPI.dox 114 KB

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