ScriptAPI.dox 181 KB

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