ScriptAPI.dox 167 KB

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