ScriptAPI.dox 174 KB

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