ScriptAPI.dox 163 KB

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