ScriptAPI.dox 144 KB

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