ScriptAPI.dox 211 KB

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