ScriptAPI.dox 199 KB

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