ScriptAPI.dox 245 KB

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