ScriptAPI.dox 194 KB

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