ScriptAPI.dox 165 KB

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