ScriptAPI.dox 180 KB

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