ScriptAPI.dox 146 KB

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