ScriptAPI.dox 114 KB

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