ScriptAPI.dox 195 KB

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