ScriptAPI.dox 211 KB

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