ScriptAPI.dox 175 KB

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