ScriptAPI.dox 180 KB

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