ScriptAPI.dox 180 KB

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