ScriptAPI.dox 200 KB

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