ScriptAPI.dox 244 KB

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