ScriptAPI.dox 172 KB

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