ScriptAPI.dox 198 KB

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