ScriptAPI.dox 282 KB

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