ScriptAPI.dox 136 KB

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