ScriptAPI.dox 198 KB

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