ScriptAPI.dox 200 KB

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