ScriptAPI.dox 202 KB

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