ScriptAPI.dox 115 KB

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