class_@globalscope.rst 327 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/@GlobalScope.xml.
  6. .. _class_@GlobalScope:
  7. @GlobalScope
  8. ============
  9. Global scope constants and functions.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. A list of global scope enumerated constants and built-in functions. This is all that resides in the globals, constants regarding error codes, keycodes, property hints, etc.
  14. Singletons are also documented here, since they can be accessed from anywhere.
  15. For the entries that can only be accessed from scripts written in GDScript, see :ref:`@GDScript<class_@GDScript>`.
  16. .. note::
  17. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  18. .. rst-class:: classref-introduction-group
  19. Tutorials
  20. ---------
  21. - :doc:`Random number generation <../tutorials/math/random_number_generation>`
  22. .. rst-class:: classref-reftable-group
  23. Properties
  24. ----------
  25. .. table::
  26. :widths: auto
  27. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  28. | :ref:`AudioServer<class_AudioServer>` | :ref:`AudioServer<class_@GlobalScope_property_AudioServer>` |
  29. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  30. | :ref:`CameraServer<class_CameraServer>` | :ref:`CameraServer<class_@GlobalScope_property_CameraServer>` |
  31. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  32. | :ref:`ClassDB<class_ClassDB>` | :ref:`ClassDB<class_@GlobalScope_property_ClassDB>` |
  33. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  34. | :ref:`DisplayServer<class_DisplayServer>` | :ref:`DisplayServer<class_@GlobalScope_property_DisplayServer>` |
  35. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  36. | :ref:`EditorInterface<class_EditorInterface>` | :ref:`EditorInterface<class_@GlobalScope_property_EditorInterface>` |
  37. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  38. | :ref:`Engine<class_Engine>` | :ref:`Engine<class_@GlobalScope_property_Engine>` |
  39. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  40. | :ref:`EngineDebugger<class_EngineDebugger>` | :ref:`EngineDebugger<class_@GlobalScope_property_EngineDebugger>` |
  41. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  42. | :ref:`GDExtensionManager<class_GDExtensionManager>` | :ref:`GDExtensionManager<class_@GlobalScope_property_GDExtensionManager>` |
  43. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  44. | :ref:`Geometry2D<class_Geometry2D>` | :ref:`Geometry2D<class_@GlobalScope_property_Geometry2D>` |
  45. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  46. | :ref:`Geometry3D<class_Geometry3D>` | :ref:`Geometry3D<class_@GlobalScope_property_Geometry3D>` |
  47. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  48. | :ref:`IP<class_IP>` | :ref:`IP<class_@GlobalScope_property_IP>` |
  49. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  50. | :ref:`Input<class_Input>` | :ref:`Input<class_@GlobalScope_property_Input>` |
  51. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  52. | :ref:`InputMap<class_InputMap>` | :ref:`InputMap<class_@GlobalScope_property_InputMap>` |
  53. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  54. | :ref:`JavaClassWrapper<class_JavaClassWrapper>` | :ref:`JavaClassWrapper<class_@GlobalScope_property_JavaClassWrapper>` |
  55. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  56. | :ref:`JavaScriptBridge<class_JavaScriptBridge>` | :ref:`JavaScriptBridge<class_@GlobalScope_property_JavaScriptBridge>` |
  57. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  58. | :ref:`Marshalls<class_Marshalls>` | :ref:`Marshalls<class_@GlobalScope_property_Marshalls>` |
  59. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  60. | :ref:`NativeMenu<class_NativeMenu>` | :ref:`NativeMenu<class_@GlobalScope_property_NativeMenu>` |
  61. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  62. | :ref:`NavigationMeshGenerator<class_NavigationMeshGenerator>` | :ref:`NavigationMeshGenerator<class_@GlobalScope_property_NavigationMeshGenerator>` |
  63. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  64. | :ref:`NavigationServer2D<class_NavigationServer2D>` | :ref:`NavigationServer2D<class_@GlobalScope_property_NavigationServer2D>` |
  65. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  66. | :ref:`NavigationServer3D<class_NavigationServer3D>` | :ref:`NavigationServer3D<class_@GlobalScope_property_NavigationServer3D>` |
  67. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  68. | :ref:`OS<class_OS>` | :ref:`OS<class_@GlobalScope_property_OS>` |
  69. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  70. | :ref:`Performance<class_Performance>` | :ref:`Performance<class_@GlobalScope_property_Performance>` |
  71. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  72. | :ref:`PhysicsServer2D<class_PhysicsServer2D>` | :ref:`PhysicsServer2D<class_@GlobalScope_property_PhysicsServer2D>` |
  73. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  74. | :ref:`PhysicsServer2DManager<class_PhysicsServer2DManager>` | :ref:`PhysicsServer2DManager<class_@GlobalScope_property_PhysicsServer2DManager>` |
  75. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  76. | :ref:`PhysicsServer3D<class_PhysicsServer3D>` | :ref:`PhysicsServer3D<class_@GlobalScope_property_PhysicsServer3D>` |
  77. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  78. | :ref:`PhysicsServer3DManager<class_PhysicsServer3DManager>` | :ref:`PhysicsServer3DManager<class_@GlobalScope_property_PhysicsServer3DManager>` |
  79. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  80. | :ref:`ProjectSettings<class_ProjectSettings>` | :ref:`ProjectSettings<class_@GlobalScope_property_ProjectSettings>` |
  81. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  82. | :ref:`RenderingServer<class_RenderingServer>` | :ref:`RenderingServer<class_@GlobalScope_property_RenderingServer>` |
  83. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  84. | :ref:`ResourceLoader<class_ResourceLoader>` | :ref:`ResourceLoader<class_@GlobalScope_property_ResourceLoader>` |
  85. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  86. | :ref:`ResourceSaver<class_ResourceSaver>` | :ref:`ResourceSaver<class_@GlobalScope_property_ResourceSaver>` |
  87. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  88. | :ref:`ResourceUID<class_ResourceUID>` | :ref:`ResourceUID<class_@GlobalScope_property_ResourceUID>` |
  89. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  90. | :ref:`TextServerManager<class_TextServerManager>` | :ref:`TextServerManager<class_@GlobalScope_property_TextServerManager>` |
  91. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  92. | :ref:`ThemeDB<class_ThemeDB>` | :ref:`ThemeDB<class_@GlobalScope_property_ThemeDB>` |
  93. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  94. | :ref:`Time<class_Time>` | :ref:`Time<class_@GlobalScope_property_Time>` |
  95. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  96. | :ref:`TranslationServer<class_TranslationServer>` | :ref:`TranslationServer<class_@GlobalScope_property_TranslationServer>` |
  97. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  98. | :ref:`WorkerThreadPool<class_WorkerThreadPool>` | :ref:`WorkerThreadPool<class_@GlobalScope_property_WorkerThreadPool>` |
  99. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  100. | :ref:`XRServer<class_XRServer>` | :ref:`XRServer<class_@GlobalScope_property_XRServer>` |
  101. +---------------------------------------------------------------+-------------------------------------------------------------------------------------+
  102. .. rst-class:: classref-reftable-group
  103. Methods
  104. -------
  105. .. table::
  106. :widths: auto
  107. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | :ref:`Variant<class_Variant>` | :ref:`abs<class_@GlobalScope_method_abs>`\ (\ x\: :ref:`Variant<class_Variant>`\ ) |
  109. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | :ref:`float<class_float>` | :ref:`absf<class_@GlobalScope_method_absf>`\ (\ x\: :ref:`float<class_float>`\ ) |
  111. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`int<class_int>` | :ref:`absi<class_@GlobalScope_method_absi>`\ (\ x\: :ref:`int<class_int>`\ ) |
  113. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`float<class_float>` | :ref:`acos<class_@GlobalScope_method_acos>`\ (\ x\: :ref:`float<class_float>`\ ) |
  115. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`float<class_float>` | :ref:`acosh<class_@GlobalScope_method_acosh>`\ (\ x\: :ref:`float<class_float>`\ ) |
  117. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`float<class_float>` | :ref:`angle_difference<class_@GlobalScope_method_angle_difference>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`\ ) |
  119. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`float<class_float>` | :ref:`asin<class_@GlobalScope_method_asin>`\ (\ x\: :ref:`float<class_float>`\ ) |
  121. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`float<class_float>` | :ref:`asinh<class_@GlobalScope_method_asinh>`\ (\ x\: :ref:`float<class_float>`\ ) |
  123. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`float<class_float>` | :ref:`atan<class_@GlobalScope_method_atan>`\ (\ x\: :ref:`float<class_float>`\ ) |
  125. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | :ref:`float<class_float>` | :ref:`atan2<class_@GlobalScope_method_atan2>`\ (\ y\: :ref:`float<class_float>`, x\: :ref:`float<class_float>`\ ) |
  127. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | :ref:`float<class_float>` | :ref:`atanh<class_@GlobalScope_method_atanh>`\ (\ x\: :ref:`float<class_float>`\ ) |
  129. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | :ref:`float<class_float>` | :ref:`bezier_derivative<class_@GlobalScope_method_bezier_derivative>`\ (\ start\: :ref:`float<class_float>`, control_1\: :ref:`float<class_float>`, control_2\: :ref:`float<class_float>`, end\: :ref:`float<class_float>`, t\: :ref:`float<class_float>`\ ) |
  131. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | :ref:`float<class_float>` | :ref:`bezier_interpolate<class_@GlobalScope_method_bezier_interpolate>`\ (\ start\: :ref:`float<class_float>`, control_1\: :ref:`float<class_float>`, control_2\: :ref:`float<class_float>`, end\: :ref:`float<class_float>`, t\: :ref:`float<class_float>`\ ) |
  133. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | :ref:`Variant<class_Variant>` | :ref:`bytes_to_var<class_@GlobalScope_method_bytes_to_var>`\ (\ bytes\: :ref:`PackedByteArray<class_PackedByteArray>`\ ) |
  135. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | :ref:`Variant<class_Variant>` | :ref:`bytes_to_var_with_objects<class_@GlobalScope_method_bytes_to_var_with_objects>`\ (\ bytes\: :ref:`PackedByteArray<class_PackedByteArray>`\ ) |
  137. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | :ref:`Variant<class_Variant>` | :ref:`ceil<class_@GlobalScope_method_ceil>`\ (\ x\: :ref:`Variant<class_Variant>`\ ) |
  139. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. | :ref:`float<class_float>` | :ref:`ceilf<class_@GlobalScope_method_ceilf>`\ (\ x\: :ref:`float<class_float>`\ ) |
  141. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  142. | :ref:`int<class_int>` | :ref:`ceili<class_@GlobalScope_method_ceili>`\ (\ x\: :ref:`float<class_float>`\ ) |
  143. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  144. | :ref:`Variant<class_Variant>` | :ref:`clamp<class_@GlobalScope_method_clamp>`\ (\ value\: :ref:`Variant<class_Variant>`, min\: :ref:`Variant<class_Variant>`, max\: :ref:`Variant<class_Variant>`\ ) |
  145. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  146. | :ref:`float<class_float>` | :ref:`clampf<class_@GlobalScope_method_clampf>`\ (\ value\: :ref:`float<class_float>`, min\: :ref:`float<class_float>`, max\: :ref:`float<class_float>`\ ) |
  147. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  148. | :ref:`int<class_int>` | :ref:`clampi<class_@GlobalScope_method_clampi>`\ (\ value\: :ref:`int<class_int>`, min\: :ref:`int<class_int>`, max\: :ref:`int<class_int>`\ ) |
  149. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  150. | :ref:`float<class_float>` | :ref:`cos<class_@GlobalScope_method_cos>`\ (\ angle_rad\: :ref:`float<class_float>`\ ) |
  151. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  152. | :ref:`float<class_float>` | :ref:`cosh<class_@GlobalScope_method_cosh>`\ (\ x\: :ref:`float<class_float>`\ ) |
  153. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  154. | :ref:`float<class_float>` | :ref:`cubic_interpolate<class_@GlobalScope_method_cubic_interpolate>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) |
  155. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  156. | :ref:`float<class_float>` | :ref:`cubic_interpolate_angle<class_@GlobalScope_method_cubic_interpolate_angle>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) |
  157. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  158. | :ref:`float<class_float>` | :ref:`cubic_interpolate_angle_in_time<class_@GlobalScope_method_cubic_interpolate_angle_in_time>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`, to_t\: :ref:`float<class_float>`, pre_t\: :ref:`float<class_float>`, post_t\: :ref:`float<class_float>`\ ) |
  159. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  160. | :ref:`float<class_float>` | :ref:`cubic_interpolate_in_time<class_@GlobalScope_method_cubic_interpolate_in_time>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`, to_t\: :ref:`float<class_float>`, pre_t\: :ref:`float<class_float>`, post_t\: :ref:`float<class_float>`\ ) |
  161. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  162. | :ref:`float<class_float>` | :ref:`db_to_linear<class_@GlobalScope_method_db_to_linear>`\ (\ db\: :ref:`float<class_float>`\ ) |
  163. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  164. | :ref:`float<class_float>` | :ref:`deg_to_rad<class_@GlobalScope_method_deg_to_rad>`\ (\ deg\: :ref:`float<class_float>`\ ) |
  165. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  166. | :ref:`float<class_float>` | :ref:`ease<class_@GlobalScope_method_ease>`\ (\ x\: :ref:`float<class_float>`, curve\: :ref:`float<class_float>`\ ) |
  167. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  168. | :ref:`String<class_String>` | :ref:`error_string<class_@GlobalScope_method_error_string>`\ (\ error\: :ref:`int<class_int>`\ ) |
  169. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  170. | :ref:`float<class_float>` | :ref:`exp<class_@GlobalScope_method_exp>`\ (\ x\: :ref:`float<class_float>`\ ) |
  171. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  172. | :ref:`Variant<class_Variant>` | :ref:`floor<class_@GlobalScope_method_floor>`\ (\ x\: :ref:`Variant<class_Variant>`\ ) |
  173. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  174. | :ref:`float<class_float>` | :ref:`floorf<class_@GlobalScope_method_floorf>`\ (\ x\: :ref:`float<class_float>`\ ) |
  175. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  176. | :ref:`int<class_int>` | :ref:`floori<class_@GlobalScope_method_floori>`\ (\ x\: :ref:`float<class_float>`\ ) |
  177. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  178. | :ref:`float<class_float>` | :ref:`fmod<class_@GlobalScope_method_fmod>`\ (\ x\: :ref:`float<class_float>`, y\: :ref:`float<class_float>`\ ) |
  179. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  180. | :ref:`float<class_float>` | :ref:`fposmod<class_@GlobalScope_method_fposmod>`\ (\ x\: :ref:`float<class_float>`, y\: :ref:`float<class_float>`\ ) |
  181. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  182. | :ref:`int<class_int>` | :ref:`hash<class_@GlobalScope_method_hash>`\ (\ variable\: :ref:`Variant<class_Variant>`\ ) |
  183. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  184. | :ref:`Object<class_Object>` | :ref:`instance_from_id<class_@GlobalScope_method_instance_from_id>`\ (\ instance_id\: :ref:`int<class_int>`\ ) |
  185. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  186. | :ref:`float<class_float>` | :ref:`inverse_lerp<class_@GlobalScope_method_inverse_lerp>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) |
  187. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  188. | :ref:`bool<class_bool>` | :ref:`is_equal_approx<class_@GlobalScope_method_is_equal_approx>`\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) |
  189. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  190. | :ref:`bool<class_bool>` | :ref:`is_finite<class_@GlobalScope_method_is_finite>`\ (\ x\: :ref:`float<class_float>`\ ) |
  191. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  192. | :ref:`bool<class_bool>` | :ref:`is_inf<class_@GlobalScope_method_is_inf>`\ (\ x\: :ref:`float<class_float>`\ ) |
  193. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  194. | :ref:`bool<class_bool>` | :ref:`is_instance_id_valid<class_@GlobalScope_method_is_instance_id_valid>`\ (\ id\: :ref:`int<class_int>`\ ) |
  195. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  196. | :ref:`bool<class_bool>` | :ref:`is_instance_valid<class_@GlobalScope_method_is_instance_valid>`\ (\ instance\: :ref:`Variant<class_Variant>`\ ) |
  197. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  198. | :ref:`bool<class_bool>` | :ref:`is_nan<class_@GlobalScope_method_is_nan>`\ (\ x\: :ref:`float<class_float>`\ ) |
  199. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  200. | :ref:`bool<class_bool>` | :ref:`is_same<class_@GlobalScope_method_is_same>`\ (\ a\: :ref:`Variant<class_Variant>`, b\: :ref:`Variant<class_Variant>`\ ) |
  201. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  202. | :ref:`bool<class_bool>` | :ref:`is_zero_approx<class_@GlobalScope_method_is_zero_approx>`\ (\ x\: :ref:`float<class_float>`\ ) |
  203. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  204. | :ref:`Variant<class_Variant>` | :ref:`lerp<class_@GlobalScope_method_lerp>`\ (\ from\: :ref:`Variant<class_Variant>`, to\: :ref:`Variant<class_Variant>`, weight\: :ref:`Variant<class_Variant>`\ ) |
  205. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  206. | :ref:`float<class_float>` | :ref:`lerp_angle<class_@GlobalScope_method_lerp_angle>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) |
  207. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  208. | :ref:`float<class_float>` | :ref:`lerpf<class_@GlobalScope_method_lerpf>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) |
  209. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  210. | :ref:`float<class_float>` | :ref:`linear_to_db<class_@GlobalScope_method_linear_to_db>`\ (\ lin\: :ref:`float<class_float>`\ ) |
  211. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  212. | :ref:`float<class_float>` | :ref:`log<class_@GlobalScope_method_log>`\ (\ x\: :ref:`float<class_float>`\ ) |
  213. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  214. | :ref:`Variant<class_Variant>` | :ref:`max<class_@GlobalScope_method_max>`\ (\ ...\ ) |vararg| |
  215. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  216. | :ref:`float<class_float>` | :ref:`maxf<class_@GlobalScope_method_maxf>`\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) |
  217. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  218. | :ref:`int<class_int>` | :ref:`maxi<class_@GlobalScope_method_maxi>`\ (\ a\: :ref:`int<class_int>`, b\: :ref:`int<class_int>`\ ) |
  219. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  220. | :ref:`Variant<class_Variant>` | :ref:`min<class_@GlobalScope_method_min>`\ (\ ...\ ) |vararg| |
  221. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  222. | :ref:`float<class_float>` | :ref:`minf<class_@GlobalScope_method_minf>`\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) |
  223. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  224. | :ref:`int<class_int>` | :ref:`mini<class_@GlobalScope_method_mini>`\ (\ a\: :ref:`int<class_int>`, b\: :ref:`int<class_int>`\ ) |
  225. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  226. | :ref:`float<class_float>` | :ref:`move_toward<class_@GlobalScope_method_move_toward>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, delta\: :ref:`float<class_float>`\ ) |
  227. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  228. | :ref:`int<class_int>` | :ref:`nearest_po2<class_@GlobalScope_method_nearest_po2>`\ (\ value\: :ref:`int<class_int>`\ ) |
  229. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  230. | :ref:`float<class_float>` | :ref:`pingpong<class_@GlobalScope_method_pingpong>`\ (\ value\: :ref:`float<class_float>`, length\: :ref:`float<class_float>`\ ) |
  231. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  232. | :ref:`int<class_int>` | :ref:`posmod<class_@GlobalScope_method_posmod>`\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`\ ) |
  233. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  234. | :ref:`float<class_float>` | :ref:`pow<class_@GlobalScope_method_pow>`\ (\ base\: :ref:`float<class_float>`, exp\: :ref:`float<class_float>`\ ) |
  235. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  236. | |void| | :ref:`print<class_@GlobalScope_method_print>`\ (\ ...\ ) |vararg| |
  237. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  238. | |void| | :ref:`print_rich<class_@GlobalScope_method_print_rich>`\ (\ ...\ ) |vararg| |
  239. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  240. | |void| | :ref:`print_verbose<class_@GlobalScope_method_print_verbose>`\ (\ ...\ ) |vararg| |
  241. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  242. | |void| | :ref:`printerr<class_@GlobalScope_method_printerr>`\ (\ ...\ ) |vararg| |
  243. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  244. | |void| | :ref:`printraw<class_@GlobalScope_method_printraw>`\ (\ ...\ ) |vararg| |
  245. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  246. | |void| | :ref:`prints<class_@GlobalScope_method_prints>`\ (\ ...\ ) |vararg| |
  247. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  248. | |void| | :ref:`printt<class_@GlobalScope_method_printt>`\ (\ ...\ ) |vararg| |
  249. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  250. | |void| | :ref:`push_error<class_@GlobalScope_method_push_error>`\ (\ ...\ ) |vararg| |
  251. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  252. | |void| | :ref:`push_warning<class_@GlobalScope_method_push_warning>`\ (\ ...\ ) |vararg| |
  253. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  254. | :ref:`float<class_float>` | :ref:`rad_to_deg<class_@GlobalScope_method_rad_to_deg>`\ (\ rad\: :ref:`float<class_float>`\ ) |
  255. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  256. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`rand_from_seed<class_@GlobalScope_method_rand_from_seed>`\ (\ seed\: :ref:`int<class_int>`\ ) |
  257. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  258. | :ref:`float<class_float>` | :ref:`randf<class_@GlobalScope_method_randf>`\ (\ ) |
  259. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  260. | :ref:`float<class_float>` | :ref:`randf_range<class_@GlobalScope_method_randf_range>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`\ ) |
  261. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  262. | :ref:`float<class_float>` | :ref:`randfn<class_@GlobalScope_method_randfn>`\ (\ mean\: :ref:`float<class_float>`, deviation\: :ref:`float<class_float>`\ ) |
  263. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  264. | :ref:`int<class_int>` | :ref:`randi<class_@GlobalScope_method_randi>`\ (\ ) |
  265. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  266. | :ref:`int<class_int>` | :ref:`randi_range<class_@GlobalScope_method_randi_range>`\ (\ from\: :ref:`int<class_int>`, to\: :ref:`int<class_int>`\ ) |
  267. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  268. | |void| | :ref:`randomize<class_@GlobalScope_method_randomize>`\ (\ ) |
  269. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  270. | :ref:`float<class_float>` | :ref:`remap<class_@GlobalScope_method_remap>`\ (\ value\: :ref:`float<class_float>`, istart\: :ref:`float<class_float>`, istop\: :ref:`float<class_float>`, ostart\: :ref:`float<class_float>`, ostop\: :ref:`float<class_float>`\ ) |
  271. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  272. | :ref:`int<class_int>` | :ref:`rid_allocate_id<class_@GlobalScope_method_rid_allocate_id>`\ (\ ) |
  273. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  274. | :ref:`RID<class_RID>` | :ref:`rid_from_int64<class_@GlobalScope_method_rid_from_int64>`\ (\ base\: :ref:`int<class_int>`\ ) |
  275. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  276. | :ref:`float<class_float>` | :ref:`rotate_toward<class_@GlobalScope_method_rotate_toward>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, delta\: :ref:`float<class_float>`\ ) |
  277. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  278. | :ref:`Variant<class_Variant>` | :ref:`round<class_@GlobalScope_method_round>`\ (\ x\: :ref:`Variant<class_Variant>`\ ) |
  279. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  280. | :ref:`float<class_float>` | :ref:`roundf<class_@GlobalScope_method_roundf>`\ (\ x\: :ref:`float<class_float>`\ ) |
  281. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  282. | :ref:`int<class_int>` | :ref:`roundi<class_@GlobalScope_method_roundi>`\ (\ x\: :ref:`float<class_float>`\ ) |
  283. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  284. | |void| | :ref:`seed<class_@GlobalScope_method_seed>`\ (\ base\: :ref:`int<class_int>`\ ) |
  285. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  286. | :ref:`Variant<class_Variant>` | :ref:`sign<class_@GlobalScope_method_sign>`\ (\ x\: :ref:`Variant<class_Variant>`\ ) |
  287. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  288. | :ref:`float<class_float>` | :ref:`signf<class_@GlobalScope_method_signf>`\ (\ x\: :ref:`float<class_float>`\ ) |
  289. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  290. | :ref:`int<class_int>` | :ref:`signi<class_@GlobalScope_method_signi>`\ (\ x\: :ref:`int<class_int>`\ ) |
  291. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  292. | :ref:`float<class_float>` | :ref:`sin<class_@GlobalScope_method_sin>`\ (\ angle_rad\: :ref:`float<class_float>`\ ) |
  293. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  294. | :ref:`float<class_float>` | :ref:`sinh<class_@GlobalScope_method_sinh>`\ (\ x\: :ref:`float<class_float>`\ ) |
  295. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  296. | :ref:`float<class_float>` | :ref:`smoothstep<class_@GlobalScope_method_smoothstep>`\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, x\: :ref:`float<class_float>`\ ) |
  297. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  298. | :ref:`Variant<class_Variant>` | :ref:`snapped<class_@GlobalScope_method_snapped>`\ (\ x\: :ref:`Variant<class_Variant>`, step\: :ref:`Variant<class_Variant>`\ ) |
  299. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  300. | :ref:`float<class_float>` | :ref:`snappedf<class_@GlobalScope_method_snappedf>`\ (\ x\: :ref:`float<class_float>`, step\: :ref:`float<class_float>`\ ) |
  301. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  302. | :ref:`int<class_int>` | :ref:`snappedi<class_@GlobalScope_method_snappedi>`\ (\ x\: :ref:`float<class_float>`, step\: :ref:`int<class_int>`\ ) |
  303. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  304. | :ref:`float<class_float>` | :ref:`sqrt<class_@GlobalScope_method_sqrt>`\ (\ x\: :ref:`float<class_float>`\ ) |
  305. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  306. | :ref:`int<class_int>` | :ref:`step_decimals<class_@GlobalScope_method_step_decimals>`\ (\ x\: :ref:`float<class_float>`\ ) |
  307. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  308. | :ref:`String<class_String>` | :ref:`str<class_@GlobalScope_method_str>`\ (\ ...\ ) |vararg| |
  309. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  310. | :ref:`Variant<class_Variant>` | :ref:`str_to_var<class_@GlobalScope_method_str_to_var>`\ (\ string\: :ref:`String<class_String>`\ ) |
  311. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  312. | :ref:`float<class_float>` | :ref:`tan<class_@GlobalScope_method_tan>`\ (\ angle_rad\: :ref:`float<class_float>`\ ) |
  313. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  314. | :ref:`float<class_float>` | :ref:`tanh<class_@GlobalScope_method_tanh>`\ (\ x\: :ref:`float<class_float>`\ ) |
  315. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  316. | :ref:`Variant<class_Variant>` | :ref:`type_convert<class_@GlobalScope_method_type_convert>`\ (\ variant\: :ref:`Variant<class_Variant>`, type\: :ref:`int<class_int>`\ ) |
  317. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  318. | :ref:`String<class_String>` | :ref:`type_string<class_@GlobalScope_method_type_string>`\ (\ type\: :ref:`int<class_int>`\ ) |
  319. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  320. | :ref:`int<class_int>` | :ref:`typeof<class_@GlobalScope_method_typeof>`\ (\ variable\: :ref:`Variant<class_Variant>`\ ) |
  321. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  322. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`var_to_bytes<class_@GlobalScope_method_var_to_bytes>`\ (\ variable\: :ref:`Variant<class_Variant>`\ ) |
  323. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  324. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`var_to_bytes_with_objects<class_@GlobalScope_method_var_to_bytes_with_objects>`\ (\ variable\: :ref:`Variant<class_Variant>`\ ) |
  325. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  326. | :ref:`String<class_String>` | :ref:`var_to_str<class_@GlobalScope_method_var_to_str>`\ (\ variable\: :ref:`Variant<class_Variant>`\ ) |
  327. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  328. | :ref:`Variant<class_Variant>` | :ref:`weakref<class_@GlobalScope_method_weakref>`\ (\ obj\: :ref:`Variant<class_Variant>`\ ) |
  329. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  330. | :ref:`Variant<class_Variant>` | :ref:`wrap<class_@GlobalScope_method_wrap>`\ (\ value\: :ref:`Variant<class_Variant>`, min\: :ref:`Variant<class_Variant>`, max\: :ref:`Variant<class_Variant>`\ ) |
  331. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  332. | :ref:`float<class_float>` | :ref:`wrapf<class_@GlobalScope_method_wrapf>`\ (\ value\: :ref:`float<class_float>`, min\: :ref:`float<class_float>`, max\: :ref:`float<class_float>`\ ) |
  333. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  334. | :ref:`int<class_int>` | :ref:`wrapi<class_@GlobalScope_method_wrapi>`\ (\ value\: :ref:`int<class_int>`, min\: :ref:`int<class_int>`, max\: :ref:`int<class_int>`\ ) |
  335. +-------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  336. .. rst-class:: classref-section-separator
  337. ----
  338. .. rst-class:: classref-descriptions-group
  339. Enumerations
  340. ------------
  341. .. _enum_@GlobalScope_Side:
  342. .. rst-class:: classref-enumeration
  343. enum **Side**: :ref:`🔗<enum_@GlobalScope_Side>`
  344. .. _class_@GlobalScope_constant_SIDE_LEFT:
  345. .. rst-class:: classref-enumeration-constant
  346. :ref:`Side<enum_@GlobalScope_Side>` **SIDE_LEFT** = ``0``
  347. Left side, usually used for :ref:`Control<class_Control>` or :ref:`StyleBox<class_StyleBox>`-derived classes.
  348. .. _class_@GlobalScope_constant_SIDE_TOP:
  349. .. rst-class:: classref-enumeration-constant
  350. :ref:`Side<enum_@GlobalScope_Side>` **SIDE_TOP** = ``1``
  351. Top side, usually used for :ref:`Control<class_Control>` or :ref:`StyleBox<class_StyleBox>`-derived classes.
  352. .. _class_@GlobalScope_constant_SIDE_RIGHT:
  353. .. rst-class:: classref-enumeration-constant
  354. :ref:`Side<enum_@GlobalScope_Side>` **SIDE_RIGHT** = ``2``
  355. Right side, usually used for :ref:`Control<class_Control>` or :ref:`StyleBox<class_StyleBox>`-derived classes.
  356. .. _class_@GlobalScope_constant_SIDE_BOTTOM:
  357. .. rst-class:: classref-enumeration-constant
  358. :ref:`Side<enum_@GlobalScope_Side>` **SIDE_BOTTOM** = ``3``
  359. Bottom side, usually used for :ref:`Control<class_Control>` or :ref:`StyleBox<class_StyleBox>`-derived classes.
  360. .. rst-class:: classref-item-separator
  361. ----
  362. .. _enum_@GlobalScope_Corner:
  363. .. rst-class:: classref-enumeration
  364. enum **Corner**: :ref:`🔗<enum_@GlobalScope_Corner>`
  365. .. _class_@GlobalScope_constant_CORNER_TOP_LEFT:
  366. .. rst-class:: classref-enumeration-constant
  367. :ref:`Corner<enum_@GlobalScope_Corner>` **CORNER_TOP_LEFT** = ``0``
  368. Top-left corner.
  369. .. _class_@GlobalScope_constant_CORNER_TOP_RIGHT:
  370. .. rst-class:: classref-enumeration-constant
  371. :ref:`Corner<enum_@GlobalScope_Corner>` **CORNER_TOP_RIGHT** = ``1``
  372. Top-right corner.
  373. .. _class_@GlobalScope_constant_CORNER_BOTTOM_RIGHT:
  374. .. rst-class:: classref-enumeration-constant
  375. :ref:`Corner<enum_@GlobalScope_Corner>` **CORNER_BOTTOM_RIGHT** = ``2``
  376. Bottom-right corner.
  377. .. _class_@GlobalScope_constant_CORNER_BOTTOM_LEFT:
  378. .. rst-class:: classref-enumeration-constant
  379. :ref:`Corner<enum_@GlobalScope_Corner>` **CORNER_BOTTOM_LEFT** = ``3``
  380. Bottom-left corner.
  381. .. rst-class:: classref-item-separator
  382. ----
  383. .. _enum_@GlobalScope_Orientation:
  384. .. rst-class:: classref-enumeration
  385. enum **Orientation**: :ref:`🔗<enum_@GlobalScope_Orientation>`
  386. .. _class_@GlobalScope_constant_VERTICAL:
  387. .. rst-class:: classref-enumeration-constant
  388. :ref:`Orientation<enum_@GlobalScope_Orientation>` **VERTICAL** = ``1``
  389. General vertical alignment, usually used for :ref:`Separator<class_Separator>`, :ref:`ScrollBar<class_ScrollBar>`, :ref:`Slider<class_Slider>`, etc.
  390. .. _class_@GlobalScope_constant_HORIZONTAL:
  391. .. rst-class:: classref-enumeration-constant
  392. :ref:`Orientation<enum_@GlobalScope_Orientation>` **HORIZONTAL** = ``0``
  393. General horizontal alignment, usually used for :ref:`Separator<class_Separator>`, :ref:`ScrollBar<class_ScrollBar>`, :ref:`Slider<class_Slider>`, etc.
  394. .. rst-class:: classref-item-separator
  395. ----
  396. .. _enum_@GlobalScope_ClockDirection:
  397. .. rst-class:: classref-enumeration
  398. enum **ClockDirection**: :ref:`🔗<enum_@GlobalScope_ClockDirection>`
  399. .. _class_@GlobalScope_constant_CLOCKWISE:
  400. .. rst-class:: classref-enumeration-constant
  401. :ref:`ClockDirection<enum_@GlobalScope_ClockDirection>` **CLOCKWISE** = ``0``
  402. Clockwise rotation. Used by some methods (e.g. :ref:`Image.rotate_90<class_Image_method_rotate_90>`).
  403. .. _class_@GlobalScope_constant_COUNTERCLOCKWISE:
  404. .. rst-class:: classref-enumeration-constant
  405. :ref:`ClockDirection<enum_@GlobalScope_ClockDirection>` **COUNTERCLOCKWISE** = ``1``
  406. Counter-clockwise rotation. Used by some methods (e.g. :ref:`Image.rotate_90<class_Image_method_rotate_90>`).
  407. .. rst-class:: classref-item-separator
  408. ----
  409. .. _enum_@GlobalScope_HorizontalAlignment:
  410. .. rst-class:: classref-enumeration
  411. enum **HorizontalAlignment**: :ref:`🔗<enum_@GlobalScope_HorizontalAlignment>`
  412. .. _class_@GlobalScope_constant_HORIZONTAL_ALIGNMENT_LEFT:
  413. .. rst-class:: classref-enumeration-constant
  414. :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **HORIZONTAL_ALIGNMENT_LEFT** = ``0``
  415. Horizontal left alignment, usually for text-derived classes.
  416. .. _class_@GlobalScope_constant_HORIZONTAL_ALIGNMENT_CENTER:
  417. .. rst-class:: classref-enumeration-constant
  418. :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **HORIZONTAL_ALIGNMENT_CENTER** = ``1``
  419. Horizontal center alignment, usually for text-derived classes.
  420. .. _class_@GlobalScope_constant_HORIZONTAL_ALIGNMENT_RIGHT:
  421. .. rst-class:: classref-enumeration-constant
  422. :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **HORIZONTAL_ALIGNMENT_RIGHT** = ``2``
  423. Horizontal right alignment, usually for text-derived classes.
  424. .. _class_@GlobalScope_constant_HORIZONTAL_ALIGNMENT_FILL:
  425. .. rst-class:: classref-enumeration-constant
  426. :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **HORIZONTAL_ALIGNMENT_FILL** = ``3``
  427. Expand row to fit width, usually for text-derived classes.
  428. .. rst-class:: classref-item-separator
  429. ----
  430. .. _enum_@GlobalScope_VerticalAlignment:
  431. .. rst-class:: classref-enumeration
  432. enum **VerticalAlignment**: :ref:`🔗<enum_@GlobalScope_VerticalAlignment>`
  433. .. _class_@GlobalScope_constant_VERTICAL_ALIGNMENT_TOP:
  434. .. rst-class:: classref-enumeration-constant
  435. :ref:`VerticalAlignment<enum_@GlobalScope_VerticalAlignment>` **VERTICAL_ALIGNMENT_TOP** = ``0``
  436. Vertical top alignment, usually for text-derived classes.
  437. .. _class_@GlobalScope_constant_VERTICAL_ALIGNMENT_CENTER:
  438. .. rst-class:: classref-enumeration-constant
  439. :ref:`VerticalAlignment<enum_@GlobalScope_VerticalAlignment>` **VERTICAL_ALIGNMENT_CENTER** = ``1``
  440. Vertical center alignment, usually for text-derived classes.
  441. .. _class_@GlobalScope_constant_VERTICAL_ALIGNMENT_BOTTOM:
  442. .. rst-class:: classref-enumeration-constant
  443. :ref:`VerticalAlignment<enum_@GlobalScope_VerticalAlignment>` **VERTICAL_ALIGNMENT_BOTTOM** = ``2``
  444. Vertical bottom alignment, usually for text-derived classes.
  445. .. _class_@GlobalScope_constant_VERTICAL_ALIGNMENT_FILL:
  446. .. rst-class:: classref-enumeration-constant
  447. :ref:`VerticalAlignment<enum_@GlobalScope_VerticalAlignment>` **VERTICAL_ALIGNMENT_FILL** = ``3``
  448. Expand rows to fit height, usually for text-derived classes.
  449. .. rst-class:: classref-item-separator
  450. ----
  451. .. _enum_@GlobalScope_InlineAlignment:
  452. .. rst-class:: classref-enumeration
  453. enum **InlineAlignment**: :ref:`🔗<enum_@GlobalScope_InlineAlignment>`
  454. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TOP_TO:
  455. .. rst-class:: classref-enumeration-constant
  456. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TOP_TO** = ``0``
  457. Aligns the top of the inline object (e.g. image, table) to the position of the text specified by ``INLINE_ALIGNMENT_TO_*`` constant.
  458. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_CENTER_TO:
  459. .. rst-class:: classref-enumeration-constant
  460. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_CENTER_TO** = ``1``
  461. Aligns the center of the inline object (e.g. image, table) to the position of the text specified by ``INLINE_ALIGNMENT_TO_*`` constant.
  462. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_BASELINE_TO:
  463. .. rst-class:: classref-enumeration-constant
  464. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_BASELINE_TO** = ``3``
  465. Aligns the baseline (user defined) of the inline object (e.g. image, table) to the position of the text specified by ``INLINE_ALIGNMENT_TO_*`` constant.
  466. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_BOTTOM_TO:
  467. .. rst-class:: classref-enumeration-constant
  468. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_BOTTOM_TO** = ``2``
  469. Aligns the bottom of the inline object (e.g. image, table) to the position of the text specified by ``INLINE_ALIGNMENT_TO_*`` constant.
  470. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TO_TOP:
  471. .. rst-class:: classref-enumeration-constant
  472. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TO_TOP** = ``0``
  473. Aligns the position of the inline object (e.g. image, table) specified by ``INLINE_ALIGNMENT_*_TO`` constant to the top of the text.
  474. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TO_CENTER:
  475. .. rst-class:: classref-enumeration-constant
  476. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TO_CENTER** = ``4``
  477. Aligns the position of the inline object (e.g. image, table) specified by ``INLINE_ALIGNMENT_*_TO`` constant to the center of the text.
  478. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TO_BASELINE:
  479. .. rst-class:: classref-enumeration-constant
  480. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TO_BASELINE** = ``8``
  481. Aligns the position of the inline object (e.g. image, table) specified by ``INLINE_ALIGNMENT_*_TO`` constant to the baseline of the text.
  482. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TO_BOTTOM:
  483. .. rst-class:: classref-enumeration-constant
  484. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TO_BOTTOM** = ``12``
  485. Aligns inline object (e.g. image, table) to the bottom of the text.
  486. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TOP:
  487. .. rst-class:: classref-enumeration-constant
  488. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TOP** = ``0``
  489. Aligns top of the inline object (e.g. image, table) to the top of the text. Equivalent to ``INLINE_ALIGNMENT_TOP_TO | INLINE_ALIGNMENT_TO_TOP``.
  490. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_CENTER:
  491. .. rst-class:: classref-enumeration-constant
  492. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_CENTER** = ``5``
  493. Aligns center of the inline object (e.g. image, table) to the center of the text. Equivalent to ``INLINE_ALIGNMENT_CENTER_TO | INLINE_ALIGNMENT_TO_CENTER``.
  494. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_BOTTOM:
  495. .. rst-class:: classref-enumeration-constant
  496. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_BOTTOM** = ``14``
  497. Aligns bottom of the inline object (e.g. image, table) to the bottom of the text. Equivalent to ``INLINE_ALIGNMENT_BOTTOM_TO | INLINE_ALIGNMENT_TO_BOTTOM``.
  498. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_IMAGE_MASK:
  499. .. rst-class:: classref-enumeration-constant
  500. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_IMAGE_MASK** = ``3``
  501. A bit mask for ``INLINE_ALIGNMENT_*_TO`` alignment constants.
  502. .. _class_@GlobalScope_constant_INLINE_ALIGNMENT_TEXT_MASK:
  503. .. rst-class:: classref-enumeration-constant
  504. :ref:`InlineAlignment<enum_@GlobalScope_InlineAlignment>` **INLINE_ALIGNMENT_TEXT_MASK** = ``12``
  505. A bit mask for ``INLINE_ALIGNMENT_TO_*`` alignment constants.
  506. .. rst-class:: classref-item-separator
  507. ----
  508. .. _enum_@GlobalScope_EulerOrder:
  509. .. rst-class:: classref-enumeration
  510. enum **EulerOrder**: :ref:`🔗<enum_@GlobalScope_EulerOrder>`
  511. .. _class_@GlobalScope_constant_EULER_ORDER_XYZ:
  512. .. rst-class:: classref-enumeration-constant
  513. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **EULER_ORDER_XYZ** = ``0``
  514. Specifies that Euler angles should be in XYZ order. When composing, the order is X, Y, Z. When decomposing, the order is reversed, first Z, then Y, and X last.
  515. .. _class_@GlobalScope_constant_EULER_ORDER_XZY:
  516. .. rst-class:: classref-enumeration-constant
  517. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **EULER_ORDER_XZY** = ``1``
  518. Specifies that Euler angles should be in XZY order. When composing, the order is X, Z, Y. When decomposing, the order is reversed, first Y, then Z, and X last.
  519. .. _class_@GlobalScope_constant_EULER_ORDER_YXZ:
  520. .. rst-class:: classref-enumeration-constant
  521. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **EULER_ORDER_YXZ** = ``2``
  522. Specifies that Euler angles should be in YXZ order. When composing, the order is Y, X, Z. When decomposing, the order is reversed, first Z, then X, and Y last.
  523. .. _class_@GlobalScope_constant_EULER_ORDER_YZX:
  524. .. rst-class:: classref-enumeration-constant
  525. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **EULER_ORDER_YZX** = ``3``
  526. Specifies that Euler angles should be in YZX order. When composing, the order is Y, Z, X. When decomposing, the order is reversed, first X, then Z, and Y last.
  527. .. _class_@GlobalScope_constant_EULER_ORDER_ZXY:
  528. .. rst-class:: classref-enumeration-constant
  529. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **EULER_ORDER_ZXY** = ``4``
  530. Specifies that Euler angles should be in ZXY order. When composing, the order is Z, X, Y. When decomposing, the order is reversed, first Y, then X, and Z last.
  531. .. _class_@GlobalScope_constant_EULER_ORDER_ZYX:
  532. .. rst-class:: classref-enumeration-constant
  533. :ref:`EulerOrder<enum_@GlobalScope_EulerOrder>` **EULER_ORDER_ZYX** = ``5``
  534. Specifies that Euler angles should be in ZYX order. When composing, the order is Z, Y, X. When decomposing, the order is reversed, first X, then Y, and Z last.
  535. .. rst-class:: classref-item-separator
  536. ----
  537. .. _enum_@GlobalScope_Key:
  538. .. rst-class:: classref-enumeration
  539. enum **Key**: :ref:`🔗<enum_@GlobalScope_Key>`
  540. .. _class_@GlobalScope_constant_KEY_NONE:
  541. .. rst-class:: classref-enumeration-constant
  542. :ref:`Key<enum_@GlobalScope_Key>` **KEY_NONE** = ``0``
  543. Enum value which doesn't correspond to any key. This is used to initialize :ref:`Key<enum_@GlobalScope_Key>` properties with a generic state.
  544. .. _class_@GlobalScope_constant_KEY_SPECIAL:
  545. .. rst-class:: classref-enumeration-constant
  546. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SPECIAL** = ``4194304``
  547. Keycodes with this bit applied are non-printable.
  548. .. _class_@GlobalScope_constant_KEY_ESCAPE:
  549. .. rst-class:: classref-enumeration-constant
  550. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ESCAPE** = ``4194305``
  551. Escape key.
  552. .. _class_@GlobalScope_constant_KEY_TAB:
  553. .. rst-class:: classref-enumeration-constant
  554. :ref:`Key<enum_@GlobalScope_Key>` **KEY_TAB** = ``4194306``
  555. Tab key.
  556. .. _class_@GlobalScope_constant_KEY_BACKTAB:
  557. .. rst-class:: classref-enumeration-constant
  558. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BACKTAB** = ``4194307``
  559. Shift + Tab key.
  560. .. _class_@GlobalScope_constant_KEY_BACKSPACE:
  561. .. rst-class:: classref-enumeration-constant
  562. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BACKSPACE** = ``4194308``
  563. Backspace key.
  564. .. _class_@GlobalScope_constant_KEY_ENTER:
  565. .. rst-class:: classref-enumeration-constant
  566. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ENTER** = ``4194309``
  567. Return key (on the main keyboard).
  568. .. _class_@GlobalScope_constant_KEY_KP_ENTER:
  569. .. rst-class:: classref-enumeration-constant
  570. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_ENTER** = ``4194310``
  571. Enter key on the numeric keypad.
  572. .. _class_@GlobalScope_constant_KEY_INSERT:
  573. .. rst-class:: classref-enumeration-constant
  574. :ref:`Key<enum_@GlobalScope_Key>` **KEY_INSERT** = ``4194311``
  575. Insert key.
  576. .. _class_@GlobalScope_constant_KEY_DELETE:
  577. .. rst-class:: classref-enumeration-constant
  578. :ref:`Key<enum_@GlobalScope_Key>` **KEY_DELETE** = ``4194312``
  579. Delete key.
  580. .. _class_@GlobalScope_constant_KEY_PAUSE:
  581. .. rst-class:: classref-enumeration-constant
  582. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PAUSE** = ``4194313``
  583. Pause key.
  584. .. _class_@GlobalScope_constant_KEY_PRINT:
  585. .. rst-class:: classref-enumeration-constant
  586. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PRINT** = ``4194314``
  587. Print Screen key.
  588. .. _class_@GlobalScope_constant_KEY_SYSREQ:
  589. .. rst-class:: classref-enumeration-constant
  590. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SYSREQ** = ``4194315``
  591. System Request key.
  592. .. _class_@GlobalScope_constant_KEY_CLEAR:
  593. .. rst-class:: classref-enumeration-constant
  594. :ref:`Key<enum_@GlobalScope_Key>` **KEY_CLEAR** = ``4194316``
  595. Clear key.
  596. .. _class_@GlobalScope_constant_KEY_HOME:
  597. .. rst-class:: classref-enumeration-constant
  598. :ref:`Key<enum_@GlobalScope_Key>` **KEY_HOME** = ``4194317``
  599. Home key.
  600. .. _class_@GlobalScope_constant_KEY_END:
  601. .. rst-class:: classref-enumeration-constant
  602. :ref:`Key<enum_@GlobalScope_Key>` **KEY_END** = ``4194318``
  603. End key.
  604. .. _class_@GlobalScope_constant_KEY_LEFT:
  605. .. rst-class:: classref-enumeration-constant
  606. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LEFT** = ``4194319``
  607. Left arrow key.
  608. .. _class_@GlobalScope_constant_KEY_UP:
  609. .. rst-class:: classref-enumeration-constant
  610. :ref:`Key<enum_@GlobalScope_Key>` **KEY_UP** = ``4194320``
  611. Up arrow key.
  612. .. _class_@GlobalScope_constant_KEY_RIGHT:
  613. .. rst-class:: classref-enumeration-constant
  614. :ref:`Key<enum_@GlobalScope_Key>` **KEY_RIGHT** = ``4194321``
  615. Right arrow key.
  616. .. _class_@GlobalScope_constant_KEY_DOWN:
  617. .. rst-class:: classref-enumeration-constant
  618. :ref:`Key<enum_@GlobalScope_Key>` **KEY_DOWN** = ``4194322``
  619. Down arrow key.
  620. .. _class_@GlobalScope_constant_KEY_PAGEUP:
  621. .. rst-class:: classref-enumeration-constant
  622. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PAGEUP** = ``4194323``
  623. Page Up key.
  624. .. _class_@GlobalScope_constant_KEY_PAGEDOWN:
  625. .. rst-class:: classref-enumeration-constant
  626. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PAGEDOWN** = ``4194324``
  627. Page Down key.
  628. .. _class_@GlobalScope_constant_KEY_SHIFT:
  629. .. rst-class:: classref-enumeration-constant
  630. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SHIFT** = ``4194325``
  631. Shift key.
  632. .. _class_@GlobalScope_constant_KEY_CTRL:
  633. .. rst-class:: classref-enumeration-constant
  634. :ref:`Key<enum_@GlobalScope_Key>` **KEY_CTRL** = ``4194326``
  635. Control key.
  636. .. _class_@GlobalScope_constant_KEY_META:
  637. .. rst-class:: classref-enumeration-constant
  638. :ref:`Key<enum_@GlobalScope_Key>` **KEY_META** = ``4194327``
  639. Meta key.
  640. .. _class_@GlobalScope_constant_KEY_ALT:
  641. .. rst-class:: classref-enumeration-constant
  642. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ALT** = ``4194328``
  643. Alt key.
  644. .. _class_@GlobalScope_constant_KEY_CAPSLOCK:
  645. .. rst-class:: classref-enumeration-constant
  646. :ref:`Key<enum_@GlobalScope_Key>` **KEY_CAPSLOCK** = ``4194329``
  647. Caps Lock key.
  648. .. _class_@GlobalScope_constant_KEY_NUMLOCK:
  649. .. rst-class:: classref-enumeration-constant
  650. :ref:`Key<enum_@GlobalScope_Key>` **KEY_NUMLOCK** = ``4194330``
  651. Num Lock key.
  652. .. _class_@GlobalScope_constant_KEY_SCROLLLOCK:
  653. .. rst-class:: classref-enumeration-constant
  654. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SCROLLLOCK** = ``4194331``
  655. Scroll Lock key.
  656. .. _class_@GlobalScope_constant_KEY_F1:
  657. .. rst-class:: classref-enumeration-constant
  658. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F1** = ``4194332``
  659. F1 key.
  660. .. _class_@GlobalScope_constant_KEY_F2:
  661. .. rst-class:: classref-enumeration-constant
  662. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F2** = ``4194333``
  663. F2 key.
  664. .. _class_@GlobalScope_constant_KEY_F3:
  665. .. rst-class:: classref-enumeration-constant
  666. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F3** = ``4194334``
  667. F3 key.
  668. .. _class_@GlobalScope_constant_KEY_F4:
  669. .. rst-class:: classref-enumeration-constant
  670. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F4** = ``4194335``
  671. F4 key.
  672. .. _class_@GlobalScope_constant_KEY_F5:
  673. .. rst-class:: classref-enumeration-constant
  674. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F5** = ``4194336``
  675. F5 key.
  676. .. _class_@GlobalScope_constant_KEY_F6:
  677. .. rst-class:: classref-enumeration-constant
  678. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F6** = ``4194337``
  679. F6 key.
  680. .. _class_@GlobalScope_constant_KEY_F7:
  681. .. rst-class:: classref-enumeration-constant
  682. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F7** = ``4194338``
  683. F7 key.
  684. .. _class_@GlobalScope_constant_KEY_F8:
  685. .. rst-class:: classref-enumeration-constant
  686. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F8** = ``4194339``
  687. F8 key.
  688. .. _class_@GlobalScope_constant_KEY_F9:
  689. .. rst-class:: classref-enumeration-constant
  690. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F9** = ``4194340``
  691. F9 key.
  692. .. _class_@GlobalScope_constant_KEY_F10:
  693. .. rst-class:: classref-enumeration-constant
  694. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F10** = ``4194341``
  695. F10 key.
  696. .. _class_@GlobalScope_constant_KEY_F11:
  697. .. rst-class:: classref-enumeration-constant
  698. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F11** = ``4194342``
  699. F11 key.
  700. .. _class_@GlobalScope_constant_KEY_F12:
  701. .. rst-class:: classref-enumeration-constant
  702. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F12** = ``4194343``
  703. F12 key.
  704. .. _class_@GlobalScope_constant_KEY_F13:
  705. .. rst-class:: classref-enumeration-constant
  706. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F13** = ``4194344``
  707. F13 key.
  708. .. _class_@GlobalScope_constant_KEY_F14:
  709. .. rst-class:: classref-enumeration-constant
  710. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F14** = ``4194345``
  711. F14 key.
  712. .. _class_@GlobalScope_constant_KEY_F15:
  713. .. rst-class:: classref-enumeration-constant
  714. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F15** = ``4194346``
  715. F15 key.
  716. .. _class_@GlobalScope_constant_KEY_F16:
  717. .. rst-class:: classref-enumeration-constant
  718. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F16** = ``4194347``
  719. F16 key.
  720. .. _class_@GlobalScope_constant_KEY_F17:
  721. .. rst-class:: classref-enumeration-constant
  722. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F17** = ``4194348``
  723. F17 key.
  724. .. _class_@GlobalScope_constant_KEY_F18:
  725. .. rst-class:: classref-enumeration-constant
  726. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F18** = ``4194349``
  727. F18 key.
  728. .. _class_@GlobalScope_constant_KEY_F19:
  729. .. rst-class:: classref-enumeration-constant
  730. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F19** = ``4194350``
  731. F19 key.
  732. .. _class_@GlobalScope_constant_KEY_F20:
  733. .. rst-class:: classref-enumeration-constant
  734. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F20** = ``4194351``
  735. F20 key.
  736. .. _class_@GlobalScope_constant_KEY_F21:
  737. .. rst-class:: classref-enumeration-constant
  738. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F21** = ``4194352``
  739. F21 key.
  740. .. _class_@GlobalScope_constant_KEY_F22:
  741. .. rst-class:: classref-enumeration-constant
  742. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F22** = ``4194353``
  743. F22 key.
  744. .. _class_@GlobalScope_constant_KEY_F23:
  745. .. rst-class:: classref-enumeration-constant
  746. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F23** = ``4194354``
  747. F23 key.
  748. .. _class_@GlobalScope_constant_KEY_F24:
  749. .. rst-class:: classref-enumeration-constant
  750. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F24** = ``4194355``
  751. F24 key.
  752. .. _class_@GlobalScope_constant_KEY_F25:
  753. .. rst-class:: classref-enumeration-constant
  754. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F25** = ``4194356``
  755. F25 key. Only supported on macOS and Linux due to a Windows limitation.
  756. .. _class_@GlobalScope_constant_KEY_F26:
  757. .. rst-class:: classref-enumeration-constant
  758. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F26** = ``4194357``
  759. F26 key. Only supported on macOS and Linux due to a Windows limitation.
  760. .. _class_@GlobalScope_constant_KEY_F27:
  761. .. rst-class:: classref-enumeration-constant
  762. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F27** = ``4194358``
  763. F27 key. Only supported on macOS and Linux due to a Windows limitation.
  764. .. _class_@GlobalScope_constant_KEY_F28:
  765. .. rst-class:: classref-enumeration-constant
  766. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F28** = ``4194359``
  767. F28 key. Only supported on macOS and Linux due to a Windows limitation.
  768. .. _class_@GlobalScope_constant_KEY_F29:
  769. .. rst-class:: classref-enumeration-constant
  770. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F29** = ``4194360``
  771. F29 key. Only supported on macOS and Linux due to a Windows limitation.
  772. .. _class_@GlobalScope_constant_KEY_F30:
  773. .. rst-class:: classref-enumeration-constant
  774. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F30** = ``4194361``
  775. F30 key. Only supported on macOS and Linux due to a Windows limitation.
  776. .. _class_@GlobalScope_constant_KEY_F31:
  777. .. rst-class:: classref-enumeration-constant
  778. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F31** = ``4194362``
  779. F31 key. Only supported on macOS and Linux due to a Windows limitation.
  780. .. _class_@GlobalScope_constant_KEY_F32:
  781. .. rst-class:: classref-enumeration-constant
  782. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F32** = ``4194363``
  783. F32 key. Only supported on macOS and Linux due to a Windows limitation.
  784. .. _class_@GlobalScope_constant_KEY_F33:
  785. .. rst-class:: classref-enumeration-constant
  786. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F33** = ``4194364``
  787. F33 key. Only supported on macOS and Linux due to a Windows limitation.
  788. .. _class_@GlobalScope_constant_KEY_F34:
  789. .. rst-class:: classref-enumeration-constant
  790. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F34** = ``4194365``
  791. F34 key. Only supported on macOS and Linux due to a Windows limitation.
  792. .. _class_@GlobalScope_constant_KEY_F35:
  793. .. rst-class:: classref-enumeration-constant
  794. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F35** = ``4194366``
  795. F35 key. Only supported on macOS and Linux due to a Windows limitation.
  796. .. _class_@GlobalScope_constant_KEY_KP_MULTIPLY:
  797. .. rst-class:: classref-enumeration-constant
  798. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_MULTIPLY** = ``4194433``
  799. Multiply (\*) key on the numeric keypad.
  800. .. _class_@GlobalScope_constant_KEY_KP_DIVIDE:
  801. .. rst-class:: classref-enumeration-constant
  802. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_DIVIDE** = ``4194434``
  803. Divide (/) key on the numeric keypad.
  804. .. _class_@GlobalScope_constant_KEY_KP_SUBTRACT:
  805. .. rst-class:: classref-enumeration-constant
  806. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_SUBTRACT** = ``4194435``
  807. Subtract (-) key on the numeric keypad.
  808. .. _class_@GlobalScope_constant_KEY_KP_PERIOD:
  809. .. rst-class:: classref-enumeration-constant
  810. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_PERIOD** = ``4194436``
  811. Period (.) key on the numeric keypad.
  812. .. _class_@GlobalScope_constant_KEY_KP_ADD:
  813. .. rst-class:: classref-enumeration-constant
  814. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_ADD** = ``4194437``
  815. Add (+) key on the numeric keypad.
  816. .. _class_@GlobalScope_constant_KEY_KP_0:
  817. .. rst-class:: classref-enumeration-constant
  818. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_0** = ``4194438``
  819. Number 0 on the numeric keypad.
  820. .. _class_@GlobalScope_constant_KEY_KP_1:
  821. .. rst-class:: classref-enumeration-constant
  822. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_1** = ``4194439``
  823. Number 1 on the numeric keypad.
  824. .. _class_@GlobalScope_constant_KEY_KP_2:
  825. .. rst-class:: classref-enumeration-constant
  826. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_2** = ``4194440``
  827. Number 2 on the numeric keypad.
  828. .. _class_@GlobalScope_constant_KEY_KP_3:
  829. .. rst-class:: classref-enumeration-constant
  830. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_3** = ``4194441``
  831. Number 3 on the numeric keypad.
  832. .. _class_@GlobalScope_constant_KEY_KP_4:
  833. .. rst-class:: classref-enumeration-constant
  834. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_4** = ``4194442``
  835. Number 4 on the numeric keypad.
  836. .. _class_@GlobalScope_constant_KEY_KP_5:
  837. .. rst-class:: classref-enumeration-constant
  838. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_5** = ``4194443``
  839. Number 5 on the numeric keypad.
  840. .. _class_@GlobalScope_constant_KEY_KP_6:
  841. .. rst-class:: classref-enumeration-constant
  842. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_6** = ``4194444``
  843. Number 6 on the numeric keypad.
  844. .. _class_@GlobalScope_constant_KEY_KP_7:
  845. .. rst-class:: classref-enumeration-constant
  846. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_7** = ``4194445``
  847. Number 7 on the numeric keypad.
  848. .. _class_@GlobalScope_constant_KEY_KP_8:
  849. .. rst-class:: classref-enumeration-constant
  850. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_8** = ``4194446``
  851. Number 8 on the numeric keypad.
  852. .. _class_@GlobalScope_constant_KEY_KP_9:
  853. .. rst-class:: classref-enumeration-constant
  854. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KP_9** = ``4194447``
  855. Number 9 on the numeric keypad.
  856. .. _class_@GlobalScope_constant_KEY_MENU:
  857. .. rst-class:: classref-enumeration-constant
  858. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MENU** = ``4194370``
  859. Context menu key.
  860. .. _class_@GlobalScope_constant_KEY_HYPER:
  861. .. rst-class:: classref-enumeration-constant
  862. :ref:`Key<enum_@GlobalScope_Key>` **KEY_HYPER** = ``4194371``
  863. Hyper key. (On Linux/X11 only).
  864. .. _class_@GlobalScope_constant_KEY_HELP:
  865. .. rst-class:: classref-enumeration-constant
  866. :ref:`Key<enum_@GlobalScope_Key>` **KEY_HELP** = ``4194373``
  867. Help key.
  868. .. _class_@GlobalScope_constant_KEY_BACK:
  869. .. rst-class:: classref-enumeration-constant
  870. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BACK** = ``4194376``
  871. Media back key. Not to be confused with the Back button on an Android device.
  872. .. _class_@GlobalScope_constant_KEY_FORWARD:
  873. .. rst-class:: classref-enumeration-constant
  874. :ref:`Key<enum_@GlobalScope_Key>` **KEY_FORWARD** = ``4194377``
  875. Media forward key.
  876. .. _class_@GlobalScope_constant_KEY_STOP:
  877. .. rst-class:: classref-enumeration-constant
  878. :ref:`Key<enum_@GlobalScope_Key>` **KEY_STOP** = ``4194378``
  879. Media stop key.
  880. .. _class_@GlobalScope_constant_KEY_REFRESH:
  881. .. rst-class:: classref-enumeration-constant
  882. :ref:`Key<enum_@GlobalScope_Key>` **KEY_REFRESH** = ``4194379``
  883. Media refresh key.
  884. .. _class_@GlobalScope_constant_KEY_VOLUMEDOWN:
  885. .. rst-class:: classref-enumeration-constant
  886. :ref:`Key<enum_@GlobalScope_Key>` **KEY_VOLUMEDOWN** = ``4194380``
  887. Volume down key.
  888. .. _class_@GlobalScope_constant_KEY_VOLUMEMUTE:
  889. .. rst-class:: classref-enumeration-constant
  890. :ref:`Key<enum_@GlobalScope_Key>` **KEY_VOLUMEMUTE** = ``4194381``
  891. Mute volume key.
  892. .. _class_@GlobalScope_constant_KEY_VOLUMEUP:
  893. .. rst-class:: classref-enumeration-constant
  894. :ref:`Key<enum_@GlobalScope_Key>` **KEY_VOLUMEUP** = ``4194382``
  895. Volume up key.
  896. .. _class_@GlobalScope_constant_KEY_MEDIAPLAY:
  897. .. rst-class:: classref-enumeration-constant
  898. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MEDIAPLAY** = ``4194388``
  899. Media play key.
  900. .. _class_@GlobalScope_constant_KEY_MEDIASTOP:
  901. .. rst-class:: classref-enumeration-constant
  902. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MEDIASTOP** = ``4194389``
  903. Media stop key.
  904. .. _class_@GlobalScope_constant_KEY_MEDIAPREVIOUS:
  905. .. rst-class:: classref-enumeration-constant
  906. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MEDIAPREVIOUS** = ``4194390``
  907. Previous song key.
  908. .. _class_@GlobalScope_constant_KEY_MEDIANEXT:
  909. .. rst-class:: classref-enumeration-constant
  910. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MEDIANEXT** = ``4194391``
  911. Next song key.
  912. .. _class_@GlobalScope_constant_KEY_MEDIARECORD:
  913. .. rst-class:: classref-enumeration-constant
  914. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MEDIARECORD** = ``4194392``
  915. Media record key.
  916. .. _class_@GlobalScope_constant_KEY_HOMEPAGE:
  917. .. rst-class:: classref-enumeration-constant
  918. :ref:`Key<enum_@GlobalScope_Key>` **KEY_HOMEPAGE** = ``4194393``
  919. Home page key.
  920. .. _class_@GlobalScope_constant_KEY_FAVORITES:
  921. .. rst-class:: classref-enumeration-constant
  922. :ref:`Key<enum_@GlobalScope_Key>` **KEY_FAVORITES** = ``4194394``
  923. Favorites key.
  924. .. _class_@GlobalScope_constant_KEY_SEARCH:
  925. .. rst-class:: classref-enumeration-constant
  926. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SEARCH** = ``4194395``
  927. Search key.
  928. .. _class_@GlobalScope_constant_KEY_STANDBY:
  929. .. rst-class:: classref-enumeration-constant
  930. :ref:`Key<enum_@GlobalScope_Key>` **KEY_STANDBY** = ``4194396``
  931. Standby key.
  932. .. _class_@GlobalScope_constant_KEY_OPENURL:
  933. .. rst-class:: classref-enumeration-constant
  934. :ref:`Key<enum_@GlobalScope_Key>` **KEY_OPENURL** = ``4194397``
  935. Open URL / Launch Browser key.
  936. .. _class_@GlobalScope_constant_KEY_LAUNCHMAIL:
  937. .. rst-class:: classref-enumeration-constant
  938. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHMAIL** = ``4194398``
  939. Launch Mail key.
  940. .. _class_@GlobalScope_constant_KEY_LAUNCHMEDIA:
  941. .. rst-class:: classref-enumeration-constant
  942. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHMEDIA** = ``4194399``
  943. Launch Media key.
  944. .. _class_@GlobalScope_constant_KEY_LAUNCH0:
  945. .. rst-class:: classref-enumeration-constant
  946. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH0** = ``4194400``
  947. Launch Shortcut 0 key.
  948. .. _class_@GlobalScope_constant_KEY_LAUNCH1:
  949. .. rst-class:: classref-enumeration-constant
  950. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH1** = ``4194401``
  951. Launch Shortcut 1 key.
  952. .. _class_@GlobalScope_constant_KEY_LAUNCH2:
  953. .. rst-class:: classref-enumeration-constant
  954. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH2** = ``4194402``
  955. Launch Shortcut 2 key.
  956. .. _class_@GlobalScope_constant_KEY_LAUNCH3:
  957. .. rst-class:: classref-enumeration-constant
  958. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH3** = ``4194403``
  959. Launch Shortcut 3 key.
  960. .. _class_@GlobalScope_constant_KEY_LAUNCH4:
  961. .. rst-class:: classref-enumeration-constant
  962. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH4** = ``4194404``
  963. Launch Shortcut 4 key.
  964. .. _class_@GlobalScope_constant_KEY_LAUNCH5:
  965. .. rst-class:: classref-enumeration-constant
  966. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH5** = ``4194405``
  967. Launch Shortcut 5 key.
  968. .. _class_@GlobalScope_constant_KEY_LAUNCH6:
  969. .. rst-class:: classref-enumeration-constant
  970. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH6** = ``4194406``
  971. Launch Shortcut 6 key.
  972. .. _class_@GlobalScope_constant_KEY_LAUNCH7:
  973. .. rst-class:: classref-enumeration-constant
  974. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH7** = ``4194407``
  975. Launch Shortcut 7 key.
  976. .. _class_@GlobalScope_constant_KEY_LAUNCH8:
  977. .. rst-class:: classref-enumeration-constant
  978. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH8** = ``4194408``
  979. Launch Shortcut 8 key.
  980. .. _class_@GlobalScope_constant_KEY_LAUNCH9:
  981. .. rst-class:: classref-enumeration-constant
  982. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCH9** = ``4194409``
  983. Launch Shortcut 9 key.
  984. .. _class_@GlobalScope_constant_KEY_LAUNCHA:
  985. .. rst-class:: classref-enumeration-constant
  986. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHA** = ``4194410``
  987. Launch Shortcut A key.
  988. .. _class_@GlobalScope_constant_KEY_LAUNCHB:
  989. .. rst-class:: classref-enumeration-constant
  990. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHB** = ``4194411``
  991. Launch Shortcut B key.
  992. .. _class_@GlobalScope_constant_KEY_LAUNCHC:
  993. .. rst-class:: classref-enumeration-constant
  994. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHC** = ``4194412``
  995. Launch Shortcut C key.
  996. .. _class_@GlobalScope_constant_KEY_LAUNCHD:
  997. .. rst-class:: classref-enumeration-constant
  998. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHD** = ``4194413``
  999. Launch Shortcut D key.
  1000. .. _class_@GlobalScope_constant_KEY_LAUNCHE:
  1001. .. rst-class:: classref-enumeration-constant
  1002. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHE** = ``4194414``
  1003. Launch Shortcut E key.
  1004. .. _class_@GlobalScope_constant_KEY_LAUNCHF:
  1005. .. rst-class:: classref-enumeration-constant
  1006. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LAUNCHF** = ``4194415``
  1007. Launch Shortcut F key.
  1008. .. _class_@GlobalScope_constant_KEY_GLOBE:
  1009. .. rst-class:: classref-enumeration-constant
  1010. :ref:`Key<enum_@GlobalScope_Key>` **KEY_GLOBE** = ``4194416``
  1011. "Globe" key on Mac / iPad keyboard.
  1012. .. _class_@GlobalScope_constant_KEY_KEYBOARD:
  1013. .. rst-class:: classref-enumeration-constant
  1014. :ref:`Key<enum_@GlobalScope_Key>` **KEY_KEYBOARD** = ``4194417``
  1015. "On-screen keyboard" key on iPad keyboard.
  1016. .. _class_@GlobalScope_constant_KEY_JIS_EISU:
  1017. .. rst-class:: classref-enumeration-constant
  1018. :ref:`Key<enum_@GlobalScope_Key>` **KEY_JIS_EISU** = ``4194418``
  1019. 英数 key on Mac keyboard.
  1020. .. _class_@GlobalScope_constant_KEY_JIS_KANA:
  1021. .. rst-class:: classref-enumeration-constant
  1022. :ref:`Key<enum_@GlobalScope_Key>` **KEY_JIS_KANA** = ``4194419``
  1023. かな key on Mac keyboard.
  1024. .. _class_@GlobalScope_constant_KEY_UNKNOWN:
  1025. .. rst-class:: classref-enumeration-constant
  1026. :ref:`Key<enum_@GlobalScope_Key>` **KEY_UNKNOWN** = ``8388607``
  1027. Unknown key.
  1028. .. _class_@GlobalScope_constant_KEY_SPACE:
  1029. .. rst-class:: classref-enumeration-constant
  1030. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SPACE** = ``32``
  1031. Space key.
  1032. .. _class_@GlobalScope_constant_KEY_EXCLAM:
  1033. .. rst-class:: classref-enumeration-constant
  1034. :ref:`Key<enum_@GlobalScope_Key>` **KEY_EXCLAM** = ``33``
  1035. ! key.
  1036. .. _class_@GlobalScope_constant_KEY_QUOTEDBL:
  1037. .. rst-class:: classref-enumeration-constant
  1038. :ref:`Key<enum_@GlobalScope_Key>` **KEY_QUOTEDBL** = ``34``
  1039. " key.
  1040. .. _class_@GlobalScope_constant_KEY_NUMBERSIGN:
  1041. .. rst-class:: classref-enumeration-constant
  1042. :ref:`Key<enum_@GlobalScope_Key>` **KEY_NUMBERSIGN** = ``35``
  1043. # key.
  1044. .. _class_@GlobalScope_constant_KEY_DOLLAR:
  1045. .. rst-class:: classref-enumeration-constant
  1046. :ref:`Key<enum_@GlobalScope_Key>` **KEY_DOLLAR** = ``36``
  1047. $ key.
  1048. .. _class_@GlobalScope_constant_KEY_PERCENT:
  1049. .. rst-class:: classref-enumeration-constant
  1050. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PERCENT** = ``37``
  1051. % key.
  1052. .. _class_@GlobalScope_constant_KEY_AMPERSAND:
  1053. .. rst-class:: classref-enumeration-constant
  1054. :ref:`Key<enum_@GlobalScope_Key>` **KEY_AMPERSAND** = ``38``
  1055. & key.
  1056. .. _class_@GlobalScope_constant_KEY_APOSTROPHE:
  1057. .. rst-class:: classref-enumeration-constant
  1058. :ref:`Key<enum_@GlobalScope_Key>` **KEY_APOSTROPHE** = ``39``
  1059. ' key.
  1060. .. _class_@GlobalScope_constant_KEY_PARENLEFT:
  1061. .. rst-class:: classref-enumeration-constant
  1062. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PARENLEFT** = ``40``
  1063. ( key.
  1064. .. _class_@GlobalScope_constant_KEY_PARENRIGHT:
  1065. .. rst-class:: classref-enumeration-constant
  1066. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PARENRIGHT** = ``41``
  1067. ) key.
  1068. .. _class_@GlobalScope_constant_KEY_ASTERISK:
  1069. .. rst-class:: classref-enumeration-constant
  1070. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ASTERISK** = ``42``
  1071. \* key.
  1072. .. _class_@GlobalScope_constant_KEY_PLUS:
  1073. .. rst-class:: classref-enumeration-constant
  1074. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PLUS** = ``43``
  1075. + key.
  1076. .. _class_@GlobalScope_constant_KEY_COMMA:
  1077. .. rst-class:: classref-enumeration-constant
  1078. :ref:`Key<enum_@GlobalScope_Key>` **KEY_COMMA** = ``44``
  1079. , key.
  1080. .. _class_@GlobalScope_constant_KEY_MINUS:
  1081. .. rst-class:: classref-enumeration-constant
  1082. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MINUS** = ``45``
  1083. - key.
  1084. .. _class_@GlobalScope_constant_KEY_PERIOD:
  1085. .. rst-class:: classref-enumeration-constant
  1086. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PERIOD** = ``46``
  1087. . key.
  1088. .. _class_@GlobalScope_constant_KEY_SLASH:
  1089. .. rst-class:: classref-enumeration-constant
  1090. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SLASH** = ``47``
  1091. / key.
  1092. .. _class_@GlobalScope_constant_KEY_0:
  1093. .. rst-class:: classref-enumeration-constant
  1094. :ref:`Key<enum_@GlobalScope_Key>` **KEY_0** = ``48``
  1095. Number 0 key.
  1096. .. _class_@GlobalScope_constant_KEY_1:
  1097. .. rst-class:: classref-enumeration-constant
  1098. :ref:`Key<enum_@GlobalScope_Key>` **KEY_1** = ``49``
  1099. Number 1 key.
  1100. .. _class_@GlobalScope_constant_KEY_2:
  1101. .. rst-class:: classref-enumeration-constant
  1102. :ref:`Key<enum_@GlobalScope_Key>` **KEY_2** = ``50``
  1103. Number 2 key.
  1104. .. _class_@GlobalScope_constant_KEY_3:
  1105. .. rst-class:: classref-enumeration-constant
  1106. :ref:`Key<enum_@GlobalScope_Key>` **KEY_3** = ``51``
  1107. Number 3 key.
  1108. .. _class_@GlobalScope_constant_KEY_4:
  1109. .. rst-class:: classref-enumeration-constant
  1110. :ref:`Key<enum_@GlobalScope_Key>` **KEY_4** = ``52``
  1111. Number 4 key.
  1112. .. _class_@GlobalScope_constant_KEY_5:
  1113. .. rst-class:: classref-enumeration-constant
  1114. :ref:`Key<enum_@GlobalScope_Key>` **KEY_5** = ``53``
  1115. Number 5 key.
  1116. .. _class_@GlobalScope_constant_KEY_6:
  1117. .. rst-class:: classref-enumeration-constant
  1118. :ref:`Key<enum_@GlobalScope_Key>` **KEY_6** = ``54``
  1119. Number 6 key.
  1120. .. _class_@GlobalScope_constant_KEY_7:
  1121. .. rst-class:: classref-enumeration-constant
  1122. :ref:`Key<enum_@GlobalScope_Key>` **KEY_7** = ``55``
  1123. Number 7 key.
  1124. .. _class_@GlobalScope_constant_KEY_8:
  1125. .. rst-class:: classref-enumeration-constant
  1126. :ref:`Key<enum_@GlobalScope_Key>` **KEY_8** = ``56``
  1127. Number 8 key.
  1128. .. _class_@GlobalScope_constant_KEY_9:
  1129. .. rst-class:: classref-enumeration-constant
  1130. :ref:`Key<enum_@GlobalScope_Key>` **KEY_9** = ``57``
  1131. Number 9 key.
  1132. .. _class_@GlobalScope_constant_KEY_COLON:
  1133. .. rst-class:: classref-enumeration-constant
  1134. :ref:`Key<enum_@GlobalScope_Key>` **KEY_COLON** = ``58``
  1135. : key.
  1136. .. _class_@GlobalScope_constant_KEY_SEMICOLON:
  1137. .. rst-class:: classref-enumeration-constant
  1138. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SEMICOLON** = ``59``
  1139. ; key.
  1140. .. _class_@GlobalScope_constant_KEY_LESS:
  1141. .. rst-class:: classref-enumeration-constant
  1142. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LESS** = ``60``
  1143. < key.
  1144. .. _class_@GlobalScope_constant_KEY_EQUAL:
  1145. .. rst-class:: classref-enumeration-constant
  1146. :ref:`Key<enum_@GlobalScope_Key>` **KEY_EQUAL** = ``61``
  1147. = key.
  1148. .. _class_@GlobalScope_constant_KEY_GREATER:
  1149. .. rst-class:: classref-enumeration-constant
  1150. :ref:`Key<enum_@GlobalScope_Key>` **KEY_GREATER** = ``62``
  1151. > key.
  1152. .. _class_@GlobalScope_constant_KEY_QUESTION:
  1153. .. rst-class:: classref-enumeration-constant
  1154. :ref:`Key<enum_@GlobalScope_Key>` **KEY_QUESTION** = ``63``
  1155. ? key.
  1156. .. _class_@GlobalScope_constant_KEY_AT:
  1157. .. rst-class:: classref-enumeration-constant
  1158. :ref:`Key<enum_@GlobalScope_Key>` **KEY_AT** = ``64``
  1159. @ key.
  1160. .. _class_@GlobalScope_constant_KEY_A:
  1161. .. rst-class:: classref-enumeration-constant
  1162. :ref:`Key<enum_@GlobalScope_Key>` **KEY_A** = ``65``
  1163. A key.
  1164. .. _class_@GlobalScope_constant_KEY_B:
  1165. .. rst-class:: classref-enumeration-constant
  1166. :ref:`Key<enum_@GlobalScope_Key>` **KEY_B** = ``66``
  1167. B key.
  1168. .. _class_@GlobalScope_constant_KEY_C:
  1169. .. rst-class:: classref-enumeration-constant
  1170. :ref:`Key<enum_@GlobalScope_Key>` **KEY_C** = ``67``
  1171. C key.
  1172. .. _class_@GlobalScope_constant_KEY_D:
  1173. .. rst-class:: classref-enumeration-constant
  1174. :ref:`Key<enum_@GlobalScope_Key>` **KEY_D** = ``68``
  1175. D key.
  1176. .. _class_@GlobalScope_constant_KEY_E:
  1177. .. rst-class:: classref-enumeration-constant
  1178. :ref:`Key<enum_@GlobalScope_Key>` **KEY_E** = ``69``
  1179. E key.
  1180. .. _class_@GlobalScope_constant_KEY_F:
  1181. .. rst-class:: classref-enumeration-constant
  1182. :ref:`Key<enum_@GlobalScope_Key>` **KEY_F** = ``70``
  1183. F key.
  1184. .. _class_@GlobalScope_constant_KEY_G:
  1185. .. rst-class:: classref-enumeration-constant
  1186. :ref:`Key<enum_@GlobalScope_Key>` **KEY_G** = ``71``
  1187. G key.
  1188. .. _class_@GlobalScope_constant_KEY_H:
  1189. .. rst-class:: classref-enumeration-constant
  1190. :ref:`Key<enum_@GlobalScope_Key>` **KEY_H** = ``72``
  1191. H key.
  1192. .. _class_@GlobalScope_constant_KEY_I:
  1193. .. rst-class:: classref-enumeration-constant
  1194. :ref:`Key<enum_@GlobalScope_Key>` **KEY_I** = ``73``
  1195. I key.
  1196. .. _class_@GlobalScope_constant_KEY_J:
  1197. .. rst-class:: classref-enumeration-constant
  1198. :ref:`Key<enum_@GlobalScope_Key>` **KEY_J** = ``74``
  1199. J key.
  1200. .. _class_@GlobalScope_constant_KEY_K:
  1201. .. rst-class:: classref-enumeration-constant
  1202. :ref:`Key<enum_@GlobalScope_Key>` **KEY_K** = ``75``
  1203. K key.
  1204. .. _class_@GlobalScope_constant_KEY_L:
  1205. .. rst-class:: classref-enumeration-constant
  1206. :ref:`Key<enum_@GlobalScope_Key>` **KEY_L** = ``76``
  1207. L key.
  1208. .. _class_@GlobalScope_constant_KEY_M:
  1209. .. rst-class:: classref-enumeration-constant
  1210. :ref:`Key<enum_@GlobalScope_Key>` **KEY_M** = ``77``
  1211. M key.
  1212. .. _class_@GlobalScope_constant_KEY_N:
  1213. .. rst-class:: classref-enumeration-constant
  1214. :ref:`Key<enum_@GlobalScope_Key>` **KEY_N** = ``78``
  1215. N key.
  1216. .. _class_@GlobalScope_constant_KEY_O:
  1217. .. rst-class:: classref-enumeration-constant
  1218. :ref:`Key<enum_@GlobalScope_Key>` **KEY_O** = ``79``
  1219. O key.
  1220. .. _class_@GlobalScope_constant_KEY_P:
  1221. .. rst-class:: classref-enumeration-constant
  1222. :ref:`Key<enum_@GlobalScope_Key>` **KEY_P** = ``80``
  1223. P key.
  1224. .. _class_@GlobalScope_constant_KEY_Q:
  1225. .. rst-class:: classref-enumeration-constant
  1226. :ref:`Key<enum_@GlobalScope_Key>` **KEY_Q** = ``81``
  1227. Q key.
  1228. .. _class_@GlobalScope_constant_KEY_R:
  1229. .. rst-class:: classref-enumeration-constant
  1230. :ref:`Key<enum_@GlobalScope_Key>` **KEY_R** = ``82``
  1231. R key.
  1232. .. _class_@GlobalScope_constant_KEY_S:
  1233. .. rst-class:: classref-enumeration-constant
  1234. :ref:`Key<enum_@GlobalScope_Key>` **KEY_S** = ``83``
  1235. S key.
  1236. .. _class_@GlobalScope_constant_KEY_T:
  1237. .. rst-class:: classref-enumeration-constant
  1238. :ref:`Key<enum_@GlobalScope_Key>` **KEY_T** = ``84``
  1239. T key.
  1240. .. _class_@GlobalScope_constant_KEY_U:
  1241. .. rst-class:: classref-enumeration-constant
  1242. :ref:`Key<enum_@GlobalScope_Key>` **KEY_U** = ``85``
  1243. U key.
  1244. .. _class_@GlobalScope_constant_KEY_V:
  1245. .. rst-class:: classref-enumeration-constant
  1246. :ref:`Key<enum_@GlobalScope_Key>` **KEY_V** = ``86``
  1247. V key.
  1248. .. _class_@GlobalScope_constant_KEY_W:
  1249. .. rst-class:: classref-enumeration-constant
  1250. :ref:`Key<enum_@GlobalScope_Key>` **KEY_W** = ``87``
  1251. W key.
  1252. .. _class_@GlobalScope_constant_KEY_X:
  1253. .. rst-class:: classref-enumeration-constant
  1254. :ref:`Key<enum_@GlobalScope_Key>` **KEY_X** = ``88``
  1255. X key.
  1256. .. _class_@GlobalScope_constant_KEY_Y:
  1257. .. rst-class:: classref-enumeration-constant
  1258. :ref:`Key<enum_@GlobalScope_Key>` **KEY_Y** = ``89``
  1259. Y key.
  1260. .. _class_@GlobalScope_constant_KEY_Z:
  1261. .. rst-class:: classref-enumeration-constant
  1262. :ref:`Key<enum_@GlobalScope_Key>` **KEY_Z** = ``90``
  1263. Z key.
  1264. .. _class_@GlobalScope_constant_KEY_BRACKETLEFT:
  1265. .. rst-class:: classref-enumeration-constant
  1266. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACKETLEFT** = ``91``
  1267. [ key.
  1268. .. _class_@GlobalScope_constant_KEY_BACKSLASH:
  1269. .. rst-class:: classref-enumeration-constant
  1270. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BACKSLASH** = ``92``
  1271. \\ key.
  1272. .. _class_@GlobalScope_constant_KEY_BRACKETRIGHT:
  1273. .. rst-class:: classref-enumeration-constant
  1274. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACKETRIGHT** = ``93``
  1275. ] key.
  1276. .. _class_@GlobalScope_constant_KEY_ASCIICIRCUM:
  1277. .. rst-class:: classref-enumeration-constant
  1278. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ASCIICIRCUM** = ``94``
  1279. ^ key.
  1280. .. _class_@GlobalScope_constant_KEY_UNDERSCORE:
  1281. .. rst-class:: classref-enumeration-constant
  1282. :ref:`Key<enum_@GlobalScope_Key>` **KEY_UNDERSCORE** = ``95``
  1283. \_ key.
  1284. .. _class_@GlobalScope_constant_KEY_QUOTELEFT:
  1285. .. rst-class:: classref-enumeration-constant
  1286. :ref:`Key<enum_@GlobalScope_Key>` **KEY_QUOTELEFT** = ``96``
  1287. ` key.
  1288. .. _class_@GlobalScope_constant_KEY_BRACELEFT:
  1289. .. rst-class:: classref-enumeration-constant
  1290. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACELEFT** = ``123``
  1291. { key.
  1292. .. _class_@GlobalScope_constant_KEY_BAR:
  1293. .. rst-class:: classref-enumeration-constant
  1294. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BAR** = ``124``
  1295. | key.
  1296. .. _class_@GlobalScope_constant_KEY_BRACERIGHT:
  1297. .. rst-class:: classref-enumeration-constant
  1298. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACERIGHT** = ``125``
  1299. } key.
  1300. .. _class_@GlobalScope_constant_KEY_ASCIITILDE:
  1301. .. rst-class:: classref-enumeration-constant
  1302. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ASCIITILDE** = ``126``
  1303. ~ key.
  1304. .. _class_@GlobalScope_constant_KEY_YEN:
  1305. .. rst-class:: classref-enumeration-constant
  1306. :ref:`Key<enum_@GlobalScope_Key>` **KEY_YEN** = ``165``
  1307. ¥ key.
  1308. .. _class_@GlobalScope_constant_KEY_SECTION:
  1309. .. rst-class:: classref-enumeration-constant
  1310. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SECTION** = ``167``
  1311. § key.
  1312. .. rst-class:: classref-item-separator
  1313. ----
  1314. .. _enum_@GlobalScope_KeyModifierMask:
  1315. .. rst-class:: classref-enumeration
  1316. flags **KeyModifierMask**: :ref:`🔗<enum_@GlobalScope_KeyModifierMask>`
  1317. .. _class_@GlobalScope_constant_KEY_CODE_MASK:
  1318. .. rst-class:: classref-enumeration-constant
  1319. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_CODE_MASK** = ``8388607``
  1320. Key Code mask.
  1321. .. _class_@GlobalScope_constant_KEY_MODIFIER_MASK:
  1322. .. rst-class:: classref-enumeration-constant
  1323. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MODIFIER_MASK** = ``532676608``
  1324. Modifier key mask.
  1325. .. _class_@GlobalScope_constant_KEY_MASK_CMD_OR_CTRL:
  1326. .. rst-class:: classref-enumeration-constant
  1327. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_CMD_OR_CTRL** = ``16777216``
  1328. Automatically remapped to :ref:`KEY_META<class_@GlobalScope_constant_KEY_META>` on macOS and :ref:`KEY_CTRL<class_@GlobalScope_constant_KEY_CTRL>` on other platforms, this mask is never set in the actual events, and should be used for key mapping only.
  1329. .. _class_@GlobalScope_constant_KEY_MASK_SHIFT:
  1330. .. rst-class:: classref-enumeration-constant
  1331. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_SHIFT** = ``33554432``
  1332. Shift key mask.
  1333. .. _class_@GlobalScope_constant_KEY_MASK_ALT:
  1334. .. rst-class:: classref-enumeration-constant
  1335. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_ALT** = ``67108864``
  1336. Alt or Option (on macOS) key mask.
  1337. .. _class_@GlobalScope_constant_KEY_MASK_META:
  1338. .. rst-class:: classref-enumeration-constant
  1339. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_META** = ``134217728``
  1340. Command (on macOS) or Meta/Windows key mask.
  1341. .. _class_@GlobalScope_constant_KEY_MASK_CTRL:
  1342. .. rst-class:: classref-enumeration-constant
  1343. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_CTRL** = ``268435456``
  1344. Control key mask.
  1345. .. _class_@GlobalScope_constant_KEY_MASK_KPAD:
  1346. .. rst-class:: classref-enumeration-constant
  1347. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_KPAD** = ``536870912``
  1348. Keypad key mask.
  1349. .. _class_@GlobalScope_constant_KEY_MASK_GROUP_SWITCH:
  1350. .. rst-class:: classref-enumeration-constant
  1351. :ref:`KeyModifierMask<enum_@GlobalScope_KeyModifierMask>` **KEY_MASK_GROUP_SWITCH** = ``1073741824``
  1352. Group Switch key mask.
  1353. .. rst-class:: classref-item-separator
  1354. ----
  1355. .. _enum_@GlobalScope_KeyLocation:
  1356. .. rst-class:: classref-enumeration
  1357. enum **KeyLocation**: :ref:`🔗<enum_@GlobalScope_KeyLocation>`
  1358. .. _class_@GlobalScope_constant_KEY_LOCATION_UNSPECIFIED:
  1359. .. rst-class:: classref-enumeration-constant
  1360. :ref:`KeyLocation<enum_@GlobalScope_KeyLocation>` **KEY_LOCATION_UNSPECIFIED** = ``0``
  1361. Used for keys which only appear once, or when a comparison doesn't need to differentiate the ``LEFT`` and ``RIGHT`` versions.
  1362. For example, when using :ref:`InputEvent.is_match<class_InputEvent_method_is_match>`, an event which has :ref:`KEY_LOCATION_UNSPECIFIED<class_@GlobalScope_constant_KEY_LOCATION_UNSPECIFIED>` will match any :ref:`KeyLocation<enum_@GlobalScope_KeyLocation>` on the passed event.
  1363. .. _class_@GlobalScope_constant_KEY_LOCATION_LEFT:
  1364. .. rst-class:: classref-enumeration-constant
  1365. :ref:`KeyLocation<enum_@GlobalScope_KeyLocation>` **KEY_LOCATION_LEFT** = ``1``
  1366. A key which is to the left of its twin.
  1367. .. _class_@GlobalScope_constant_KEY_LOCATION_RIGHT:
  1368. .. rst-class:: classref-enumeration-constant
  1369. :ref:`KeyLocation<enum_@GlobalScope_KeyLocation>` **KEY_LOCATION_RIGHT** = ``2``
  1370. A key which is to the right of its twin.
  1371. .. rst-class:: classref-item-separator
  1372. ----
  1373. .. _enum_@GlobalScope_MouseButton:
  1374. .. rst-class:: classref-enumeration
  1375. enum **MouseButton**: :ref:`🔗<enum_@GlobalScope_MouseButton>`
  1376. .. _class_@GlobalScope_constant_MOUSE_BUTTON_NONE:
  1377. .. rst-class:: classref-enumeration-constant
  1378. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_NONE** = ``0``
  1379. Enum value which doesn't correspond to any mouse button. This is used to initialize :ref:`MouseButton<enum_@GlobalScope_MouseButton>` properties with a generic state.
  1380. .. _class_@GlobalScope_constant_MOUSE_BUTTON_LEFT:
  1381. .. rst-class:: classref-enumeration-constant
  1382. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_LEFT** = ``1``
  1383. Primary mouse button, usually assigned to the left button.
  1384. .. _class_@GlobalScope_constant_MOUSE_BUTTON_RIGHT:
  1385. .. rst-class:: classref-enumeration-constant
  1386. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_RIGHT** = ``2``
  1387. Secondary mouse button, usually assigned to the right button.
  1388. .. _class_@GlobalScope_constant_MOUSE_BUTTON_MIDDLE:
  1389. .. rst-class:: classref-enumeration-constant
  1390. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_MIDDLE** = ``3``
  1391. Middle mouse button.
  1392. .. _class_@GlobalScope_constant_MOUSE_BUTTON_WHEEL_UP:
  1393. .. rst-class:: classref-enumeration-constant
  1394. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_WHEEL_UP** = ``4``
  1395. Mouse wheel scrolling up.
  1396. .. _class_@GlobalScope_constant_MOUSE_BUTTON_WHEEL_DOWN:
  1397. .. rst-class:: classref-enumeration-constant
  1398. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_WHEEL_DOWN** = ``5``
  1399. Mouse wheel scrolling down.
  1400. .. _class_@GlobalScope_constant_MOUSE_BUTTON_WHEEL_LEFT:
  1401. .. rst-class:: classref-enumeration-constant
  1402. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_WHEEL_LEFT** = ``6``
  1403. Mouse wheel left button (only present on some mice).
  1404. .. _class_@GlobalScope_constant_MOUSE_BUTTON_WHEEL_RIGHT:
  1405. .. rst-class:: classref-enumeration-constant
  1406. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_WHEEL_RIGHT** = ``7``
  1407. Mouse wheel right button (only present on some mice).
  1408. .. _class_@GlobalScope_constant_MOUSE_BUTTON_XBUTTON1:
  1409. .. rst-class:: classref-enumeration-constant
  1410. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_XBUTTON1** = ``8``
  1411. Extra mouse button 1. This is sometimes present, usually to the sides of the mouse.
  1412. .. _class_@GlobalScope_constant_MOUSE_BUTTON_XBUTTON2:
  1413. .. rst-class:: classref-enumeration-constant
  1414. :ref:`MouseButton<enum_@GlobalScope_MouseButton>` **MOUSE_BUTTON_XBUTTON2** = ``9``
  1415. Extra mouse button 2. This is sometimes present, usually to the sides of the mouse.
  1416. .. rst-class:: classref-item-separator
  1417. ----
  1418. .. _enum_@GlobalScope_MouseButtonMask:
  1419. .. rst-class:: classref-enumeration
  1420. flags **MouseButtonMask**: :ref:`🔗<enum_@GlobalScope_MouseButtonMask>`
  1421. .. _class_@GlobalScope_constant_MOUSE_BUTTON_MASK_LEFT:
  1422. .. rst-class:: classref-enumeration-constant
  1423. :ref:`MouseButtonMask<enum_@GlobalScope_MouseButtonMask>` **MOUSE_BUTTON_MASK_LEFT** = ``1``
  1424. Primary mouse button mask, usually for the left button.
  1425. .. _class_@GlobalScope_constant_MOUSE_BUTTON_MASK_RIGHT:
  1426. .. rst-class:: classref-enumeration-constant
  1427. :ref:`MouseButtonMask<enum_@GlobalScope_MouseButtonMask>` **MOUSE_BUTTON_MASK_RIGHT** = ``2``
  1428. Secondary mouse button mask, usually for the right button.
  1429. .. _class_@GlobalScope_constant_MOUSE_BUTTON_MASK_MIDDLE:
  1430. .. rst-class:: classref-enumeration-constant
  1431. :ref:`MouseButtonMask<enum_@GlobalScope_MouseButtonMask>` **MOUSE_BUTTON_MASK_MIDDLE** = ``4``
  1432. Middle mouse button mask.
  1433. .. _class_@GlobalScope_constant_MOUSE_BUTTON_MASK_MB_XBUTTON1:
  1434. .. rst-class:: classref-enumeration-constant
  1435. :ref:`MouseButtonMask<enum_@GlobalScope_MouseButtonMask>` **MOUSE_BUTTON_MASK_MB_XBUTTON1** = ``128``
  1436. Extra mouse button 1 mask.
  1437. .. _class_@GlobalScope_constant_MOUSE_BUTTON_MASK_MB_XBUTTON2:
  1438. .. rst-class:: classref-enumeration-constant
  1439. :ref:`MouseButtonMask<enum_@GlobalScope_MouseButtonMask>` **MOUSE_BUTTON_MASK_MB_XBUTTON2** = ``256``
  1440. Extra mouse button 2 mask.
  1441. .. rst-class:: classref-item-separator
  1442. ----
  1443. .. _enum_@GlobalScope_JoyButton:
  1444. .. rst-class:: classref-enumeration
  1445. enum **JoyButton**: :ref:`🔗<enum_@GlobalScope_JoyButton>`
  1446. .. _class_@GlobalScope_constant_JOY_BUTTON_INVALID:
  1447. .. rst-class:: classref-enumeration-constant
  1448. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_INVALID** = ``-1``
  1449. An invalid game controller button.
  1450. .. _class_@GlobalScope_constant_JOY_BUTTON_A:
  1451. .. rst-class:: classref-enumeration-constant
  1452. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_A** = ``0``
  1453. Game controller SDL button A. Corresponds to the bottom action button: Sony Cross, Xbox A, Nintendo B.
  1454. .. _class_@GlobalScope_constant_JOY_BUTTON_B:
  1455. .. rst-class:: classref-enumeration-constant
  1456. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_B** = ``1``
  1457. Game controller SDL button B. Corresponds to the right action button: Sony Circle, Xbox B, Nintendo A.
  1458. .. _class_@GlobalScope_constant_JOY_BUTTON_X:
  1459. .. rst-class:: classref-enumeration-constant
  1460. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_X** = ``2``
  1461. Game controller SDL button X. Corresponds to the left action button: Sony Square, Xbox X, Nintendo Y.
  1462. .. _class_@GlobalScope_constant_JOY_BUTTON_Y:
  1463. .. rst-class:: classref-enumeration-constant
  1464. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_Y** = ``3``
  1465. Game controller SDL button Y. Corresponds to the top action button: Sony Triangle, Xbox Y, Nintendo X.
  1466. .. _class_@GlobalScope_constant_JOY_BUTTON_BACK:
  1467. .. rst-class:: classref-enumeration-constant
  1468. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_BACK** = ``4``
  1469. Game controller SDL back button. Corresponds to the Sony Select, Xbox Back, Nintendo - button.
  1470. .. _class_@GlobalScope_constant_JOY_BUTTON_GUIDE:
  1471. .. rst-class:: classref-enumeration-constant
  1472. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_GUIDE** = ``5``
  1473. Game controller SDL guide button. Corresponds to the Sony PS, Xbox Home button.
  1474. .. _class_@GlobalScope_constant_JOY_BUTTON_START:
  1475. .. rst-class:: classref-enumeration-constant
  1476. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_START** = ``6``
  1477. Game controller SDL start button. Corresponds to the Sony Options, Xbox Menu, Nintendo + button.
  1478. .. _class_@GlobalScope_constant_JOY_BUTTON_LEFT_STICK:
  1479. .. rst-class:: classref-enumeration-constant
  1480. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_LEFT_STICK** = ``7``
  1481. Game controller SDL left stick button. Corresponds to the Sony L3, Xbox L/LS button.
  1482. .. _class_@GlobalScope_constant_JOY_BUTTON_RIGHT_STICK:
  1483. .. rst-class:: classref-enumeration-constant
  1484. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_RIGHT_STICK** = ``8``
  1485. Game controller SDL right stick button. Corresponds to the Sony R3, Xbox R/RS button.
  1486. .. _class_@GlobalScope_constant_JOY_BUTTON_LEFT_SHOULDER:
  1487. .. rst-class:: classref-enumeration-constant
  1488. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_LEFT_SHOULDER** = ``9``
  1489. Game controller SDL left shoulder button. Corresponds to the Sony L1, Xbox LB button.
  1490. .. _class_@GlobalScope_constant_JOY_BUTTON_RIGHT_SHOULDER:
  1491. .. rst-class:: classref-enumeration-constant
  1492. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_RIGHT_SHOULDER** = ``10``
  1493. Game controller SDL right shoulder button. Corresponds to the Sony R1, Xbox RB button.
  1494. .. _class_@GlobalScope_constant_JOY_BUTTON_DPAD_UP:
  1495. .. rst-class:: classref-enumeration-constant
  1496. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_DPAD_UP** = ``11``
  1497. Game controller D-pad up button.
  1498. .. _class_@GlobalScope_constant_JOY_BUTTON_DPAD_DOWN:
  1499. .. rst-class:: classref-enumeration-constant
  1500. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_DPAD_DOWN** = ``12``
  1501. Game controller D-pad down button.
  1502. .. _class_@GlobalScope_constant_JOY_BUTTON_DPAD_LEFT:
  1503. .. rst-class:: classref-enumeration-constant
  1504. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_DPAD_LEFT** = ``13``
  1505. Game controller D-pad left button.
  1506. .. _class_@GlobalScope_constant_JOY_BUTTON_DPAD_RIGHT:
  1507. .. rst-class:: classref-enumeration-constant
  1508. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_DPAD_RIGHT** = ``14``
  1509. Game controller D-pad right button.
  1510. .. _class_@GlobalScope_constant_JOY_BUTTON_MISC1:
  1511. .. rst-class:: classref-enumeration-constant
  1512. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_MISC1** = ``15``
  1513. Game controller SDL miscellaneous button. Corresponds to Xbox share button, PS5 microphone button, Nintendo Switch capture button.
  1514. .. _class_@GlobalScope_constant_JOY_BUTTON_PADDLE1:
  1515. .. rst-class:: classref-enumeration-constant
  1516. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_PADDLE1** = ``16``
  1517. Game controller SDL paddle 1 button.
  1518. .. _class_@GlobalScope_constant_JOY_BUTTON_PADDLE2:
  1519. .. rst-class:: classref-enumeration-constant
  1520. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_PADDLE2** = ``17``
  1521. Game controller SDL paddle 2 button.
  1522. .. _class_@GlobalScope_constant_JOY_BUTTON_PADDLE3:
  1523. .. rst-class:: classref-enumeration-constant
  1524. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_PADDLE3** = ``18``
  1525. Game controller SDL paddle 3 button.
  1526. .. _class_@GlobalScope_constant_JOY_BUTTON_PADDLE4:
  1527. .. rst-class:: classref-enumeration-constant
  1528. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_PADDLE4** = ``19``
  1529. Game controller SDL paddle 4 button.
  1530. .. _class_@GlobalScope_constant_JOY_BUTTON_TOUCHPAD:
  1531. .. rst-class:: classref-enumeration-constant
  1532. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_TOUCHPAD** = ``20``
  1533. Game controller SDL touchpad button.
  1534. .. _class_@GlobalScope_constant_JOY_BUTTON_SDL_MAX:
  1535. .. rst-class:: classref-enumeration-constant
  1536. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_SDL_MAX** = ``21``
  1537. The number of SDL game controller buttons.
  1538. .. _class_@GlobalScope_constant_JOY_BUTTON_MAX:
  1539. .. rst-class:: classref-enumeration-constant
  1540. :ref:`JoyButton<enum_@GlobalScope_JoyButton>` **JOY_BUTTON_MAX** = ``128``
  1541. The maximum number of game controller buttons supported by the engine. The actual limit may be lower on specific platforms:
  1542. - **Android:** Up to 36 buttons.
  1543. - **Linux:** Up to 80 buttons.
  1544. - **Windows** and **macOS:** Up to 128 buttons.
  1545. .. rst-class:: classref-item-separator
  1546. ----
  1547. .. _enum_@GlobalScope_JoyAxis:
  1548. .. rst-class:: classref-enumeration
  1549. enum **JoyAxis**: :ref:`🔗<enum_@GlobalScope_JoyAxis>`
  1550. .. _class_@GlobalScope_constant_JOY_AXIS_INVALID:
  1551. .. rst-class:: classref-enumeration-constant
  1552. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_INVALID** = ``-1``
  1553. An invalid game controller axis.
  1554. .. _class_@GlobalScope_constant_JOY_AXIS_LEFT_X:
  1555. .. rst-class:: classref-enumeration-constant
  1556. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_LEFT_X** = ``0``
  1557. Game controller left joystick x-axis.
  1558. .. _class_@GlobalScope_constant_JOY_AXIS_LEFT_Y:
  1559. .. rst-class:: classref-enumeration-constant
  1560. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_LEFT_Y** = ``1``
  1561. Game controller left joystick y-axis.
  1562. .. _class_@GlobalScope_constant_JOY_AXIS_RIGHT_X:
  1563. .. rst-class:: classref-enumeration-constant
  1564. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_RIGHT_X** = ``2``
  1565. Game controller right joystick x-axis.
  1566. .. _class_@GlobalScope_constant_JOY_AXIS_RIGHT_Y:
  1567. .. rst-class:: classref-enumeration-constant
  1568. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_RIGHT_Y** = ``3``
  1569. Game controller right joystick y-axis.
  1570. .. _class_@GlobalScope_constant_JOY_AXIS_TRIGGER_LEFT:
  1571. .. rst-class:: classref-enumeration-constant
  1572. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_TRIGGER_LEFT** = ``4``
  1573. Game controller left trigger axis.
  1574. .. _class_@GlobalScope_constant_JOY_AXIS_TRIGGER_RIGHT:
  1575. .. rst-class:: classref-enumeration-constant
  1576. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_TRIGGER_RIGHT** = ``5``
  1577. Game controller right trigger axis.
  1578. .. _class_@GlobalScope_constant_JOY_AXIS_SDL_MAX:
  1579. .. rst-class:: classref-enumeration-constant
  1580. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_SDL_MAX** = ``6``
  1581. The number of SDL game controller axes.
  1582. .. _class_@GlobalScope_constant_JOY_AXIS_MAX:
  1583. .. rst-class:: classref-enumeration-constant
  1584. :ref:`JoyAxis<enum_@GlobalScope_JoyAxis>` **JOY_AXIS_MAX** = ``10``
  1585. The maximum number of game controller axes: OpenVR supports up to 5 Joysticks making a total of 10 axes.
  1586. .. rst-class:: classref-item-separator
  1587. ----
  1588. .. _enum_@GlobalScope_MIDIMessage:
  1589. .. rst-class:: classref-enumeration
  1590. enum **MIDIMessage**: :ref:`🔗<enum_@GlobalScope_MIDIMessage>`
  1591. .. _class_@GlobalScope_constant_MIDI_MESSAGE_NONE:
  1592. .. rst-class:: classref-enumeration-constant
  1593. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_NONE** = ``0``
  1594. Does not correspond to any MIDI message. This is the default value of :ref:`InputEventMIDI.message<class_InputEventMIDI_property_message>`.
  1595. .. _class_@GlobalScope_constant_MIDI_MESSAGE_NOTE_OFF:
  1596. .. rst-class:: classref-enumeration-constant
  1597. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_NOTE_OFF** = ``8``
  1598. MIDI message sent when a note is released.
  1599. \ **Note:** Not all MIDI devices send this message; some may send :ref:`MIDI_MESSAGE_NOTE_ON<class_@GlobalScope_constant_MIDI_MESSAGE_NOTE_ON>` with :ref:`InputEventMIDI.velocity<class_InputEventMIDI_property_velocity>` set to ``0``.
  1600. .. _class_@GlobalScope_constant_MIDI_MESSAGE_NOTE_ON:
  1601. .. rst-class:: classref-enumeration-constant
  1602. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_NOTE_ON** = ``9``
  1603. MIDI message sent when a note is pressed.
  1604. .. _class_@GlobalScope_constant_MIDI_MESSAGE_AFTERTOUCH:
  1605. .. rst-class:: classref-enumeration-constant
  1606. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_AFTERTOUCH** = ``10``
  1607. MIDI message sent to indicate a change in pressure while a note is being pressed down, also called aftertouch.
  1608. .. _class_@GlobalScope_constant_MIDI_MESSAGE_CONTROL_CHANGE:
  1609. .. rst-class:: classref-enumeration-constant
  1610. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_CONTROL_CHANGE** = ``11``
  1611. MIDI message sent when a controller value changes. In a MIDI device, a controller is any input that doesn't play notes. These may include sliders for volume, balance, and panning, as well as switches and pedals. See the `General MIDI specification <https://en.wikipedia.org/wiki/General_MIDI#Controller_events>`__ for a small list.
  1612. .. _class_@GlobalScope_constant_MIDI_MESSAGE_PROGRAM_CHANGE:
  1613. .. rst-class:: classref-enumeration-constant
  1614. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_PROGRAM_CHANGE** = ``12``
  1615. MIDI message sent when the MIDI device changes its current instrument (also called *program* or *preset*).
  1616. .. _class_@GlobalScope_constant_MIDI_MESSAGE_CHANNEL_PRESSURE:
  1617. .. rst-class:: classref-enumeration-constant
  1618. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_CHANNEL_PRESSURE** = ``13``
  1619. MIDI message sent to indicate a change in pressure for the whole channel. Some MIDI devices may send this instead of :ref:`MIDI_MESSAGE_AFTERTOUCH<class_@GlobalScope_constant_MIDI_MESSAGE_AFTERTOUCH>`.
  1620. .. _class_@GlobalScope_constant_MIDI_MESSAGE_PITCH_BEND:
  1621. .. rst-class:: classref-enumeration-constant
  1622. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_PITCH_BEND** = ``14``
  1623. MIDI message sent when the value of the pitch bender changes, usually a wheel on the MIDI device.
  1624. .. _class_@GlobalScope_constant_MIDI_MESSAGE_SYSTEM_EXCLUSIVE:
  1625. .. rst-class:: classref-enumeration-constant
  1626. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_SYSTEM_EXCLUSIVE** = ``240``
  1627. MIDI system exclusive (SysEx) message. This type of message is not standardized and it's highly dependent on the MIDI device sending it.
  1628. \ **Note:** Getting this message's data from :ref:`InputEventMIDI<class_InputEventMIDI>` is not implemented.
  1629. .. _class_@GlobalScope_constant_MIDI_MESSAGE_QUARTER_FRAME:
  1630. .. rst-class:: classref-enumeration-constant
  1631. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_QUARTER_FRAME** = ``241``
  1632. MIDI message sent every quarter frame to keep connected MIDI devices synchronized. Related to :ref:`MIDI_MESSAGE_TIMING_CLOCK<class_@GlobalScope_constant_MIDI_MESSAGE_TIMING_CLOCK>`.
  1633. \ **Note:** Getting this message's data from :ref:`InputEventMIDI<class_InputEventMIDI>` is not implemented.
  1634. .. _class_@GlobalScope_constant_MIDI_MESSAGE_SONG_POSITION_POINTER:
  1635. .. rst-class:: classref-enumeration-constant
  1636. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_SONG_POSITION_POINTER** = ``242``
  1637. MIDI message sent to jump onto a new position in the current sequence or song.
  1638. \ **Note:** Getting this message's data from :ref:`InputEventMIDI<class_InputEventMIDI>` is not implemented.
  1639. .. _class_@GlobalScope_constant_MIDI_MESSAGE_SONG_SELECT:
  1640. .. rst-class:: classref-enumeration-constant
  1641. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_SONG_SELECT** = ``243``
  1642. MIDI message sent to select a sequence or song to play.
  1643. \ **Note:** Getting this message's data from :ref:`InputEventMIDI<class_InputEventMIDI>` is not implemented.
  1644. .. _class_@GlobalScope_constant_MIDI_MESSAGE_TUNE_REQUEST:
  1645. .. rst-class:: classref-enumeration-constant
  1646. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_TUNE_REQUEST** = ``246``
  1647. MIDI message sent to request a tuning calibration. Used on analog synthesizers. Most modern MIDI devices do not need this message.
  1648. .. _class_@GlobalScope_constant_MIDI_MESSAGE_TIMING_CLOCK:
  1649. .. rst-class:: classref-enumeration-constant
  1650. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_TIMING_CLOCK** = ``248``
  1651. MIDI message sent 24 times after :ref:`MIDI_MESSAGE_QUARTER_FRAME<class_@GlobalScope_constant_MIDI_MESSAGE_QUARTER_FRAME>`, to keep connected MIDI devices synchronized.
  1652. .. _class_@GlobalScope_constant_MIDI_MESSAGE_START:
  1653. .. rst-class:: classref-enumeration-constant
  1654. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_START** = ``250``
  1655. MIDI message sent to start the current sequence or song from the beginning.
  1656. .. _class_@GlobalScope_constant_MIDI_MESSAGE_CONTINUE:
  1657. .. rst-class:: classref-enumeration-constant
  1658. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_CONTINUE** = ``251``
  1659. MIDI message sent to resume from the point the current sequence or song was paused.
  1660. .. _class_@GlobalScope_constant_MIDI_MESSAGE_STOP:
  1661. .. rst-class:: classref-enumeration-constant
  1662. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_STOP** = ``252``
  1663. MIDI message sent to pause the current sequence or song.
  1664. .. _class_@GlobalScope_constant_MIDI_MESSAGE_ACTIVE_SENSING:
  1665. .. rst-class:: classref-enumeration-constant
  1666. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_ACTIVE_SENSING** = ``254``
  1667. MIDI message sent repeatedly while the MIDI device is idle, to tell the receiver that the connection is alive. Most MIDI devices do not send this message.
  1668. .. _class_@GlobalScope_constant_MIDI_MESSAGE_SYSTEM_RESET:
  1669. .. rst-class:: classref-enumeration-constant
  1670. :ref:`MIDIMessage<enum_@GlobalScope_MIDIMessage>` **MIDI_MESSAGE_SYSTEM_RESET** = ``255``
  1671. MIDI message sent to reset a MIDI device to its default state, as if it was just turned on. It should not be sent when the MIDI device is being turned on.
  1672. .. rst-class:: classref-item-separator
  1673. ----
  1674. .. _enum_@GlobalScope_Error:
  1675. .. rst-class:: classref-enumeration
  1676. enum **Error**: :ref:`🔗<enum_@GlobalScope_Error>`
  1677. .. _class_@GlobalScope_constant_OK:
  1678. .. rst-class:: classref-enumeration-constant
  1679. :ref:`Error<enum_@GlobalScope_Error>` **OK** = ``0``
  1680. Methods that return :ref:`Error<enum_@GlobalScope_Error>` return :ref:`OK<class_@GlobalScope_constant_OK>` when no error occurred.
  1681. Since :ref:`OK<class_@GlobalScope_constant_OK>` has value ``0``, and all other error constants are positive integers, it can also be used in boolean checks.
  1682. ::
  1683. var error = method_that_returns_error()
  1684. if error != OK:
  1685. printerr("Failure!")
  1686. # Or, alternatively:
  1687. if error:
  1688. printerr("Still failing!")
  1689. \ **Note:** Many functions do not return an error code, but will print error messages to standard output.
  1690. .. _class_@GlobalScope_constant_FAILED:
  1691. .. rst-class:: classref-enumeration-constant
  1692. :ref:`Error<enum_@GlobalScope_Error>` **FAILED** = ``1``
  1693. Generic error.
  1694. .. _class_@GlobalScope_constant_ERR_UNAVAILABLE:
  1695. .. rst-class:: classref-enumeration-constant
  1696. :ref:`Error<enum_@GlobalScope_Error>` **ERR_UNAVAILABLE** = ``2``
  1697. Unavailable error.
  1698. .. _class_@GlobalScope_constant_ERR_UNCONFIGURED:
  1699. .. rst-class:: classref-enumeration-constant
  1700. :ref:`Error<enum_@GlobalScope_Error>` **ERR_UNCONFIGURED** = ``3``
  1701. Unconfigured error.
  1702. .. _class_@GlobalScope_constant_ERR_UNAUTHORIZED:
  1703. .. rst-class:: classref-enumeration-constant
  1704. :ref:`Error<enum_@GlobalScope_Error>` **ERR_UNAUTHORIZED** = ``4``
  1705. Unauthorized error.
  1706. .. _class_@GlobalScope_constant_ERR_PARAMETER_RANGE_ERROR:
  1707. .. rst-class:: classref-enumeration-constant
  1708. :ref:`Error<enum_@GlobalScope_Error>` **ERR_PARAMETER_RANGE_ERROR** = ``5``
  1709. Parameter range error.
  1710. .. _class_@GlobalScope_constant_ERR_OUT_OF_MEMORY:
  1711. .. rst-class:: classref-enumeration-constant
  1712. :ref:`Error<enum_@GlobalScope_Error>` **ERR_OUT_OF_MEMORY** = ``6``
  1713. Out of memory (OOM) error.
  1714. .. _class_@GlobalScope_constant_ERR_FILE_NOT_FOUND:
  1715. .. rst-class:: classref-enumeration-constant
  1716. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_NOT_FOUND** = ``7``
  1717. File: Not found error.
  1718. .. _class_@GlobalScope_constant_ERR_FILE_BAD_DRIVE:
  1719. .. rst-class:: classref-enumeration-constant
  1720. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_BAD_DRIVE** = ``8``
  1721. File: Bad drive error.
  1722. .. _class_@GlobalScope_constant_ERR_FILE_BAD_PATH:
  1723. .. rst-class:: classref-enumeration-constant
  1724. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_BAD_PATH** = ``9``
  1725. File: Bad path error.
  1726. .. _class_@GlobalScope_constant_ERR_FILE_NO_PERMISSION:
  1727. .. rst-class:: classref-enumeration-constant
  1728. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_NO_PERMISSION** = ``10``
  1729. File: No permission error.
  1730. .. _class_@GlobalScope_constant_ERR_FILE_ALREADY_IN_USE:
  1731. .. rst-class:: classref-enumeration-constant
  1732. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_ALREADY_IN_USE** = ``11``
  1733. File: Already in use error.
  1734. .. _class_@GlobalScope_constant_ERR_FILE_CANT_OPEN:
  1735. .. rst-class:: classref-enumeration-constant
  1736. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_CANT_OPEN** = ``12``
  1737. File: Can't open error.
  1738. .. _class_@GlobalScope_constant_ERR_FILE_CANT_WRITE:
  1739. .. rst-class:: classref-enumeration-constant
  1740. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_CANT_WRITE** = ``13``
  1741. File: Can't write error.
  1742. .. _class_@GlobalScope_constant_ERR_FILE_CANT_READ:
  1743. .. rst-class:: classref-enumeration-constant
  1744. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_CANT_READ** = ``14``
  1745. File: Can't read error.
  1746. .. _class_@GlobalScope_constant_ERR_FILE_UNRECOGNIZED:
  1747. .. rst-class:: classref-enumeration-constant
  1748. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_UNRECOGNIZED** = ``15``
  1749. File: Unrecognized error.
  1750. .. _class_@GlobalScope_constant_ERR_FILE_CORRUPT:
  1751. .. rst-class:: classref-enumeration-constant
  1752. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_CORRUPT** = ``16``
  1753. File: Corrupt error.
  1754. .. _class_@GlobalScope_constant_ERR_FILE_MISSING_DEPENDENCIES:
  1755. .. rst-class:: classref-enumeration-constant
  1756. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_MISSING_DEPENDENCIES** = ``17``
  1757. File: Missing dependencies error.
  1758. .. _class_@GlobalScope_constant_ERR_FILE_EOF:
  1759. .. rst-class:: classref-enumeration-constant
  1760. :ref:`Error<enum_@GlobalScope_Error>` **ERR_FILE_EOF** = ``18``
  1761. File: End of file (EOF) error.
  1762. .. _class_@GlobalScope_constant_ERR_CANT_OPEN:
  1763. .. rst-class:: classref-enumeration-constant
  1764. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CANT_OPEN** = ``19``
  1765. Can't open error.
  1766. .. _class_@GlobalScope_constant_ERR_CANT_CREATE:
  1767. .. rst-class:: classref-enumeration-constant
  1768. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CANT_CREATE** = ``20``
  1769. Can't create error.
  1770. .. _class_@GlobalScope_constant_ERR_QUERY_FAILED:
  1771. .. rst-class:: classref-enumeration-constant
  1772. :ref:`Error<enum_@GlobalScope_Error>` **ERR_QUERY_FAILED** = ``21``
  1773. Query failed error.
  1774. .. _class_@GlobalScope_constant_ERR_ALREADY_IN_USE:
  1775. .. rst-class:: classref-enumeration-constant
  1776. :ref:`Error<enum_@GlobalScope_Error>` **ERR_ALREADY_IN_USE** = ``22``
  1777. Already in use error.
  1778. .. _class_@GlobalScope_constant_ERR_LOCKED:
  1779. .. rst-class:: classref-enumeration-constant
  1780. :ref:`Error<enum_@GlobalScope_Error>` **ERR_LOCKED** = ``23``
  1781. Locked error.
  1782. .. _class_@GlobalScope_constant_ERR_TIMEOUT:
  1783. .. rst-class:: classref-enumeration-constant
  1784. :ref:`Error<enum_@GlobalScope_Error>` **ERR_TIMEOUT** = ``24``
  1785. Timeout error.
  1786. .. _class_@GlobalScope_constant_ERR_CANT_CONNECT:
  1787. .. rst-class:: classref-enumeration-constant
  1788. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CANT_CONNECT** = ``25``
  1789. Can't connect error.
  1790. .. _class_@GlobalScope_constant_ERR_CANT_RESOLVE:
  1791. .. rst-class:: classref-enumeration-constant
  1792. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CANT_RESOLVE** = ``26``
  1793. Can't resolve error.
  1794. .. _class_@GlobalScope_constant_ERR_CONNECTION_ERROR:
  1795. .. rst-class:: classref-enumeration-constant
  1796. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CONNECTION_ERROR** = ``27``
  1797. Connection error.
  1798. .. _class_@GlobalScope_constant_ERR_CANT_ACQUIRE_RESOURCE:
  1799. .. rst-class:: classref-enumeration-constant
  1800. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CANT_ACQUIRE_RESOURCE** = ``28``
  1801. Can't acquire resource error.
  1802. .. _class_@GlobalScope_constant_ERR_CANT_FORK:
  1803. .. rst-class:: classref-enumeration-constant
  1804. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CANT_FORK** = ``29``
  1805. Can't fork process error.
  1806. .. _class_@GlobalScope_constant_ERR_INVALID_DATA:
  1807. .. rst-class:: classref-enumeration-constant
  1808. :ref:`Error<enum_@GlobalScope_Error>` **ERR_INVALID_DATA** = ``30``
  1809. Invalid data error.
  1810. .. _class_@GlobalScope_constant_ERR_INVALID_PARAMETER:
  1811. .. rst-class:: classref-enumeration-constant
  1812. :ref:`Error<enum_@GlobalScope_Error>` **ERR_INVALID_PARAMETER** = ``31``
  1813. Invalid parameter error.
  1814. .. _class_@GlobalScope_constant_ERR_ALREADY_EXISTS:
  1815. .. rst-class:: classref-enumeration-constant
  1816. :ref:`Error<enum_@GlobalScope_Error>` **ERR_ALREADY_EXISTS** = ``32``
  1817. Already exists error.
  1818. .. _class_@GlobalScope_constant_ERR_DOES_NOT_EXIST:
  1819. .. rst-class:: classref-enumeration-constant
  1820. :ref:`Error<enum_@GlobalScope_Error>` **ERR_DOES_NOT_EXIST** = ``33``
  1821. Does not exist error.
  1822. .. _class_@GlobalScope_constant_ERR_DATABASE_CANT_READ:
  1823. .. rst-class:: classref-enumeration-constant
  1824. :ref:`Error<enum_@GlobalScope_Error>` **ERR_DATABASE_CANT_READ** = ``34``
  1825. Database: Read error.
  1826. .. _class_@GlobalScope_constant_ERR_DATABASE_CANT_WRITE:
  1827. .. rst-class:: classref-enumeration-constant
  1828. :ref:`Error<enum_@GlobalScope_Error>` **ERR_DATABASE_CANT_WRITE** = ``35``
  1829. Database: Write error.
  1830. .. _class_@GlobalScope_constant_ERR_COMPILATION_FAILED:
  1831. .. rst-class:: classref-enumeration-constant
  1832. :ref:`Error<enum_@GlobalScope_Error>` **ERR_COMPILATION_FAILED** = ``36``
  1833. Compilation failed error.
  1834. .. _class_@GlobalScope_constant_ERR_METHOD_NOT_FOUND:
  1835. .. rst-class:: classref-enumeration-constant
  1836. :ref:`Error<enum_@GlobalScope_Error>` **ERR_METHOD_NOT_FOUND** = ``37``
  1837. Method not found error.
  1838. .. _class_@GlobalScope_constant_ERR_LINK_FAILED:
  1839. .. rst-class:: classref-enumeration-constant
  1840. :ref:`Error<enum_@GlobalScope_Error>` **ERR_LINK_FAILED** = ``38``
  1841. Linking failed error.
  1842. .. _class_@GlobalScope_constant_ERR_SCRIPT_FAILED:
  1843. .. rst-class:: classref-enumeration-constant
  1844. :ref:`Error<enum_@GlobalScope_Error>` **ERR_SCRIPT_FAILED** = ``39``
  1845. Script failed error.
  1846. .. _class_@GlobalScope_constant_ERR_CYCLIC_LINK:
  1847. .. rst-class:: classref-enumeration-constant
  1848. :ref:`Error<enum_@GlobalScope_Error>` **ERR_CYCLIC_LINK** = ``40``
  1849. Cycling link (import cycle) error.
  1850. .. _class_@GlobalScope_constant_ERR_INVALID_DECLARATION:
  1851. .. rst-class:: classref-enumeration-constant
  1852. :ref:`Error<enum_@GlobalScope_Error>` **ERR_INVALID_DECLARATION** = ``41``
  1853. Invalid declaration error.
  1854. .. _class_@GlobalScope_constant_ERR_DUPLICATE_SYMBOL:
  1855. .. rst-class:: classref-enumeration-constant
  1856. :ref:`Error<enum_@GlobalScope_Error>` **ERR_DUPLICATE_SYMBOL** = ``42``
  1857. Duplicate symbol error.
  1858. .. _class_@GlobalScope_constant_ERR_PARSE_ERROR:
  1859. .. rst-class:: classref-enumeration-constant
  1860. :ref:`Error<enum_@GlobalScope_Error>` **ERR_PARSE_ERROR** = ``43``
  1861. Parse error.
  1862. .. _class_@GlobalScope_constant_ERR_BUSY:
  1863. .. rst-class:: classref-enumeration-constant
  1864. :ref:`Error<enum_@GlobalScope_Error>` **ERR_BUSY** = ``44``
  1865. Busy error.
  1866. .. _class_@GlobalScope_constant_ERR_SKIP:
  1867. .. rst-class:: classref-enumeration-constant
  1868. :ref:`Error<enum_@GlobalScope_Error>` **ERR_SKIP** = ``45``
  1869. Skip error.
  1870. .. _class_@GlobalScope_constant_ERR_HELP:
  1871. .. rst-class:: classref-enumeration-constant
  1872. :ref:`Error<enum_@GlobalScope_Error>` **ERR_HELP** = ``46``
  1873. Help error. Used internally when passing ``--version`` or ``--help`` as executable options.
  1874. .. _class_@GlobalScope_constant_ERR_BUG:
  1875. .. rst-class:: classref-enumeration-constant
  1876. :ref:`Error<enum_@GlobalScope_Error>` **ERR_BUG** = ``47``
  1877. Bug error, caused by an implementation issue in the method.
  1878. \ **Note:** If a built-in method returns this code, please open an issue on `the GitHub Issue Tracker <https://github.com/godotengine/godot/issues>`__.
  1879. .. _class_@GlobalScope_constant_ERR_PRINTER_ON_FIRE:
  1880. .. rst-class:: classref-enumeration-constant
  1881. :ref:`Error<enum_@GlobalScope_Error>` **ERR_PRINTER_ON_FIRE** = ``48``
  1882. Printer on fire error (This is an easter egg, no built-in methods return this error code).
  1883. .. rst-class:: classref-item-separator
  1884. ----
  1885. .. _enum_@GlobalScope_PropertyHint:
  1886. .. rst-class:: classref-enumeration
  1887. enum **PropertyHint**: :ref:`🔗<enum_@GlobalScope_PropertyHint>`
  1888. .. _class_@GlobalScope_constant_PROPERTY_HINT_NONE:
  1889. .. rst-class:: classref-enumeration-constant
  1890. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NONE** = ``0``
  1891. The property has no hint for the editor.
  1892. .. _class_@GlobalScope_constant_PROPERTY_HINT_RANGE:
  1893. .. rst-class:: classref-enumeration-constant
  1894. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_RANGE** = ``1``
  1895. Hints that an :ref:`int<class_int>` or :ref:`float<class_float>` property should be within a range specified via the hint string ``"min,max"`` or ``"min,max,step"``. The hint string can optionally include ``"or_greater"`` and/or ``"or_less"`` to allow manual input going respectively above the max or below the min values.
  1896. \ **Example:** ``"-360,360,1,or_greater,or_less"``.
  1897. Additionally, other keywords can be included: ``"exp"`` for exponential range editing, ``"radians_as_degrees"`` for editing radian angles in degrees (the range values are also in degrees), ``"degrees"`` to hint at an angle and ``"hide_slider"`` to hide the slider.
  1898. .. _class_@GlobalScope_constant_PROPERTY_HINT_ENUM:
  1899. .. rst-class:: classref-enumeration-constant
  1900. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_ENUM** = ``2``
  1901. Hints that an :ref:`int<class_int>` or :ref:`String<class_String>` property is an enumerated value to pick in a list specified via a hint string.
  1902. The hint string is a comma separated list of names such as ``"Hello,Something,Else"``. Whitespaces are **not** removed from either end of a name. For integer properties, the first name in the list has value 0, the next 1, and so on. Explicit values can also be specified by appending ``:integer`` to the name, e.g. ``"Zero,One,Three:3,Four,Six:6"``.
  1903. .. _class_@GlobalScope_constant_PROPERTY_HINT_ENUM_SUGGESTION:
  1904. .. rst-class:: classref-enumeration-constant
  1905. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_ENUM_SUGGESTION** = ``3``
  1906. Hints that a :ref:`String<class_String>` property can be an enumerated value to pick in a list specified via a hint string such as ``"Hello,Something,Else"``.
  1907. Unlike :ref:`PROPERTY_HINT_ENUM<class_@GlobalScope_constant_PROPERTY_HINT_ENUM>`, a property with this hint still accepts arbitrary values and can be empty. The list of values serves to suggest possible values.
  1908. .. _class_@GlobalScope_constant_PROPERTY_HINT_EXP_EASING:
  1909. .. rst-class:: classref-enumeration-constant
  1910. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_EXP_EASING** = ``4``
  1911. Hints that a :ref:`float<class_float>` property should be edited via an exponential easing function. The hint string can include ``"attenuation"`` to flip the curve horizontally and/or ``"positive_only"`` to exclude in/out easing and limit values to be greater than or equal to zero.
  1912. .. _class_@GlobalScope_constant_PROPERTY_HINT_LINK:
  1913. .. rst-class:: classref-enumeration-constant
  1914. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LINK** = ``5``
  1915. Hints that a vector property should allow its components to be linked. For example, this allows :ref:`Vector2.x<class_Vector2_property_x>` and :ref:`Vector2.y<class_Vector2_property_y>` to be edited together.
  1916. .. _class_@GlobalScope_constant_PROPERTY_HINT_FLAGS:
  1917. .. rst-class:: classref-enumeration-constant
  1918. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_FLAGS** = ``6``
  1919. Hints that an :ref:`int<class_int>` property is a bitmask with named bit flags.
  1920. The hint string is a comma separated list of names such as ``"Bit0,Bit1,Bit2,Bit3"``. Whitespaces are **not** removed from either end of a name. The first name in the list has value 1, the next 2, then 4, 8, 16 and so on. Explicit values can also be specified by appending ``:integer`` to the name, e.g. ``"A:4,B:8,C:16"``. You can also combine several flags (``"A:4,B:8,AB:12,C:16"``).
  1921. \ **Note:** A flag value must be at least ``1`` and at most ``2 ** 32 - 1``.
  1922. \ **Note:** Unlike :ref:`PROPERTY_HINT_ENUM<class_@GlobalScope_constant_PROPERTY_HINT_ENUM>`, the previous explicit value is not taken into account. For the hint ``"A:16,B,C"``, A is 16, B is 2, C is 4.
  1923. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_2D_RENDER:
  1924. .. rst-class:: classref-enumeration-constant
  1925. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_2D_RENDER** = ``7``
  1926. Hints that an :ref:`int<class_int>` property is a bitmask using the optionally named 2D render layers.
  1927. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_2D_PHYSICS:
  1928. .. rst-class:: classref-enumeration-constant
  1929. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_2D_PHYSICS** = ``8``
  1930. Hints that an :ref:`int<class_int>` property is a bitmask using the optionally named 2D physics layers.
  1931. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_2D_NAVIGATION:
  1932. .. rst-class:: classref-enumeration-constant
  1933. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_2D_NAVIGATION** = ``9``
  1934. Hints that an :ref:`int<class_int>` property is a bitmask using the optionally named 2D navigation layers.
  1935. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_3D_RENDER:
  1936. .. rst-class:: classref-enumeration-constant
  1937. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_3D_RENDER** = ``10``
  1938. Hints that an :ref:`int<class_int>` property is a bitmask using the optionally named 3D render layers.
  1939. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_3D_PHYSICS:
  1940. .. rst-class:: classref-enumeration-constant
  1941. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_3D_PHYSICS** = ``11``
  1942. Hints that an :ref:`int<class_int>` property is a bitmask using the optionally named 3D physics layers.
  1943. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_3D_NAVIGATION:
  1944. .. rst-class:: classref-enumeration-constant
  1945. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_3D_NAVIGATION** = ``12``
  1946. Hints that an :ref:`int<class_int>` property is a bitmask using the optionally named 3D navigation layers.
  1947. .. _class_@GlobalScope_constant_PROPERTY_HINT_LAYERS_AVOIDANCE:
  1948. .. rst-class:: classref-enumeration-constant
  1949. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LAYERS_AVOIDANCE** = ``37``
  1950. Hints that an integer property is a bitmask using the optionally named avoidance layers.
  1951. .. _class_@GlobalScope_constant_PROPERTY_HINT_FILE:
  1952. .. rst-class:: classref-enumeration-constant
  1953. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_FILE** = ``13``
  1954. Hints that a :ref:`String<class_String>` property is a path to a file. Editing it will show a file dialog for picking the path. The hint string can be a set of filters with wildcards like ``"*.png,*.jpg"``.
  1955. .. _class_@GlobalScope_constant_PROPERTY_HINT_DIR:
  1956. .. rst-class:: classref-enumeration-constant
  1957. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_DIR** = ``14``
  1958. Hints that a :ref:`String<class_String>` property is a path to a directory. Editing it will show a file dialog for picking the path.
  1959. .. _class_@GlobalScope_constant_PROPERTY_HINT_GLOBAL_FILE:
  1960. .. rst-class:: classref-enumeration-constant
  1961. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_GLOBAL_FILE** = ``15``
  1962. Hints that a :ref:`String<class_String>` property is an absolute path to a file outside the project folder. Editing it will show a file dialog for picking the path. The hint string can be a set of filters with wildcards, like ``"*.png,*.jpg"``.
  1963. .. _class_@GlobalScope_constant_PROPERTY_HINT_GLOBAL_DIR:
  1964. .. rst-class:: classref-enumeration-constant
  1965. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_GLOBAL_DIR** = ``16``
  1966. Hints that a :ref:`String<class_String>` property is an absolute path to a directory outside the project folder. Editing it will show a file dialog for picking the path.
  1967. .. _class_@GlobalScope_constant_PROPERTY_HINT_RESOURCE_TYPE:
  1968. .. rst-class:: classref-enumeration-constant
  1969. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_RESOURCE_TYPE** = ``17``
  1970. Hints that a property is an instance of a :ref:`Resource<class_Resource>`-derived type, optionally specified via the hint string (e.g. ``"Texture2D"``). Editing it will show a popup menu of valid resource types to instantiate.
  1971. .. _class_@GlobalScope_constant_PROPERTY_HINT_MULTILINE_TEXT:
  1972. .. rst-class:: classref-enumeration-constant
  1973. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_MULTILINE_TEXT** = ``18``
  1974. Hints that a :ref:`String<class_String>` property is text with line breaks. Editing it will show a text input field where line breaks can be typed.
  1975. .. _class_@GlobalScope_constant_PROPERTY_HINT_EXPRESSION:
  1976. .. rst-class:: classref-enumeration-constant
  1977. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_EXPRESSION** = ``19``
  1978. Hints that a :ref:`String<class_String>` property is an :ref:`Expression<class_Expression>`.
  1979. .. _class_@GlobalScope_constant_PROPERTY_HINT_PLACEHOLDER_TEXT:
  1980. .. rst-class:: classref-enumeration-constant
  1981. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_PLACEHOLDER_TEXT** = ``20``
  1982. Hints that a :ref:`String<class_String>` property should show a placeholder text on its input field, if empty. The hint string is the placeholder text to use.
  1983. .. _class_@GlobalScope_constant_PROPERTY_HINT_COLOR_NO_ALPHA:
  1984. .. rst-class:: classref-enumeration-constant
  1985. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_COLOR_NO_ALPHA** = ``21``
  1986. Hints that a :ref:`Color<class_Color>` property should be edited without affecting its transparency (:ref:`Color.a<class_Color_property_a>` is not editable).
  1987. .. _class_@GlobalScope_constant_PROPERTY_HINT_OBJECT_ID:
  1988. .. rst-class:: classref-enumeration-constant
  1989. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_OBJECT_ID** = ``22``
  1990. Hints that the property's value is an object encoded as object ID, with its type specified in the hint string. Used by the debugger.
  1991. .. _class_@GlobalScope_constant_PROPERTY_HINT_TYPE_STRING:
  1992. .. rst-class:: classref-enumeration-constant
  1993. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_TYPE_STRING** = ``23``
  1994. If a property is :ref:`String<class_String>`, hints that the property represents a particular type (class). This allows to select a type from the create dialog. The property will store the selected type as a string.
  1995. If a property is :ref:`Array<class_Array>`, hints the editor how to show elements. The ``hint_string`` must encode nested types using ``":"`` and ``"/"``.
  1996. .. tabs::
  1997. .. code-tab:: gdscript
  1998. # Array of elem_type.
  1999. hint_string = "%d:" % [elem_type]
  2000. hint_string = "%d/%d:%s" % [elem_type, elem_hint, elem_hint_string]
  2001. # Two-dimensional array of elem_type (array of arrays of elem_type).
  2002. hint_string = "%d:%d:" % [TYPE_ARRAY, elem_type]
  2003. hint_string = "%d:%d/%d:%s" % [TYPE_ARRAY, elem_type, elem_hint, elem_hint_string]
  2004. # Three-dimensional array of elem_type (array of arrays of arrays of elem_type).
  2005. hint_string = "%d:%d:%d:" % [TYPE_ARRAY, TYPE_ARRAY, elem_type]
  2006. hint_string = "%d:%d:%d/%d:%s" % [TYPE_ARRAY, TYPE_ARRAY, elem_type, elem_hint, elem_hint_string]
  2007. .. code-tab:: csharp
  2008. // Array of elemType.
  2009. hintString = $"{elemType:D}:";
  2010. hintString = $"{elemType:}/{elemHint:D}:{elemHintString}";
  2011. // Two-dimensional array of elemType (array of arrays of elemType).
  2012. hintString = $"{Variant.Type.Array:D}:{elemType:D}:";
  2013. hintString = $"{Variant.Type.Array:D}:{elemType:D}/{elemHint:D}:{elemHintString}";
  2014. // Three-dimensional array of elemType (array of arrays of arrays of elemType).
  2015. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Array:D}:{elemType:D}:";
  2016. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Array:D}:{elemType:D}/{elemHint:D}:{elemHintString}";
  2017. \ **Examples:**\
  2018. .. tabs::
  2019. .. code-tab:: gdscript
  2020. hint_string = "%d:" % [TYPE_INT] # Array of integers.
  2021. hint_string = "%d/%d:1,10,1" % [TYPE_INT, PROPERTY_HINT_RANGE] # Array of integers (in range from 1 to 10).
  2022. hint_string = "%d/%d:Zero,One,Two" % [TYPE_INT, PROPERTY_HINT_ENUM] # Array of integers (an enum).
  2023. hint_string = "%d/%d:Zero,One,Three:3,Six:6" % [TYPE_INT, PROPERTY_HINT_ENUM] # Array of integers (an enum).
  2024. hint_string = "%d/%d:*.png" % [TYPE_STRING, PROPERTY_HINT_FILE] # Array of strings (file paths).
  2025. hint_string = "%d/%d:Texture2D" % [TYPE_OBJECT, PROPERTY_HINT_RESOURCE_TYPE] # Array of textures.
  2026. hint_string = "%d:%d:" % [TYPE_ARRAY, TYPE_FLOAT] # Two-dimensional array of floats.
  2027. hint_string = "%d:%d/%d:" % [TYPE_ARRAY, TYPE_STRING, PROPERTY_HINT_MULTILINE_TEXT] # Two-dimensional array of multiline strings.
  2028. hint_string = "%d:%d/%d:-1,1,0.1" % [TYPE_ARRAY, TYPE_FLOAT, PROPERTY_HINT_RANGE] # Two-dimensional array of floats (in range from -1 to 1).
  2029. hint_string = "%d:%d/%d:Texture2D" % [TYPE_ARRAY, TYPE_OBJECT, PROPERTY_HINT_RESOURCE_TYPE] # Two-dimensional array of textures.
  2030. .. code-tab:: csharp
  2031. hintString = $"{Variant.Type.Int:D}/{PropertyHint.Range:D}:1,10,1"; // Array of integers (in range from 1 to 10).
  2032. hintString = $"{Variant.Type.Int:D}/{PropertyHint.Enum:D}:Zero,One,Two"; // Array of integers (an enum).
  2033. hintString = $"{Variant.Type.Int:D}/{PropertyHint.Enum:D}:Zero,One,Three:3,Six:6"; // Array of integers (an enum).
  2034. hintString = $"{Variant.Type.String:D}/{PropertyHint.File:D}:*.png"; // Array of strings (file paths).
  2035. hintString = $"{Variant.Type.Object:D}/{PropertyHint.ResourceType:D}:Texture2D"; // Array of textures.
  2036. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Float:D}:"; // Two-dimensional array of floats.
  2037. hintString = $"{Variant.Type.Array:D}:{Variant.Type.String:D}/{PropertyHint.MultilineText:D}:"; // Two-dimensional array of multiline strings.
  2038. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Float:D}/{PropertyHint.Range:D}:-1,1,0.1"; // Two-dimensional array of floats (in range from -1 to 1).
  2039. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Object:D}/{PropertyHint.ResourceType:D}:Texture2D"; // Two-dimensional array of textures.
  2040. \ **Note:** The trailing colon is required for properly detecting built-in types.
  2041. .. _class_@GlobalScope_constant_PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE:
  2042. .. rst-class:: classref-enumeration-constant
  2043. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE** = ``24``
  2044. **Deprecated:** This hint is not used by the engine.
  2045. .. _class_@GlobalScope_constant_PROPERTY_HINT_OBJECT_TOO_BIG:
  2046. .. rst-class:: classref-enumeration-constant
  2047. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_OBJECT_TOO_BIG** = ``25``
  2048. Hints that an object is too big to be sent via the debugger.
  2049. .. _class_@GlobalScope_constant_PROPERTY_HINT_NODE_PATH_VALID_TYPES:
  2050. .. rst-class:: classref-enumeration-constant
  2051. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NODE_PATH_VALID_TYPES** = ``26``
  2052. Hints that the hint string specifies valid node types for property of type :ref:`NodePath<class_NodePath>`.
  2053. .. _class_@GlobalScope_constant_PROPERTY_HINT_SAVE_FILE:
  2054. .. rst-class:: classref-enumeration-constant
  2055. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_SAVE_FILE** = ``27``
  2056. Hints that a :ref:`String<class_String>` property is a path to a file. Editing it will show a file dialog for picking the path for the file to be saved at. The dialog has access to the project's directory. The hint string can be a set of filters with wildcards like ``"*.png,*.jpg"``. See also :ref:`FileDialog.filters<class_FileDialog_property_filters>`.
  2057. .. _class_@GlobalScope_constant_PROPERTY_HINT_GLOBAL_SAVE_FILE:
  2058. .. rst-class:: classref-enumeration-constant
  2059. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_GLOBAL_SAVE_FILE** = ``28``
  2060. Hints that a :ref:`String<class_String>` property is a path to a file. Editing it will show a file dialog for picking the path for the file to be saved at. The dialog has access to the entire filesystem. The hint string can be a set of filters with wildcards like ``"*.png,*.jpg"``. See also :ref:`FileDialog.filters<class_FileDialog_property_filters>`.
  2061. .. _class_@GlobalScope_constant_PROPERTY_HINT_INT_IS_OBJECTID:
  2062. .. rst-class:: classref-enumeration-constant
  2063. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_INT_IS_OBJECTID** = ``29``
  2064. **Deprecated:** This hint is not used by the engine.
  2065. .. _class_@GlobalScope_constant_PROPERTY_HINT_INT_IS_POINTER:
  2066. .. rst-class:: classref-enumeration-constant
  2067. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_INT_IS_POINTER** = ``30``
  2068. Hints that an :ref:`int<class_int>` property is a pointer. Used by GDExtension.
  2069. .. _class_@GlobalScope_constant_PROPERTY_HINT_ARRAY_TYPE:
  2070. .. rst-class:: classref-enumeration-constant
  2071. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_ARRAY_TYPE** = ``31``
  2072. Hints that a property is an :ref:`Array<class_Array>` with the stored type specified in the hint string.
  2073. .. _class_@GlobalScope_constant_PROPERTY_HINT_DICTIONARY_TYPE:
  2074. .. rst-class:: classref-enumeration-constant
  2075. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_DICTIONARY_TYPE** = ``38``
  2076. Hints that a property is a :ref:`Dictionary<class_Dictionary>` with the stored types specified in the hint string.
  2077. .. _class_@GlobalScope_constant_PROPERTY_HINT_LOCALE_ID:
  2078. .. rst-class:: classref-enumeration-constant
  2079. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LOCALE_ID** = ``32``
  2080. Hints that a string property is a locale code. Editing it will show a locale dialog for picking language and country.
  2081. .. _class_@GlobalScope_constant_PROPERTY_HINT_LOCALIZABLE_STRING:
  2082. .. rst-class:: classref-enumeration-constant
  2083. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LOCALIZABLE_STRING** = ``33``
  2084. Hints that a dictionary property is string translation map. Dictionary keys are locale codes and, values are translated strings.
  2085. .. _class_@GlobalScope_constant_PROPERTY_HINT_NODE_TYPE:
  2086. .. rst-class:: classref-enumeration-constant
  2087. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NODE_TYPE** = ``34``
  2088. Hints that a property is an instance of a :ref:`Node<class_Node>`-derived type, optionally specified via the hint string (e.g. ``"Node2D"``). Editing it will show a dialog for picking a node from the scene.
  2089. .. _class_@GlobalScope_constant_PROPERTY_HINT_HIDE_QUATERNION_EDIT:
  2090. .. rst-class:: classref-enumeration-constant
  2091. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_HIDE_QUATERNION_EDIT** = ``35``
  2092. Hints that a quaternion property should disable the temporary euler editor.
  2093. .. _class_@GlobalScope_constant_PROPERTY_HINT_PASSWORD:
  2094. .. rst-class:: classref-enumeration-constant
  2095. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_PASSWORD** = ``36``
  2096. Hints that a string property is a password, and every character is replaced with the secret character.
  2097. .. _class_@GlobalScope_constant_PROPERTY_HINT_TOOL_BUTTON:
  2098. .. rst-class:: classref-enumeration-constant
  2099. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_TOOL_BUTTON** = ``39``
  2100. Hints that a :ref:`Callable<class_Callable>` property should be displayed as a clickable button. When the button is pressed, the callable is called. The hint string specifies the button text and optionally an icon from the ``"EditorIcons"`` theme type.
  2101. .. code:: text
  2102. "Click me!" - A button with the text "Click me!" and the default "Callable" icon.
  2103. "Click me!,ColorRect" - A button with the text "Click me!" and the "ColorRect" icon.
  2104. \ **Note:** A :ref:`Callable<class_Callable>` cannot be properly serialized and stored in a file, so it is recommended to use :ref:`PROPERTY_USAGE_EDITOR<class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR>` instead of :ref:`PROPERTY_USAGE_DEFAULT<class_@GlobalScope_constant_PROPERTY_USAGE_DEFAULT>`.
  2105. .. _class_@GlobalScope_constant_PROPERTY_HINT_MAX:
  2106. .. rst-class:: classref-enumeration-constant
  2107. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_MAX** = ``40``
  2108. Represents the size of the :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` enum.
  2109. .. rst-class:: classref-item-separator
  2110. ----
  2111. .. _enum_@GlobalScope_PropertyUsageFlags:
  2112. .. rst-class:: classref-enumeration
  2113. flags **PropertyUsageFlags**: :ref:`🔗<enum_@GlobalScope_PropertyUsageFlags>`
  2114. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NONE:
  2115. .. rst-class:: classref-enumeration-constant
  2116. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NONE** = ``0``
  2117. The property is not stored, and does not display in the editor. This is the default for non-exported properties.
  2118. .. _class_@GlobalScope_constant_PROPERTY_USAGE_STORAGE:
  2119. .. rst-class:: classref-enumeration-constant
  2120. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_STORAGE** = ``2``
  2121. The property is serialized and saved in the scene file (default for exported properties).
  2122. .. _class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR:
  2123. .. rst-class:: classref-enumeration-constant
  2124. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_EDITOR** = ``4``
  2125. The property is shown in the :ref:`EditorInspector<class_EditorInspector>` (default for exported properties).
  2126. .. _class_@GlobalScope_constant_PROPERTY_USAGE_INTERNAL:
  2127. .. rst-class:: classref-enumeration-constant
  2128. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_INTERNAL** = ``8``
  2129. The property is excluded from the class reference.
  2130. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CHECKABLE:
  2131. .. rst-class:: classref-enumeration-constant
  2132. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CHECKABLE** = ``16``
  2133. The property can be checked in the :ref:`EditorInspector<class_EditorInspector>`.
  2134. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CHECKED:
  2135. .. rst-class:: classref-enumeration-constant
  2136. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CHECKED** = ``32``
  2137. The property is checked in the :ref:`EditorInspector<class_EditorInspector>`.
  2138. .. _class_@GlobalScope_constant_PROPERTY_USAGE_GROUP:
  2139. .. rst-class:: classref-enumeration-constant
  2140. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_GROUP** = ``64``
  2141. Used to group properties together in the editor. See :ref:`EditorInspector<class_EditorInspector>`.
  2142. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CATEGORY:
  2143. .. rst-class:: classref-enumeration-constant
  2144. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CATEGORY** = ``128``
  2145. Used to categorize properties together in the editor.
  2146. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SUBGROUP:
  2147. .. rst-class:: classref-enumeration-constant
  2148. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SUBGROUP** = ``256``
  2149. Used to group properties together in the editor in a subgroup (under a group). See :ref:`EditorInspector<class_EditorInspector>`.
  2150. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CLASS_IS_BITFIELD:
  2151. .. rst-class:: classref-enumeration-constant
  2152. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CLASS_IS_BITFIELD** = ``512``
  2153. The property is a bitfield, i.e. it contains multiple flags represented as bits.
  2154. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NO_INSTANCE_STATE:
  2155. .. rst-class:: classref-enumeration-constant
  2156. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NO_INSTANCE_STATE** = ``1024``
  2157. The property does not save its state in :ref:`PackedScene<class_PackedScene>`.
  2158. .. _class_@GlobalScope_constant_PROPERTY_USAGE_RESTART_IF_CHANGED:
  2159. .. rst-class:: classref-enumeration-constant
  2160. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_RESTART_IF_CHANGED** = ``2048``
  2161. Editing the property prompts the user for restarting the editor.
  2162. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SCRIPT_VARIABLE:
  2163. .. rst-class:: classref-enumeration-constant
  2164. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SCRIPT_VARIABLE** = ``4096``
  2165. The property is a script variable. :ref:`PROPERTY_USAGE_SCRIPT_VARIABLE<class_@GlobalScope_constant_PROPERTY_USAGE_SCRIPT_VARIABLE>` can be used to distinguish between exported script variables from built-in variables (which don't have this usage flag). By default, :ref:`PROPERTY_USAGE_SCRIPT_VARIABLE<class_@GlobalScope_constant_PROPERTY_USAGE_SCRIPT_VARIABLE>` is **not** applied to variables that are created by overriding :ref:`Object._get_property_list<class_Object_private_method__get_property_list>` in a script.
  2166. .. _class_@GlobalScope_constant_PROPERTY_USAGE_STORE_IF_NULL:
  2167. .. rst-class:: classref-enumeration-constant
  2168. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_STORE_IF_NULL** = ``8192``
  2169. The property value of type :ref:`Object<class_Object>` will be stored even if its value is ``null``.
  2170. .. _class_@GlobalScope_constant_PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED:
  2171. .. rst-class:: classref-enumeration-constant
  2172. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED** = ``16384``
  2173. If this property is modified, all inspector fields will be refreshed.
  2174. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE:
  2175. .. rst-class:: classref-enumeration-constant
  2176. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE** = ``32768``
  2177. **Deprecated:** This flag is not used by the engine.
  2178. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CLASS_IS_ENUM:
  2179. .. rst-class:: classref-enumeration-constant
  2180. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CLASS_IS_ENUM** = ``65536``
  2181. The property is a variable of enum type, i.e. it only takes named integer constants from its associated enumeration.
  2182. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NIL_IS_VARIANT:
  2183. .. rst-class:: classref-enumeration-constant
  2184. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NIL_IS_VARIANT** = ``131072``
  2185. If property has ``nil`` as default value, its type will be :ref:`Variant<class_Variant>`.
  2186. .. _class_@GlobalScope_constant_PROPERTY_USAGE_ARRAY:
  2187. .. rst-class:: classref-enumeration-constant
  2188. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_ARRAY** = ``262144``
  2189. The property is an array.
  2190. .. _class_@GlobalScope_constant_PROPERTY_USAGE_ALWAYS_DUPLICATE:
  2191. .. rst-class:: classref-enumeration-constant
  2192. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_ALWAYS_DUPLICATE** = ``524288``
  2193. When duplicating a resource with :ref:`Resource.duplicate<class_Resource_method_duplicate>`, and this flag is set on a property of that resource, the property should always be duplicated, regardless of the ``subresources`` bool parameter.
  2194. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NEVER_DUPLICATE:
  2195. .. rst-class:: classref-enumeration-constant
  2196. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NEVER_DUPLICATE** = ``1048576``
  2197. When duplicating a resource with :ref:`Resource.duplicate<class_Resource_method_duplicate>`, and this flag is set on a property of that resource, the property should never be duplicated, regardless of the ``subresources`` bool parameter.
  2198. .. _class_@GlobalScope_constant_PROPERTY_USAGE_HIGH_END_GFX:
  2199. .. rst-class:: classref-enumeration-constant
  2200. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_HIGH_END_GFX** = ``2097152``
  2201. The property is only shown in the editor if modern renderers are supported (the Compatibility rendering method is excluded).
  2202. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT:
  2203. .. rst-class:: classref-enumeration-constant
  2204. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT** = ``4194304``
  2205. The :ref:`NodePath<class_NodePath>` property will always be relative to the scene's root. Mostly useful for local resources.
  2206. .. _class_@GlobalScope_constant_PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT:
  2207. .. rst-class:: classref-enumeration-constant
  2208. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT** = ``8388608``
  2209. Use when a resource is created on the fly, i.e. the getter will always return a different instance. :ref:`ResourceSaver<class_ResourceSaver>` needs this information to properly save such resources.
  2210. .. _class_@GlobalScope_constant_PROPERTY_USAGE_KEYING_INCREMENTS:
  2211. .. rst-class:: classref-enumeration-constant
  2212. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_KEYING_INCREMENTS** = ``16777216``
  2213. Inserting an animation key frame of this property will automatically increment the value, allowing to easily keyframe multiple values in a row.
  2214. .. _class_@GlobalScope_constant_PROPERTY_USAGE_DEFERRED_SET_RESOURCE:
  2215. .. rst-class:: classref-enumeration-constant
  2216. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_DEFERRED_SET_RESOURCE** = ``33554432``
  2217. **Deprecated:** This flag is not used by the engine.
  2218. .. _class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT:
  2219. .. rst-class:: classref-enumeration-constant
  2220. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT** = ``67108864``
  2221. When this property is a :ref:`Resource<class_Resource>` and base object is a :ref:`Node<class_Node>`, a resource instance will be automatically created whenever the node is created in the editor.
  2222. .. _class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR_BASIC_SETTING:
  2223. .. rst-class:: classref-enumeration-constant
  2224. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_EDITOR_BASIC_SETTING** = ``134217728``
  2225. The property is considered a basic setting and will appear even when advanced mode is disabled. Used for project settings.
  2226. .. _class_@GlobalScope_constant_PROPERTY_USAGE_READ_ONLY:
  2227. .. rst-class:: classref-enumeration-constant
  2228. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_READ_ONLY** = ``268435456``
  2229. The property is read-only in the :ref:`EditorInspector<class_EditorInspector>`.
  2230. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SECRET:
  2231. .. rst-class:: classref-enumeration-constant
  2232. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SECRET** = ``536870912``
  2233. An export preset property with this flag contains confidential information and is stored separately from the rest of the export preset configuration.
  2234. .. _class_@GlobalScope_constant_PROPERTY_USAGE_DEFAULT:
  2235. .. rst-class:: classref-enumeration-constant
  2236. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_DEFAULT** = ``6``
  2237. Default usage (storage and editor).
  2238. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NO_EDITOR:
  2239. .. rst-class:: classref-enumeration-constant
  2240. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NO_EDITOR** = ``2``
  2241. Default usage but without showing the property in the editor (storage).
  2242. .. rst-class:: classref-item-separator
  2243. ----
  2244. .. _enum_@GlobalScope_MethodFlags:
  2245. .. rst-class:: classref-enumeration
  2246. flags **MethodFlags**: :ref:`🔗<enum_@GlobalScope_MethodFlags>`
  2247. .. _class_@GlobalScope_constant_METHOD_FLAG_NORMAL:
  2248. .. rst-class:: classref-enumeration-constant
  2249. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_NORMAL** = ``1``
  2250. Flag for a normal method.
  2251. .. _class_@GlobalScope_constant_METHOD_FLAG_EDITOR:
  2252. .. rst-class:: classref-enumeration-constant
  2253. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_EDITOR** = ``2``
  2254. Flag for an editor method.
  2255. .. _class_@GlobalScope_constant_METHOD_FLAG_CONST:
  2256. .. rst-class:: classref-enumeration-constant
  2257. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_CONST** = ``4``
  2258. Flag for a constant method.
  2259. .. _class_@GlobalScope_constant_METHOD_FLAG_VIRTUAL:
  2260. .. rst-class:: classref-enumeration-constant
  2261. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_VIRTUAL** = ``8``
  2262. Flag for a virtual method.
  2263. .. _class_@GlobalScope_constant_METHOD_FLAG_VARARG:
  2264. .. rst-class:: classref-enumeration-constant
  2265. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_VARARG** = ``16``
  2266. Flag for a method with a variable number of arguments.
  2267. .. _class_@GlobalScope_constant_METHOD_FLAG_STATIC:
  2268. .. rst-class:: classref-enumeration-constant
  2269. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_STATIC** = ``32``
  2270. Flag for a static method.
  2271. .. _class_@GlobalScope_constant_METHOD_FLAG_OBJECT_CORE:
  2272. .. rst-class:: classref-enumeration-constant
  2273. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_OBJECT_CORE** = ``64``
  2274. Used internally. Allows to not dump core virtual methods (such as :ref:`Object._notification<class_Object_private_method__notification>`) to the JSON API.
  2275. .. _class_@GlobalScope_constant_METHOD_FLAGS_DEFAULT:
  2276. .. rst-class:: classref-enumeration-constant
  2277. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAGS_DEFAULT** = ``1``
  2278. Default method flags (normal).
  2279. .. rst-class:: classref-item-separator
  2280. ----
  2281. .. _enum_@GlobalScope_Variant.Type:
  2282. .. rst-class:: classref-enumeration
  2283. enum **Variant.Type**: :ref:`🔗<enum_@GlobalScope_Variant.Type>`
  2284. .. _class_@GlobalScope_constant_TYPE_NIL:
  2285. .. rst-class:: classref-enumeration-constant
  2286. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_NIL** = ``0``
  2287. Variable is ``null``.
  2288. .. _class_@GlobalScope_constant_TYPE_BOOL:
  2289. .. rst-class:: classref-enumeration-constant
  2290. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_BOOL** = ``1``
  2291. Variable is of type :ref:`bool<class_bool>`.
  2292. .. _class_@GlobalScope_constant_TYPE_INT:
  2293. .. rst-class:: classref-enumeration-constant
  2294. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_INT** = ``2``
  2295. Variable is of type :ref:`int<class_int>`.
  2296. .. _class_@GlobalScope_constant_TYPE_FLOAT:
  2297. .. rst-class:: classref-enumeration-constant
  2298. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_FLOAT** = ``3``
  2299. Variable is of type :ref:`float<class_float>`.
  2300. .. _class_@GlobalScope_constant_TYPE_STRING:
  2301. .. rst-class:: classref-enumeration-constant
  2302. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_STRING** = ``4``
  2303. Variable is of type :ref:`String<class_String>`.
  2304. .. _class_@GlobalScope_constant_TYPE_VECTOR2:
  2305. .. rst-class:: classref-enumeration-constant
  2306. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR2** = ``5``
  2307. Variable is of type :ref:`Vector2<class_Vector2>`.
  2308. .. _class_@GlobalScope_constant_TYPE_VECTOR2I:
  2309. .. rst-class:: classref-enumeration-constant
  2310. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR2I** = ``6``
  2311. Variable is of type :ref:`Vector2i<class_Vector2i>`.
  2312. .. _class_@GlobalScope_constant_TYPE_RECT2:
  2313. .. rst-class:: classref-enumeration-constant
  2314. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_RECT2** = ``7``
  2315. Variable is of type :ref:`Rect2<class_Rect2>`.
  2316. .. _class_@GlobalScope_constant_TYPE_RECT2I:
  2317. .. rst-class:: classref-enumeration-constant
  2318. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_RECT2I** = ``8``
  2319. Variable is of type :ref:`Rect2i<class_Rect2i>`.
  2320. .. _class_@GlobalScope_constant_TYPE_VECTOR3:
  2321. .. rst-class:: classref-enumeration-constant
  2322. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR3** = ``9``
  2323. Variable is of type :ref:`Vector3<class_Vector3>`.
  2324. .. _class_@GlobalScope_constant_TYPE_VECTOR3I:
  2325. .. rst-class:: classref-enumeration-constant
  2326. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR3I** = ``10``
  2327. Variable is of type :ref:`Vector3i<class_Vector3i>`.
  2328. .. _class_@GlobalScope_constant_TYPE_TRANSFORM2D:
  2329. .. rst-class:: classref-enumeration-constant
  2330. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_TRANSFORM2D** = ``11``
  2331. Variable is of type :ref:`Transform2D<class_Transform2D>`.
  2332. .. _class_@GlobalScope_constant_TYPE_VECTOR4:
  2333. .. rst-class:: classref-enumeration-constant
  2334. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR4** = ``12``
  2335. Variable is of type :ref:`Vector4<class_Vector4>`.
  2336. .. _class_@GlobalScope_constant_TYPE_VECTOR4I:
  2337. .. rst-class:: classref-enumeration-constant
  2338. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR4I** = ``13``
  2339. Variable is of type :ref:`Vector4i<class_Vector4i>`.
  2340. .. _class_@GlobalScope_constant_TYPE_PLANE:
  2341. .. rst-class:: classref-enumeration-constant
  2342. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PLANE** = ``14``
  2343. Variable is of type :ref:`Plane<class_Plane>`.
  2344. .. _class_@GlobalScope_constant_TYPE_QUATERNION:
  2345. .. rst-class:: classref-enumeration-constant
  2346. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_QUATERNION** = ``15``
  2347. Variable is of type :ref:`Quaternion<class_Quaternion>`.
  2348. .. _class_@GlobalScope_constant_TYPE_AABB:
  2349. .. rst-class:: classref-enumeration-constant
  2350. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_AABB** = ``16``
  2351. Variable is of type :ref:`AABB<class_AABB>`.
  2352. .. _class_@GlobalScope_constant_TYPE_BASIS:
  2353. .. rst-class:: classref-enumeration-constant
  2354. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_BASIS** = ``17``
  2355. Variable is of type :ref:`Basis<class_Basis>`.
  2356. .. _class_@GlobalScope_constant_TYPE_TRANSFORM3D:
  2357. .. rst-class:: classref-enumeration-constant
  2358. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_TRANSFORM3D** = ``18``
  2359. Variable is of type :ref:`Transform3D<class_Transform3D>`.
  2360. .. _class_@GlobalScope_constant_TYPE_PROJECTION:
  2361. .. rst-class:: classref-enumeration-constant
  2362. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PROJECTION** = ``19``
  2363. Variable is of type :ref:`Projection<class_Projection>`.
  2364. .. _class_@GlobalScope_constant_TYPE_COLOR:
  2365. .. rst-class:: classref-enumeration-constant
  2366. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_COLOR** = ``20``
  2367. Variable is of type :ref:`Color<class_Color>`.
  2368. .. _class_@GlobalScope_constant_TYPE_STRING_NAME:
  2369. .. rst-class:: classref-enumeration-constant
  2370. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_STRING_NAME** = ``21``
  2371. Variable is of type :ref:`StringName<class_StringName>`.
  2372. .. _class_@GlobalScope_constant_TYPE_NODE_PATH:
  2373. .. rst-class:: classref-enumeration-constant
  2374. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_NODE_PATH** = ``22``
  2375. Variable is of type :ref:`NodePath<class_NodePath>`.
  2376. .. _class_@GlobalScope_constant_TYPE_RID:
  2377. .. rst-class:: classref-enumeration-constant
  2378. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_RID** = ``23``
  2379. Variable is of type :ref:`RID<class_RID>`.
  2380. .. _class_@GlobalScope_constant_TYPE_OBJECT:
  2381. .. rst-class:: classref-enumeration-constant
  2382. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_OBJECT** = ``24``
  2383. Variable is of type :ref:`Object<class_Object>`.
  2384. .. _class_@GlobalScope_constant_TYPE_CALLABLE:
  2385. .. rst-class:: classref-enumeration-constant
  2386. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_CALLABLE** = ``25``
  2387. Variable is of type :ref:`Callable<class_Callable>`.
  2388. .. _class_@GlobalScope_constant_TYPE_SIGNAL:
  2389. .. rst-class:: classref-enumeration-constant
  2390. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_SIGNAL** = ``26``
  2391. Variable is of type :ref:`Signal<class_Signal>`.
  2392. .. _class_@GlobalScope_constant_TYPE_DICTIONARY:
  2393. .. rst-class:: classref-enumeration-constant
  2394. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_DICTIONARY** = ``27``
  2395. Variable is of type :ref:`Dictionary<class_Dictionary>`.
  2396. .. _class_@GlobalScope_constant_TYPE_ARRAY:
  2397. .. rst-class:: classref-enumeration-constant
  2398. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_ARRAY** = ``28``
  2399. Variable is of type :ref:`Array<class_Array>`.
  2400. .. _class_@GlobalScope_constant_TYPE_PACKED_BYTE_ARRAY:
  2401. .. rst-class:: classref-enumeration-constant
  2402. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_BYTE_ARRAY** = ``29``
  2403. Variable is of type :ref:`PackedByteArray<class_PackedByteArray>`.
  2404. .. _class_@GlobalScope_constant_TYPE_PACKED_INT32_ARRAY:
  2405. .. rst-class:: classref-enumeration-constant
  2406. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_INT32_ARRAY** = ``30``
  2407. Variable is of type :ref:`PackedInt32Array<class_PackedInt32Array>`.
  2408. .. _class_@GlobalScope_constant_TYPE_PACKED_INT64_ARRAY:
  2409. .. rst-class:: classref-enumeration-constant
  2410. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_INT64_ARRAY** = ``31``
  2411. Variable is of type :ref:`PackedInt64Array<class_PackedInt64Array>`.
  2412. .. _class_@GlobalScope_constant_TYPE_PACKED_FLOAT32_ARRAY:
  2413. .. rst-class:: classref-enumeration-constant
  2414. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_FLOAT32_ARRAY** = ``32``
  2415. Variable is of type :ref:`PackedFloat32Array<class_PackedFloat32Array>`.
  2416. .. _class_@GlobalScope_constant_TYPE_PACKED_FLOAT64_ARRAY:
  2417. .. rst-class:: classref-enumeration-constant
  2418. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_FLOAT64_ARRAY** = ``33``
  2419. Variable is of type :ref:`PackedFloat64Array<class_PackedFloat64Array>`.
  2420. .. _class_@GlobalScope_constant_TYPE_PACKED_STRING_ARRAY:
  2421. .. rst-class:: classref-enumeration-constant
  2422. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_STRING_ARRAY** = ``34``
  2423. Variable is of type :ref:`PackedStringArray<class_PackedStringArray>`.
  2424. .. _class_@GlobalScope_constant_TYPE_PACKED_VECTOR2_ARRAY:
  2425. .. rst-class:: classref-enumeration-constant
  2426. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_VECTOR2_ARRAY** = ``35``
  2427. Variable is of type :ref:`PackedVector2Array<class_PackedVector2Array>`.
  2428. .. _class_@GlobalScope_constant_TYPE_PACKED_VECTOR3_ARRAY:
  2429. .. rst-class:: classref-enumeration-constant
  2430. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_VECTOR3_ARRAY** = ``36``
  2431. Variable is of type :ref:`PackedVector3Array<class_PackedVector3Array>`.
  2432. .. _class_@GlobalScope_constant_TYPE_PACKED_COLOR_ARRAY:
  2433. .. rst-class:: classref-enumeration-constant
  2434. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_COLOR_ARRAY** = ``37``
  2435. Variable is of type :ref:`PackedColorArray<class_PackedColorArray>`.
  2436. .. _class_@GlobalScope_constant_TYPE_PACKED_VECTOR4_ARRAY:
  2437. .. rst-class:: classref-enumeration-constant
  2438. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_VECTOR4_ARRAY** = ``38``
  2439. Variable is of type :ref:`PackedVector4Array<class_PackedVector4Array>`.
  2440. .. _class_@GlobalScope_constant_TYPE_MAX:
  2441. .. rst-class:: classref-enumeration-constant
  2442. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_MAX** = ``39``
  2443. Represents the size of the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` enum.
  2444. .. rst-class:: classref-item-separator
  2445. ----
  2446. .. _enum_@GlobalScope_Variant.Operator:
  2447. .. rst-class:: classref-enumeration
  2448. enum **Variant.Operator**: :ref:`🔗<enum_@GlobalScope_Variant.Operator>`
  2449. .. _class_@GlobalScope_constant_OP_EQUAL:
  2450. .. rst-class:: classref-enumeration-constant
  2451. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_EQUAL** = ``0``
  2452. Equality operator (``==``).
  2453. .. _class_@GlobalScope_constant_OP_NOT_EQUAL:
  2454. .. rst-class:: classref-enumeration-constant
  2455. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_NOT_EQUAL** = ``1``
  2456. Inequality operator (``!=``).
  2457. .. _class_@GlobalScope_constant_OP_LESS:
  2458. .. rst-class:: classref-enumeration-constant
  2459. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_LESS** = ``2``
  2460. Less than operator (``<``).
  2461. .. _class_@GlobalScope_constant_OP_LESS_EQUAL:
  2462. .. rst-class:: classref-enumeration-constant
  2463. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_LESS_EQUAL** = ``3``
  2464. Less than or equal operator (``<=``).
  2465. .. _class_@GlobalScope_constant_OP_GREATER:
  2466. .. rst-class:: classref-enumeration-constant
  2467. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_GREATER** = ``4``
  2468. Greater than operator (``>``).
  2469. .. _class_@GlobalScope_constant_OP_GREATER_EQUAL:
  2470. .. rst-class:: classref-enumeration-constant
  2471. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_GREATER_EQUAL** = ``5``
  2472. Greater than or equal operator (``>=``).
  2473. .. _class_@GlobalScope_constant_OP_ADD:
  2474. .. rst-class:: classref-enumeration-constant
  2475. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_ADD** = ``6``
  2476. Addition operator (``+``).
  2477. .. _class_@GlobalScope_constant_OP_SUBTRACT:
  2478. .. rst-class:: classref-enumeration-constant
  2479. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_SUBTRACT** = ``7``
  2480. Subtraction operator (``-``).
  2481. .. _class_@GlobalScope_constant_OP_MULTIPLY:
  2482. .. rst-class:: classref-enumeration-constant
  2483. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_MULTIPLY** = ``8``
  2484. Multiplication operator (``*``).
  2485. .. _class_@GlobalScope_constant_OP_DIVIDE:
  2486. .. rst-class:: classref-enumeration-constant
  2487. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_DIVIDE** = ``9``
  2488. Division operator (``/``).
  2489. .. _class_@GlobalScope_constant_OP_NEGATE:
  2490. .. rst-class:: classref-enumeration-constant
  2491. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_NEGATE** = ``10``
  2492. Unary negation operator (``-``).
  2493. .. _class_@GlobalScope_constant_OP_POSITIVE:
  2494. .. rst-class:: classref-enumeration-constant
  2495. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_POSITIVE** = ``11``
  2496. Unary plus operator (``+``).
  2497. .. _class_@GlobalScope_constant_OP_MODULE:
  2498. .. rst-class:: classref-enumeration-constant
  2499. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_MODULE** = ``12``
  2500. Remainder/modulo operator (``%``).
  2501. .. _class_@GlobalScope_constant_OP_POWER:
  2502. .. rst-class:: classref-enumeration-constant
  2503. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_POWER** = ``13``
  2504. Power operator (``**``).
  2505. .. _class_@GlobalScope_constant_OP_SHIFT_LEFT:
  2506. .. rst-class:: classref-enumeration-constant
  2507. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_SHIFT_LEFT** = ``14``
  2508. Left shift operator (``<<``).
  2509. .. _class_@GlobalScope_constant_OP_SHIFT_RIGHT:
  2510. .. rst-class:: classref-enumeration-constant
  2511. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_SHIFT_RIGHT** = ``15``
  2512. Right shift operator (``>>``).
  2513. .. _class_@GlobalScope_constant_OP_BIT_AND:
  2514. .. rst-class:: classref-enumeration-constant
  2515. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_AND** = ``16``
  2516. Bitwise AND operator (``&``).
  2517. .. _class_@GlobalScope_constant_OP_BIT_OR:
  2518. .. rst-class:: classref-enumeration-constant
  2519. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_OR** = ``17``
  2520. Bitwise OR operator (``|``).
  2521. .. _class_@GlobalScope_constant_OP_BIT_XOR:
  2522. .. rst-class:: classref-enumeration-constant
  2523. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_XOR** = ``18``
  2524. Bitwise XOR operator (``^``).
  2525. .. _class_@GlobalScope_constant_OP_BIT_NEGATE:
  2526. .. rst-class:: classref-enumeration-constant
  2527. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_NEGATE** = ``19``
  2528. Bitwise NOT operator (``~``).
  2529. .. _class_@GlobalScope_constant_OP_AND:
  2530. .. rst-class:: classref-enumeration-constant
  2531. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_AND** = ``20``
  2532. Logical AND operator (``and`` or ``&&``).
  2533. .. _class_@GlobalScope_constant_OP_OR:
  2534. .. rst-class:: classref-enumeration-constant
  2535. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_OR** = ``21``
  2536. Logical OR operator (``or`` or ``||``).
  2537. .. _class_@GlobalScope_constant_OP_XOR:
  2538. .. rst-class:: classref-enumeration-constant
  2539. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_XOR** = ``22``
  2540. Logical XOR operator (not implemented in GDScript).
  2541. .. _class_@GlobalScope_constant_OP_NOT:
  2542. .. rst-class:: classref-enumeration-constant
  2543. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_NOT** = ``23``
  2544. Logical NOT operator (``not`` or ``!``).
  2545. .. _class_@GlobalScope_constant_OP_IN:
  2546. .. rst-class:: classref-enumeration-constant
  2547. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_IN** = ``24``
  2548. Logical IN operator (``in``).
  2549. .. _class_@GlobalScope_constant_OP_MAX:
  2550. .. rst-class:: classref-enumeration-constant
  2551. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_MAX** = ``25``
  2552. Represents the size of the :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` enum.
  2553. .. rst-class:: classref-section-separator
  2554. ----
  2555. .. rst-class:: classref-descriptions-group
  2556. Property Descriptions
  2557. ---------------------
  2558. .. _class_@GlobalScope_property_AudioServer:
  2559. .. rst-class:: classref-property
  2560. :ref:`AudioServer<class_AudioServer>` **AudioServer** :ref:`🔗<class_@GlobalScope_property_AudioServer>`
  2561. The :ref:`AudioServer<class_AudioServer>` singleton.
  2562. .. rst-class:: classref-item-separator
  2563. ----
  2564. .. _class_@GlobalScope_property_CameraServer:
  2565. .. rst-class:: classref-property
  2566. :ref:`CameraServer<class_CameraServer>` **CameraServer** :ref:`🔗<class_@GlobalScope_property_CameraServer>`
  2567. The :ref:`CameraServer<class_CameraServer>` singleton.
  2568. .. rst-class:: classref-item-separator
  2569. ----
  2570. .. _class_@GlobalScope_property_ClassDB:
  2571. .. rst-class:: classref-property
  2572. :ref:`ClassDB<class_ClassDB>` **ClassDB** :ref:`🔗<class_@GlobalScope_property_ClassDB>`
  2573. The :ref:`ClassDB<class_ClassDB>` singleton.
  2574. .. rst-class:: classref-item-separator
  2575. ----
  2576. .. _class_@GlobalScope_property_DisplayServer:
  2577. .. rst-class:: classref-property
  2578. :ref:`DisplayServer<class_DisplayServer>` **DisplayServer** :ref:`🔗<class_@GlobalScope_property_DisplayServer>`
  2579. The :ref:`DisplayServer<class_DisplayServer>` singleton.
  2580. .. rst-class:: classref-item-separator
  2581. ----
  2582. .. _class_@GlobalScope_property_EditorInterface:
  2583. .. rst-class:: classref-property
  2584. :ref:`EditorInterface<class_EditorInterface>` **EditorInterface** :ref:`🔗<class_@GlobalScope_property_EditorInterface>`
  2585. The :ref:`EditorInterface<class_EditorInterface>` singleton.
  2586. \ **Note:** Only available in editor builds.
  2587. .. rst-class:: classref-item-separator
  2588. ----
  2589. .. _class_@GlobalScope_property_Engine:
  2590. .. rst-class:: classref-property
  2591. :ref:`Engine<class_Engine>` **Engine** :ref:`🔗<class_@GlobalScope_property_Engine>`
  2592. The :ref:`Engine<class_Engine>` singleton.
  2593. .. rst-class:: classref-item-separator
  2594. ----
  2595. .. _class_@GlobalScope_property_EngineDebugger:
  2596. .. rst-class:: classref-property
  2597. :ref:`EngineDebugger<class_EngineDebugger>` **EngineDebugger** :ref:`🔗<class_@GlobalScope_property_EngineDebugger>`
  2598. The :ref:`EngineDebugger<class_EngineDebugger>` singleton.
  2599. .. rst-class:: classref-item-separator
  2600. ----
  2601. .. _class_@GlobalScope_property_GDExtensionManager:
  2602. .. rst-class:: classref-property
  2603. :ref:`GDExtensionManager<class_GDExtensionManager>` **GDExtensionManager** :ref:`🔗<class_@GlobalScope_property_GDExtensionManager>`
  2604. The :ref:`GDExtensionManager<class_GDExtensionManager>` singleton.
  2605. .. rst-class:: classref-item-separator
  2606. ----
  2607. .. _class_@GlobalScope_property_Geometry2D:
  2608. .. rst-class:: classref-property
  2609. :ref:`Geometry2D<class_Geometry2D>` **Geometry2D** :ref:`🔗<class_@GlobalScope_property_Geometry2D>`
  2610. The :ref:`Geometry2D<class_Geometry2D>` singleton.
  2611. .. rst-class:: classref-item-separator
  2612. ----
  2613. .. _class_@GlobalScope_property_Geometry3D:
  2614. .. rst-class:: classref-property
  2615. :ref:`Geometry3D<class_Geometry3D>` **Geometry3D** :ref:`🔗<class_@GlobalScope_property_Geometry3D>`
  2616. The :ref:`Geometry3D<class_Geometry3D>` singleton.
  2617. .. rst-class:: classref-item-separator
  2618. ----
  2619. .. _class_@GlobalScope_property_IP:
  2620. .. rst-class:: classref-property
  2621. :ref:`IP<class_IP>` **IP** :ref:`🔗<class_@GlobalScope_property_IP>`
  2622. The :ref:`IP<class_IP>` singleton.
  2623. .. rst-class:: classref-item-separator
  2624. ----
  2625. .. _class_@GlobalScope_property_Input:
  2626. .. rst-class:: classref-property
  2627. :ref:`Input<class_Input>` **Input** :ref:`🔗<class_@GlobalScope_property_Input>`
  2628. The :ref:`Input<class_Input>` singleton.
  2629. .. rst-class:: classref-item-separator
  2630. ----
  2631. .. _class_@GlobalScope_property_InputMap:
  2632. .. rst-class:: classref-property
  2633. :ref:`InputMap<class_InputMap>` **InputMap** :ref:`🔗<class_@GlobalScope_property_InputMap>`
  2634. The :ref:`InputMap<class_InputMap>` singleton.
  2635. .. rst-class:: classref-item-separator
  2636. ----
  2637. .. _class_@GlobalScope_property_JavaClassWrapper:
  2638. .. rst-class:: classref-property
  2639. :ref:`JavaClassWrapper<class_JavaClassWrapper>` **JavaClassWrapper** :ref:`🔗<class_@GlobalScope_property_JavaClassWrapper>`
  2640. The :ref:`JavaClassWrapper<class_JavaClassWrapper>` singleton.
  2641. \ **Note:** Only implemented on Android.
  2642. .. rst-class:: classref-item-separator
  2643. ----
  2644. .. _class_@GlobalScope_property_JavaScriptBridge:
  2645. .. rst-class:: classref-property
  2646. :ref:`JavaScriptBridge<class_JavaScriptBridge>` **JavaScriptBridge** :ref:`🔗<class_@GlobalScope_property_JavaScriptBridge>`
  2647. The :ref:`JavaScriptBridge<class_JavaScriptBridge>` singleton.
  2648. \ **Note:** Only implemented on the Web platform.
  2649. .. rst-class:: classref-item-separator
  2650. ----
  2651. .. _class_@GlobalScope_property_Marshalls:
  2652. .. rst-class:: classref-property
  2653. :ref:`Marshalls<class_Marshalls>` **Marshalls** :ref:`🔗<class_@GlobalScope_property_Marshalls>`
  2654. The :ref:`Marshalls<class_Marshalls>` singleton.
  2655. .. rst-class:: classref-item-separator
  2656. ----
  2657. .. _class_@GlobalScope_property_NativeMenu:
  2658. .. rst-class:: classref-property
  2659. :ref:`NativeMenu<class_NativeMenu>` **NativeMenu** :ref:`🔗<class_@GlobalScope_property_NativeMenu>`
  2660. The :ref:`NativeMenu<class_NativeMenu>` singleton.
  2661. \ **Note:** Only implemented on macOS.
  2662. .. rst-class:: classref-item-separator
  2663. ----
  2664. .. _class_@GlobalScope_property_NavigationMeshGenerator:
  2665. .. rst-class:: classref-property
  2666. :ref:`NavigationMeshGenerator<class_NavigationMeshGenerator>` **NavigationMeshGenerator** :ref:`🔗<class_@GlobalScope_property_NavigationMeshGenerator>`
  2667. The :ref:`NavigationMeshGenerator<class_NavigationMeshGenerator>` singleton.
  2668. .. rst-class:: classref-item-separator
  2669. ----
  2670. .. _class_@GlobalScope_property_NavigationServer2D:
  2671. .. rst-class:: classref-property
  2672. :ref:`NavigationServer2D<class_NavigationServer2D>` **NavigationServer2D** :ref:`🔗<class_@GlobalScope_property_NavigationServer2D>`
  2673. The :ref:`NavigationServer2D<class_NavigationServer2D>` singleton.
  2674. .. rst-class:: classref-item-separator
  2675. ----
  2676. .. _class_@GlobalScope_property_NavigationServer3D:
  2677. .. rst-class:: classref-property
  2678. :ref:`NavigationServer3D<class_NavigationServer3D>` **NavigationServer3D** :ref:`🔗<class_@GlobalScope_property_NavigationServer3D>`
  2679. The :ref:`NavigationServer3D<class_NavigationServer3D>` singleton.
  2680. .. rst-class:: classref-item-separator
  2681. ----
  2682. .. _class_@GlobalScope_property_OS:
  2683. .. rst-class:: classref-property
  2684. :ref:`OS<class_OS>` **OS** :ref:`🔗<class_@GlobalScope_property_OS>`
  2685. The :ref:`OS<class_OS>` singleton.
  2686. .. rst-class:: classref-item-separator
  2687. ----
  2688. .. _class_@GlobalScope_property_Performance:
  2689. .. rst-class:: classref-property
  2690. :ref:`Performance<class_Performance>` **Performance** :ref:`🔗<class_@GlobalScope_property_Performance>`
  2691. The :ref:`Performance<class_Performance>` singleton.
  2692. .. rst-class:: classref-item-separator
  2693. ----
  2694. .. _class_@GlobalScope_property_PhysicsServer2D:
  2695. .. rst-class:: classref-property
  2696. :ref:`PhysicsServer2D<class_PhysicsServer2D>` **PhysicsServer2D** :ref:`🔗<class_@GlobalScope_property_PhysicsServer2D>`
  2697. The :ref:`PhysicsServer2D<class_PhysicsServer2D>` singleton.
  2698. .. rst-class:: classref-item-separator
  2699. ----
  2700. .. _class_@GlobalScope_property_PhysicsServer2DManager:
  2701. .. rst-class:: classref-property
  2702. :ref:`PhysicsServer2DManager<class_PhysicsServer2DManager>` **PhysicsServer2DManager** :ref:`🔗<class_@GlobalScope_property_PhysicsServer2DManager>`
  2703. The :ref:`PhysicsServer2DManager<class_PhysicsServer2DManager>` singleton.
  2704. .. rst-class:: classref-item-separator
  2705. ----
  2706. .. _class_@GlobalScope_property_PhysicsServer3D:
  2707. .. rst-class:: classref-property
  2708. :ref:`PhysicsServer3D<class_PhysicsServer3D>` **PhysicsServer3D** :ref:`🔗<class_@GlobalScope_property_PhysicsServer3D>`
  2709. The :ref:`PhysicsServer3D<class_PhysicsServer3D>` singleton.
  2710. .. rst-class:: classref-item-separator
  2711. ----
  2712. .. _class_@GlobalScope_property_PhysicsServer3DManager:
  2713. .. rst-class:: classref-property
  2714. :ref:`PhysicsServer3DManager<class_PhysicsServer3DManager>` **PhysicsServer3DManager** :ref:`🔗<class_@GlobalScope_property_PhysicsServer3DManager>`
  2715. The :ref:`PhysicsServer3DManager<class_PhysicsServer3DManager>` singleton.
  2716. .. rst-class:: classref-item-separator
  2717. ----
  2718. .. _class_@GlobalScope_property_ProjectSettings:
  2719. .. rst-class:: classref-property
  2720. :ref:`ProjectSettings<class_ProjectSettings>` **ProjectSettings** :ref:`🔗<class_@GlobalScope_property_ProjectSettings>`
  2721. The :ref:`ProjectSettings<class_ProjectSettings>` singleton.
  2722. .. rst-class:: classref-item-separator
  2723. ----
  2724. .. _class_@GlobalScope_property_RenderingServer:
  2725. .. rst-class:: classref-property
  2726. :ref:`RenderingServer<class_RenderingServer>` **RenderingServer** :ref:`🔗<class_@GlobalScope_property_RenderingServer>`
  2727. The :ref:`RenderingServer<class_RenderingServer>` singleton.
  2728. .. rst-class:: classref-item-separator
  2729. ----
  2730. .. _class_@GlobalScope_property_ResourceLoader:
  2731. .. rst-class:: classref-property
  2732. :ref:`ResourceLoader<class_ResourceLoader>` **ResourceLoader** :ref:`🔗<class_@GlobalScope_property_ResourceLoader>`
  2733. The :ref:`ResourceLoader<class_ResourceLoader>` singleton.
  2734. .. rst-class:: classref-item-separator
  2735. ----
  2736. .. _class_@GlobalScope_property_ResourceSaver:
  2737. .. rst-class:: classref-property
  2738. :ref:`ResourceSaver<class_ResourceSaver>` **ResourceSaver** :ref:`🔗<class_@GlobalScope_property_ResourceSaver>`
  2739. The :ref:`ResourceSaver<class_ResourceSaver>` singleton.
  2740. .. rst-class:: classref-item-separator
  2741. ----
  2742. .. _class_@GlobalScope_property_ResourceUID:
  2743. .. rst-class:: classref-property
  2744. :ref:`ResourceUID<class_ResourceUID>` **ResourceUID** :ref:`🔗<class_@GlobalScope_property_ResourceUID>`
  2745. The :ref:`ResourceUID<class_ResourceUID>` singleton.
  2746. .. rst-class:: classref-item-separator
  2747. ----
  2748. .. _class_@GlobalScope_property_TextServerManager:
  2749. .. rst-class:: classref-property
  2750. :ref:`TextServerManager<class_TextServerManager>` **TextServerManager** :ref:`🔗<class_@GlobalScope_property_TextServerManager>`
  2751. The :ref:`TextServerManager<class_TextServerManager>` singleton.
  2752. .. rst-class:: classref-item-separator
  2753. ----
  2754. .. _class_@GlobalScope_property_ThemeDB:
  2755. .. rst-class:: classref-property
  2756. :ref:`ThemeDB<class_ThemeDB>` **ThemeDB** :ref:`🔗<class_@GlobalScope_property_ThemeDB>`
  2757. The :ref:`ThemeDB<class_ThemeDB>` singleton.
  2758. .. rst-class:: classref-item-separator
  2759. ----
  2760. .. _class_@GlobalScope_property_Time:
  2761. .. rst-class:: classref-property
  2762. :ref:`Time<class_Time>` **Time** :ref:`🔗<class_@GlobalScope_property_Time>`
  2763. The :ref:`Time<class_Time>` singleton.
  2764. .. rst-class:: classref-item-separator
  2765. ----
  2766. .. _class_@GlobalScope_property_TranslationServer:
  2767. .. rst-class:: classref-property
  2768. :ref:`TranslationServer<class_TranslationServer>` **TranslationServer** :ref:`🔗<class_@GlobalScope_property_TranslationServer>`
  2769. The :ref:`TranslationServer<class_TranslationServer>` singleton.
  2770. .. rst-class:: classref-item-separator
  2771. ----
  2772. .. _class_@GlobalScope_property_WorkerThreadPool:
  2773. .. rst-class:: classref-property
  2774. :ref:`WorkerThreadPool<class_WorkerThreadPool>` **WorkerThreadPool** :ref:`🔗<class_@GlobalScope_property_WorkerThreadPool>`
  2775. The :ref:`WorkerThreadPool<class_WorkerThreadPool>` singleton.
  2776. .. rst-class:: classref-item-separator
  2777. ----
  2778. .. _class_@GlobalScope_property_XRServer:
  2779. .. rst-class:: classref-property
  2780. :ref:`XRServer<class_XRServer>` **XRServer** :ref:`🔗<class_@GlobalScope_property_XRServer>`
  2781. The :ref:`XRServer<class_XRServer>` singleton.
  2782. .. rst-class:: classref-section-separator
  2783. ----
  2784. .. rst-class:: classref-descriptions-group
  2785. Method Descriptions
  2786. -------------------
  2787. .. _class_@GlobalScope_method_abs:
  2788. .. rst-class:: classref-method
  2789. :ref:`Variant<class_Variant>` **abs**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_abs>`
  2790. Returns the absolute value of a :ref:`Variant<class_Variant>` parameter ``x`` (i.e. non-negative value). Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`.
  2791. ::
  2792. var a = abs(-1)
  2793. # a is 1
  2794. var b = abs(-1.2)
  2795. # b is 1.2
  2796. var c = abs(Vector2(-3.5, -4))
  2797. # c is (3.5, 4)
  2798. var d = abs(Vector2i(-5, -6))
  2799. # d is (5, 6)
  2800. var e = abs(Vector3(-7, 8.5, -3.8))
  2801. # e is (7, 8.5, 3.8)
  2802. var f = abs(Vector3i(-7, -8, -9))
  2803. # f is (7, 8, 9)
  2804. \ **Note:** For better type safety, use :ref:`absf<class_@GlobalScope_method_absf>`, :ref:`absi<class_@GlobalScope_method_absi>`, :ref:`Vector2.abs<class_Vector2_method_abs>`, :ref:`Vector2i.abs<class_Vector2i_method_abs>`, :ref:`Vector3.abs<class_Vector3_method_abs>`, :ref:`Vector3i.abs<class_Vector3i_method_abs>`, :ref:`Vector4.abs<class_Vector4_method_abs>`, or :ref:`Vector4i.abs<class_Vector4i_method_abs>`.
  2805. .. rst-class:: classref-item-separator
  2806. ----
  2807. .. _class_@GlobalScope_method_absf:
  2808. .. rst-class:: classref-method
  2809. :ref:`float<class_float>` **absf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_absf>`
  2810. Returns the absolute value of float parameter ``x`` (i.e. positive value).
  2811. ::
  2812. # a is 1.2
  2813. var a = absf(-1.2)
  2814. .. rst-class:: classref-item-separator
  2815. ----
  2816. .. _class_@GlobalScope_method_absi:
  2817. .. rst-class:: classref-method
  2818. :ref:`int<class_int>` **absi**\ (\ x\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_absi>`
  2819. Returns the absolute value of int parameter ``x`` (i.e. positive value).
  2820. ::
  2821. # a is 1
  2822. var a = absi(-1)
  2823. .. rst-class:: classref-item-separator
  2824. ----
  2825. .. _class_@GlobalScope_method_acos:
  2826. .. rst-class:: classref-method
  2827. :ref:`float<class_float>` **acos**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_acos>`
  2828. Returns the arc cosine of ``x`` in radians. Use to get the angle of cosine ``x``. ``x`` will be clamped between ``-1.0`` and ``1.0`` (inclusive), in order to prevent :ref:`acos<class_@GlobalScope_method_acos>` from returning :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>`.
  2829. ::
  2830. # c is 0.523599 or 30 degrees if converted with rad_to_deg(c)
  2831. var c = acos(0.866025)
  2832. .. rst-class:: classref-item-separator
  2833. ----
  2834. .. _class_@GlobalScope_method_acosh:
  2835. .. rst-class:: classref-method
  2836. :ref:`float<class_float>` **acosh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_acosh>`
  2837. Returns the hyperbolic arc (also called inverse) cosine of ``x``, returning a value in radians. Use it to get the angle from an angle's cosine in hyperbolic space if ``x`` is larger or equal to 1. For values of ``x`` lower than 1, it will return 0, in order to prevent :ref:`acosh<class_@GlobalScope_method_acosh>` from returning :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>`.
  2838. ::
  2839. var a = acosh(2) # Returns 1.31695789692482
  2840. cosh(a) # Returns 2
  2841. var b = acosh(-1) # Returns 0
  2842. .. rst-class:: classref-item-separator
  2843. ----
  2844. .. _class_@GlobalScope_method_angle_difference:
  2845. .. rst-class:: classref-method
  2846. :ref:`float<class_float>` **angle_difference**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_angle_difference>`
  2847. Returns the difference between the two angles (in radians), in the range of ``[-PI, +PI]``. When ``from`` and ``to`` are opposite, returns ``-PI`` if ``from`` is smaller than ``to``, or ``PI`` otherwise.
  2848. .. rst-class:: classref-item-separator
  2849. ----
  2850. .. _class_@GlobalScope_method_asin:
  2851. .. rst-class:: classref-method
  2852. :ref:`float<class_float>` **asin**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_asin>`
  2853. Returns the arc sine of ``x`` in radians. Use to get the angle of sine ``x``. ``x`` will be clamped between ``-1.0`` and ``1.0`` (inclusive), in order to prevent :ref:`asin<class_@GlobalScope_method_asin>` from returning :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>`.
  2854. ::
  2855. # s is 0.523599 or 30 degrees if converted with rad_to_deg(s)
  2856. var s = asin(0.5)
  2857. .. rst-class:: classref-item-separator
  2858. ----
  2859. .. _class_@GlobalScope_method_asinh:
  2860. .. rst-class:: classref-method
  2861. :ref:`float<class_float>` **asinh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_asinh>`
  2862. Returns the hyperbolic arc (also called inverse) sine of ``x``, returning a value in radians. Use it to get the angle from an angle's sine in hyperbolic space.
  2863. ::
  2864. var a = asinh(0.9) # Returns 0.8088669356527824
  2865. sinh(a) # Returns 0.9
  2866. .. rst-class:: classref-item-separator
  2867. ----
  2868. .. _class_@GlobalScope_method_atan:
  2869. .. rst-class:: classref-method
  2870. :ref:`float<class_float>` **atan**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_atan>`
  2871. Returns the arc tangent of ``x`` in radians. Use it to get the angle from an angle's tangent in trigonometry.
  2872. The method cannot know in which quadrant the angle should fall. See :ref:`atan2<class_@GlobalScope_method_atan2>` if you have both ``y`` and ``x``.
  2873. ::
  2874. var a = atan(0.5) # a is 0.463648
  2875. If ``x`` is between ``-PI / 2`` and ``PI / 2`` (inclusive), ``atan(tan(x))`` is equal to ``x``.
  2876. .. rst-class:: classref-item-separator
  2877. ----
  2878. .. _class_@GlobalScope_method_atan2:
  2879. .. rst-class:: classref-method
  2880. :ref:`float<class_float>` **atan2**\ (\ y\: :ref:`float<class_float>`, x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_atan2>`
  2881. Returns the arc tangent of ``y/x`` in radians. Use to get the angle of tangent ``y/x``. To compute the value, the method takes into account the sign of both arguments in order to determine the quadrant.
  2882. Important note: The Y coordinate comes first, by convention.
  2883. ::
  2884. var a = atan2(0, -1) # a is 3.141593
  2885. .. rst-class:: classref-item-separator
  2886. ----
  2887. .. _class_@GlobalScope_method_atanh:
  2888. .. rst-class:: classref-method
  2889. :ref:`float<class_float>` **atanh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_atanh>`
  2890. Returns the hyperbolic arc (also called inverse) tangent of ``x``, returning a value in radians. Use it to get the angle from an angle's tangent in hyperbolic space if ``x`` is between -1 and 1 (non-inclusive).
  2891. In mathematics, the inverse hyperbolic tangent is only defined for -1 < ``x`` < 1 in the real set, so values equal or lower to -1 for ``x`` return negative :ref:`@GDScript.INF<class_@GDScript_constant_INF>` and values equal or higher than 1 return positive :ref:`@GDScript.INF<class_@GDScript_constant_INF>` in order to prevent :ref:`atanh<class_@GlobalScope_method_atanh>` from returning :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>`.
  2892. ::
  2893. var a = atanh(0.9) # Returns 1.47221948958322
  2894. tanh(a) # Returns 0.9
  2895. var b = atanh(-2) # Returns -inf
  2896. tanh(b) # Returns -1
  2897. .. rst-class:: classref-item-separator
  2898. ----
  2899. .. _class_@GlobalScope_method_bezier_derivative:
  2900. .. rst-class:: classref-method
  2901. :ref:`float<class_float>` **bezier_derivative**\ (\ start\: :ref:`float<class_float>`, control_1\: :ref:`float<class_float>`, control_2\: :ref:`float<class_float>`, end\: :ref:`float<class_float>`, t\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_bezier_derivative>`
  2902. Returns the derivative at the given ``t`` on a one-dimensional `Bézier curve <https://en.wikipedia.org/wiki/B%C3%A9zier_curve>`__ defined by the given ``control_1``, ``control_2``, and ``end`` points.
  2903. .. rst-class:: classref-item-separator
  2904. ----
  2905. .. _class_@GlobalScope_method_bezier_interpolate:
  2906. .. rst-class:: classref-method
  2907. :ref:`float<class_float>` **bezier_interpolate**\ (\ start\: :ref:`float<class_float>`, control_1\: :ref:`float<class_float>`, control_2\: :ref:`float<class_float>`, end\: :ref:`float<class_float>`, t\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_bezier_interpolate>`
  2908. Returns the point at the given ``t`` on a one-dimensional `Bézier curve <https://en.wikipedia.org/wiki/B%C3%A9zier_curve>`__ defined by the given ``control_1``, ``control_2``, and ``end`` points.
  2909. .. rst-class:: classref-item-separator
  2910. ----
  2911. .. _class_@GlobalScope_method_bytes_to_var:
  2912. .. rst-class:: classref-method
  2913. :ref:`Variant<class_Variant>` **bytes_to_var**\ (\ bytes\: :ref:`PackedByteArray<class_PackedByteArray>`\ ) :ref:`🔗<class_@GlobalScope_method_bytes_to_var>`
  2914. Decodes a byte array back to a :ref:`Variant<class_Variant>` value, without decoding objects.
  2915. \ **Note:** If you need object deserialization, see :ref:`bytes_to_var_with_objects<class_@GlobalScope_method_bytes_to_var_with_objects>`.
  2916. .. rst-class:: classref-item-separator
  2917. ----
  2918. .. _class_@GlobalScope_method_bytes_to_var_with_objects:
  2919. .. rst-class:: classref-method
  2920. :ref:`Variant<class_Variant>` **bytes_to_var_with_objects**\ (\ bytes\: :ref:`PackedByteArray<class_PackedByteArray>`\ ) :ref:`🔗<class_@GlobalScope_method_bytes_to_var_with_objects>`
  2921. Decodes a byte array back to a :ref:`Variant<class_Variant>` value. Decoding objects is allowed.
  2922. \ **Warning:** Deserialized object can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats (remote code execution).
  2923. .. rst-class:: classref-item-separator
  2924. ----
  2925. .. _class_@GlobalScope_method_ceil:
  2926. .. rst-class:: classref-method
  2927. :ref:`Variant<class_Variant>` **ceil**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_ceil>`
  2928. Rounds ``x`` upward (towards positive infinity), returning the smallest whole number that is not less than ``x``. Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`.
  2929. ::
  2930. var i = ceil(1.45) # i is 2.0
  2931. i = ceil(1.001) # i is 2.0
  2932. See also :ref:`floor<class_@GlobalScope_method_floor>`, :ref:`round<class_@GlobalScope_method_round>`, and :ref:`snapped<class_@GlobalScope_method_snapped>`.
  2933. \ **Note:** For better type safety, use :ref:`ceilf<class_@GlobalScope_method_ceilf>`, :ref:`ceili<class_@GlobalScope_method_ceili>`, :ref:`Vector2.ceil<class_Vector2_method_ceil>`, :ref:`Vector3.ceil<class_Vector3_method_ceil>`, or :ref:`Vector4.ceil<class_Vector4_method_ceil>`.
  2934. .. rst-class:: classref-item-separator
  2935. ----
  2936. .. _class_@GlobalScope_method_ceilf:
  2937. .. rst-class:: classref-method
  2938. :ref:`float<class_float>` **ceilf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_ceilf>`
  2939. Rounds ``x`` upward (towards positive infinity), returning the smallest whole number that is not less than ``x``.
  2940. A type-safe version of :ref:`ceil<class_@GlobalScope_method_ceil>`, returning a :ref:`float<class_float>`.
  2941. .. rst-class:: classref-item-separator
  2942. ----
  2943. .. _class_@GlobalScope_method_ceili:
  2944. .. rst-class:: classref-method
  2945. :ref:`int<class_int>` **ceili**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_ceili>`
  2946. Rounds ``x`` upward (towards positive infinity), returning the smallest whole number that is not less than ``x``.
  2947. A type-safe version of :ref:`ceil<class_@GlobalScope_method_ceil>`, returning an :ref:`int<class_int>`.
  2948. .. rst-class:: classref-item-separator
  2949. ----
  2950. .. _class_@GlobalScope_method_clamp:
  2951. .. rst-class:: classref-method
  2952. :ref:`Variant<class_Variant>` **clamp**\ (\ value\: :ref:`Variant<class_Variant>`, min\: :ref:`Variant<class_Variant>`, max\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_clamp>`
  2953. Clamps the ``value``, returning a :ref:`Variant<class_Variant>` not less than ``min`` and not more than ``max``. Any values that can be compared with the less than and greater than operators will work.
  2954. ::
  2955. var a = clamp(-10, -1, 5)
  2956. # a is -1
  2957. var b = clamp(8.1, 0.9, 5.5)
  2958. # b is 5.5
  2959. \ **Note:** For better type safety, use :ref:`clampf<class_@GlobalScope_method_clampf>`, :ref:`clampi<class_@GlobalScope_method_clampi>`, :ref:`Vector2.clamp<class_Vector2_method_clamp>`, :ref:`Vector2i.clamp<class_Vector2i_method_clamp>`, :ref:`Vector3.clamp<class_Vector3_method_clamp>`, :ref:`Vector3i.clamp<class_Vector3i_method_clamp>`, :ref:`Vector4.clamp<class_Vector4_method_clamp>`, :ref:`Vector4i.clamp<class_Vector4i_method_clamp>`, or :ref:`Color.clamp<class_Color_method_clamp>` (not currently supported by this method).
  2960. \ **Note:** When using this on vectors it will *not* perform component-wise clamping, and will pick ``min`` if ``value < min`` or ``max`` if ``value > max``. To perform component-wise clamping use the methods listed above.
  2961. .. rst-class:: classref-item-separator
  2962. ----
  2963. .. _class_@GlobalScope_method_clampf:
  2964. .. rst-class:: classref-method
  2965. :ref:`float<class_float>` **clampf**\ (\ value\: :ref:`float<class_float>`, min\: :ref:`float<class_float>`, max\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_clampf>`
  2966. Clamps the ``value``, returning a :ref:`float<class_float>` not less than ``min`` and not more than ``max``.
  2967. ::
  2968. var speed = 42.1
  2969. var a = clampf(speed, 1.0, 20.5) # a is 20.5
  2970. speed = -10.0
  2971. var b = clampf(speed, -1.0, 1.0) # b is -1.0
  2972. .. rst-class:: classref-item-separator
  2973. ----
  2974. .. _class_@GlobalScope_method_clampi:
  2975. .. rst-class:: classref-method
  2976. :ref:`int<class_int>` **clampi**\ (\ value\: :ref:`int<class_int>`, min\: :ref:`int<class_int>`, max\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_clampi>`
  2977. Clamps the ``value``, returning an :ref:`int<class_int>` not less than ``min`` and not more than ``max``.
  2978. ::
  2979. var speed = 42
  2980. var a = clampi(speed, 1, 20) # a is 20
  2981. speed = -10
  2982. var b = clampi(speed, -1, 1) # b is -1
  2983. .. rst-class:: classref-item-separator
  2984. ----
  2985. .. _class_@GlobalScope_method_cos:
  2986. .. rst-class:: classref-method
  2987. :ref:`float<class_float>` **cos**\ (\ angle_rad\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_cos>`
  2988. Returns the cosine of angle ``angle_rad`` in radians.
  2989. ::
  2990. cos(PI * 2) # Returns 1.0
  2991. cos(PI) # Returns -1.0
  2992. cos(deg_to_rad(90)) # Returns 0.0
  2993. .. rst-class:: classref-item-separator
  2994. ----
  2995. .. _class_@GlobalScope_method_cosh:
  2996. .. rst-class:: classref-method
  2997. :ref:`float<class_float>` **cosh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_cosh>`
  2998. Returns the hyperbolic cosine of ``x`` in radians.
  2999. ::
  3000. print(cosh(1)) # Prints 1.543081
  3001. .. rst-class:: classref-item-separator
  3002. ----
  3003. .. _class_@GlobalScope_method_cubic_interpolate:
  3004. .. rst-class:: classref-method
  3005. :ref:`float<class_float>` **cubic_interpolate**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_cubic_interpolate>`
  3006. Cubic interpolates between two values by the factor defined in ``weight`` with ``pre`` and ``post`` values.
  3007. .. rst-class:: classref-item-separator
  3008. ----
  3009. .. _class_@GlobalScope_method_cubic_interpolate_angle:
  3010. .. rst-class:: classref-method
  3011. :ref:`float<class_float>` **cubic_interpolate_angle**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_cubic_interpolate_angle>`
  3012. Cubic interpolates between two rotation values with shortest path by the factor defined in ``weight`` with ``pre`` and ``post`` values. See also :ref:`lerp_angle<class_@GlobalScope_method_lerp_angle>`.
  3013. .. rst-class:: classref-item-separator
  3014. ----
  3015. .. _class_@GlobalScope_method_cubic_interpolate_angle_in_time:
  3016. .. rst-class:: classref-method
  3017. :ref:`float<class_float>` **cubic_interpolate_angle_in_time**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`, to_t\: :ref:`float<class_float>`, pre_t\: :ref:`float<class_float>`, post_t\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_cubic_interpolate_angle_in_time>`
  3018. Cubic interpolates between two rotation values with shortest path by the factor defined in ``weight`` with ``pre`` and ``post`` values. See also :ref:`lerp_angle<class_@GlobalScope_method_lerp_angle>`.
  3019. It can perform smoother interpolation than :ref:`cubic_interpolate<class_@GlobalScope_method_cubic_interpolate>` by the time values.
  3020. .. rst-class:: classref-item-separator
  3021. ----
  3022. .. _class_@GlobalScope_method_cubic_interpolate_in_time:
  3023. .. rst-class:: classref-method
  3024. :ref:`float<class_float>` **cubic_interpolate_in_time**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, pre\: :ref:`float<class_float>`, post\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`, to_t\: :ref:`float<class_float>`, pre_t\: :ref:`float<class_float>`, post_t\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_cubic_interpolate_in_time>`
  3025. Cubic interpolates between two values by the factor defined in ``weight`` with ``pre`` and ``post`` values.
  3026. It can perform smoother interpolation than :ref:`cubic_interpolate<class_@GlobalScope_method_cubic_interpolate>` by the time values.
  3027. .. rst-class:: classref-item-separator
  3028. ----
  3029. .. _class_@GlobalScope_method_db_to_linear:
  3030. .. rst-class:: classref-method
  3031. :ref:`float<class_float>` **db_to_linear**\ (\ db\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_db_to_linear>`
  3032. Converts from decibels to linear energy (audio).
  3033. .. rst-class:: classref-item-separator
  3034. ----
  3035. .. _class_@GlobalScope_method_deg_to_rad:
  3036. .. rst-class:: classref-method
  3037. :ref:`float<class_float>` **deg_to_rad**\ (\ deg\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_deg_to_rad>`
  3038. Converts an angle expressed in degrees to radians.
  3039. ::
  3040. var r = deg_to_rad(180) # r is 3.141593
  3041. .. rst-class:: classref-item-separator
  3042. ----
  3043. .. _class_@GlobalScope_method_ease:
  3044. .. rst-class:: classref-method
  3045. :ref:`float<class_float>` **ease**\ (\ x\: :ref:`float<class_float>`, curve\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_ease>`
  3046. Returns an "eased" value of ``x`` based on an easing function defined with ``curve``. This easing function is based on an exponent. The ``curve`` can be any floating-point number, with specific values leading to the following behaviors:
  3047. .. code:: text
  3048. - Lower than -1.0 (exclusive): Ease in-out
  3049. - 1.0: Linear
  3050. - Between -1.0 and 0.0 (exclusive): Ease out-in
  3051. - 0.0: Constant
  3052. - Between 0.0 to 1.0 (exclusive): Ease out
  3053. - 1.0: Linear
  3054. - Greater than 1.0 (exclusive): Ease in
  3055. \ `ease() curve values cheatsheet <https://raw.githubusercontent.com/godotengine/godot-docs/master/img/ease_cheatsheet.png>`__\
  3056. See also :ref:`smoothstep<class_@GlobalScope_method_smoothstep>`. If you need to perform more advanced transitions, use :ref:`Tween.interpolate_value<class_Tween_method_interpolate_value>`.
  3057. .. rst-class:: classref-item-separator
  3058. ----
  3059. .. _class_@GlobalScope_method_error_string:
  3060. .. rst-class:: classref-method
  3061. :ref:`String<class_String>` **error_string**\ (\ error\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_error_string>`
  3062. Returns a human-readable name for the given :ref:`Error<enum_@GlobalScope_Error>` code.
  3063. ::
  3064. print(OK) # Prints 0
  3065. print(error_string(OK)) # Prints OK
  3066. print(error_string(ERR_BUSY)) # Prints Busy
  3067. print(error_string(ERR_OUT_OF_MEMORY)) # Prints Out of memory
  3068. .. rst-class:: classref-item-separator
  3069. ----
  3070. .. _class_@GlobalScope_method_exp:
  3071. .. rst-class:: classref-method
  3072. :ref:`float<class_float>` **exp**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_exp>`
  3073. The natural exponential function. It raises the mathematical constant *e* to the power of ``x`` and returns it.
  3074. \ *e* has an approximate value of 2.71828, and can be obtained with ``exp(1)``.
  3075. For exponents to other bases use the method :ref:`pow<class_@GlobalScope_method_pow>`.
  3076. ::
  3077. var a = exp(2) # Approximately 7.39
  3078. .. rst-class:: classref-item-separator
  3079. ----
  3080. .. _class_@GlobalScope_method_floor:
  3081. .. rst-class:: classref-method
  3082. :ref:`Variant<class_Variant>` **floor**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_floor>`
  3083. Rounds ``x`` downward (towards negative infinity), returning the largest whole number that is not more than ``x``. Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`.
  3084. ::
  3085. var a = floor(2.99) # a is 2.0
  3086. a = floor(-2.99) # a is -3.0
  3087. See also :ref:`ceil<class_@GlobalScope_method_ceil>`, :ref:`round<class_@GlobalScope_method_round>`, and :ref:`snapped<class_@GlobalScope_method_snapped>`.
  3088. \ **Note:** For better type safety, use :ref:`floorf<class_@GlobalScope_method_floorf>`, :ref:`floori<class_@GlobalScope_method_floori>`, :ref:`Vector2.floor<class_Vector2_method_floor>`, :ref:`Vector3.floor<class_Vector3_method_floor>`, or :ref:`Vector4.floor<class_Vector4_method_floor>`.
  3089. .. rst-class:: classref-item-separator
  3090. ----
  3091. .. _class_@GlobalScope_method_floorf:
  3092. .. rst-class:: classref-method
  3093. :ref:`float<class_float>` **floorf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_floorf>`
  3094. Rounds ``x`` downward (towards negative infinity), returning the largest whole number that is not more than ``x``.
  3095. A type-safe version of :ref:`floor<class_@GlobalScope_method_floor>`, returning a :ref:`float<class_float>`.
  3096. .. rst-class:: classref-item-separator
  3097. ----
  3098. .. _class_@GlobalScope_method_floori:
  3099. .. rst-class:: classref-method
  3100. :ref:`int<class_int>` **floori**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_floori>`
  3101. Rounds ``x`` downward (towards negative infinity), returning the largest whole number that is not more than ``x``.
  3102. A type-safe version of :ref:`floor<class_@GlobalScope_method_floor>`, returning an :ref:`int<class_int>`.
  3103. \ **Note:** This function is *not* the same as ``int(x)``, which rounds towards 0.
  3104. .. rst-class:: classref-item-separator
  3105. ----
  3106. .. _class_@GlobalScope_method_fmod:
  3107. .. rst-class:: classref-method
  3108. :ref:`float<class_float>` **fmod**\ (\ x\: :ref:`float<class_float>`, y\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_fmod>`
  3109. Returns the floating-point remainder of ``x`` divided by ``y``, keeping the sign of ``x``.
  3110. ::
  3111. var remainder = fmod(7, 5.5) # remainder is 1.5
  3112. For the integer remainder operation, use the ``%`` operator.
  3113. .. rst-class:: classref-item-separator
  3114. ----
  3115. .. _class_@GlobalScope_method_fposmod:
  3116. .. rst-class:: classref-method
  3117. :ref:`float<class_float>` **fposmod**\ (\ x\: :ref:`float<class_float>`, y\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_fposmod>`
  3118. Returns the floating-point modulus of ``x`` divided by ``y``, wrapping equally in positive and negative.
  3119. ::
  3120. print(" (x) (fmod(x, 1.5)) (fposmod(x, 1.5))")
  3121. for i in 7:
  3122. var x = i * 0.5 - 1.5
  3123. print("%4.1f %4.1f | %4.1f" % [x, fmod(x, 1.5), fposmod(x, 1.5)])
  3124. Prints:
  3125. .. code:: text
  3126. (x) (fmod(x, 1.5)) (fposmod(x, 1.5))
  3127. -1.5 -0.0 | 0.0
  3128. -1.0 -1.0 | 0.5
  3129. -0.5 -0.5 | 1.0
  3130. 0.0 0.0 | 0.0
  3131. 0.5 0.5 | 0.5
  3132. 1.0 1.0 | 1.0
  3133. 1.5 0.0 | 0.0
  3134. .. rst-class:: classref-item-separator
  3135. ----
  3136. .. _class_@GlobalScope_method_hash:
  3137. .. rst-class:: classref-method
  3138. :ref:`int<class_int>` **hash**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_hash>`
  3139. Returns the integer hash of the passed ``variable``.
  3140. .. tabs::
  3141. .. code-tab:: gdscript
  3142. print(hash("a")) # Prints 177670
  3143. .. code-tab:: csharp
  3144. GD.Print(GD.Hash("a")); // Prints 177670
  3145. .. rst-class:: classref-item-separator
  3146. ----
  3147. .. _class_@GlobalScope_method_instance_from_id:
  3148. .. rst-class:: classref-method
  3149. :ref:`Object<class_Object>` **instance_from_id**\ (\ instance_id\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_instance_from_id>`
  3150. Returns the :ref:`Object<class_Object>` that corresponds to ``instance_id``. All Objects have a unique instance ID. See also :ref:`Object.get_instance_id<class_Object_method_get_instance_id>`.
  3151. .. tabs::
  3152. .. code-tab:: gdscript
  3153. var foo = "bar"
  3154. func _ready():
  3155. var id = get_instance_id()
  3156. var inst = instance_from_id(id)
  3157. print(inst.foo) # Prints bar
  3158. .. code-tab:: csharp
  3159. public partial class MyNode : Node
  3160. {
  3161. public string Foo { get; set; } = "bar";
  3162. public override void _Ready()
  3163. {
  3164. ulong id = GetInstanceId();
  3165. var inst = (MyNode)InstanceFromId(Id);
  3166. GD.Print(inst.Foo); // Prints bar
  3167. }
  3168. }
  3169. .. rst-class:: classref-item-separator
  3170. ----
  3171. .. _class_@GlobalScope_method_inverse_lerp:
  3172. .. rst-class:: classref-method
  3173. :ref:`float<class_float>` **inverse_lerp**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_inverse_lerp>`
  3174. Returns an interpolation or extrapolation factor considering the range specified in ``from`` and ``to``, and the interpolated value specified in ``weight``. The returned value will be between ``0.0`` and ``1.0`` if ``weight`` is between ``from`` and ``to`` (inclusive). If ``weight`` is located outside this range, then an extrapolation factor will be returned (return value lower than ``0.0`` or greater than ``1.0``). Use :ref:`clamp<class_@GlobalScope_method_clamp>` on the result of :ref:`inverse_lerp<class_@GlobalScope_method_inverse_lerp>` if this is not desired.
  3175. ::
  3176. # The interpolation ratio in the `lerp()` call below is 0.75.
  3177. var middle = lerp(20, 30, 0.75)
  3178. # middle is now 27.5.
  3179. # Now, we pretend to have forgotten the original ratio and want to get it back.
  3180. var ratio = inverse_lerp(20, 30, 27.5)
  3181. # ratio is now 0.75.
  3182. See also :ref:`lerp<class_@GlobalScope_method_lerp>`, which performs the reverse of this operation, and :ref:`remap<class_@GlobalScope_method_remap>` to map a continuous series of values to another.
  3183. .. rst-class:: classref-item-separator
  3184. ----
  3185. .. _class_@GlobalScope_method_is_equal_approx:
  3186. .. rst-class:: classref-method
  3187. :ref:`bool<class_bool>` **is_equal_approx**\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_is_equal_approx>`
  3188. Returns ``true`` if ``a`` and ``b`` are approximately equal to each other.
  3189. Here, "approximately equal" means that ``a`` and ``b`` are within a small internal epsilon of each other, which scales with the magnitude of the numbers.
  3190. Infinity values of the same sign are considered equal.
  3191. .. rst-class:: classref-item-separator
  3192. ----
  3193. .. _class_@GlobalScope_method_is_finite:
  3194. .. rst-class:: classref-method
  3195. :ref:`bool<class_bool>` **is_finite**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_is_finite>`
  3196. Returns whether ``x`` is a finite value, i.e. it is not :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>`, positive infinity, or negative infinity.
  3197. .. rst-class:: classref-item-separator
  3198. ----
  3199. .. _class_@GlobalScope_method_is_inf:
  3200. .. rst-class:: classref-method
  3201. :ref:`bool<class_bool>` **is_inf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_is_inf>`
  3202. Returns ``true`` if ``x`` is either positive infinity or negative infinity.
  3203. .. rst-class:: classref-item-separator
  3204. ----
  3205. .. _class_@GlobalScope_method_is_instance_id_valid:
  3206. .. rst-class:: classref-method
  3207. :ref:`bool<class_bool>` **is_instance_id_valid**\ (\ id\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_is_instance_id_valid>`
  3208. Returns ``true`` if the Object that corresponds to ``id`` is a valid object (e.g. has not been deleted from memory). All Objects have a unique instance ID.
  3209. .. rst-class:: classref-item-separator
  3210. ----
  3211. .. _class_@GlobalScope_method_is_instance_valid:
  3212. .. rst-class:: classref-method
  3213. :ref:`bool<class_bool>` **is_instance_valid**\ (\ instance\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_is_instance_valid>`
  3214. Returns ``true`` if ``instance`` is a valid Object (e.g. has not been deleted from memory).
  3215. .. rst-class:: classref-item-separator
  3216. ----
  3217. .. _class_@GlobalScope_method_is_nan:
  3218. .. rst-class:: classref-method
  3219. :ref:`bool<class_bool>` **is_nan**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_is_nan>`
  3220. Returns ``true`` if ``x`` is a NaN ("Not a Number" or invalid) value.
  3221. .. rst-class:: classref-item-separator
  3222. ----
  3223. .. _class_@GlobalScope_method_is_same:
  3224. .. rst-class:: classref-method
  3225. :ref:`bool<class_bool>` **is_same**\ (\ a\: :ref:`Variant<class_Variant>`, b\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_is_same>`
  3226. Returns ``true``, for value types, if ``a`` and ``b`` share the same value. Returns ``true``, for reference types, if the references of ``a`` and ``b`` are the same.
  3227. ::
  3228. # Vector2 is a value type
  3229. var vec2_a = Vector2(0, 0)
  3230. var vec2_b = Vector2(0, 0)
  3231. var vec2_c = Vector2(1, 1)
  3232. is_same(vec2_a, vec2_a) # true
  3233. is_same(vec2_a, vec2_b) # true
  3234. is_same(vec2_a, vec2_c) # false
  3235. # Array is a reference type
  3236. var arr_a = []
  3237. var arr_b = []
  3238. is_same(arr_a, arr_a) # true
  3239. is_same(arr_a, arr_b) # false
  3240. These are :ref:`Variant<class_Variant>` value types: ``null``, :ref:`bool<class_bool>`, :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`String<class_String>`, :ref:`StringName<class_StringName>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`, :ref:`Rect2<class_Rect2>`, :ref:`Rect2i<class_Rect2i>`, :ref:`Transform2D<class_Transform2D>`, :ref:`Transform3D<class_Transform3D>`, :ref:`Plane<class_Plane>`, :ref:`Quaternion<class_Quaternion>`, :ref:`AABB<class_AABB>`, :ref:`Basis<class_Basis>`, :ref:`Projection<class_Projection>`, :ref:`Color<class_Color>`, :ref:`NodePath<class_NodePath>`, :ref:`RID<class_RID>`, :ref:`Callable<class_Callable>` and :ref:`Signal<class_Signal>`.
  3241. These are :ref:`Variant<class_Variant>` reference types: :ref:`Object<class_Object>`, :ref:`Dictionary<class_Dictionary>`, :ref:`Array<class_Array>`, :ref:`PackedByteArray<class_PackedByteArray>`, :ref:`PackedInt32Array<class_PackedInt32Array>`, :ref:`PackedInt64Array<class_PackedInt64Array>`, :ref:`PackedFloat32Array<class_PackedFloat32Array>`, :ref:`PackedFloat64Array<class_PackedFloat64Array>`, :ref:`PackedStringArray<class_PackedStringArray>`, :ref:`PackedVector2Array<class_PackedVector2Array>`, :ref:`PackedVector3Array<class_PackedVector3Array>`, :ref:`PackedVector4Array<class_PackedVector4Array>`, and :ref:`PackedColorArray<class_PackedColorArray>`.
  3242. .. rst-class:: classref-item-separator
  3243. ----
  3244. .. _class_@GlobalScope_method_is_zero_approx:
  3245. .. rst-class:: classref-method
  3246. :ref:`bool<class_bool>` **is_zero_approx**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_is_zero_approx>`
  3247. Returns ``true`` if ``x`` is zero or almost zero. The comparison is done using a tolerance calculation with a small internal epsilon.
  3248. This function is faster than using :ref:`is_equal_approx<class_@GlobalScope_method_is_equal_approx>` with one value as zero.
  3249. .. rst-class:: classref-item-separator
  3250. ----
  3251. .. _class_@GlobalScope_method_lerp:
  3252. .. rst-class:: classref-method
  3253. :ref:`Variant<class_Variant>` **lerp**\ (\ from\: :ref:`Variant<class_Variant>`, to\: :ref:`Variant<class_Variant>`, weight\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_lerp>`
  3254. Linearly interpolates between two values by the factor defined in ``weight``. To perform interpolation, ``weight`` should be between ``0.0`` and ``1.0`` (inclusive). However, values outside this range are allowed and can be used to perform *extrapolation*. If this is not desired, use :ref:`clampf<class_@GlobalScope_method_clampf>` to limit ``weight``.
  3255. Both ``from`` and ``to`` must be the same type. Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector4<class_Vector4>`, :ref:`Color<class_Color>`, :ref:`Quaternion<class_Quaternion>`, :ref:`Basis<class_Basis>`, :ref:`Transform2D<class_Transform2D>`, :ref:`Transform3D<class_Transform3D>`.
  3256. ::
  3257. lerp(0, 4, 0.75) # Returns 3.0
  3258. See also :ref:`inverse_lerp<class_@GlobalScope_method_inverse_lerp>` which performs the reverse of this operation. To perform eased interpolation with :ref:`lerp<class_@GlobalScope_method_lerp>`, combine it with :ref:`ease<class_@GlobalScope_method_ease>` or :ref:`smoothstep<class_@GlobalScope_method_smoothstep>`. See also :ref:`remap<class_@GlobalScope_method_remap>` to map a continuous series of values to another.
  3259. \ **Note:** For better type safety, use :ref:`lerpf<class_@GlobalScope_method_lerpf>`, :ref:`Vector2.lerp<class_Vector2_method_lerp>`, :ref:`Vector3.lerp<class_Vector3_method_lerp>`, :ref:`Vector4.lerp<class_Vector4_method_lerp>`, :ref:`Color.lerp<class_Color_method_lerp>`, :ref:`Quaternion.slerp<class_Quaternion_method_slerp>`, :ref:`Basis.slerp<class_Basis_method_slerp>`, :ref:`Transform2D.interpolate_with<class_Transform2D_method_interpolate_with>`, or :ref:`Transform3D.interpolate_with<class_Transform3D_method_interpolate_with>`.
  3260. .. rst-class:: classref-item-separator
  3261. ----
  3262. .. _class_@GlobalScope_method_lerp_angle:
  3263. .. rst-class:: classref-method
  3264. :ref:`float<class_float>` **lerp_angle**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_lerp_angle>`
  3265. Linearly interpolates between two angles (in radians) by a ``weight`` value between 0.0 and 1.0.
  3266. Similar to :ref:`lerp<class_@GlobalScope_method_lerp>`, but interpolates correctly when the angles wrap around :ref:`@GDScript.TAU<class_@GDScript_constant_TAU>`. To perform eased interpolation with :ref:`lerp_angle<class_@GlobalScope_method_lerp_angle>`, combine it with :ref:`ease<class_@GlobalScope_method_ease>` or :ref:`smoothstep<class_@GlobalScope_method_smoothstep>`.
  3267. ::
  3268. extends Sprite
  3269. var elapsed = 0.0
  3270. func _process(delta):
  3271. var min_angle = deg_to_rad(0.0)
  3272. var max_angle = deg_to_rad(90.0)
  3273. rotation = lerp_angle(min_angle, max_angle, elapsed)
  3274. elapsed += delta
  3275. \ **Note:** This function lerps through the shortest path between ``from`` and ``to``. However, when these two angles are approximately ``PI + k * TAU`` apart for any integer ``k``, it's not obvious which way they lerp due to floating-point precision errors. For example, ``lerp_angle(0, PI, weight)`` lerps counter-clockwise, while ``lerp_angle(0, PI + 5 * TAU, weight)`` lerps clockwise.
  3276. .. rst-class:: classref-item-separator
  3277. ----
  3278. .. _class_@GlobalScope_method_lerpf:
  3279. .. rst-class:: classref-method
  3280. :ref:`float<class_float>` **lerpf**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, weight\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_lerpf>`
  3281. Linearly interpolates between two values by the factor defined in ``weight``. To perform interpolation, ``weight`` should be between ``0.0`` and ``1.0`` (inclusive). However, values outside this range are allowed and can be used to perform *extrapolation*. If this is not desired, use :ref:`clampf<class_@GlobalScope_method_clampf>` on the result of this function.
  3282. ::
  3283. lerpf(0, 4, 0.75) # Returns 3.0
  3284. See also :ref:`inverse_lerp<class_@GlobalScope_method_inverse_lerp>` which performs the reverse of this operation. To perform eased interpolation with :ref:`lerp<class_@GlobalScope_method_lerp>`, combine it with :ref:`ease<class_@GlobalScope_method_ease>` or :ref:`smoothstep<class_@GlobalScope_method_smoothstep>`.
  3285. .. rst-class:: classref-item-separator
  3286. ----
  3287. .. _class_@GlobalScope_method_linear_to_db:
  3288. .. rst-class:: classref-method
  3289. :ref:`float<class_float>` **linear_to_db**\ (\ lin\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_linear_to_db>`
  3290. Converts from linear energy to decibels (audio). Since volume is not normally linear, this can be used to implement volume sliders that behave as expected.
  3291. \ **Example:** Change the Master bus's volume through a :ref:`Slider<class_Slider>` node, which ranges from ``0.0`` to ``1.0``:
  3292. ::
  3293. AudioServer.set_bus_volume_db(AudioServer.get_bus_index("Master"), linear_to_db($Slider.value))
  3294. .. rst-class:: classref-item-separator
  3295. ----
  3296. .. _class_@GlobalScope_method_log:
  3297. .. rst-class:: classref-method
  3298. :ref:`float<class_float>` **log**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_log>`
  3299. Returns the `natural logarithm <https://en.wikipedia.org/wiki/Natural_logarithm>`__ of ``x`` (base `[i]e[/i] <https://en.wikipedia.org/wiki/E_(mathematical_constant)>`__, with *e* being approximately 2.71828). This is the amount of time needed to reach a certain level of continuous growth.
  3300. \ **Note:** This is not the same as the "log" function on most calculators, which uses a base 10 logarithm. To use base 10 logarithm, use ``log(x) / log(10)``.
  3301. ::
  3302. log(10) # Returns 2.302585
  3303. \ **Note:** The logarithm of ``0`` returns ``-inf``, while negative values return ``-nan``.
  3304. .. rst-class:: classref-item-separator
  3305. ----
  3306. .. _class_@GlobalScope_method_max:
  3307. .. rst-class:: classref-method
  3308. :ref:`Variant<class_Variant>` **max**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_max>`
  3309. Returns the maximum of the given numeric values. This function can take any number of arguments.
  3310. ::
  3311. max(1, 7, 3, -6, 5) # Returns 7
  3312. \ **Note:** When using this on vectors it will *not* perform component-wise maximum, and will pick the largest value when compared using ``x < y``. To perform component-wise maximum, use :ref:`Vector2.max<class_Vector2_method_max>`, :ref:`Vector2i.max<class_Vector2i_method_max>`, :ref:`Vector3.max<class_Vector3_method_max>`, :ref:`Vector3i.max<class_Vector3i_method_max>`, :ref:`Vector4.max<class_Vector4_method_max>`, and :ref:`Vector4i.max<class_Vector4i_method_max>`.
  3313. .. rst-class:: classref-item-separator
  3314. ----
  3315. .. _class_@GlobalScope_method_maxf:
  3316. .. rst-class:: classref-method
  3317. :ref:`float<class_float>` **maxf**\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_maxf>`
  3318. Returns the maximum of two :ref:`float<class_float>` values.
  3319. ::
  3320. maxf(3.6, 24) # Returns 24.0
  3321. maxf(-3.99, -4) # Returns -3.99
  3322. .. rst-class:: classref-item-separator
  3323. ----
  3324. .. _class_@GlobalScope_method_maxi:
  3325. .. rst-class:: classref-method
  3326. :ref:`int<class_int>` **maxi**\ (\ a\: :ref:`int<class_int>`, b\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_maxi>`
  3327. Returns the maximum of two :ref:`int<class_int>` values.
  3328. ::
  3329. maxi(1, 2) # Returns 2
  3330. maxi(-3, -4) # Returns -3
  3331. .. rst-class:: classref-item-separator
  3332. ----
  3333. .. _class_@GlobalScope_method_min:
  3334. .. rst-class:: classref-method
  3335. :ref:`Variant<class_Variant>` **min**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_min>`
  3336. Returns the minimum of the given numeric values. This function can take any number of arguments.
  3337. ::
  3338. min(1, 7, 3, -6, 5) # Returns -6
  3339. \ **Note:** When using this on vectors it will *not* perform component-wise minimum, and will pick the smallest value when compared using ``x < y``. To perform component-wise minimum, use :ref:`Vector2.min<class_Vector2_method_min>`, :ref:`Vector2i.min<class_Vector2i_method_min>`, :ref:`Vector3.min<class_Vector3_method_min>`, :ref:`Vector3i.min<class_Vector3i_method_min>`, :ref:`Vector4.min<class_Vector4_method_min>`, and :ref:`Vector4i.min<class_Vector4i_method_min>`.
  3340. .. rst-class:: classref-item-separator
  3341. ----
  3342. .. _class_@GlobalScope_method_minf:
  3343. .. rst-class:: classref-method
  3344. :ref:`float<class_float>` **minf**\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_minf>`
  3345. Returns the minimum of two :ref:`float<class_float>` values.
  3346. ::
  3347. minf(3.6, 24) # Returns 3.6
  3348. minf(-3.99, -4) # Returns -4.0
  3349. .. rst-class:: classref-item-separator
  3350. ----
  3351. .. _class_@GlobalScope_method_mini:
  3352. .. rst-class:: classref-method
  3353. :ref:`int<class_int>` **mini**\ (\ a\: :ref:`int<class_int>`, b\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_mini>`
  3354. Returns the minimum of two :ref:`int<class_int>` values.
  3355. ::
  3356. mini(1, 2) # Returns 1
  3357. mini(-3, -4) # Returns -4
  3358. .. rst-class:: classref-item-separator
  3359. ----
  3360. .. _class_@GlobalScope_method_move_toward:
  3361. .. rst-class:: classref-method
  3362. :ref:`float<class_float>` **move_toward**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, delta\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_move_toward>`
  3363. Moves ``from`` toward ``to`` by the ``delta`` amount. Will not go past ``to``.
  3364. Use a negative ``delta`` value to move away.
  3365. ::
  3366. move_toward(5, 10, 4) # Returns 9
  3367. move_toward(10, 5, 4) # Returns 6
  3368. move_toward(5, 10, 9) # Returns 10
  3369. move_toward(10, 5, -1.5) # Returns 11.5
  3370. .. rst-class:: classref-item-separator
  3371. ----
  3372. .. _class_@GlobalScope_method_nearest_po2:
  3373. .. rst-class:: classref-method
  3374. :ref:`int<class_int>` **nearest_po2**\ (\ value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_nearest_po2>`
  3375. Returns the smallest integer power of 2 that is greater than or equal to ``value``.
  3376. ::
  3377. nearest_po2(3) # Returns 4
  3378. nearest_po2(4) # Returns 4
  3379. nearest_po2(5) # Returns 8
  3380. nearest_po2(0) # Returns 0 (this may not be expected)
  3381. nearest_po2(-1) # Returns 0 (this may not be expected)
  3382. \ **Warning:** Due to its implementation, this method returns ``0`` rather than ``1`` for values less than or equal to ``0``, with an exception for ``value`` being the smallest negative 64-bit integer (``-9223372036854775808``) in which case the ``value`` is returned unchanged.
  3383. .. rst-class:: classref-item-separator
  3384. ----
  3385. .. _class_@GlobalScope_method_pingpong:
  3386. .. rst-class:: classref-method
  3387. :ref:`float<class_float>` **pingpong**\ (\ value\: :ref:`float<class_float>`, length\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_pingpong>`
  3388. Wraps ``value`` between ``0`` and the ``length``. If the limit is reached, the next value the function returns is decreased to the ``0`` side or increased to the ``length`` side (like a triangle wave). If ``length`` is less than zero, it becomes positive.
  3389. ::
  3390. pingpong(-3.0, 3.0) # Returns 3.0
  3391. pingpong(-2.0, 3.0) # Returns 2.0
  3392. pingpong(-1.0, 3.0) # Returns 1.0
  3393. pingpong(0.0, 3.0) # Returns 0.0
  3394. pingpong(1.0, 3.0) # Returns 1.0
  3395. pingpong(2.0, 3.0) # Returns 2.0
  3396. pingpong(3.0, 3.0) # Returns 3.0
  3397. pingpong(4.0, 3.0) # Returns 2.0
  3398. pingpong(5.0, 3.0) # Returns 1.0
  3399. pingpong(6.0, 3.0) # Returns 0.0
  3400. .. rst-class:: classref-item-separator
  3401. ----
  3402. .. _class_@GlobalScope_method_posmod:
  3403. .. rst-class:: classref-method
  3404. :ref:`int<class_int>` **posmod**\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_posmod>`
  3405. Returns the integer modulus of ``x`` divided by ``y`` that wraps equally in positive and negative.
  3406. ::
  3407. print("#(i) (i % 3) (posmod(i, 3))")
  3408. for i in range(-3, 4):
  3409. print("%2d %2d | %2d" % [i, i % 3, posmod(i, 3)])
  3410. Prints:
  3411. .. code:: text
  3412. (i) (i % 3) (posmod(i, 3))
  3413. -3 0 | 0
  3414. -2 -2 | 1
  3415. -1 -1 | 2
  3416. 0 0 | 0
  3417. 1 1 | 1
  3418. 2 2 | 2
  3419. 3 0 | 0
  3420. .. rst-class:: classref-item-separator
  3421. ----
  3422. .. _class_@GlobalScope_method_pow:
  3423. .. rst-class:: classref-method
  3424. :ref:`float<class_float>` **pow**\ (\ base\: :ref:`float<class_float>`, exp\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_pow>`
  3425. Returns the result of ``base`` raised to the power of ``exp``.
  3426. In GDScript, this is the equivalent of the ``**`` operator.
  3427. ::
  3428. pow(2, 5) # Returns 32.0
  3429. pow(4, 1.5) # Returns 8.0
  3430. .. rst-class:: classref-item-separator
  3431. ----
  3432. .. _class_@GlobalScope_method_print:
  3433. .. rst-class:: classref-method
  3434. |void| **print**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_print>`
  3435. Converts one or more arguments of any type to string in the best way possible and prints them to the console.
  3436. .. tabs::
  3437. .. code-tab:: gdscript
  3438. var a = [1, 2, 3]
  3439. print("a", "b", a) # Prints ab[1, 2, 3]
  3440. .. code-tab:: csharp
  3441. var a = new Godot.Collections.Array { 1, 2, 3 };
  3442. GD.Print("a", "b", a); // Prints ab[1, 2, 3]
  3443. \ **Note:** Consider using :ref:`push_error<class_@GlobalScope_method_push_error>` and :ref:`push_warning<class_@GlobalScope_method_push_warning>` to print error and warning messages instead of :ref:`print<class_@GlobalScope_method_print>` or :ref:`print_rich<class_@GlobalScope_method_print_rich>`. This distinguishes them from print messages used for debugging purposes, while also displaying a stack trace when an error or warning is printed. See also :ref:`Engine.print_to_stdout<class_Engine_property_print_to_stdout>` and :ref:`ProjectSettings.application/run/disable_stdout<class_ProjectSettings_property_application/run/disable_stdout>`.
  3444. .. rst-class:: classref-item-separator
  3445. ----
  3446. .. _class_@GlobalScope_method_print_rich:
  3447. .. rst-class:: classref-method
  3448. |void| **print_rich**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_print_rich>`
  3449. Converts one or more arguments of any type to string in the best way possible and prints them to the console.
  3450. The following BBCode tags are supported: ``b``, ``i``, ``u``, ``s``, ``indent``, ``code``, ``url``, ``center``, ``right``, ``color``, ``bgcolor``, ``fgcolor``.
  3451. Color tags only support the following named colors: ``black``, ``red``, ``green``, ``yellow``, ``blue``, ``magenta``, ``pink``, ``purple``, ``cyan``, ``white``, ``orange``, ``gray``. Hexadecimal color codes are not supported.
  3452. URL tags only support URLs wrapped by a URL tag, not URLs with a different title.
  3453. When printing to standard output, the supported subset of BBCode is converted to ANSI escape codes for the terminal emulator to display. Support for ANSI escape codes varies across terminal emulators, especially for italic and strikethrough. In standard output, ``code`` is represented with faint text but without any font change. Unsupported tags are left as-is in standard output.
  3454. .. tabs::
  3455. .. code-tab:: gdscript
  3456. print_rich("[color=green][b]Hello world![/b][/color]") # Prints out "Hello world!" in green with a bold font
  3457. .. code-tab:: csharp
  3458. GD.PrintRich("[color=green][b]Hello world![/b][/color]"); // Prints out "Hello world!" in green with a bold font
  3459. \ **Note:** Consider using :ref:`push_error<class_@GlobalScope_method_push_error>` and :ref:`push_warning<class_@GlobalScope_method_push_warning>` to print error and warning messages instead of :ref:`print<class_@GlobalScope_method_print>` or :ref:`print_rich<class_@GlobalScope_method_print_rich>`. This distinguishes them from print messages used for debugging purposes, while also displaying a stack trace when an error or warning is printed.
  3460. \ **Note:** On Windows, only Windows 10 and later correctly displays ANSI escape codes in standard output.
  3461. \ **Note:** Output displayed in the editor supports clickable ``[url=address]text[/url]`` tags. The ``[url]`` tag's ``address`` value is handled by :ref:`OS.shell_open<class_OS_method_shell_open>` when clicked.
  3462. .. rst-class:: classref-item-separator
  3463. ----
  3464. .. _class_@GlobalScope_method_print_verbose:
  3465. .. rst-class:: classref-method
  3466. |void| **print_verbose**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_print_verbose>`
  3467. If verbose mode is enabled (:ref:`OS.is_stdout_verbose<class_OS_method_is_stdout_verbose>` returning ``true``), converts one or more arguments of any type to string in the best way possible and prints them to the console.
  3468. .. rst-class:: classref-item-separator
  3469. ----
  3470. .. _class_@GlobalScope_method_printerr:
  3471. .. rst-class:: classref-method
  3472. |void| **printerr**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_printerr>`
  3473. Prints one or more arguments to strings in the best way possible to standard error line.
  3474. .. tabs::
  3475. .. code-tab:: gdscript
  3476. printerr("prints to stderr")
  3477. .. code-tab:: csharp
  3478. GD.PrintErr("prints to stderr");
  3479. .. rst-class:: classref-item-separator
  3480. ----
  3481. .. _class_@GlobalScope_method_printraw:
  3482. .. rst-class:: classref-method
  3483. |void| **printraw**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_printraw>`
  3484. Prints one or more arguments to strings in the best way possible to the OS terminal. Unlike :ref:`print<class_@GlobalScope_method_print>`, no newline is automatically added at the end.
  3485. \ **Note:** The OS terminal is *not* the same as the editor's Output dock. The output sent to the OS terminal can be seen when running Godot from a terminal. On Windows, this requires using the ``console.exe`` executable.
  3486. .. tabs::
  3487. .. code-tab:: gdscript
  3488. printraw("A")
  3489. printraw("B")
  3490. printraw("C")
  3491. # Prints ABC to terminal
  3492. .. code-tab:: csharp
  3493. GD.PrintRaw("A");
  3494. GD.PrintRaw("B");
  3495. GD.PrintRaw("C");
  3496. // Prints ABC to terminal
  3497. .. rst-class:: classref-item-separator
  3498. ----
  3499. .. _class_@GlobalScope_method_prints:
  3500. .. rst-class:: classref-method
  3501. |void| **prints**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_prints>`
  3502. Prints one or more arguments to the console with a space between each argument.
  3503. .. tabs::
  3504. .. code-tab:: gdscript
  3505. prints("A", "B", "C") # Prints A B C
  3506. .. code-tab:: csharp
  3507. GD.PrintS("A", "B", "C"); // Prints A B C
  3508. .. rst-class:: classref-item-separator
  3509. ----
  3510. .. _class_@GlobalScope_method_printt:
  3511. .. rst-class:: classref-method
  3512. |void| **printt**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_printt>`
  3513. Prints one or more arguments to the console with a tab between each argument.
  3514. .. tabs::
  3515. .. code-tab:: gdscript
  3516. printt("A", "B", "C") # Prints A B C
  3517. .. code-tab:: csharp
  3518. GD.PrintT("A", "B", "C"); // Prints A B C
  3519. .. rst-class:: classref-item-separator
  3520. ----
  3521. .. _class_@GlobalScope_method_push_error:
  3522. .. rst-class:: classref-method
  3523. |void| **push_error**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_push_error>`
  3524. Pushes an error message to Godot's built-in debugger and to the OS terminal.
  3525. .. tabs::
  3526. .. code-tab:: gdscript
  3527. push_error("test error") # Prints "test error" to debugger and terminal as error call
  3528. .. code-tab:: csharp
  3529. GD.PushError("test error"); // Prints "test error" to debugger and terminal as error call
  3530. \ **Note:** This function does not pause project execution. To print an error message and pause project execution in debug builds, use ``assert(false, "test error")`` instead.
  3531. .. rst-class:: classref-item-separator
  3532. ----
  3533. .. _class_@GlobalScope_method_push_warning:
  3534. .. rst-class:: classref-method
  3535. |void| **push_warning**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_push_warning>`
  3536. Pushes a warning message to Godot's built-in debugger and to the OS terminal.
  3537. .. tabs::
  3538. .. code-tab:: gdscript
  3539. push_warning("test warning") # Prints "test warning" to debugger and terminal as warning call
  3540. .. code-tab:: csharp
  3541. GD.PushWarning("test warning"); // Prints "test warning" to debugger and terminal as warning call
  3542. .. rst-class:: classref-item-separator
  3543. ----
  3544. .. _class_@GlobalScope_method_rad_to_deg:
  3545. .. rst-class:: classref-method
  3546. :ref:`float<class_float>` **rad_to_deg**\ (\ rad\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_rad_to_deg>`
  3547. Converts an angle expressed in radians to degrees.
  3548. ::
  3549. rad_to_deg(0.523599) # Returns 30
  3550. rad_to_deg(PI) # Returns 180
  3551. rad_to_deg(PI * 2) # Returns 360
  3552. .. rst-class:: classref-item-separator
  3553. ----
  3554. .. _class_@GlobalScope_method_rand_from_seed:
  3555. .. rst-class:: classref-method
  3556. :ref:`PackedInt64Array<class_PackedInt64Array>` **rand_from_seed**\ (\ seed\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_rand_from_seed>`
  3557. Given a ``seed``, returns a :ref:`PackedInt64Array<class_PackedInt64Array>` of size ``2``, where its first element is the randomized :ref:`int<class_int>` value, and the second element is the same as ``seed``. Passing the same ``seed`` consistently returns the same array.
  3558. \ **Note:** "Seed" here refers to the internal state of the pseudo random number generator, currently implemented as a 64 bit integer.
  3559. ::
  3560. var a = rand_from_seed(4)
  3561. print(a[0]) # Prints 2879024997
  3562. print(a[1]) # Prints 4
  3563. .. rst-class:: classref-item-separator
  3564. ----
  3565. .. _class_@GlobalScope_method_randf:
  3566. .. rst-class:: classref-method
  3567. :ref:`float<class_float>` **randf**\ (\ ) :ref:`🔗<class_@GlobalScope_method_randf>`
  3568. Returns a random floating-point value between ``0.0`` and ``1.0`` (inclusive).
  3569. .. tabs::
  3570. .. code-tab:: gdscript
  3571. randf() # Returns e.g. 0.375671
  3572. .. code-tab:: csharp
  3573. GD.Randf(); // Returns e.g. 0.375671
  3574. .. rst-class:: classref-item-separator
  3575. ----
  3576. .. _class_@GlobalScope_method_randf_range:
  3577. .. rst-class:: classref-method
  3578. :ref:`float<class_float>` **randf_range**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_randf_range>`
  3579. Returns a random floating-point value between ``from`` and ``to`` (inclusive).
  3580. .. tabs::
  3581. .. code-tab:: gdscript
  3582. randf_range(0, 20.5) # Returns e.g. 7.45315
  3583. randf_range(-10, 10) # Returns e.g. -3.844535
  3584. .. code-tab:: csharp
  3585. GD.RandRange(0.0, 20.5); // Returns e.g. 7.45315
  3586. GD.RandRange(-10.0, 10.0); // Returns e.g. -3.844535
  3587. .. rst-class:: classref-item-separator
  3588. ----
  3589. .. _class_@GlobalScope_method_randfn:
  3590. .. rst-class:: classref-method
  3591. :ref:`float<class_float>` **randfn**\ (\ mean\: :ref:`float<class_float>`, deviation\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_randfn>`
  3592. Returns a `normally-distributed <https://en.wikipedia.org/wiki/Normal_distribution>`__, pseudo-random floating-point value from the specified ``mean`` and a standard ``deviation``. This is also known as a Gaussian distribution.
  3593. \ **Note:** This method uses the `Box-Muller transform <https://en.wikipedia.org/wiki/Box%E2%80%93Muller_transform>`__ algorithm.
  3594. .. rst-class:: classref-item-separator
  3595. ----
  3596. .. _class_@GlobalScope_method_randi:
  3597. .. rst-class:: classref-method
  3598. :ref:`int<class_int>` **randi**\ (\ ) :ref:`🔗<class_@GlobalScope_method_randi>`
  3599. Returns a random unsigned 32-bit integer. Use remainder to obtain a random value in the interval ``[0, N - 1]`` (where N is smaller than 2^32).
  3600. .. tabs::
  3601. .. code-tab:: gdscript
  3602. randi() # Returns random integer between 0 and 2^32 - 1
  3603. randi() % 20 # Returns random integer between 0 and 19
  3604. randi() % 100 # Returns random integer between 0 and 99
  3605. randi() % 100 + 1 # Returns random integer between 1 and 100
  3606. .. code-tab:: csharp
  3607. GD.Randi(); // Returns random integer between 0 and 2^32 - 1
  3608. GD.Randi() % 20; // Returns random integer between 0 and 19
  3609. GD.Randi() % 100; // Returns random integer between 0 and 99
  3610. GD.Randi() % 100 + 1; // Returns random integer between 1 and 100
  3611. .. rst-class:: classref-item-separator
  3612. ----
  3613. .. _class_@GlobalScope_method_randi_range:
  3614. .. rst-class:: classref-method
  3615. :ref:`int<class_int>` **randi_range**\ (\ from\: :ref:`int<class_int>`, to\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_randi_range>`
  3616. Returns a random signed 32-bit integer between ``from`` and ``to`` (inclusive). If ``to`` is lesser than ``from``, they are swapped.
  3617. .. tabs::
  3618. .. code-tab:: gdscript
  3619. randi_range(0, 1) # Returns either 0 or 1
  3620. randi_range(-10, 1000) # Returns random integer between -10 and 1000
  3621. .. code-tab:: csharp
  3622. GD.RandRange(0, 1); // Returns either 0 or 1
  3623. GD.RandRange(-10, 1000); // Returns random integer between -10 and 1000
  3624. .. rst-class:: classref-item-separator
  3625. ----
  3626. .. _class_@GlobalScope_method_randomize:
  3627. .. rst-class:: classref-method
  3628. |void| **randomize**\ (\ ) :ref:`🔗<class_@GlobalScope_method_randomize>`
  3629. Randomizes the seed (or the internal state) of the random number generator. The current implementation uses a number based on the device's time.
  3630. \ **Note:** This function is called automatically when the project is run. If you need to fix the seed to have consistent, reproducible results, use :ref:`seed<class_@GlobalScope_method_seed>` to initialize the random number generator.
  3631. .. rst-class:: classref-item-separator
  3632. ----
  3633. .. _class_@GlobalScope_method_remap:
  3634. .. rst-class:: classref-method
  3635. :ref:`float<class_float>` **remap**\ (\ value\: :ref:`float<class_float>`, istart\: :ref:`float<class_float>`, istop\: :ref:`float<class_float>`, ostart\: :ref:`float<class_float>`, ostop\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_remap>`
  3636. Maps a ``value`` from range ``[istart, istop]`` to ``[ostart, ostop]``. See also :ref:`lerp<class_@GlobalScope_method_lerp>` and :ref:`inverse_lerp<class_@GlobalScope_method_inverse_lerp>`. If ``value`` is outside ``[istart, istop]``, then the resulting value will also be outside ``[ostart, ostop]``. If this is not desired, use :ref:`clamp<class_@GlobalScope_method_clamp>` on the result of this function.
  3637. ::
  3638. remap(75, 0, 100, -1, 1) # Returns 0.5
  3639. For complex use cases where multiple ranges are needed, consider using :ref:`Curve<class_Curve>` or :ref:`Gradient<class_Gradient>` instead.
  3640. \ **Note:** If ``istart == istop``, the return value is undefined (most likely NaN, INF, or -INF).
  3641. .. rst-class:: classref-item-separator
  3642. ----
  3643. .. _class_@GlobalScope_method_rid_allocate_id:
  3644. .. rst-class:: classref-method
  3645. :ref:`int<class_int>` **rid_allocate_id**\ (\ ) :ref:`🔗<class_@GlobalScope_method_rid_allocate_id>`
  3646. Allocates a unique ID which can be used by the implementation to construct an RID. This is used mainly from native extensions to implement servers.
  3647. .. rst-class:: classref-item-separator
  3648. ----
  3649. .. _class_@GlobalScope_method_rid_from_int64:
  3650. .. rst-class:: classref-method
  3651. :ref:`RID<class_RID>` **rid_from_int64**\ (\ base\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_rid_from_int64>`
  3652. Creates an RID from a ``base``. This is used mainly from native extensions to build servers.
  3653. .. rst-class:: classref-item-separator
  3654. ----
  3655. .. _class_@GlobalScope_method_rotate_toward:
  3656. .. rst-class:: classref-method
  3657. :ref:`float<class_float>` **rotate_toward**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, delta\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_rotate_toward>`
  3658. Rotates ``from`` toward ``to`` by the ``delta`` amount. Will not go past ``to``.
  3659. Similar to :ref:`move_toward<class_@GlobalScope_method_move_toward>`, but interpolates correctly when the angles wrap around :ref:`@GDScript.TAU<class_@GDScript_constant_TAU>`.
  3660. If ``delta`` is negative, this function will rotate away from ``to``, toward the opposite angle, and will not go past the opposite angle.
  3661. .. rst-class:: classref-item-separator
  3662. ----
  3663. .. _class_@GlobalScope_method_round:
  3664. .. rst-class:: classref-method
  3665. :ref:`Variant<class_Variant>` **round**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_round>`
  3666. Rounds ``x`` to the nearest whole number, with halfway cases rounded away from 0. Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`.
  3667. ::
  3668. round(2.4) # Returns 2
  3669. round(2.5) # Returns 3
  3670. round(2.6) # Returns 3
  3671. See also :ref:`floor<class_@GlobalScope_method_floor>`, :ref:`ceil<class_@GlobalScope_method_ceil>`, and :ref:`snapped<class_@GlobalScope_method_snapped>`.
  3672. \ **Note:** For better type safety, use :ref:`roundf<class_@GlobalScope_method_roundf>`, :ref:`roundi<class_@GlobalScope_method_roundi>`, :ref:`Vector2.round<class_Vector2_method_round>`, :ref:`Vector3.round<class_Vector3_method_round>`, or :ref:`Vector4.round<class_Vector4_method_round>`.
  3673. .. rst-class:: classref-item-separator
  3674. ----
  3675. .. _class_@GlobalScope_method_roundf:
  3676. .. rst-class:: classref-method
  3677. :ref:`float<class_float>` **roundf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_roundf>`
  3678. Rounds ``x`` to the nearest whole number, with halfway cases rounded away from 0.
  3679. A type-safe version of :ref:`round<class_@GlobalScope_method_round>`, returning a :ref:`float<class_float>`.
  3680. .. rst-class:: classref-item-separator
  3681. ----
  3682. .. _class_@GlobalScope_method_roundi:
  3683. .. rst-class:: classref-method
  3684. :ref:`int<class_int>` **roundi**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_roundi>`
  3685. Rounds ``x`` to the nearest whole number, with halfway cases rounded away from 0.
  3686. A type-safe version of :ref:`round<class_@GlobalScope_method_round>`, returning an :ref:`int<class_int>`.
  3687. .. rst-class:: classref-item-separator
  3688. ----
  3689. .. _class_@GlobalScope_method_seed:
  3690. .. rst-class:: classref-method
  3691. |void| **seed**\ (\ base\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_seed>`
  3692. Sets the seed for the random number generator to ``base``. Setting the seed manually can ensure consistent, repeatable results for most random functions.
  3693. .. tabs::
  3694. .. code-tab:: gdscript
  3695. var my_seed = "Godot Rocks".hash()
  3696. seed(my_seed)
  3697. var a = randf() + randi()
  3698. seed(my_seed)
  3699. var b = randf() + randi()
  3700. # a and b are now identical
  3701. .. code-tab:: csharp
  3702. ulong mySeed = (ulong)GD.Hash("Godot Rocks");
  3703. GD.Seed(mySeed);
  3704. var a = GD.Randf() + GD.Randi();
  3705. GD.Seed(mySeed);
  3706. var b = GD.Randf() + GD.Randi();
  3707. // a and b are now identical
  3708. .. rst-class:: classref-item-separator
  3709. ----
  3710. .. _class_@GlobalScope_method_sign:
  3711. .. rst-class:: classref-method
  3712. :ref:`Variant<class_Variant>` **sign**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_sign>`
  3713. Returns the same type of :ref:`Variant<class_Variant>` as ``x``, with ``-1`` for negative values, ``1`` for positive values, and ``0`` for zeros. For ``nan`` values it returns 0.
  3714. Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`.
  3715. ::
  3716. sign(-6.0) # Returns -1
  3717. sign(0.0) # Returns 0
  3718. sign(6.0) # Returns 1
  3719. sign(NAN) # Returns 0
  3720. sign(Vector3(-6.0, 0.0, 6.0)) # Returns (-1, 0, 1)
  3721. \ **Note:** For better type safety, use :ref:`signf<class_@GlobalScope_method_signf>`, :ref:`signi<class_@GlobalScope_method_signi>`, :ref:`Vector2.sign<class_Vector2_method_sign>`, :ref:`Vector2i.sign<class_Vector2i_method_sign>`, :ref:`Vector3.sign<class_Vector3_method_sign>`, :ref:`Vector3i.sign<class_Vector3i_method_sign>`, :ref:`Vector4.sign<class_Vector4_method_sign>`, or :ref:`Vector4i.sign<class_Vector4i_method_sign>`.
  3722. .. rst-class:: classref-item-separator
  3723. ----
  3724. .. _class_@GlobalScope_method_signf:
  3725. .. rst-class:: classref-method
  3726. :ref:`float<class_float>` **signf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_signf>`
  3727. Returns ``-1.0`` if ``x`` is negative, ``1.0`` if ``x`` is positive, and ``0.0`` if ``x`` is zero. For ``nan`` values of ``x`` it returns 0.0.
  3728. ::
  3729. signf(-6.5) # Returns -1.0
  3730. signf(0.0) # Returns 0.0
  3731. signf(6.5) # Returns 1.0
  3732. signf(NAN) # Returns 0.0
  3733. .. rst-class:: classref-item-separator
  3734. ----
  3735. .. _class_@GlobalScope_method_signi:
  3736. .. rst-class:: classref-method
  3737. :ref:`int<class_int>` **signi**\ (\ x\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_signi>`
  3738. Returns ``-1`` if ``x`` is negative, ``1`` if ``x`` is positive, and ``0`` if ``x`` is zero.
  3739. ::
  3740. signi(-6) # Returns -1
  3741. signi(0) # Returns 0
  3742. signi(6) # Returns 1
  3743. .. rst-class:: classref-item-separator
  3744. ----
  3745. .. _class_@GlobalScope_method_sin:
  3746. .. rst-class:: classref-method
  3747. :ref:`float<class_float>` **sin**\ (\ angle_rad\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_sin>`
  3748. Returns the sine of angle ``angle_rad`` in radians.
  3749. ::
  3750. sin(0.523599) # Returns 0.5
  3751. sin(deg_to_rad(90)) # Returns 1.0
  3752. .. rst-class:: classref-item-separator
  3753. ----
  3754. .. _class_@GlobalScope_method_sinh:
  3755. .. rst-class:: classref-method
  3756. :ref:`float<class_float>` **sinh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_sinh>`
  3757. Returns the hyperbolic sine of ``x``.
  3758. ::
  3759. var a = log(2.0) # Returns 0.693147
  3760. sinh(a) # Returns 0.75
  3761. .. rst-class:: classref-item-separator
  3762. ----
  3763. .. _class_@GlobalScope_method_smoothstep:
  3764. .. rst-class:: classref-method
  3765. :ref:`float<class_float>` **smoothstep**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`, x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_smoothstep>`
  3766. Returns a smooth cubic Hermite interpolation between ``0`` and ``1``.
  3767. For positive ranges (when ``from <= to``) the return value is ``0`` when ``x <= from``, and ``1`` when ``x >= to``. If ``x`` lies between ``from`` and ``to``, the return value follows an S-shaped curve that smoothly transitions from ``0`` to ``1``.
  3768. For negative ranges (when ``from > to``) the function is mirrored and returns ``1`` when ``x <= to`` and ``0`` when ``x >= from``.
  3769. This S-shaped curve is the cubic Hermite interpolator, given by ``f(y) = 3*y^2 - 2*y^3`` where ``y = (x-from) / (to-from)``.
  3770. ::
  3771. smoothstep(0, 2, -5.0) # Returns 0.0
  3772. smoothstep(0, 2, 0.5) # Returns 0.15625
  3773. smoothstep(0, 2, 1.0) # Returns 0.5
  3774. smoothstep(0, 2, 2.0) # Returns 1.0
  3775. Compared to :ref:`ease<class_@GlobalScope_method_ease>` with a curve value of ``-1.6521``, :ref:`smoothstep<class_@GlobalScope_method_smoothstep>` returns the smoothest possible curve with no sudden changes in the derivative. If you need to perform more advanced transitions, use :ref:`Tween<class_Tween>` or :ref:`AnimationPlayer<class_AnimationPlayer>`.
  3776. \ `Comparison between smoothstep() and ease(x, -1.6521) return values <https://raw.githubusercontent.com/godotengine/godot-docs/master/img/smoothstep_ease_comparison.png>`__\
  3777. \ `Smoothstep() return values with positive, zero, and negative ranges <https://raw.githubusercontent.com/godotengine/godot-docs/master/img/smoothstep_range.webp>`__
  3778. .. rst-class:: classref-item-separator
  3779. ----
  3780. .. _class_@GlobalScope_method_snapped:
  3781. .. rst-class:: classref-method
  3782. :ref:`Variant<class_Variant>` **snapped**\ (\ x\: :ref:`Variant<class_Variant>`, step\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_snapped>`
  3783. Returns the multiple of ``step`` that is the closest to ``x``. This can also be used to round a floating-point number to an arbitrary number of decimals.
  3784. The returned value is the same type of :ref:`Variant<class_Variant>` as ``step``. Supported types: :ref:`int<class_int>`, :ref:`float<class_float>`, :ref:`Vector2<class_Vector2>`, :ref:`Vector2i<class_Vector2i>`, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`.
  3785. ::
  3786. snapped(100, 32) # Returns 96
  3787. snapped(3.14159, 0.01) # Returns 3.14
  3788. snapped(Vector2(34, 70), Vector2(8, 8)) # Returns (32, 72)
  3789. See also :ref:`ceil<class_@GlobalScope_method_ceil>`, :ref:`floor<class_@GlobalScope_method_floor>`, and :ref:`round<class_@GlobalScope_method_round>`.
  3790. \ **Note:** For better type safety, use :ref:`snappedf<class_@GlobalScope_method_snappedf>`, :ref:`snappedi<class_@GlobalScope_method_snappedi>`, :ref:`Vector2.snapped<class_Vector2_method_snapped>`, :ref:`Vector2i.snapped<class_Vector2i_method_snapped>`, :ref:`Vector3.snapped<class_Vector3_method_snapped>`, :ref:`Vector3i.snapped<class_Vector3i_method_snapped>`, :ref:`Vector4.snapped<class_Vector4_method_snapped>`, or :ref:`Vector4i.snapped<class_Vector4i_method_snapped>`.
  3791. .. rst-class:: classref-item-separator
  3792. ----
  3793. .. _class_@GlobalScope_method_snappedf:
  3794. .. rst-class:: classref-method
  3795. :ref:`float<class_float>` **snappedf**\ (\ x\: :ref:`float<class_float>`, step\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_snappedf>`
  3796. Returns the multiple of ``step`` that is the closest to ``x``. This can also be used to round a floating-point number to an arbitrary number of decimals.
  3797. A type-safe version of :ref:`snapped<class_@GlobalScope_method_snapped>`, returning a :ref:`float<class_float>`.
  3798. ::
  3799. snappedf(32.0, 2.5) # Returns 32.5
  3800. snappedf(3.14159, 0.01) # Returns 3.14
  3801. .. rst-class:: classref-item-separator
  3802. ----
  3803. .. _class_@GlobalScope_method_snappedi:
  3804. .. rst-class:: classref-method
  3805. :ref:`int<class_int>` **snappedi**\ (\ x\: :ref:`float<class_float>`, step\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_snappedi>`
  3806. Returns the multiple of ``step`` that is the closest to ``x``.
  3807. A type-safe version of :ref:`snapped<class_@GlobalScope_method_snapped>`, returning an :ref:`int<class_int>`.
  3808. ::
  3809. snappedi(53, 16) # Returns 48
  3810. snappedi(4096, 100) # Returns 4100
  3811. .. rst-class:: classref-item-separator
  3812. ----
  3813. .. _class_@GlobalScope_method_sqrt:
  3814. .. rst-class:: classref-method
  3815. :ref:`float<class_float>` **sqrt**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_sqrt>`
  3816. Returns the square root of ``x``, where ``x`` is a non-negative number.
  3817. ::
  3818. sqrt(9) # Returns 3
  3819. sqrt(10.24) # Returns 3.2
  3820. sqrt(-1) # Returns NaN
  3821. \ **Note:** Negative values of ``x`` return NaN ("Not a Number"). in C#, if you need negative inputs, use ``System.Numerics.Complex``.
  3822. .. rst-class:: classref-item-separator
  3823. ----
  3824. .. _class_@GlobalScope_method_step_decimals:
  3825. .. rst-class:: classref-method
  3826. :ref:`int<class_int>` **step_decimals**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_step_decimals>`
  3827. Returns the position of the first non-zero digit, after the decimal point. Note that the maximum return value is 10, which is a design decision in the implementation.
  3828. ::
  3829. var n = step_decimals(5) # n is 0
  3830. n = step_decimals(1.0005) # n is 4
  3831. n = step_decimals(0.000000005) # n is 9
  3832. .. rst-class:: classref-item-separator
  3833. ----
  3834. .. _class_@GlobalScope_method_str:
  3835. .. rst-class:: classref-method
  3836. :ref:`String<class_String>` **str**\ (\ ...\ ) |vararg| :ref:`🔗<class_@GlobalScope_method_str>`
  3837. Converts one or more arguments of any :ref:`Variant<class_Variant>` type to a :ref:`String<class_String>` in the best way possible.
  3838. ::
  3839. var a = [10, 20, 30]
  3840. var b = str(a)
  3841. print(len(a)) # Prints 3 (the number of elements in the array).
  3842. print(len(b)) # Prints 12 (the length of the string "[10, 20, 30]").
  3843. .. rst-class:: classref-item-separator
  3844. ----
  3845. .. _class_@GlobalScope_method_str_to_var:
  3846. .. rst-class:: classref-method
  3847. :ref:`Variant<class_Variant>` **str_to_var**\ (\ string\: :ref:`String<class_String>`\ ) :ref:`🔗<class_@GlobalScope_method_str_to_var>`
  3848. Converts a formatted ``string`` that was returned by :ref:`var_to_str<class_@GlobalScope_method_var_to_str>` to the original :ref:`Variant<class_Variant>`.
  3849. .. tabs::
  3850. .. code-tab:: gdscript
  3851. var data = '{ "a": 1, "b": 2 }' # data is a String
  3852. var dict = str_to_var(data) # dict is a Dictionary
  3853. print(dict["a"]) # Prints 1
  3854. .. code-tab:: csharp
  3855. string data = "{ \"a\": 1, \"b\": 2 }"; // data is a string
  3856. var dict = GD.StrToVar(data).AsGodotDictionary(); // dict is a Dictionary
  3857. GD.Print(dict["a"]); // Prints 1
  3858. .. rst-class:: classref-item-separator
  3859. ----
  3860. .. _class_@GlobalScope_method_tan:
  3861. .. rst-class:: classref-method
  3862. :ref:`float<class_float>` **tan**\ (\ angle_rad\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_tan>`
  3863. Returns the tangent of angle ``angle_rad`` in radians.
  3864. ::
  3865. tan(deg_to_rad(45)) # Returns 1
  3866. .. rst-class:: classref-item-separator
  3867. ----
  3868. .. _class_@GlobalScope_method_tanh:
  3869. .. rst-class:: classref-method
  3870. :ref:`float<class_float>` **tanh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_tanh>`
  3871. Returns the hyperbolic tangent of ``x``.
  3872. ::
  3873. var a = log(2.0) # Returns 0.693147
  3874. tanh(a) # Returns 0.6
  3875. .. rst-class:: classref-item-separator
  3876. ----
  3877. .. _class_@GlobalScope_method_type_convert:
  3878. .. rst-class:: classref-method
  3879. :ref:`Variant<class_Variant>` **type_convert**\ (\ variant\: :ref:`Variant<class_Variant>`, type\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_type_convert>`
  3880. Converts the given ``variant`` to the given ``type``, using the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` values. This method is generous with how it handles types, it can automatically convert between array types, convert numeric :ref:`String<class_String>`\ s to :ref:`int<class_int>`, and converting most things to :ref:`String<class_String>`.
  3881. If the type conversion cannot be done, this method will return the default value for that type, for example converting :ref:`Rect2<class_Rect2>` to :ref:`Vector2<class_Vector2>` will always return :ref:`Vector2.ZERO<class_Vector2_constant_ZERO>`. This method will never show error messages as long as ``type`` is a valid Variant type.
  3882. The returned value is a :ref:`Variant<class_Variant>`, but the data inside and its type will be the same as the requested type.
  3883. ::
  3884. type_convert("Hi!", TYPE_INT) # Returns 0
  3885. type_convert("123", TYPE_INT) # Returns 123
  3886. type_convert(123.4, TYPE_INT) # Returns 123
  3887. type_convert(5, TYPE_VECTOR2) # Returns (0, 0)
  3888. type_convert("Hi!", TYPE_NIL) # Returns null
  3889. .. rst-class:: classref-item-separator
  3890. ----
  3891. .. _class_@GlobalScope_method_type_string:
  3892. .. rst-class:: classref-method
  3893. :ref:`String<class_String>` **type_string**\ (\ type\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_type_string>`
  3894. Returns a human-readable name of the given ``type``, using the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` values.
  3895. ::
  3896. print(TYPE_INT) # Prints 2.
  3897. print(type_string(TYPE_INT)) # Prints "int".
  3898. print(type_string(TYPE_STRING)) # Prints "String".
  3899. See also :ref:`typeof<class_@GlobalScope_method_typeof>`.
  3900. .. rst-class:: classref-item-separator
  3901. ----
  3902. .. _class_@GlobalScope_method_typeof:
  3903. .. rst-class:: classref-method
  3904. :ref:`int<class_int>` **typeof**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_typeof>`
  3905. Returns the internal type of the given ``variable``, using the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` values.
  3906. ::
  3907. var json = JSON.new()
  3908. json.parse('["a", "b", "c"]')
  3909. var result = json.get_data()
  3910. if typeof(result) == TYPE_ARRAY:
  3911. print(result[0]) # Prints a
  3912. else:
  3913. print("Unexpected result")
  3914. See also :ref:`type_string<class_@GlobalScope_method_type_string>`.
  3915. .. rst-class:: classref-item-separator
  3916. ----
  3917. .. _class_@GlobalScope_method_var_to_bytes:
  3918. .. rst-class:: classref-method
  3919. :ref:`PackedByteArray<class_PackedByteArray>` **var_to_bytes**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_var_to_bytes>`
  3920. Encodes a :ref:`Variant<class_Variant>` value to a byte array, without encoding objects. Deserialization can be done with :ref:`bytes_to_var<class_@GlobalScope_method_bytes_to_var>`.
  3921. \ **Note:** If you need object serialization, see :ref:`var_to_bytes_with_objects<class_@GlobalScope_method_var_to_bytes_with_objects>`.
  3922. \ **Note:** Encoding :ref:`Callable<class_Callable>` is not supported and will result in an empty value, regardless of the data.
  3923. .. rst-class:: classref-item-separator
  3924. ----
  3925. .. _class_@GlobalScope_method_var_to_bytes_with_objects:
  3926. .. rst-class:: classref-method
  3927. :ref:`PackedByteArray<class_PackedByteArray>` **var_to_bytes_with_objects**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_var_to_bytes_with_objects>`
  3928. Encodes a :ref:`Variant<class_Variant>` value to a byte array. Encoding objects is allowed (and can potentially include executable code). Deserialization can be done with :ref:`bytes_to_var_with_objects<class_@GlobalScope_method_bytes_to_var_with_objects>`.
  3929. \ **Note:** Encoding :ref:`Callable<class_Callable>` is not supported and will result in an empty value, regardless of the data.
  3930. .. rst-class:: classref-item-separator
  3931. ----
  3932. .. _class_@GlobalScope_method_var_to_str:
  3933. .. rst-class:: classref-method
  3934. :ref:`String<class_String>` **var_to_str**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_var_to_str>`
  3935. Converts a :ref:`Variant<class_Variant>` ``variable`` to a formatted :ref:`String<class_String>` that can then be parsed using :ref:`str_to_var<class_@GlobalScope_method_str_to_var>`.
  3936. .. tabs::
  3937. .. code-tab:: gdscript
  3938. var a = { "a": 1, "b": 2 }
  3939. print(var_to_str(a))
  3940. .. code-tab:: csharp
  3941. var a = new Godot.Collections.Dictionary { ["a"] = 1, ["b"] = 2 };
  3942. GD.Print(GD.VarToStr(a));
  3943. Prints:
  3944. .. code:: text
  3945. {
  3946. "a": 1,
  3947. "b": 2
  3948. }
  3949. \ **Note:** Converting :ref:`Signal<class_Signal>` or :ref:`Callable<class_Callable>` is not supported and will result in an empty value for these types, regardless of their data.
  3950. .. rst-class:: classref-item-separator
  3951. ----
  3952. .. _class_@GlobalScope_method_weakref:
  3953. .. rst-class:: classref-method
  3954. :ref:`Variant<class_Variant>` **weakref**\ (\ obj\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_weakref>`
  3955. Returns a :ref:`WeakRef<class_WeakRef>` instance holding a weak reference to ``obj``. Returns an empty :ref:`WeakRef<class_WeakRef>` instance if ``obj`` is ``null``. Prints an error and returns ``null`` if ``obj`` is neither :ref:`Object<class_Object>`-derived nor ``null``.
  3956. A weak reference to an object is not enough to keep the object alive: when the only remaining references to a referent are weak references, garbage collection is free to destroy the referent and reuse its memory for something else. However, until the object is actually destroyed the weak reference may return the object even if there are no strong references to it.
  3957. .. rst-class:: classref-item-separator
  3958. ----
  3959. .. _class_@GlobalScope_method_wrap:
  3960. .. rst-class:: classref-method
  3961. :ref:`Variant<class_Variant>` **wrap**\ (\ value\: :ref:`Variant<class_Variant>`, min\: :ref:`Variant<class_Variant>`, max\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_@GlobalScope_method_wrap>`
  3962. Wraps the :ref:`Variant<class_Variant>` ``value`` between ``min`` and ``max``. Can be used for creating loop-alike behavior or infinite surfaces.
  3963. Variant types :ref:`int<class_int>` and :ref:`float<class_float>` are supported. If any of the arguments is :ref:`float<class_float>` this function returns a :ref:`float<class_float>`, otherwise it returns an :ref:`int<class_int>`.
  3964. ::
  3965. var a = wrap(4, 5, 10)
  3966. # a is 9 (int)
  3967. var a = wrap(7, 5, 10)
  3968. # a is 7 (int)
  3969. var a = wrap(10.5, 5, 10)
  3970. # a is 5.5 (float)
  3971. .. rst-class:: classref-item-separator
  3972. ----
  3973. .. _class_@GlobalScope_method_wrapf:
  3974. .. rst-class:: classref-method
  3975. :ref:`float<class_float>` **wrapf**\ (\ value\: :ref:`float<class_float>`, min\: :ref:`float<class_float>`, max\: :ref:`float<class_float>`\ ) :ref:`🔗<class_@GlobalScope_method_wrapf>`
  3976. Wraps the float ``value`` between ``min`` and ``max``. Can be used for creating loop-alike behavior or infinite surfaces.
  3977. ::
  3978. # Infinite loop between 5.0 and 9.9
  3979. value = wrapf(value + 0.1, 5.0, 10.0)
  3980. ::
  3981. # Infinite rotation (in radians)
  3982. angle = wrapf(angle + 0.1, 0.0, TAU)
  3983. ::
  3984. # Infinite rotation (in radians)
  3985. angle = wrapf(angle + 0.1, -PI, PI)
  3986. \ **Note:** If ``min`` is ``0``, this is equivalent to :ref:`fposmod<class_@GlobalScope_method_fposmod>`, so prefer using that instead.
  3987. \ :ref:`wrapf<class_@GlobalScope_method_wrapf>` is more flexible than using the :ref:`fposmod<class_@GlobalScope_method_fposmod>` approach by giving the user control over the minimum value.
  3988. .. rst-class:: classref-item-separator
  3989. ----
  3990. .. _class_@GlobalScope_method_wrapi:
  3991. .. rst-class:: classref-method
  3992. :ref:`int<class_int>` **wrapi**\ (\ value\: :ref:`int<class_int>`, min\: :ref:`int<class_int>`, max\: :ref:`int<class_int>`\ ) :ref:`🔗<class_@GlobalScope_method_wrapi>`
  3993. Wraps the integer ``value`` between ``min`` and ``max``. Can be used for creating loop-alike behavior or infinite surfaces.
  3994. ::
  3995. # Infinite loop between 5 and 9
  3996. frame = wrapi(frame + 1, 5, 10)
  3997. ::
  3998. # result is -2
  3999. var result = wrapi(-6, -5, -1)
  4000. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  4001. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  4002. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  4003. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  4004. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  4005. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  4006. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  4007. .. |void| replace:: :abbr:`void (No return value.)`