ScriptAPI.dox 166 KB

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