ScriptAPI.dox 236 KB

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