ScriptAPI.dox 243 KB

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