ScriptAPI.dox 196 KB

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