class_@globalscope.rst 331 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579
  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. Back key.
  872. .. _class_@GlobalScope_constant_KEY_FORWARD:
  873. .. rst-class:: classref-enumeration-constant
  874. :ref:`Key<enum_@GlobalScope_Key>` **KEY_FORWARD** = ``4194377``
  875. 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. 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. Exclamation mark (``!``) key.
  1036. .. _class_@GlobalScope_constant_KEY_QUOTEDBL:
  1037. .. rst-class:: classref-enumeration-constant
  1038. :ref:`Key<enum_@GlobalScope_Key>` **KEY_QUOTEDBL** = ``34``
  1039. Double quotation mark (``"``) key.
  1040. .. _class_@GlobalScope_constant_KEY_NUMBERSIGN:
  1041. .. rst-class:: classref-enumeration-constant
  1042. :ref:`Key<enum_@GlobalScope_Key>` **KEY_NUMBERSIGN** = ``35``
  1043. Number sign or *hash* (``#``) key.
  1044. .. _class_@GlobalScope_constant_KEY_DOLLAR:
  1045. .. rst-class:: classref-enumeration-constant
  1046. :ref:`Key<enum_@GlobalScope_Key>` **KEY_DOLLAR** = ``36``
  1047. Dollar sign (``$``) key.
  1048. .. _class_@GlobalScope_constant_KEY_PERCENT:
  1049. .. rst-class:: classref-enumeration-constant
  1050. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PERCENT** = ``37``
  1051. Percent sign (``%``) key.
  1052. .. _class_@GlobalScope_constant_KEY_AMPERSAND:
  1053. .. rst-class:: classref-enumeration-constant
  1054. :ref:`Key<enum_@GlobalScope_Key>` **KEY_AMPERSAND** = ``38``
  1055. Ampersand (``&``) key.
  1056. .. _class_@GlobalScope_constant_KEY_APOSTROPHE:
  1057. .. rst-class:: classref-enumeration-constant
  1058. :ref:`Key<enum_@GlobalScope_Key>` **KEY_APOSTROPHE** = ``39``
  1059. Apostrophe (``'``) key.
  1060. .. _class_@GlobalScope_constant_KEY_PARENLEFT:
  1061. .. rst-class:: classref-enumeration-constant
  1062. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PARENLEFT** = ``40``
  1063. Left parenthesis (``(``) key.
  1064. .. _class_@GlobalScope_constant_KEY_PARENRIGHT:
  1065. .. rst-class:: classref-enumeration-constant
  1066. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PARENRIGHT** = ``41``
  1067. Right parenthesis (``)``) key.
  1068. .. _class_@GlobalScope_constant_KEY_ASTERISK:
  1069. .. rst-class:: classref-enumeration-constant
  1070. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ASTERISK** = ``42``
  1071. Asterisk (``*``) key.
  1072. .. _class_@GlobalScope_constant_KEY_PLUS:
  1073. .. rst-class:: classref-enumeration-constant
  1074. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PLUS** = ``43``
  1075. Plus (``+``) key.
  1076. .. _class_@GlobalScope_constant_KEY_COMMA:
  1077. .. rst-class:: classref-enumeration-constant
  1078. :ref:`Key<enum_@GlobalScope_Key>` **KEY_COMMA** = ``44``
  1079. Comma (``,``) key.
  1080. .. _class_@GlobalScope_constant_KEY_MINUS:
  1081. .. rst-class:: classref-enumeration-constant
  1082. :ref:`Key<enum_@GlobalScope_Key>` **KEY_MINUS** = ``45``
  1083. Minus (``-``) key.
  1084. .. _class_@GlobalScope_constant_KEY_PERIOD:
  1085. .. rst-class:: classref-enumeration-constant
  1086. :ref:`Key<enum_@GlobalScope_Key>` **KEY_PERIOD** = ``46``
  1087. Period (``.``) key.
  1088. .. _class_@GlobalScope_constant_KEY_SLASH:
  1089. .. rst-class:: classref-enumeration-constant
  1090. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SLASH** = ``47``
  1091. Slash (``/``) 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. Colon (``:``) key.
  1136. .. _class_@GlobalScope_constant_KEY_SEMICOLON:
  1137. .. rst-class:: classref-enumeration-constant
  1138. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SEMICOLON** = ``59``
  1139. Semicolon (``;``) key.
  1140. .. _class_@GlobalScope_constant_KEY_LESS:
  1141. .. rst-class:: classref-enumeration-constant
  1142. :ref:`Key<enum_@GlobalScope_Key>` **KEY_LESS** = ``60``
  1143. Less-than sign (``<``) key.
  1144. .. _class_@GlobalScope_constant_KEY_EQUAL:
  1145. .. rst-class:: classref-enumeration-constant
  1146. :ref:`Key<enum_@GlobalScope_Key>` **KEY_EQUAL** = ``61``
  1147. Equal sign (``=``) key.
  1148. .. _class_@GlobalScope_constant_KEY_GREATER:
  1149. .. rst-class:: classref-enumeration-constant
  1150. :ref:`Key<enum_@GlobalScope_Key>` **KEY_GREATER** = ``62``
  1151. Greater-than sign (``>``) key.
  1152. .. _class_@GlobalScope_constant_KEY_QUESTION:
  1153. .. rst-class:: classref-enumeration-constant
  1154. :ref:`Key<enum_@GlobalScope_Key>` **KEY_QUESTION** = ``63``
  1155. Question mark (``?``) key.
  1156. .. _class_@GlobalScope_constant_KEY_AT:
  1157. .. rst-class:: classref-enumeration-constant
  1158. :ref:`Key<enum_@GlobalScope_Key>` **KEY_AT** = ``64``
  1159. At sign (``@``) 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. Left bracket (``[lb]``) key.
  1268. .. _class_@GlobalScope_constant_KEY_BACKSLASH:
  1269. .. rst-class:: classref-enumeration-constant
  1270. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BACKSLASH** = ``92``
  1271. Backslash (``\``) key.
  1272. .. _class_@GlobalScope_constant_KEY_BRACKETRIGHT:
  1273. .. rst-class:: classref-enumeration-constant
  1274. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACKETRIGHT** = ``93``
  1275. Right bracket (``[rb]``) key.
  1276. .. _class_@GlobalScope_constant_KEY_ASCIICIRCUM:
  1277. .. rst-class:: classref-enumeration-constant
  1278. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ASCIICIRCUM** = ``94``
  1279. Caret (``^``) key.
  1280. .. _class_@GlobalScope_constant_KEY_UNDERSCORE:
  1281. .. rst-class:: classref-enumeration-constant
  1282. :ref:`Key<enum_@GlobalScope_Key>` **KEY_UNDERSCORE** = ``95``
  1283. Underscore (``_``) key.
  1284. .. _class_@GlobalScope_constant_KEY_QUOTELEFT:
  1285. .. rst-class:: classref-enumeration-constant
  1286. :ref:`Key<enum_@GlobalScope_Key>` **KEY_QUOTELEFT** = ``96``
  1287. Backtick (`````) key.
  1288. .. _class_@GlobalScope_constant_KEY_BRACELEFT:
  1289. .. rst-class:: classref-enumeration-constant
  1290. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACELEFT** = ``123``
  1291. Left brace (``{``) key.
  1292. .. _class_@GlobalScope_constant_KEY_BAR:
  1293. .. rst-class:: classref-enumeration-constant
  1294. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BAR** = ``124``
  1295. Vertical bar or *pipe* (``|``) key.
  1296. .. _class_@GlobalScope_constant_KEY_BRACERIGHT:
  1297. .. rst-class:: classref-enumeration-constant
  1298. :ref:`Key<enum_@GlobalScope_Key>` **KEY_BRACERIGHT** = ``125``
  1299. Right brace (``}``) key.
  1300. .. _class_@GlobalScope_constant_KEY_ASCIITILDE:
  1301. .. rst-class:: classref-enumeration-constant
  1302. :ref:`Key<enum_@GlobalScope_Key>` **KEY_ASCIITILDE** = ``126``
  1303. Tilde (``~``) key.
  1304. .. _class_@GlobalScope_constant_KEY_YEN:
  1305. .. rst-class:: classref-enumeration-constant
  1306. :ref:`Key<enum_@GlobalScope_Key>` **KEY_YEN** = ``165``
  1307. Yen symbol (``ยฅ``) key.
  1308. .. _class_@GlobalScope_constant_KEY_SECTION:
  1309. .. rst-class:: classref-enumeration-constant
  1310. :ref:`Key<enum_@GlobalScope_Key>` **KEY_SECTION** = ``167``
  1311. Section sign (``ยง``) 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** = ``2130706432``
  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"``. By default the file will be stored as UID whenever available. You can use :ref:`ResourceUID<class_ResourceUID>` methods to convert it back to path. For storing a raw path, use :ref:`PROPERTY_HINT_FILE_PATH<class_@GlobalScope_constant_PROPERTY_HINT_FILE_PATH>`.
  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. If a property is :ref:`Dictionary<class_Dictionary>`, hints the editor how to show elements. The ``hint_string`` is the same as :ref:`Array<class_Array>`, with a ``";"`` separating the key and value.
  1997. .. tabs::
  1998. .. code-tab:: gdscript
  1999. # Array of elem_type.
  2000. hint_string = "%d:" % [elem_type]
  2001. hint_string = "%d/%d:%s" % [elem_type, elem_hint, elem_hint_string]
  2002. # Two-dimensional array of elem_type (array of arrays of elem_type).
  2003. hint_string = "%d:%d:" % [TYPE_ARRAY, elem_type]
  2004. hint_string = "%d:%d/%d:%s" % [TYPE_ARRAY, elem_type, elem_hint, elem_hint_string]
  2005. # Three-dimensional array of elem_type (array of arrays of arrays of elem_type).
  2006. hint_string = "%d:%d:%d:" % [TYPE_ARRAY, TYPE_ARRAY, elem_type]
  2007. hint_string = "%d:%d:%d/%d:%s" % [TYPE_ARRAY, TYPE_ARRAY, elem_type, elem_hint, elem_hint_string]
  2008. .. code-tab:: csharp
  2009. // Array of elemType.
  2010. hintString = $"{elemType:D}:";
  2011. hintString = $"{elemType:}/{elemHint:D}:{elemHintString}";
  2012. // Two-dimensional array of elemType (array of arrays of elemType).
  2013. hintString = $"{Variant.Type.Array:D}:{elemType:D}:";
  2014. hintString = $"{Variant.Type.Array:D}:{elemType:D}/{elemHint:D}:{elemHintString}";
  2015. // Three-dimensional array of elemType (array of arrays of arrays of elemType).
  2016. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Array:D}:{elemType:D}:";
  2017. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Array:D}:{elemType:D}/{elemHint:D}:{elemHintString}";
  2018. \ **Examples:**\
  2019. .. tabs::
  2020. .. code-tab:: gdscript
  2021. hint_string = "%d:" % [TYPE_INT] # Array of integers.
  2022. hint_string = "%d/%d:1,10,1" % [TYPE_INT, PROPERTY_HINT_RANGE] # Array of integers (in range from 1 to 10).
  2023. hint_string = "%d/%d:Zero,One,Two" % [TYPE_INT, PROPERTY_HINT_ENUM] # Array of integers (an enum).
  2024. hint_string = "%d/%d:Zero,One,Three:3,Six:6" % [TYPE_INT, PROPERTY_HINT_ENUM] # Array of integers (an enum).
  2025. hint_string = "%d/%d:*.png" % [TYPE_STRING, PROPERTY_HINT_FILE] # Array of strings (file paths).
  2026. hint_string = "%d/%d:Texture2D" % [TYPE_OBJECT, PROPERTY_HINT_RESOURCE_TYPE] # Array of textures.
  2027. hint_string = "%d:%d:" % [TYPE_ARRAY, TYPE_FLOAT] # Two-dimensional array of floats.
  2028. hint_string = "%d:%d/%d:" % [TYPE_ARRAY, TYPE_STRING, PROPERTY_HINT_MULTILINE_TEXT] # Two-dimensional array of multiline strings.
  2029. 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).
  2030. hint_string = "%d:%d/%d:Texture2D" % [TYPE_ARRAY, TYPE_OBJECT, PROPERTY_HINT_RESOURCE_TYPE] # Two-dimensional array of textures.
  2031. .. code-tab:: csharp
  2032. hintString = $"{Variant.Type.Int:D}/{PropertyHint.Range:D}:1,10,1"; // Array of integers (in range from 1 to 10).
  2033. hintString = $"{Variant.Type.Int:D}/{PropertyHint.Enum:D}:Zero,One,Two"; // Array of integers (an enum).
  2034. hintString = $"{Variant.Type.Int:D}/{PropertyHint.Enum:D}:Zero,One,Three:3,Six:6"; // Array of integers (an enum).
  2035. hintString = $"{Variant.Type.String:D}/{PropertyHint.File:D}:*.png"; // Array of strings (file paths).
  2036. hintString = $"{Variant.Type.Object:D}/{PropertyHint.ResourceType:D}:Texture2D"; // Array of textures.
  2037. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Float:D}:"; // Two-dimensional array of floats.
  2038. hintString = $"{Variant.Type.Array:D}:{Variant.Type.String:D}/{PropertyHint.MultilineText:D}:"; // Two-dimensional array of multiline strings.
  2039. 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).
  2040. hintString = $"{Variant.Type.Array:D}:{Variant.Type.Object:D}/{PropertyHint.ResourceType:D}:Texture2D"; // Two-dimensional array of textures.
  2041. \ **Note:** The trailing colon is required for properly detecting built-in types.
  2042. .. _class_@GlobalScope_constant_PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE:
  2043. .. rst-class:: classref-enumeration-constant
  2044. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE** = ``24``
  2045. **Deprecated:** This hint is not used by the engine.
  2046. .. _class_@GlobalScope_constant_PROPERTY_HINT_OBJECT_TOO_BIG:
  2047. .. rst-class:: classref-enumeration-constant
  2048. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_OBJECT_TOO_BIG** = ``25``
  2049. Hints that an object is too big to be sent via the debugger.
  2050. .. _class_@GlobalScope_constant_PROPERTY_HINT_NODE_PATH_VALID_TYPES:
  2051. .. rst-class:: classref-enumeration-constant
  2052. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NODE_PATH_VALID_TYPES** = ``26``
  2053. Hints that the hint string specifies valid node types for property of type :ref:`NodePath<class_NodePath>`.
  2054. .. _class_@GlobalScope_constant_PROPERTY_HINT_SAVE_FILE:
  2055. .. rst-class:: classref-enumeration-constant
  2056. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_SAVE_FILE** = ``27``
  2057. 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>`.
  2058. .. _class_@GlobalScope_constant_PROPERTY_HINT_GLOBAL_SAVE_FILE:
  2059. .. rst-class:: classref-enumeration-constant
  2060. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_GLOBAL_SAVE_FILE** = ``28``
  2061. 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>`.
  2062. .. _class_@GlobalScope_constant_PROPERTY_HINT_INT_IS_OBJECTID:
  2063. .. rst-class:: classref-enumeration-constant
  2064. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_INT_IS_OBJECTID** = ``29``
  2065. **Deprecated:** This hint is not used by the engine.
  2066. .. _class_@GlobalScope_constant_PROPERTY_HINT_INT_IS_POINTER:
  2067. .. rst-class:: classref-enumeration-constant
  2068. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_INT_IS_POINTER** = ``30``
  2069. Hints that an :ref:`int<class_int>` property is a pointer. Used by GDExtension.
  2070. .. _class_@GlobalScope_constant_PROPERTY_HINT_ARRAY_TYPE:
  2071. .. rst-class:: classref-enumeration-constant
  2072. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_ARRAY_TYPE** = ``31``
  2073. Hints that a property is an :ref:`Array<class_Array>` with the stored type specified in the hint string. The hint string contains the type of the array (e.g. ``"String"``).
  2074. Use the hint string format from :ref:`PROPERTY_HINT_TYPE_STRING<class_@GlobalScope_constant_PROPERTY_HINT_TYPE_STRING>` for more control over the stored type.
  2075. .. _class_@GlobalScope_constant_PROPERTY_HINT_DICTIONARY_TYPE:
  2076. .. rst-class:: classref-enumeration-constant
  2077. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_DICTIONARY_TYPE** = ``38``
  2078. Hints that a property is a :ref:`Dictionary<class_Dictionary>` with the stored types specified in the hint string. The hint string contains the key and value types separated by a semicolon (e.g. ``"int;String"``).
  2079. Use the hint string format from :ref:`PROPERTY_HINT_TYPE_STRING<class_@GlobalScope_constant_PROPERTY_HINT_TYPE_STRING>` for more control over the stored types.
  2080. .. _class_@GlobalScope_constant_PROPERTY_HINT_LOCALE_ID:
  2081. .. rst-class:: classref-enumeration-constant
  2082. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LOCALE_ID** = ``32``
  2083. Hints that a string property is a locale code. Editing it will show a locale dialog for picking language and country.
  2084. .. _class_@GlobalScope_constant_PROPERTY_HINT_LOCALIZABLE_STRING:
  2085. .. rst-class:: classref-enumeration-constant
  2086. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_LOCALIZABLE_STRING** = ``33``
  2087. Hints that a dictionary property is string translation map. Dictionary keys are locale codes and, values are translated strings.
  2088. .. _class_@GlobalScope_constant_PROPERTY_HINT_NODE_TYPE:
  2089. .. rst-class:: classref-enumeration-constant
  2090. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_NODE_TYPE** = ``34``
  2091. 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.
  2092. .. _class_@GlobalScope_constant_PROPERTY_HINT_HIDE_QUATERNION_EDIT:
  2093. .. rst-class:: classref-enumeration-constant
  2094. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_HIDE_QUATERNION_EDIT** = ``35``
  2095. Hints that a quaternion property should disable the temporary euler editor.
  2096. .. _class_@GlobalScope_constant_PROPERTY_HINT_PASSWORD:
  2097. .. rst-class:: classref-enumeration-constant
  2098. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_PASSWORD** = ``36``
  2099. Hints that a string property is a password, and every character is replaced with the secret character.
  2100. .. _class_@GlobalScope_constant_PROPERTY_HINT_TOOL_BUTTON:
  2101. .. rst-class:: classref-enumeration-constant
  2102. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_TOOL_BUTTON** = ``39``
  2103. 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.
  2104. .. code:: text
  2105. "Click me!" - A button with the text "Click me!" and the default "Callable" icon.
  2106. "Click me!,ColorRect" - A button with the text "Click me!" and the "ColorRect" icon.
  2107. \ **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>`.
  2108. .. _class_@GlobalScope_constant_PROPERTY_HINT_ONESHOT:
  2109. .. rst-class:: classref-enumeration-constant
  2110. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_ONESHOT** = ``40``
  2111. Hints that a property will be changed on its own after setting, such as :ref:`AudioStreamPlayer.playing<class_AudioStreamPlayer_property_playing>` or :ref:`GPUParticles3D.emitting<class_GPUParticles3D_property_emitting>`.
  2112. .. _class_@GlobalScope_constant_PROPERTY_HINT_GROUP_ENABLE:
  2113. .. rst-class:: classref-enumeration-constant
  2114. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_GROUP_ENABLE** = ``42``
  2115. Hints that a boolean property will enable the feature associated with the group that it occurs in. The property will be displayed as a checkbox on the group header. Only works within a group or subgroup.
  2116. By default, disabling the property hides all properties in the group. Use the optional hint string ``"checkbox_only"`` to disable this behavior.
  2117. .. _class_@GlobalScope_constant_PROPERTY_HINT_INPUT_NAME:
  2118. .. rst-class:: classref-enumeration-constant
  2119. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_INPUT_NAME** = ``43``
  2120. Hints that a :ref:`String<class_String>` or :ref:`StringName<class_StringName>` property is the name of an input action. This allows the selection of any action name from the Input Map in the Project Settings. The hint string may contain two options separated by commas:
  2121. - If it contains ``"show_builtin"``, built-in input actions are included in the selection.
  2122. - If it contains ``"loose_mode"``, loose mode is enabled. This allows inserting any action name even if it's not present in the input map.
  2123. .. _class_@GlobalScope_constant_PROPERTY_HINT_FILE_PATH:
  2124. .. rst-class:: classref-enumeration-constant
  2125. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_FILE_PATH** = ``44``
  2126. Like :ref:`PROPERTY_HINT_FILE<class_@GlobalScope_constant_PROPERTY_HINT_FILE>`, but the property is stored as a raw path, not UID. That means the reference will be broken if you move the file. Consider using :ref:`PROPERTY_HINT_FILE<class_@GlobalScope_constant_PROPERTY_HINT_FILE>` when possible.
  2127. .. _class_@GlobalScope_constant_PROPERTY_HINT_MAX:
  2128. .. rst-class:: classref-enumeration-constant
  2129. :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` **PROPERTY_HINT_MAX** = ``45``
  2130. Represents the size of the :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>` enum.
  2131. .. rst-class:: classref-item-separator
  2132. ----
  2133. .. _enum_@GlobalScope_PropertyUsageFlags:
  2134. .. rst-class:: classref-enumeration
  2135. flags **PropertyUsageFlags**: :ref:`๐Ÿ”—<enum_@GlobalScope_PropertyUsageFlags>`
  2136. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NONE:
  2137. .. rst-class:: classref-enumeration-constant
  2138. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NONE** = ``0``
  2139. The property is not stored, and does not display in the editor. This is the default for non-exported properties.
  2140. .. _class_@GlobalScope_constant_PROPERTY_USAGE_STORAGE:
  2141. .. rst-class:: classref-enumeration-constant
  2142. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_STORAGE** = ``2``
  2143. The property is serialized and saved in the scene file (default for exported properties).
  2144. .. _class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR:
  2145. .. rst-class:: classref-enumeration-constant
  2146. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_EDITOR** = ``4``
  2147. The property is shown in the :ref:`EditorInspector<class_EditorInspector>` (default for exported properties).
  2148. .. _class_@GlobalScope_constant_PROPERTY_USAGE_INTERNAL:
  2149. .. rst-class:: classref-enumeration-constant
  2150. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_INTERNAL** = ``8``
  2151. The property is excluded from the class reference.
  2152. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CHECKABLE:
  2153. .. rst-class:: classref-enumeration-constant
  2154. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CHECKABLE** = ``16``
  2155. The property can be checked in the :ref:`EditorInspector<class_EditorInspector>`.
  2156. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CHECKED:
  2157. .. rst-class:: classref-enumeration-constant
  2158. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CHECKED** = ``32``
  2159. The property is checked in the :ref:`EditorInspector<class_EditorInspector>`.
  2160. .. _class_@GlobalScope_constant_PROPERTY_USAGE_GROUP:
  2161. .. rst-class:: classref-enumeration-constant
  2162. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_GROUP** = ``64``
  2163. Used to group properties together in the editor. See :ref:`EditorInspector<class_EditorInspector>`.
  2164. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CATEGORY:
  2165. .. rst-class:: classref-enumeration-constant
  2166. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CATEGORY** = ``128``
  2167. Used to categorize properties together in the editor.
  2168. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SUBGROUP:
  2169. .. rst-class:: classref-enumeration-constant
  2170. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SUBGROUP** = ``256``
  2171. Used to group properties together in the editor in a subgroup (under a group). See :ref:`EditorInspector<class_EditorInspector>`.
  2172. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CLASS_IS_BITFIELD:
  2173. .. rst-class:: classref-enumeration-constant
  2174. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CLASS_IS_BITFIELD** = ``512``
  2175. The property is a bitfield, i.e. it contains multiple flags represented as bits.
  2176. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NO_INSTANCE_STATE:
  2177. .. rst-class:: classref-enumeration-constant
  2178. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NO_INSTANCE_STATE** = ``1024``
  2179. The property does not save its state in :ref:`PackedScene<class_PackedScene>`.
  2180. .. _class_@GlobalScope_constant_PROPERTY_USAGE_RESTART_IF_CHANGED:
  2181. .. rst-class:: classref-enumeration-constant
  2182. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_RESTART_IF_CHANGED** = ``2048``
  2183. Editing the property prompts the user for restarting the editor.
  2184. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SCRIPT_VARIABLE:
  2185. .. rst-class:: classref-enumeration-constant
  2186. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SCRIPT_VARIABLE** = ``4096``
  2187. 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.
  2188. .. _class_@GlobalScope_constant_PROPERTY_USAGE_STORE_IF_NULL:
  2189. .. rst-class:: classref-enumeration-constant
  2190. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_STORE_IF_NULL** = ``8192``
  2191. The property value of type :ref:`Object<class_Object>` will be stored even if its value is ``null``.
  2192. .. _class_@GlobalScope_constant_PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED:
  2193. .. rst-class:: classref-enumeration-constant
  2194. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED** = ``16384``
  2195. If this property is modified, all inspector fields will be refreshed.
  2196. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE:
  2197. .. rst-class:: classref-enumeration-constant
  2198. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE** = ``32768``
  2199. **Deprecated:** This flag is not used by the engine.
  2200. .. _class_@GlobalScope_constant_PROPERTY_USAGE_CLASS_IS_ENUM:
  2201. .. rst-class:: classref-enumeration-constant
  2202. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_CLASS_IS_ENUM** = ``65536``
  2203. The property is a variable of enum type, i.e. it only takes named integer constants from its associated enumeration.
  2204. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NIL_IS_VARIANT:
  2205. .. rst-class:: classref-enumeration-constant
  2206. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NIL_IS_VARIANT** = ``131072``
  2207. If property has ``nil`` as default value, its type will be :ref:`Variant<class_Variant>`.
  2208. .. _class_@GlobalScope_constant_PROPERTY_USAGE_ARRAY:
  2209. .. rst-class:: classref-enumeration-constant
  2210. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_ARRAY** = ``262144``
  2211. The property is an array.
  2212. .. _class_@GlobalScope_constant_PROPERTY_USAGE_ALWAYS_DUPLICATE:
  2213. .. rst-class:: classref-enumeration-constant
  2214. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_ALWAYS_DUPLICATE** = ``524288``
  2215. 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.
  2216. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NEVER_DUPLICATE:
  2217. .. rst-class:: classref-enumeration-constant
  2218. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NEVER_DUPLICATE** = ``1048576``
  2219. 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.
  2220. .. _class_@GlobalScope_constant_PROPERTY_USAGE_HIGH_END_GFX:
  2221. .. rst-class:: classref-enumeration-constant
  2222. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_HIGH_END_GFX** = ``2097152``
  2223. The property is only shown in the editor if modern renderers are supported (the Compatibility rendering method is excluded).
  2224. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT:
  2225. .. rst-class:: classref-enumeration-constant
  2226. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT** = ``4194304``
  2227. The :ref:`NodePath<class_NodePath>` property will always be relative to the scene's root. Mostly useful for local resources.
  2228. .. _class_@GlobalScope_constant_PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT:
  2229. .. rst-class:: classref-enumeration-constant
  2230. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT** = ``8388608``
  2231. 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.
  2232. .. _class_@GlobalScope_constant_PROPERTY_USAGE_KEYING_INCREMENTS:
  2233. .. rst-class:: classref-enumeration-constant
  2234. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_KEYING_INCREMENTS** = ``16777216``
  2235. Inserting an animation key frame of this property will automatically increment the value, allowing to easily keyframe multiple values in a row.
  2236. .. _class_@GlobalScope_constant_PROPERTY_USAGE_DEFERRED_SET_RESOURCE:
  2237. .. rst-class:: classref-enumeration-constant
  2238. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_DEFERRED_SET_RESOURCE** = ``33554432``
  2239. **Deprecated:** This flag is not used by the engine.
  2240. .. _class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT:
  2241. .. rst-class:: classref-enumeration-constant
  2242. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT** = ``67108864``
  2243. 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.
  2244. .. _class_@GlobalScope_constant_PROPERTY_USAGE_EDITOR_BASIC_SETTING:
  2245. .. rst-class:: classref-enumeration-constant
  2246. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_EDITOR_BASIC_SETTING** = ``134217728``
  2247. The property is considered a basic setting and will appear even when advanced mode is disabled. Used for project settings.
  2248. .. _class_@GlobalScope_constant_PROPERTY_USAGE_READ_ONLY:
  2249. .. rst-class:: classref-enumeration-constant
  2250. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_READ_ONLY** = ``268435456``
  2251. The property is read-only in the :ref:`EditorInspector<class_EditorInspector>`.
  2252. .. _class_@GlobalScope_constant_PROPERTY_USAGE_SECRET:
  2253. .. rst-class:: classref-enumeration-constant
  2254. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_SECRET** = ``536870912``
  2255. An export preset property with this flag contains confidential information and is stored separately from the rest of the export preset configuration.
  2256. .. _class_@GlobalScope_constant_PROPERTY_USAGE_DEFAULT:
  2257. .. rst-class:: classref-enumeration-constant
  2258. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_DEFAULT** = ``6``
  2259. Default usage (storage and editor).
  2260. .. _class_@GlobalScope_constant_PROPERTY_USAGE_NO_EDITOR:
  2261. .. rst-class:: classref-enumeration-constant
  2262. :ref:`PropertyUsageFlags<enum_@GlobalScope_PropertyUsageFlags>` **PROPERTY_USAGE_NO_EDITOR** = ``2``
  2263. Default usage but without showing the property in the editor (storage).
  2264. .. rst-class:: classref-item-separator
  2265. ----
  2266. .. _enum_@GlobalScope_MethodFlags:
  2267. .. rst-class:: classref-enumeration
  2268. flags **MethodFlags**: :ref:`๐Ÿ”—<enum_@GlobalScope_MethodFlags>`
  2269. .. _class_@GlobalScope_constant_METHOD_FLAG_NORMAL:
  2270. .. rst-class:: classref-enumeration-constant
  2271. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_NORMAL** = ``1``
  2272. Flag for a normal method.
  2273. .. _class_@GlobalScope_constant_METHOD_FLAG_EDITOR:
  2274. .. rst-class:: classref-enumeration-constant
  2275. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_EDITOR** = ``2``
  2276. Flag for an editor method.
  2277. .. _class_@GlobalScope_constant_METHOD_FLAG_CONST:
  2278. .. rst-class:: classref-enumeration-constant
  2279. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_CONST** = ``4``
  2280. Flag for a constant method.
  2281. .. _class_@GlobalScope_constant_METHOD_FLAG_VIRTUAL:
  2282. .. rst-class:: classref-enumeration-constant
  2283. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_VIRTUAL** = ``8``
  2284. Flag for a virtual method.
  2285. .. _class_@GlobalScope_constant_METHOD_FLAG_VARARG:
  2286. .. rst-class:: classref-enumeration-constant
  2287. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_VARARG** = ``16``
  2288. Flag for a method with a variable number of arguments.
  2289. .. _class_@GlobalScope_constant_METHOD_FLAG_STATIC:
  2290. .. rst-class:: classref-enumeration-constant
  2291. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_STATIC** = ``32``
  2292. Flag for a static method.
  2293. .. _class_@GlobalScope_constant_METHOD_FLAG_OBJECT_CORE:
  2294. .. rst-class:: classref-enumeration-constant
  2295. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_OBJECT_CORE** = ``64``
  2296. Used internally. Allows to not dump core virtual methods (such as :ref:`Object._notification()<class_Object_private_method__notification>`) to the JSON API.
  2297. .. _class_@GlobalScope_constant_METHOD_FLAG_VIRTUAL_REQUIRED:
  2298. .. rst-class:: classref-enumeration-constant
  2299. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAG_VIRTUAL_REQUIRED** = ``128``
  2300. Flag for a virtual method that is required. In GDScript, this flag is set for abstract functions.
  2301. .. _class_@GlobalScope_constant_METHOD_FLAGS_DEFAULT:
  2302. .. rst-class:: classref-enumeration-constant
  2303. :ref:`MethodFlags<enum_@GlobalScope_MethodFlags>` **METHOD_FLAGS_DEFAULT** = ``1``
  2304. Default method flags (normal).
  2305. .. rst-class:: classref-item-separator
  2306. ----
  2307. .. _enum_@GlobalScope_Variant.Type:
  2308. .. rst-class:: classref-enumeration
  2309. enum **Variant.Type**: :ref:`๐Ÿ”—<enum_@GlobalScope_Variant.Type>`
  2310. .. _class_@GlobalScope_constant_TYPE_NIL:
  2311. .. rst-class:: classref-enumeration-constant
  2312. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_NIL** = ``0``
  2313. Variable is ``null``.
  2314. .. _class_@GlobalScope_constant_TYPE_BOOL:
  2315. .. rst-class:: classref-enumeration-constant
  2316. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_BOOL** = ``1``
  2317. Variable is of type :ref:`bool<class_bool>`.
  2318. .. _class_@GlobalScope_constant_TYPE_INT:
  2319. .. rst-class:: classref-enumeration-constant
  2320. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_INT** = ``2``
  2321. Variable is of type :ref:`int<class_int>`.
  2322. .. _class_@GlobalScope_constant_TYPE_FLOAT:
  2323. .. rst-class:: classref-enumeration-constant
  2324. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_FLOAT** = ``3``
  2325. Variable is of type :ref:`float<class_float>`.
  2326. .. _class_@GlobalScope_constant_TYPE_STRING:
  2327. .. rst-class:: classref-enumeration-constant
  2328. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_STRING** = ``4``
  2329. Variable is of type :ref:`String<class_String>`.
  2330. .. _class_@GlobalScope_constant_TYPE_VECTOR2:
  2331. .. rst-class:: classref-enumeration-constant
  2332. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR2** = ``5``
  2333. Variable is of type :ref:`Vector2<class_Vector2>`.
  2334. .. _class_@GlobalScope_constant_TYPE_VECTOR2I:
  2335. .. rst-class:: classref-enumeration-constant
  2336. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR2I** = ``6``
  2337. Variable is of type :ref:`Vector2i<class_Vector2i>`.
  2338. .. _class_@GlobalScope_constant_TYPE_RECT2:
  2339. .. rst-class:: classref-enumeration-constant
  2340. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_RECT2** = ``7``
  2341. Variable is of type :ref:`Rect2<class_Rect2>`.
  2342. .. _class_@GlobalScope_constant_TYPE_RECT2I:
  2343. .. rst-class:: classref-enumeration-constant
  2344. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_RECT2I** = ``8``
  2345. Variable is of type :ref:`Rect2i<class_Rect2i>`.
  2346. .. _class_@GlobalScope_constant_TYPE_VECTOR3:
  2347. .. rst-class:: classref-enumeration-constant
  2348. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR3** = ``9``
  2349. Variable is of type :ref:`Vector3<class_Vector3>`.
  2350. .. _class_@GlobalScope_constant_TYPE_VECTOR3I:
  2351. .. rst-class:: classref-enumeration-constant
  2352. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR3I** = ``10``
  2353. Variable is of type :ref:`Vector3i<class_Vector3i>`.
  2354. .. _class_@GlobalScope_constant_TYPE_TRANSFORM2D:
  2355. .. rst-class:: classref-enumeration-constant
  2356. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_TRANSFORM2D** = ``11``
  2357. Variable is of type :ref:`Transform2D<class_Transform2D>`.
  2358. .. _class_@GlobalScope_constant_TYPE_VECTOR4:
  2359. .. rst-class:: classref-enumeration-constant
  2360. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR4** = ``12``
  2361. Variable is of type :ref:`Vector4<class_Vector4>`.
  2362. .. _class_@GlobalScope_constant_TYPE_VECTOR4I:
  2363. .. rst-class:: classref-enumeration-constant
  2364. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_VECTOR4I** = ``13``
  2365. Variable is of type :ref:`Vector4i<class_Vector4i>`.
  2366. .. _class_@GlobalScope_constant_TYPE_PLANE:
  2367. .. rst-class:: classref-enumeration-constant
  2368. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PLANE** = ``14``
  2369. Variable is of type :ref:`Plane<class_Plane>`.
  2370. .. _class_@GlobalScope_constant_TYPE_QUATERNION:
  2371. .. rst-class:: classref-enumeration-constant
  2372. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_QUATERNION** = ``15``
  2373. Variable is of type :ref:`Quaternion<class_Quaternion>`.
  2374. .. _class_@GlobalScope_constant_TYPE_AABB:
  2375. .. rst-class:: classref-enumeration-constant
  2376. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_AABB** = ``16``
  2377. Variable is of type :ref:`AABB<class_AABB>`.
  2378. .. _class_@GlobalScope_constant_TYPE_BASIS:
  2379. .. rst-class:: classref-enumeration-constant
  2380. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_BASIS** = ``17``
  2381. Variable is of type :ref:`Basis<class_Basis>`.
  2382. .. _class_@GlobalScope_constant_TYPE_TRANSFORM3D:
  2383. .. rst-class:: classref-enumeration-constant
  2384. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_TRANSFORM3D** = ``18``
  2385. Variable is of type :ref:`Transform3D<class_Transform3D>`.
  2386. .. _class_@GlobalScope_constant_TYPE_PROJECTION:
  2387. .. rst-class:: classref-enumeration-constant
  2388. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PROJECTION** = ``19``
  2389. Variable is of type :ref:`Projection<class_Projection>`.
  2390. .. _class_@GlobalScope_constant_TYPE_COLOR:
  2391. .. rst-class:: classref-enumeration-constant
  2392. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_COLOR** = ``20``
  2393. Variable is of type :ref:`Color<class_Color>`.
  2394. .. _class_@GlobalScope_constant_TYPE_STRING_NAME:
  2395. .. rst-class:: classref-enumeration-constant
  2396. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_STRING_NAME** = ``21``
  2397. Variable is of type :ref:`StringName<class_StringName>`.
  2398. .. _class_@GlobalScope_constant_TYPE_NODE_PATH:
  2399. .. rst-class:: classref-enumeration-constant
  2400. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_NODE_PATH** = ``22``
  2401. Variable is of type :ref:`NodePath<class_NodePath>`.
  2402. .. _class_@GlobalScope_constant_TYPE_RID:
  2403. .. rst-class:: classref-enumeration-constant
  2404. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_RID** = ``23``
  2405. Variable is of type :ref:`RID<class_RID>`.
  2406. .. _class_@GlobalScope_constant_TYPE_OBJECT:
  2407. .. rst-class:: classref-enumeration-constant
  2408. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_OBJECT** = ``24``
  2409. Variable is of type :ref:`Object<class_Object>`.
  2410. .. _class_@GlobalScope_constant_TYPE_CALLABLE:
  2411. .. rst-class:: classref-enumeration-constant
  2412. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_CALLABLE** = ``25``
  2413. Variable is of type :ref:`Callable<class_Callable>`.
  2414. .. _class_@GlobalScope_constant_TYPE_SIGNAL:
  2415. .. rst-class:: classref-enumeration-constant
  2416. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_SIGNAL** = ``26``
  2417. Variable is of type :ref:`Signal<class_Signal>`.
  2418. .. _class_@GlobalScope_constant_TYPE_DICTIONARY:
  2419. .. rst-class:: classref-enumeration-constant
  2420. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_DICTIONARY** = ``27``
  2421. Variable is of type :ref:`Dictionary<class_Dictionary>`.
  2422. .. _class_@GlobalScope_constant_TYPE_ARRAY:
  2423. .. rst-class:: classref-enumeration-constant
  2424. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_ARRAY** = ``28``
  2425. Variable is of type :ref:`Array<class_Array>`.
  2426. .. _class_@GlobalScope_constant_TYPE_PACKED_BYTE_ARRAY:
  2427. .. rst-class:: classref-enumeration-constant
  2428. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_BYTE_ARRAY** = ``29``
  2429. Variable is of type :ref:`PackedByteArray<class_PackedByteArray>`.
  2430. .. _class_@GlobalScope_constant_TYPE_PACKED_INT32_ARRAY:
  2431. .. rst-class:: classref-enumeration-constant
  2432. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_INT32_ARRAY** = ``30``
  2433. Variable is of type :ref:`PackedInt32Array<class_PackedInt32Array>`.
  2434. .. _class_@GlobalScope_constant_TYPE_PACKED_INT64_ARRAY:
  2435. .. rst-class:: classref-enumeration-constant
  2436. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_INT64_ARRAY** = ``31``
  2437. Variable is of type :ref:`PackedInt64Array<class_PackedInt64Array>`.
  2438. .. _class_@GlobalScope_constant_TYPE_PACKED_FLOAT32_ARRAY:
  2439. .. rst-class:: classref-enumeration-constant
  2440. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_FLOAT32_ARRAY** = ``32``
  2441. Variable is of type :ref:`PackedFloat32Array<class_PackedFloat32Array>`.
  2442. .. _class_@GlobalScope_constant_TYPE_PACKED_FLOAT64_ARRAY:
  2443. .. rst-class:: classref-enumeration-constant
  2444. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_FLOAT64_ARRAY** = ``33``
  2445. Variable is of type :ref:`PackedFloat64Array<class_PackedFloat64Array>`.
  2446. .. _class_@GlobalScope_constant_TYPE_PACKED_STRING_ARRAY:
  2447. .. rst-class:: classref-enumeration-constant
  2448. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_STRING_ARRAY** = ``34``
  2449. Variable is of type :ref:`PackedStringArray<class_PackedStringArray>`.
  2450. .. _class_@GlobalScope_constant_TYPE_PACKED_VECTOR2_ARRAY:
  2451. .. rst-class:: classref-enumeration-constant
  2452. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_VECTOR2_ARRAY** = ``35``
  2453. Variable is of type :ref:`PackedVector2Array<class_PackedVector2Array>`.
  2454. .. _class_@GlobalScope_constant_TYPE_PACKED_VECTOR3_ARRAY:
  2455. .. rst-class:: classref-enumeration-constant
  2456. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_VECTOR3_ARRAY** = ``36``
  2457. Variable is of type :ref:`PackedVector3Array<class_PackedVector3Array>`.
  2458. .. _class_@GlobalScope_constant_TYPE_PACKED_COLOR_ARRAY:
  2459. .. rst-class:: classref-enumeration-constant
  2460. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_COLOR_ARRAY** = ``37``
  2461. Variable is of type :ref:`PackedColorArray<class_PackedColorArray>`.
  2462. .. _class_@GlobalScope_constant_TYPE_PACKED_VECTOR4_ARRAY:
  2463. .. rst-class:: classref-enumeration-constant
  2464. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_PACKED_VECTOR4_ARRAY** = ``38``
  2465. Variable is of type :ref:`PackedVector4Array<class_PackedVector4Array>`.
  2466. .. _class_@GlobalScope_constant_TYPE_MAX:
  2467. .. rst-class:: classref-enumeration-constant
  2468. :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` **TYPE_MAX** = ``39``
  2469. Represents the size of the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` enum.
  2470. .. rst-class:: classref-item-separator
  2471. ----
  2472. .. _enum_@GlobalScope_Variant.Operator:
  2473. .. rst-class:: classref-enumeration
  2474. enum **Variant.Operator**: :ref:`๐Ÿ”—<enum_@GlobalScope_Variant.Operator>`
  2475. .. _class_@GlobalScope_constant_OP_EQUAL:
  2476. .. rst-class:: classref-enumeration-constant
  2477. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_EQUAL** = ``0``
  2478. Equality operator (``==``).
  2479. .. _class_@GlobalScope_constant_OP_NOT_EQUAL:
  2480. .. rst-class:: classref-enumeration-constant
  2481. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_NOT_EQUAL** = ``1``
  2482. Inequality operator (``!=``).
  2483. .. _class_@GlobalScope_constant_OP_LESS:
  2484. .. rst-class:: classref-enumeration-constant
  2485. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_LESS** = ``2``
  2486. Less than operator (``<``).
  2487. .. _class_@GlobalScope_constant_OP_LESS_EQUAL:
  2488. .. rst-class:: classref-enumeration-constant
  2489. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_LESS_EQUAL** = ``3``
  2490. Less than or equal operator (``<=``).
  2491. .. _class_@GlobalScope_constant_OP_GREATER:
  2492. .. rst-class:: classref-enumeration-constant
  2493. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_GREATER** = ``4``
  2494. Greater than operator (``>``).
  2495. .. _class_@GlobalScope_constant_OP_GREATER_EQUAL:
  2496. .. rst-class:: classref-enumeration-constant
  2497. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_GREATER_EQUAL** = ``5``
  2498. Greater than or equal operator (``>=``).
  2499. .. _class_@GlobalScope_constant_OP_ADD:
  2500. .. rst-class:: classref-enumeration-constant
  2501. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_ADD** = ``6``
  2502. Addition operator (``+``).
  2503. .. _class_@GlobalScope_constant_OP_SUBTRACT:
  2504. .. rst-class:: classref-enumeration-constant
  2505. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_SUBTRACT** = ``7``
  2506. Subtraction operator (``-``).
  2507. .. _class_@GlobalScope_constant_OP_MULTIPLY:
  2508. .. rst-class:: classref-enumeration-constant
  2509. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_MULTIPLY** = ``8``
  2510. Multiplication operator (``*``).
  2511. .. _class_@GlobalScope_constant_OP_DIVIDE:
  2512. .. rst-class:: classref-enumeration-constant
  2513. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_DIVIDE** = ``9``
  2514. Division operator (``/``).
  2515. .. _class_@GlobalScope_constant_OP_NEGATE:
  2516. .. rst-class:: classref-enumeration-constant
  2517. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_NEGATE** = ``10``
  2518. Unary negation operator (``-``).
  2519. .. _class_@GlobalScope_constant_OP_POSITIVE:
  2520. .. rst-class:: classref-enumeration-constant
  2521. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_POSITIVE** = ``11``
  2522. Unary plus operator (``+``).
  2523. .. _class_@GlobalScope_constant_OP_MODULE:
  2524. .. rst-class:: classref-enumeration-constant
  2525. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_MODULE** = ``12``
  2526. Remainder/modulo operator (``%``).
  2527. .. _class_@GlobalScope_constant_OP_POWER:
  2528. .. rst-class:: classref-enumeration-constant
  2529. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_POWER** = ``13``
  2530. Power operator (``**``).
  2531. .. _class_@GlobalScope_constant_OP_SHIFT_LEFT:
  2532. .. rst-class:: classref-enumeration-constant
  2533. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_SHIFT_LEFT** = ``14``
  2534. Left shift operator (``<<``).
  2535. .. _class_@GlobalScope_constant_OP_SHIFT_RIGHT:
  2536. .. rst-class:: classref-enumeration-constant
  2537. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_SHIFT_RIGHT** = ``15``
  2538. Right shift operator (``>>``).
  2539. .. _class_@GlobalScope_constant_OP_BIT_AND:
  2540. .. rst-class:: classref-enumeration-constant
  2541. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_AND** = ``16``
  2542. Bitwise AND operator (``&``).
  2543. .. _class_@GlobalScope_constant_OP_BIT_OR:
  2544. .. rst-class:: classref-enumeration-constant
  2545. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_OR** = ``17``
  2546. Bitwise OR operator (``|``).
  2547. .. _class_@GlobalScope_constant_OP_BIT_XOR:
  2548. .. rst-class:: classref-enumeration-constant
  2549. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_XOR** = ``18``
  2550. Bitwise XOR operator (``^``).
  2551. .. _class_@GlobalScope_constant_OP_BIT_NEGATE:
  2552. .. rst-class:: classref-enumeration-constant
  2553. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_BIT_NEGATE** = ``19``
  2554. Bitwise NOT operator (``~``).
  2555. .. _class_@GlobalScope_constant_OP_AND:
  2556. .. rst-class:: classref-enumeration-constant
  2557. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_AND** = ``20``
  2558. Logical AND operator (``and`` or ``&&``).
  2559. .. _class_@GlobalScope_constant_OP_OR:
  2560. .. rst-class:: classref-enumeration-constant
  2561. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_OR** = ``21``
  2562. Logical OR operator (``or`` or ``||``).
  2563. .. _class_@GlobalScope_constant_OP_XOR:
  2564. .. rst-class:: classref-enumeration-constant
  2565. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_XOR** = ``22``
  2566. Logical XOR operator (not implemented in GDScript).
  2567. .. _class_@GlobalScope_constant_OP_NOT:
  2568. .. rst-class:: classref-enumeration-constant
  2569. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_NOT** = ``23``
  2570. Logical NOT operator (``not`` or ``!``).
  2571. .. _class_@GlobalScope_constant_OP_IN:
  2572. .. rst-class:: classref-enumeration-constant
  2573. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_IN** = ``24``
  2574. Logical IN operator (``in``).
  2575. .. _class_@GlobalScope_constant_OP_MAX:
  2576. .. rst-class:: classref-enumeration-constant
  2577. :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` **OP_MAX** = ``25``
  2578. Represents the size of the :ref:`Variant.Operator<enum_@GlobalScope_Variant.Operator>` enum.
  2579. .. rst-class:: classref-section-separator
  2580. ----
  2581. .. rst-class:: classref-descriptions-group
  2582. Property Descriptions
  2583. ---------------------
  2584. .. _class_@GlobalScope_property_AudioServer:
  2585. .. rst-class:: classref-property
  2586. :ref:`AudioServer<class_AudioServer>` **AudioServer** :ref:`๐Ÿ”—<class_@GlobalScope_property_AudioServer>`
  2587. The :ref:`AudioServer<class_AudioServer>` singleton.
  2588. .. rst-class:: classref-item-separator
  2589. ----
  2590. .. _class_@GlobalScope_property_CameraServer:
  2591. .. rst-class:: classref-property
  2592. :ref:`CameraServer<class_CameraServer>` **CameraServer** :ref:`๐Ÿ”—<class_@GlobalScope_property_CameraServer>`
  2593. The :ref:`CameraServer<class_CameraServer>` singleton.
  2594. .. rst-class:: classref-item-separator
  2595. ----
  2596. .. _class_@GlobalScope_property_ClassDB:
  2597. .. rst-class:: classref-property
  2598. :ref:`ClassDB<class_ClassDB>` **ClassDB** :ref:`๐Ÿ”—<class_@GlobalScope_property_ClassDB>`
  2599. The :ref:`ClassDB<class_ClassDB>` singleton.
  2600. .. rst-class:: classref-item-separator
  2601. ----
  2602. .. _class_@GlobalScope_property_DisplayServer:
  2603. .. rst-class:: classref-property
  2604. :ref:`DisplayServer<class_DisplayServer>` **DisplayServer** :ref:`๐Ÿ”—<class_@GlobalScope_property_DisplayServer>`
  2605. The :ref:`DisplayServer<class_DisplayServer>` singleton.
  2606. .. rst-class:: classref-item-separator
  2607. ----
  2608. .. _class_@GlobalScope_property_EditorInterface:
  2609. .. rst-class:: classref-property
  2610. :ref:`EditorInterface<class_EditorInterface>` **EditorInterface** :ref:`๐Ÿ”—<class_@GlobalScope_property_EditorInterface>`
  2611. The :ref:`EditorInterface<class_EditorInterface>` singleton.
  2612. \ **Note:** Only available in editor builds.
  2613. .. rst-class:: classref-item-separator
  2614. ----
  2615. .. _class_@GlobalScope_property_Engine:
  2616. .. rst-class:: classref-property
  2617. :ref:`Engine<class_Engine>` **Engine** :ref:`๐Ÿ”—<class_@GlobalScope_property_Engine>`
  2618. The :ref:`Engine<class_Engine>` singleton.
  2619. .. rst-class:: classref-item-separator
  2620. ----
  2621. .. _class_@GlobalScope_property_EngineDebugger:
  2622. .. rst-class:: classref-property
  2623. :ref:`EngineDebugger<class_EngineDebugger>` **EngineDebugger** :ref:`๐Ÿ”—<class_@GlobalScope_property_EngineDebugger>`
  2624. The :ref:`EngineDebugger<class_EngineDebugger>` singleton.
  2625. .. rst-class:: classref-item-separator
  2626. ----
  2627. .. _class_@GlobalScope_property_GDExtensionManager:
  2628. .. rst-class:: classref-property
  2629. :ref:`GDExtensionManager<class_GDExtensionManager>` **GDExtensionManager** :ref:`๐Ÿ”—<class_@GlobalScope_property_GDExtensionManager>`
  2630. The :ref:`GDExtensionManager<class_GDExtensionManager>` singleton.
  2631. .. rst-class:: classref-item-separator
  2632. ----
  2633. .. _class_@GlobalScope_property_Geometry2D:
  2634. .. rst-class:: classref-property
  2635. :ref:`Geometry2D<class_Geometry2D>` **Geometry2D** :ref:`๐Ÿ”—<class_@GlobalScope_property_Geometry2D>`
  2636. The :ref:`Geometry2D<class_Geometry2D>` singleton.
  2637. .. rst-class:: classref-item-separator
  2638. ----
  2639. .. _class_@GlobalScope_property_Geometry3D:
  2640. .. rst-class:: classref-property
  2641. :ref:`Geometry3D<class_Geometry3D>` **Geometry3D** :ref:`๐Ÿ”—<class_@GlobalScope_property_Geometry3D>`
  2642. The :ref:`Geometry3D<class_Geometry3D>` singleton.
  2643. .. rst-class:: classref-item-separator
  2644. ----
  2645. .. _class_@GlobalScope_property_IP:
  2646. .. rst-class:: classref-property
  2647. :ref:`IP<class_IP>` **IP** :ref:`๐Ÿ”—<class_@GlobalScope_property_IP>`
  2648. The :ref:`IP<class_IP>` singleton.
  2649. .. rst-class:: classref-item-separator
  2650. ----
  2651. .. _class_@GlobalScope_property_Input:
  2652. .. rst-class:: classref-property
  2653. :ref:`Input<class_Input>` **Input** :ref:`๐Ÿ”—<class_@GlobalScope_property_Input>`
  2654. The :ref:`Input<class_Input>` singleton.
  2655. .. rst-class:: classref-item-separator
  2656. ----
  2657. .. _class_@GlobalScope_property_InputMap:
  2658. .. rst-class:: classref-property
  2659. :ref:`InputMap<class_InputMap>` **InputMap** :ref:`๐Ÿ”—<class_@GlobalScope_property_InputMap>`
  2660. The :ref:`InputMap<class_InputMap>` singleton.
  2661. .. rst-class:: classref-item-separator
  2662. ----
  2663. .. _class_@GlobalScope_property_JavaClassWrapper:
  2664. .. rst-class:: classref-property
  2665. :ref:`JavaClassWrapper<class_JavaClassWrapper>` **JavaClassWrapper** :ref:`๐Ÿ”—<class_@GlobalScope_property_JavaClassWrapper>`
  2666. The :ref:`JavaClassWrapper<class_JavaClassWrapper>` singleton.
  2667. \ **Note:** Only implemented on Android.
  2668. .. rst-class:: classref-item-separator
  2669. ----
  2670. .. _class_@GlobalScope_property_JavaScriptBridge:
  2671. .. rst-class:: classref-property
  2672. :ref:`JavaScriptBridge<class_JavaScriptBridge>` **JavaScriptBridge** :ref:`๐Ÿ”—<class_@GlobalScope_property_JavaScriptBridge>`
  2673. The :ref:`JavaScriptBridge<class_JavaScriptBridge>` singleton.
  2674. \ **Note:** Only implemented on the Web platform.
  2675. .. rst-class:: classref-item-separator
  2676. ----
  2677. .. _class_@GlobalScope_property_Marshalls:
  2678. .. rst-class:: classref-property
  2679. :ref:`Marshalls<class_Marshalls>` **Marshalls** :ref:`๐Ÿ”—<class_@GlobalScope_property_Marshalls>`
  2680. The :ref:`Marshalls<class_Marshalls>` singleton.
  2681. .. rst-class:: classref-item-separator
  2682. ----
  2683. .. _class_@GlobalScope_property_NativeMenu:
  2684. .. rst-class:: classref-property
  2685. :ref:`NativeMenu<class_NativeMenu>` **NativeMenu** :ref:`๐Ÿ”—<class_@GlobalScope_property_NativeMenu>`
  2686. The :ref:`NativeMenu<class_NativeMenu>` singleton.
  2687. \ **Note:** Only implemented on macOS.
  2688. .. rst-class:: classref-item-separator
  2689. ----
  2690. .. _class_@GlobalScope_property_NavigationMeshGenerator:
  2691. .. rst-class:: classref-property
  2692. :ref:`NavigationMeshGenerator<class_NavigationMeshGenerator>` **NavigationMeshGenerator** :ref:`๐Ÿ”—<class_@GlobalScope_property_NavigationMeshGenerator>`
  2693. The :ref:`NavigationMeshGenerator<class_NavigationMeshGenerator>` singleton.
  2694. .. rst-class:: classref-item-separator
  2695. ----
  2696. .. _class_@GlobalScope_property_NavigationServer2D:
  2697. .. rst-class:: classref-property
  2698. :ref:`NavigationServer2D<class_NavigationServer2D>` **NavigationServer2D** :ref:`๐Ÿ”—<class_@GlobalScope_property_NavigationServer2D>`
  2699. The :ref:`NavigationServer2D<class_NavigationServer2D>` singleton.
  2700. .. rst-class:: classref-item-separator
  2701. ----
  2702. .. _class_@GlobalScope_property_NavigationServer3D:
  2703. .. rst-class:: classref-property
  2704. :ref:`NavigationServer3D<class_NavigationServer3D>` **NavigationServer3D** :ref:`๐Ÿ”—<class_@GlobalScope_property_NavigationServer3D>`
  2705. The :ref:`NavigationServer3D<class_NavigationServer3D>` singleton.
  2706. .. rst-class:: classref-item-separator
  2707. ----
  2708. .. _class_@GlobalScope_property_OS:
  2709. .. rst-class:: classref-property
  2710. :ref:`OS<class_OS>` **OS** :ref:`๐Ÿ”—<class_@GlobalScope_property_OS>`
  2711. The :ref:`OS<class_OS>` singleton.
  2712. .. rst-class:: classref-item-separator
  2713. ----
  2714. .. _class_@GlobalScope_property_Performance:
  2715. .. rst-class:: classref-property
  2716. :ref:`Performance<class_Performance>` **Performance** :ref:`๐Ÿ”—<class_@GlobalScope_property_Performance>`
  2717. The :ref:`Performance<class_Performance>` singleton.
  2718. .. rst-class:: classref-item-separator
  2719. ----
  2720. .. _class_@GlobalScope_property_PhysicsServer2D:
  2721. .. rst-class:: classref-property
  2722. :ref:`PhysicsServer2D<class_PhysicsServer2D>` **PhysicsServer2D** :ref:`๐Ÿ”—<class_@GlobalScope_property_PhysicsServer2D>`
  2723. The :ref:`PhysicsServer2D<class_PhysicsServer2D>` singleton.
  2724. .. rst-class:: classref-item-separator
  2725. ----
  2726. .. _class_@GlobalScope_property_PhysicsServer2DManager:
  2727. .. rst-class:: classref-property
  2728. :ref:`PhysicsServer2DManager<class_PhysicsServer2DManager>` **PhysicsServer2DManager** :ref:`๐Ÿ”—<class_@GlobalScope_property_PhysicsServer2DManager>`
  2729. The :ref:`PhysicsServer2DManager<class_PhysicsServer2DManager>` singleton.
  2730. .. rst-class:: classref-item-separator
  2731. ----
  2732. .. _class_@GlobalScope_property_PhysicsServer3D:
  2733. .. rst-class:: classref-property
  2734. :ref:`PhysicsServer3D<class_PhysicsServer3D>` **PhysicsServer3D** :ref:`๐Ÿ”—<class_@GlobalScope_property_PhysicsServer3D>`
  2735. The :ref:`PhysicsServer3D<class_PhysicsServer3D>` singleton.
  2736. .. rst-class:: classref-item-separator
  2737. ----
  2738. .. _class_@GlobalScope_property_PhysicsServer3DManager:
  2739. .. rst-class:: classref-property
  2740. :ref:`PhysicsServer3DManager<class_PhysicsServer3DManager>` **PhysicsServer3DManager** :ref:`๐Ÿ”—<class_@GlobalScope_property_PhysicsServer3DManager>`
  2741. The :ref:`PhysicsServer3DManager<class_PhysicsServer3DManager>` singleton.
  2742. .. rst-class:: classref-item-separator
  2743. ----
  2744. .. _class_@GlobalScope_property_ProjectSettings:
  2745. .. rst-class:: classref-property
  2746. :ref:`ProjectSettings<class_ProjectSettings>` **ProjectSettings** :ref:`๐Ÿ”—<class_@GlobalScope_property_ProjectSettings>`
  2747. The :ref:`ProjectSettings<class_ProjectSettings>` singleton.
  2748. .. rst-class:: classref-item-separator
  2749. ----
  2750. .. _class_@GlobalScope_property_RenderingServer:
  2751. .. rst-class:: classref-property
  2752. :ref:`RenderingServer<class_RenderingServer>` **RenderingServer** :ref:`๐Ÿ”—<class_@GlobalScope_property_RenderingServer>`
  2753. The :ref:`RenderingServer<class_RenderingServer>` singleton.
  2754. .. rst-class:: classref-item-separator
  2755. ----
  2756. .. _class_@GlobalScope_property_ResourceLoader:
  2757. .. rst-class:: classref-property
  2758. :ref:`ResourceLoader<class_ResourceLoader>` **ResourceLoader** :ref:`๐Ÿ”—<class_@GlobalScope_property_ResourceLoader>`
  2759. The :ref:`ResourceLoader<class_ResourceLoader>` singleton.
  2760. .. rst-class:: classref-item-separator
  2761. ----
  2762. .. _class_@GlobalScope_property_ResourceSaver:
  2763. .. rst-class:: classref-property
  2764. :ref:`ResourceSaver<class_ResourceSaver>` **ResourceSaver** :ref:`๐Ÿ”—<class_@GlobalScope_property_ResourceSaver>`
  2765. The :ref:`ResourceSaver<class_ResourceSaver>` singleton.
  2766. .. rst-class:: classref-item-separator
  2767. ----
  2768. .. _class_@GlobalScope_property_ResourceUID:
  2769. .. rst-class:: classref-property
  2770. :ref:`ResourceUID<class_ResourceUID>` **ResourceUID** :ref:`๐Ÿ”—<class_@GlobalScope_property_ResourceUID>`
  2771. The :ref:`ResourceUID<class_ResourceUID>` singleton.
  2772. .. rst-class:: classref-item-separator
  2773. ----
  2774. .. _class_@GlobalScope_property_TextServerManager:
  2775. .. rst-class:: classref-property
  2776. :ref:`TextServerManager<class_TextServerManager>` **TextServerManager** :ref:`๐Ÿ”—<class_@GlobalScope_property_TextServerManager>`
  2777. The :ref:`TextServerManager<class_TextServerManager>` singleton.
  2778. .. rst-class:: classref-item-separator
  2779. ----
  2780. .. _class_@GlobalScope_property_ThemeDB:
  2781. .. rst-class:: classref-property
  2782. :ref:`ThemeDB<class_ThemeDB>` **ThemeDB** :ref:`๐Ÿ”—<class_@GlobalScope_property_ThemeDB>`
  2783. The :ref:`ThemeDB<class_ThemeDB>` singleton.
  2784. .. rst-class:: classref-item-separator
  2785. ----
  2786. .. _class_@GlobalScope_property_Time:
  2787. .. rst-class:: classref-property
  2788. :ref:`Time<class_Time>` **Time** :ref:`๐Ÿ”—<class_@GlobalScope_property_Time>`
  2789. The :ref:`Time<class_Time>` singleton.
  2790. .. rst-class:: classref-item-separator
  2791. ----
  2792. .. _class_@GlobalScope_property_TranslationServer:
  2793. .. rst-class:: classref-property
  2794. :ref:`TranslationServer<class_TranslationServer>` **TranslationServer** :ref:`๐Ÿ”—<class_@GlobalScope_property_TranslationServer>`
  2795. The :ref:`TranslationServer<class_TranslationServer>` singleton.
  2796. .. rst-class:: classref-item-separator
  2797. ----
  2798. .. _class_@GlobalScope_property_WorkerThreadPool:
  2799. .. rst-class:: classref-property
  2800. :ref:`WorkerThreadPool<class_WorkerThreadPool>` **WorkerThreadPool** :ref:`๐Ÿ”—<class_@GlobalScope_property_WorkerThreadPool>`
  2801. The :ref:`WorkerThreadPool<class_WorkerThreadPool>` singleton.
  2802. .. rst-class:: classref-item-separator
  2803. ----
  2804. .. _class_@GlobalScope_property_XRServer:
  2805. .. rst-class:: classref-property
  2806. :ref:`XRServer<class_XRServer>` **XRServer** :ref:`๐Ÿ”—<class_@GlobalScope_property_XRServer>`
  2807. The :ref:`XRServer<class_XRServer>` singleton.
  2808. .. rst-class:: classref-section-separator
  2809. ----
  2810. .. rst-class:: classref-descriptions-group
  2811. Method Descriptions
  2812. -------------------
  2813. .. _class_@GlobalScope_method_abs:
  2814. .. rst-class:: classref-method
  2815. :ref:`Variant<class_Variant>` **abs**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_abs>`
  2816. 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>`.
  2817. ::
  2818. var a = abs(-1)
  2819. # a is 1
  2820. var b = abs(-1.2)
  2821. # b is 1.2
  2822. var c = abs(Vector2(-3.5, -4))
  2823. # c is (3.5, 4)
  2824. var d = abs(Vector2i(-5, -6))
  2825. # d is (5, 6)
  2826. var e = abs(Vector3(-7, 8.5, -3.8))
  2827. # e is (7, 8.5, 3.8)
  2828. var f = abs(Vector3i(-7, -8, -9))
  2829. # f is (7, 8, 9)
  2830. \ **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>`.
  2831. .. rst-class:: classref-item-separator
  2832. ----
  2833. .. _class_@GlobalScope_method_absf:
  2834. .. rst-class:: classref-method
  2835. :ref:`float<class_float>` **absf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_absf>`
  2836. Returns the absolute value of float parameter ``x`` (i.e. positive value).
  2837. ::
  2838. # a is 1.2
  2839. var a = absf(-1.2)
  2840. .. rst-class:: classref-item-separator
  2841. ----
  2842. .. _class_@GlobalScope_method_absi:
  2843. .. rst-class:: classref-method
  2844. :ref:`int<class_int>` **absi**\ (\ x\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_absi>`
  2845. Returns the absolute value of int parameter ``x`` (i.e. positive value).
  2846. ::
  2847. # a is 1
  2848. var a = absi(-1)
  2849. .. rst-class:: classref-item-separator
  2850. ----
  2851. .. _class_@GlobalScope_method_acos:
  2852. .. rst-class:: classref-method
  2853. :ref:`float<class_float>` **acos**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_acos>`
  2854. 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>`.
  2855. ::
  2856. # c is 0.523599 or 30 degrees if converted with rad_to_deg(c)
  2857. var c = acos(0.866025)
  2858. .. rst-class:: classref-item-separator
  2859. ----
  2860. .. _class_@GlobalScope_method_acosh:
  2861. .. rst-class:: classref-method
  2862. :ref:`float<class_float>` **acosh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_acosh>`
  2863. 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>`.
  2864. ::
  2865. var a = acosh(2) # Returns 1.31695789692482
  2866. cosh(a) # Returns 2
  2867. var b = acosh(-1) # Returns 0
  2868. .. rst-class:: classref-item-separator
  2869. ----
  2870. .. _class_@GlobalScope_method_angle_difference:
  2871. .. rst-class:: classref-method
  2872. :ref:`float<class_float>` **angle_difference**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_angle_difference>`
  2873. 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.
  2874. .. rst-class:: classref-item-separator
  2875. ----
  2876. .. _class_@GlobalScope_method_asin:
  2877. .. rst-class:: classref-method
  2878. :ref:`float<class_float>` **asin**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_asin>`
  2879. 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>`.
  2880. ::
  2881. # s is 0.523599 or 30 degrees if converted with rad_to_deg(s)
  2882. var s = asin(0.5)
  2883. .. rst-class:: classref-item-separator
  2884. ----
  2885. .. _class_@GlobalScope_method_asinh:
  2886. .. rst-class:: classref-method
  2887. :ref:`float<class_float>` **asinh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_asinh>`
  2888. 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.
  2889. ::
  2890. var a = asinh(0.9) # Returns 0.8088669356527824
  2891. sinh(a) # Returns 0.9
  2892. .. rst-class:: classref-item-separator
  2893. ----
  2894. .. _class_@GlobalScope_method_atan:
  2895. .. rst-class:: classref-method
  2896. :ref:`float<class_float>` **atan**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_atan>`
  2897. Returns the arc tangent of ``x`` in radians. Use it to get the angle from an angle's tangent in trigonometry.
  2898. 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``.
  2899. ::
  2900. var a = atan(0.5) # a is 0.463648
  2901. If ``x`` is between ``-PI / 2`` and ``PI / 2`` (inclusive), ``atan(tan(x))`` is equal to ``x``.
  2902. .. rst-class:: classref-item-separator
  2903. ----
  2904. .. _class_@GlobalScope_method_atan2:
  2905. .. rst-class:: classref-method
  2906. :ref:`float<class_float>` **atan2**\ (\ y\: :ref:`float<class_float>`, x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_atan2>`
  2907. 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.
  2908. Important note: The Y coordinate comes first, by convention.
  2909. ::
  2910. var a = atan2(0, -1) # a is 3.141593
  2911. .. rst-class:: classref-item-separator
  2912. ----
  2913. .. _class_@GlobalScope_method_atanh:
  2914. .. rst-class:: classref-method
  2915. :ref:`float<class_float>` **atanh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_atanh>`
  2916. 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).
  2917. 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>`.
  2918. ::
  2919. var a = atanh(0.9) # Returns 1.47221948958322
  2920. tanh(a) # Returns 0.9
  2921. var b = atanh(-2) # Returns -inf
  2922. tanh(b) # Returns -1
  2923. .. rst-class:: classref-item-separator
  2924. ----
  2925. .. _class_@GlobalScope_method_bezier_derivative:
  2926. .. rst-class:: classref-method
  2927. :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>`
  2928. 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.
  2929. .. rst-class:: classref-item-separator
  2930. ----
  2931. .. _class_@GlobalScope_method_bezier_interpolate:
  2932. .. rst-class:: classref-method
  2933. :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>`
  2934. 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.
  2935. .. rst-class:: classref-item-separator
  2936. ----
  2937. .. _class_@GlobalScope_method_bytes_to_var:
  2938. .. rst-class:: classref-method
  2939. :ref:`Variant<class_Variant>` **bytes_to_var**\ (\ bytes\: :ref:`PackedByteArray<class_PackedByteArray>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_bytes_to_var>`
  2940. Decodes a byte array back to a :ref:`Variant<class_Variant>` value, without decoding objects.
  2941. \ **Note:** If you need object deserialization, see :ref:`bytes_to_var_with_objects()<class_@GlobalScope_method_bytes_to_var_with_objects>`.
  2942. .. rst-class:: classref-item-separator
  2943. ----
  2944. .. _class_@GlobalScope_method_bytes_to_var_with_objects:
  2945. .. rst-class:: classref-method
  2946. :ref:`Variant<class_Variant>` **bytes_to_var_with_objects**\ (\ bytes\: :ref:`PackedByteArray<class_PackedByteArray>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_bytes_to_var_with_objects>`
  2947. Decodes a byte array back to a :ref:`Variant<class_Variant>` value. Decoding objects is allowed.
  2948. \ **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).
  2949. .. rst-class:: classref-item-separator
  2950. ----
  2951. .. _class_@GlobalScope_method_ceil:
  2952. .. rst-class:: classref-method
  2953. :ref:`Variant<class_Variant>` **ceil**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_ceil>`
  2954. 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>`.
  2955. ::
  2956. var i = ceil(1.45) # i is 2.0
  2957. i = ceil(1.001) # i is 2.0
  2958. See also :ref:`floor()<class_@GlobalScope_method_floor>`, :ref:`round()<class_@GlobalScope_method_round>`, and :ref:`snapped()<class_@GlobalScope_method_snapped>`.
  2959. \ **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>`.
  2960. .. rst-class:: classref-item-separator
  2961. ----
  2962. .. _class_@GlobalScope_method_ceilf:
  2963. .. rst-class:: classref-method
  2964. :ref:`float<class_float>` **ceilf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_ceilf>`
  2965. Rounds ``x`` upward (towards positive infinity), returning the smallest whole number that is not less than ``x``.
  2966. A type-safe version of :ref:`ceil()<class_@GlobalScope_method_ceil>`, returning a :ref:`float<class_float>`.
  2967. .. rst-class:: classref-item-separator
  2968. ----
  2969. .. _class_@GlobalScope_method_ceili:
  2970. .. rst-class:: classref-method
  2971. :ref:`int<class_int>` **ceili**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_ceili>`
  2972. Rounds ``x`` upward (towards positive infinity), returning the smallest whole number that is not less than ``x``.
  2973. A type-safe version of :ref:`ceil()<class_@GlobalScope_method_ceil>`, returning an :ref:`int<class_int>`.
  2974. .. rst-class:: classref-item-separator
  2975. ----
  2976. .. _class_@GlobalScope_method_clamp:
  2977. .. rst-class:: classref-method
  2978. :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>`
  2979. 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.
  2980. ::
  2981. var a = clamp(-10, -1, 5)
  2982. # a is -1
  2983. var b = clamp(8.1, 0.9, 5.5)
  2984. # b is 5.5
  2985. \ **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).
  2986. \ **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.
  2987. .. rst-class:: classref-item-separator
  2988. ----
  2989. .. _class_@GlobalScope_method_clampf:
  2990. .. rst-class:: classref-method
  2991. :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>`
  2992. Clamps the ``value``, returning a :ref:`float<class_float>` not less than ``min`` and not more than ``max``.
  2993. ::
  2994. var speed = 42.1
  2995. var a = clampf(speed, 1.0, 20.5) # a is 20.5
  2996. speed = -10.0
  2997. var b = clampf(speed, -1.0, 1.0) # b is -1.0
  2998. .. rst-class:: classref-item-separator
  2999. ----
  3000. .. _class_@GlobalScope_method_clampi:
  3001. .. rst-class:: classref-method
  3002. :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>`
  3003. Clamps the ``value``, returning an :ref:`int<class_int>` not less than ``min`` and not more than ``max``.
  3004. ::
  3005. var speed = 42
  3006. var a = clampi(speed, 1, 20) # a is 20
  3007. speed = -10
  3008. var b = clampi(speed, -1, 1) # b is -1
  3009. .. rst-class:: classref-item-separator
  3010. ----
  3011. .. _class_@GlobalScope_method_cos:
  3012. .. rst-class:: classref-method
  3013. :ref:`float<class_float>` **cos**\ (\ angle_rad\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_cos>`
  3014. Returns the cosine of angle ``angle_rad`` in radians.
  3015. ::
  3016. cos(PI * 2) # Returns 1.0
  3017. cos(PI) # Returns -1.0
  3018. cos(deg_to_rad(90)) # Returns 0.0
  3019. .. rst-class:: classref-item-separator
  3020. ----
  3021. .. _class_@GlobalScope_method_cosh:
  3022. .. rst-class:: classref-method
  3023. :ref:`float<class_float>` **cosh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_cosh>`
  3024. Returns the hyperbolic cosine of ``x`` in radians.
  3025. ::
  3026. print(cosh(1)) # Prints 1.543081
  3027. .. rst-class:: classref-item-separator
  3028. ----
  3029. .. _class_@GlobalScope_method_cubic_interpolate:
  3030. .. rst-class:: classref-method
  3031. :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>`
  3032. Cubic interpolates between two values by the factor defined in ``weight`` with ``pre`` and ``post`` values.
  3033. .. rst-class:: classref-item-separator
  3034. ----
  3035. .. _class_@GlobalScope_method_cubic_interpolate_angle:
  3036. .. rst-class:: classref-method
  3037. :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>`
  3038. 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>`.
  3039. .. rst-class:: classref-item-separator
  3040. ----
  3041. .. _class_@GlobalScope_method_cubic_interpolate_angle_in_time:
  3042. .. rst-class:: classref-method
  3043. :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>`
  3044. 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>`.
  3045. It can perform smoother interpolation than :ref:`cubic_interpolate()<class_@GlobalScope_method_cubic_interpolate>` by the time values.
  3046. .. rst-class:: classref-item-separator
  3047. ----
  3048. .. _class_@GlobalScope_method_cubic_interpolate_in_time:
  3049. .. rst-class:: classref-method
  3050. :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>`
  3051. Cubic interpolates between two values by the factor defined in ``weight`` with ``pre`` and ``post`` values.
  3052. It can perform smoother interpolation than :ref:`cubic_interpolate()<class_@GlobalScope_method_cubic_interpolate>` by the time values.
  3053. .. rst-class:: classref-item-separator
  3054. ----
  3055. .. _class_@GlobalScope_method_db_to_linear:
  3056. .. rst-class:: classref-method
  3057. :ref:`float<class_float>` **db_to_linear**\ (\ db\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_db_to_linear>`
  3058. Converts from decibels to linear energy (audio).
  3059. .. rst-class:: classref-item-separator
  3060. ----
  3061. .. _class_@GlobalScope_method_deg_to_rad:
  3062. .. rst-class:: classref-method
  3063. :ref:`float<class_float>` **deg_to_rad**\ (\ deg\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_deg_to_rad>`
  3064. Converts an angle expressed in degrees to radians.
  3065. ::
  3066. var r = deg_to_rad(180) # r is 3.141593
  3067. .. rst-class:: classref-item-separator
  3068. ----
  3069. .. _class_@GlobalScope_method_ease:
  3070. .. rst-class:: classref-method
  3071. :ref:`float<class_float>` **ease**\ (\ x\: :ref:`float<class_float>`, curve\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_ease>`
  3072. 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:
  3073. .. code:: text
  3074. - Lower than -1.0 (exclusive): Ease in-out
  3075. - -1.0: Linear
  3076. - Between -1.0 and 0.0 (exclusive): Ease out-in
  3077. - 0.0: Constant
  3078. - Between 0.0 to 1.0 (exclusive): Ease out
  3079. - 1.0: Linear
  3080. - Greater than 1.0 (exclusive): Ease in
  3081. \ `ease() curve values cheatsheet <https://raw.githubusercontent.com/godotengine/godot-docs/master/img/ease_cheatsheet.png>`__\
  3082. 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>`.
  3083. .. rst-class:: classref-item-separator
  3084. ----
  3085. .. _class_@GlobalScope_method_error_string:
  3086. .. rst-class:: classref-method
  3087. :ref:`String<class_String>` **error_string**\ (\ error\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_error_string>`
  3088. Returns a human-readable name for the given :ref:`Error<enum_@GlobalScope_Error>` code.
  3089. ::
  3090. print(OK) # Prints 0
  3091. print(error_string(OK)) # Prints "OK"
  3092. print(error_string(ERR_BUSY)) # Prints "Busy"
  3093. print(error_string(ERR_OUT_OF_MEMORY)) # Prints "Out of memory"
  3094. .. rst-class:: classref-item-separator
  3095. ----
  3096. .. _class_@GlobalScope_method_exp:
  3097. .. rst-class:: classref-method
  3098. :ref:`float<class_float>` **exp**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_exp>`
  3099. The natural exponential function. It raises the mathematical constant *e* to the power of ``x`` and returns it.
  3100. \ *e* has an approximate value of 2.71828, and can be obtained with ``exp(1)``.
  3101. For exponents to other bases use the method :ref:`pow()<class_@GlobalScope_method_pow>`.
  3102. ::
  3103. var a = exp(2) # Approximately 7.39
  3104. .. rst-class:: classref-item-separator
  3105. ----
  3106. .. _class_@GlobalScope_method_floor:
  3107. .. rst-class:: classref-method
  3108. :ref:`Variant<class_Variant>` **floor**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_floor>`
  3109. 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>`.
  3110. ::
  3111. var a = floor(2.99) # a is 2.0
  3112. a = floor(-2.99) # a is -3.0
  3113. See also :ref:`ceil()<class_@GlobalScope_method_ceil>`, :ref:`round()<class_@GlobalScope_method_round>`, and :ref:`snapped()<class_@GlobalScope_method_snapped>`.
  3114. \ **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>`.
  3115. .. rst-class:: classref-item-separator
  3116. ----
  3117. .. _class_@GlobalScope_method_floorf:
  3118. .. rst-class:: classref-method
  3119. :ref:`float<class_float>` **floorf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_floorf>`
  3120. Rounds ``x`` downward (towards negative infinity), returning the largest whole number that is not more than ``x``.
  3121. A type-safe version of :ref:`floor()<class_@GlobalScope_method_floor>`, returning a :ref:`float<class_float>`.
  3122. .. rst-class:: classref-item-separator
  3123. ----
  3124. .. _class_@GlobalScope_method_floori:
  3125. .. rst-class:: classref-method
  3126. :ref:`int<class_int>` **floori**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_floori>`
  3127. Rounds ``x`` downward (towards negative infinity), returning the largest whole number that is not more than ``x``.
  3128. A type-safe version of :ref:`floor()<class_@GlobalScope_method_floor>`, returning an :ref:`int<class_int>`.
  3129. \ **Note:** This function is *not* the same as ``int(x)``, which rounds towards 0.
  3130. .. rst-class:: classref-item-separator
  3131. ----
  3132. .. _class_@GlobalScope_method_fmod:
  3133. .. rst-class:: classref-method
  3134. :ref:`float<class_float>` **fmod**\ (\ x\: :ref:`float<class_float>`, y\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_fmod>`
  3135. Returns the floating-point remainder of ``x`` divided by ``y``, keeping the sign of ``x``.
  3136. ::
  3137. var remainder = fmod(7, 5.5) # remainder is 1.5
  3138. For the integer remainder operation, use the ``%`` operator.
  3139. .. rst-class:: classref-item-separator
  3140. ----
  3141. .. _class_@GlobalScope_method_fposmod:
  3142. .. rst-class:: classref-method
  3143. :ref:`float<class_float>` **fposmod**\ (\ x\: :ref:`float<class_float>`, y\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_fposmod>`
  3144. Returns the floating-point modulus of ``x`` divided by ``y``, wrapping equally in positive and negative.
  3145. ::
  3146. print(" (x) (fmod(x, 1.5)) (fposmod(x, 1.5))")
  3147. for i in 7:
  3148. var x = i * 0.5 - 1.5
  3149. print("%4.1f %4.1f | %4.1f" % [x, fmod(x, 1.5), fposmod(x, 1.5)])
  3150. Prints:
  3151. .. code:: text
  3152. (x) (fmod(x, 1.5)) (fposmod(x, 1.5))
  3153. -1.5 -0.0 | 0.0
  3154. -1.0 -1.0 | 0.5
  3155. -0.5 -0.5 | 1.0
  3156. 0.0 0.0 | 0.0
  3157. 0.5 0.5 | 0.5
  3158. 1.0 1.0 | 1.0
  3159. 1.5 0.0 | 0.0
  3160. .. rst-class:: classref-item-separator
  3161. ----
  3162. .. _class_@GlobalScope_method_hash:
  3163. .. rst-class:: classref-method
  3164. :ref:`int<class_int>` **hash**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_hash>`
  3165. Returns the integer hash of the passed ``variable``.
  3166. .. tabs::
  3167. .. code-tab:: gdscript
  3168. print(hash("a")) # Prints 177670
  3169. .. code-tab:: csharp
  3170. GD.Print(GD.Hash("a")); // Prints 177670
  3171. .. rst-class:: classref-item-separator
  3172. ----
  3173. .. _class_@GlobalScope_method_instance_from_id:
  3174. .. rst-class:: classref-method
  3175. :ref:`Object<class_Object>` **instance_from_id**\ (\ instance_id\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_instance_from_id>`
  3176. 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>`.
  3177. .. tabs::
  3178. .. code-tab:: gdscript
  3179. var drink = "water"
  3180. func _ready():
  3181. var id = get_instance_id()
  3182. var instance = instance_from_id(id)
  3183. print(instance.foo) # Prints "water"
  3184. .. code-tab:: csharp
  3185. public partial class MyNode : Node
  3186. {
  3187. public string Drink { get; set; } = "water";
  3188. public override void _Ready()
  3189. {
  3190. ulong id = GetInstanceId();
  3191. var instance = (MyNode)InstanceFromId(Id);
  3192. GD.Print(instance.Drink); // Prints "water"
  3193. }
  3194. }
  3195. .. rst-class:: classref-item-separator
  3196. ----
  3197. .. _class_@GlobalScope_method_inverse_lerp:
  3198. .. rst-class:: classref-method
  3199. :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>`
  3200. 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.
  3201. ::
  3202. # The interpolation ratio in the `lerp()` call below is 0.75.
  3203. var middle = lerp(20, 30, 0.75)
  3204. # middle is now 27.5.
  3205. # Now, we pretend to have forgotten the original ratio and want to get it back.
  3206. var ratio = inverse_lerp(20, 30, 27.5)
  3207. # ratio is now 0.75.
  3208. 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.
  3209. .. rst-class:: classref-item-separator
  3210. ----
  3211. .. _class_@GlobalScope_method_is_equal_approx:
  3212. .. rst-class:: classref-method
  3213. :ref:`bool<class_bool>` **is_equal_approx**\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_equal_approx>`
  3214. Returns ``true`` if ``a`` and ``b`` are approximately equal to each other.
  3215. 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.
  3216. Infinity values of the same sign are considered equal.
  3217. .. rst-class:: classref-item-separator
  3218. ----
  3219. .. _class_@GlobalScope_method_is_finite:
  3220. .. rst-class:: classref-method
  3221. :ref:`bool<class_bool>` **is_finite**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_finite>`
  3222. Returns whether ``x`` is a finite value, i.e. it is not :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>`, positive infinity, or negative infinity. See also :ref:`is_inf()<class_@GlobalScope_method_is_inf>` and :ref:`is_nan()<class_@GlobalScope_method_is_nan>`.
  3223. .. rst-class:: classref-item-separator
  3224. ----
  3225. .. _class_@GlobalScope_method_is_inf:
  3226. .. rst-class:: classref-method
  3227. :ref:`bool<class_bool>` **is_inf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_inf>`
  3228. Returns ``true`` if ``x`` is either positive infinity or negative infinity. See also :ref:`is_finite()<class_@GlobalScope_method_is_finite>` and :ref:`is_nan()<class_@GlobalScope_method_is_nan>`.
  3229. .. rst-class:: classref-item-separator
  3230. ----
  3231. .. _class_@GlobalScope_method_is_instance_id_valid:
  3232. .. rst-class:: classref-method
  3233. :ref:`bool<class_bool>` **is_instance_id_valid**\ (\ id\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_instance_id_valid>`
  3234. 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.
  3235. .. rst-class:: classref-item-separator
  3236. ----
  3237. .. _class_@GlobalScope_method_is_instance_valid:
  3238. .. rst-class:: classref-method
  3239. :ref:`bool<class_bool>` **is_instance_valid**\ (\ instance\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_instance_valid>`
  3240. Returns ``true`` if ``instance`` is a valid Object (e.g. has not been deleted from memory).
  3241. .. rst-class:: classref-item-separator
  3242. ----
  3243. .. _class_@GlobalScope_method_is_nan:
  3244. .. rst-class:: classref-method
  3245. :ref:`bool<class_bool>` **is_nan**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_nan>`
  3246. Returns ``true`` if ``x`` is a NaN ("Not a Number" or invalid) value. This method is needed as :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` is not equal to itself, which means ``x == NAN`` can't be used to check whether a value is a NaN.
  3247. .. rst-class:: classref-item-separator
  3248. ----
  3249. .. _class_@GlobalScope_method_is_same:
  3250. .. rst-class:: classref-method
  3251. :ref:`bool<class_bool>` **is_same**\ (\ a\: :ref:`Variant<class_Variant>`, b\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_same>`
  3252. 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.
  3253. ::
  3254. # Vector2 is a value type
  3255. var vec2_a = Vector2(0, 0)
  3256. var vec2_b = Vector2(0, 0)
  3257. var vec2_c = Vector2(1, 1)
  3258. is_same(vec2_a, vec2_a) # true
  3259. is_same(vec2_a, vec2_b) # true
  3260. is_same(vec2_a, vec2_c) # false
  3261. # Array is a reference type
  3262. var arr_a = []
  3263. var arr_b = []
  3264. is_same(arr_a, arr_a) # true
  3265. is_same(arr_a, arr_b) # false
  3266. 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>`.
  3267. 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>`.
  3268. .. rst-class:: classref-item-separator
  3269. ----
  3270. .. _class_@GlobalScope_method_is_zero_approx:
  3271. .. rst-class:: classref-method
  3272. :ref:`bool<class_bool>` **is_zero_approx**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_is_zero_approx>`
  3273. Returns ``true`` if ``x`` is zero or almost zero. The comparison is done using a tolerance calculation with a small internal epsilon.
  3274. This function is faster than using :ref:`is_equal_approx()<class_@GlobalScope_method_is_equal_approx>` with one value as zero.
  3275. .. rst-class:: classref-item-separator
  3276. ----
  3277. .. _class_@GlobalScope_method_lerp:
  3278. .. rst-class:: classref-method
  3279. :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>`
  3280. 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``.
  3281. 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>`.
  3282. ::
  3283. lerp(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>`. See also :ref:`remap()<class_@GlobalScope_method_remap>` to map a continuous series of values to another.
  3285. \ **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>`.
  3286. .. rst-class:: classref-item-separator
  3287. ----
  3288. .. _class_@GlobalScope_method_lerp_angle:
  3289. .. rst-class:: classref-method
  3290. :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>`
  3291. Linearly interpolates between two angles (in radians) by a ``weight`` value between 0.0 and 1.0.
  3292. 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>`.
  3293. ::
  3294. extends Sprite
  3295. var elapsed = 0.0
  3296. func _process(delta):
  3297. var min_angle = deg_to_rad(0.0)
  3298. var max_angle = deg_to_rad(90.0)
  3299. rotation = lerp_angle(min_angle, max_angle, elapsed)
  3300. elapsed += delta
  3301. \ **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.
  3302. .. rst-class:: classref-item-separator
  3303. ----
  3304. .. _class_@GlobalScope_method_lerpf:
  3305. .. rst-class:: classref-method
  3306. :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>`
  3307. 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.
  3308. ::
  3309. lerpf(0, 4, 0.75) # Returns 3.0
  3310. 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>`.
  3311. .. rst-class:: classref-item-separator
  3312. ----
  3313. .. _class_@GlobalScope_method_linear_to_db:
  3314. .. rst-class:: classref-method
  3315. :ref:`float<class_float>` **linear_to_db**\ (\ lin\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_linear_to_db>`
  3316. 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.
  3317. \ **Example:** Change the Master bus's volume through a :ref:`Slider<class_Slider>` node, which ranges from ``0.0`` to ``1.0``:
  3318. ::
  3319. AudioServer.set_bus_volume_db(AudioServer.get_bus_index("Master"), linear_to_db($Slider.value))
  3320. .. rst-class:: classref-item-separator
  3321. ----
  3322. .. _class_@GlobalScope_method_log:
  3323. .. rst-class:: classref-method
  3324. :ref:`float<class_float>` **log**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_log>`
  3325. 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.
  3326. \ **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)``.
  3327. ::
  3328. log(10) # Returns 2.302585
  3329. \ **Note:** The logarithm of ``0`` returns ``-inf``, while negative values return ``-nan``.
  3330. .. rst-class:: classref-item-separator
  3331. ----
  3332. .. _class_@GlobalScope_method_max:
  3333. .. rst-class:: classref-method
  3334. :ref:`Variant<class_Variant>` **max**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_max>`
  3335. Returns the maximum of the given numeric values. This function can take any number of arguments.
  3336. ::
  3337. max(1, 7, 3, -6, 5) # Returns 7
  3338. \ **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>`.
  3339. .. rst-class:: classref-item-separator
  3340. ----
  3341. .. _class_@GlobalScope_method_maxf:
  3342. .. rst-class:: classref-method
  3343. :ref:`float<class_float>` **maxf**\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_maxf>`
  3344. Returns the maximum of two :ref:`float<class_float>` values.
  3345. ::
  3346. maxf(3.6, 24) # Returns 24.0
  3347. maxf(-3.99, -4) # Returns -3.99
  3348. .. rst-class:: classref-item-separator
  3349. ----
  3350. .. _class_@GlobalScope_method_maxi:
  3351. .. rst-class:: classref-method
  3352. :ref:`int<class_int>` **maxi**\ (\ a\: :ref:`int<class_int>`, b\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_maxi>`
  3353. Returns the maximum of two :ref:`int<class_int>` values.
  3354. ::
  3355. maxi(1, 2) # Returns 2
  3356. maxi(-3, -4) # Returns -3
  3357. .. rst-class:: classref-item-separator
  3358. ----
  3359. .. _class_@GlobalScope_method_min:
  3360. .. rst-class:: classref-method
  3361. :ref:`Variant<class_Variant>` **min**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_min>`
  3362. Returns the minimum of the given numeric values. This function can take any number of arguments.
  3363. ::
  3364. min(1, 7, 3, -6, 5) # Returns -6
  3365. \ **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>`.
  3366. .. rst-class:: classref-item-separator
  3367. ----
  3368. .. _class_@GlobalScope_method_minf:
  3369. .. rst-class:: classref-method
  3370. :ref:`float<class_float>` **minf**\ (\ a\: :ref:`float<class_float>`, b\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_minf>`
  3371. Returns the minimum of two :ref:`float<class_float>` values.
  3372. ::
  3373. minf(3.6, 24) # Returns 3.6
  3374. minf(-3.99, -4) # Returns -4.0
  3375. .. rst-class:: classref-item-separator
  3376. ----
  3377. .. _class_@GlobalScope_method_mini:
  3378. .. rst-class:: classref-method
  3379. :ref:`int<class_int>` **mini**\ (\ a\: :ref:`int<class_int>`, b\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_mini>`
  3380. Returns the minimum of two :ref:`int<class_int>` values.
  3381. ::
  3382. mini(1, 2) # Returns 1
  3383. mini(-3, -4) # Returns -4
  3384. .. rst-class:: classref-item-separator
  3385. ----
  3386. .. _class_@GlobalScope_method_move_toward:
  3387. .. rst-class:: classref-method
  3388. :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>`
  3389. Moves ``from`` toward ``to`` by the ``delta`` amount. Will not go past ``to``.
  3390. Use a negative ``delta`` value to move away.
  3391. ::
  3392. move_toward(5, 10, 4) # Returns 9
  3393. move_toward(10, 5, 4) # Returns 6
  3394. move_toward(5, 10, 9) # Returns 10
  3395. move_toward(10, 5, -1.5) # Returns 11.5
  3396. .. rst-class:: classref-item-separator
  3397. ----
  3398. .. _class_@GlobalScope_method_nearest_po2:
  3399. .. rst-class:: classref-method
  3400. :ref:`int<class_int>` **nearest_po2**\ (\ value\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_nearest_po2>`
  3401. Returns the smallest integer power of 2 that is greater than or equal to ``value``.
  3402. ::
  3403. nearest_po2(3) # Returns 4
  3404. nearest_po2(4) # Returns 4
  3405. nearest_po2(5) # Returns 8
  3406. nearest_po2(0) # Returns 0 (this may not be expected)
  3407. nearest_po2(-1) # Returns 0 (this may not be expected)
  3408. \ **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.
  3409. .. rst-class:: classref-item-separator
  3410. ----
  3411. .. _class_@GlobalScope_method_pingpong:
  3412. .. rst-class:: classref-method
  3413. :ref:`float<class_float>` **pingpong**\ (\ value\: :ref:`float<class_float>`, length\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_pingpong>`
  3414. 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.
  3415. ::
  3416. pingpong(-3.0, 3.0) # Returns 3.0
  3417. pingpong(-2.0, 3.0) # Returns 2.0
  3418. pingpong(-1.0, 3.0) # Returns 1.0
  3419. pingpong(0.0, 3.0) # Returns 0.0
  3420. pingpong(1.0, 3.0) # Returns 1.0
  3421. pingpong(2.0, 3.0) # Returns 2.0
  3422. pingpong(3.0, 3.0) # Returns 3.0
  3423. pingpong(4.0, 3.0) # Returns 2.0
  3424. pingpong(5.0, 3.0) # Returns 1.0
  3425. pingpong(6.0, 3.0) # Returns 0.0
  3426. .. rst-class:: classref-item-separator
  3427. ----
  3428. .. _class_@GlobalScope_method_posmod:
  3429. .. rst-class:: classref-method
  3430. :ref:`int<class_int>` **posmod**\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_posmod>`
  3431. Returns the integer modulus of ``x`` divided by ``y`` that wraps equally in positive and negative.
  3432. ::
  3433. print("#(i) (i % 3) (posmod(i, 3))")
  3434. for i in range(-3, 4):
  3435. print("%2d %2d | %2d" % [i, i % 3, posmod(i, 3)])
  3436. Prints:
  3437. .. code:: text
  3438. (i) (i % 3) (posmod(i, 3))
  3439. -3 0 | 0
  3440. -2 -2 | 1
  3441. -1 -1 | 2
  3442. 0 0 | 0
  3443. 1 1 | 1
  3444. 2 2 | 2
  3445. 3 0 | 0
  3446. .. rst-class:: classref-item-separator
  3447. ----
  3448. .. _class_@GlobalScope_method_pow:
  3449. .. rst-class:: classref-method
  3450. :ref:`float<class_float>` **pow**\ (\ base\: :ref:`float<class_float>`, exp\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_pow>`
  3451. Returns the result of ``base`` raised to the power of ``exp``.
  3452. In GDScript, this is the equivalent of the ``**`` operator.
  3453. ::
  3454. pow(2, 5) # Returns 32.0
  3455. pow(4, 1.5) # Returns 8.0
  3456. .. rst-class:: classref-item-separator
  3457. ----
  3458. .. _class_@GlobalScope_method_print:
  3459. .. rst-class:: classref-method
  3460. |void| **print**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_print>`
  3461. Converts one or more arguments of any type to string in the best way possible and prints them to the console.
  3462. .. tabs::
  3463. .. code-tab:: gdscript
  3464. var a = [1, 2, 3]
  3465. print("a", "b", a) # Prints "ab[1, 2, 3]"
  3466. .. code-tab:: csharp
  3467. Godot.Collections.Array a = [1, 2, 3];
  3468. GD.Print("a", "b", a); // Prints "ab[1, 2, 3]"
  3469. \ **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>`.
  3470. .. rst-class:: classref-item-separator
  3471. ----
  3472. .. _class_@GlobalScope_method_print_rich:
  3473. .. rst-class:: classref-method
  3474. |void| **print_rich**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_print_rich>`
  3475. Converts one or more arguments of any type to string in the best way possible and prints them to the console.
  3476. The following BBCode tags are supported: ``b``, ``i``, ``u``, ``s``, ``indent``, ``code``, ``url``, ``center``, ``right``, ``color``, ``bgcolor``, ``fgcolor``.
  3477. URL tags only support URLs wrapped by a URL tag, not URLs with a different title.
  3478. 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.
  3479. .. tabs::
  3480. .. code-tab:: gdscript
  3481. print_rich("[color=green][b]Hello world![/b][/color]") # Prints "Hello world!", in green with a bold font.
  3482. .. code-tab:: csharp
  3483. GD.PrintRich("[color=green][b]Hello world![/b][/color]"); // Prints "Hello world!", in green with a bold font.
  3484. \ **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.
  3485. \ **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.
  3486. .. rst-class:: classref-item-separator
  3487. ----
  3488. .. _class_@GlobalScope_method_print_verbose:
  3489. .. rst-class:: classref-method
  3490. |void| **print_verbose**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_print_verbose>`
  3491. 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.
  3492. .. rst-class:: classref-item-separator
  3493. ----
  3494. .. _class_@GlobalScope_method_printerr:
  3495. .. rst-class:: classref-method
  3496. |void| **printerr**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_printerr>`
  3497. Prints one or more arguments to strings in the best way possible to standard error line.
  3498. .. tabs::
  3499. .. code-tab:: gdscript
  3500. printerr("prints to stderr")
  3501. .. code-tab:: csharp
  3502. GD.PrintErr("prints to stderr");
  3503. .. rst-class:: classref-item-separator
  3504. ----
  3505. .. _class_@GlobalScope_method_printraw:
  3506. .. rst-class:: classref-method
  3507. |void| **printraw**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_printraw>`
  3508. 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.
  3509. \ **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.
  3510. .. tabs::
  3511. .. code-tab:: gdscript
  3512. # Prints "ABC" to terminal.
  3513. printraw("A")
  3514. printraw("B")
  3515. printraw("C")
  3516. .. code-tab:: csharp
  3517. // Prints "ABC" to terminal.
  3518. GD.PrintRaw("A");
  3519. GD.PrintRaw("B");
  3520. GD.PrintRaw("C");
  3521. .. rst-class:: classref-item-separator
  3522. ----
  3523. .. _class_@GlobalScope_method_prints:
  3524. .. rst-class:: classref-method
  3525. |void| **prints**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_prints>`
  3526. Prints one or more arguments to the console with a space between each argument.
  3527. .. tabs::
  3528. .. code-tab:: gdscript
  3529. prints("A", "B", "C") # Prints "A B C"
  3530. .. code-tab:: csharp
  3531. GD.PrintS("A", "B", "C"); // Prints "A B C"
  3532. .. rst-class:: classref-item-separator
  3533. ----
  3534. .. _class_@GlobalScope_method_printt:
  3535. .. rst-class:: classref-method
  3536. |void| **printt**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_printt>`
  3537. Prints one or more arguments to the console with a tab between each argument.
  3538. .. tabs::
  3539. .. code-tab:: gdscript
  3540. printt("A", "B", "C") # Prints "A B C"
  3541. .. code-tab:: csharp
  3542. GD.PrintT("A", "B", "C"); // Prints "A B C"
  3543. .. rst-class:: classref-item-separator
  3544. ----
  3545. .. _class_@GlobalScope_method_push_error:
  3546. .. rst-class:: classref-method
  3547. |void| **push_error**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_push_error>`
  3548. Pushes an error message to Godot's built-in debugger and to the OS terminal.
  3549. .. tabs::
  3550. .. code-tab:: gdscript
  3551. push_error("test error") # Prints "test error" to debugger and terminal as an error.
  3552. .. code-tab:: csharp
  3553. GD.PushError("test error"); // Prints "test error" to debugger and terminal as an error.
  3554. \ **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.
  3555. .. rst-class:: classref-item-separator
  3556. ----
  3557. .. _class_@GlobalScope_method_push_warning:
  3558. .. rst-class:: classref-method
  3559. |void| **push_warning**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_push_warning>`
  3560. Pushes a warning message to Godot's built-in debugger and to the OS terminal.
  3561. .. tabs::
  3562. .. code-tab:: gdscript
  3563. push_warning("test warning") # Prints "test warning" to debugger and terminal as a warning.
  3564. .. code-tab:: csharp
  3565. GD.PushWarning("test warning"); // Prints "test warning" to debugger and terminal as a warning.
  3566. .. rst-class:: classref-item-separator
  3567. ----
  3568. .. _class_@GlobalScope_method_rad_to_deg:
  3569. .. rst-class:: classref-method
  3570. :ref:`float<class_float>` **rad_to_deg**\ (\ rad\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_rad_to_deg>`
  3571. Converts an angle expressed in radians to degrees.
  3572. ::
  3573. rad_to_deg(0.523599) # Returns 30
  3574. rad_to_deg(PI) # Returns 180
  3575. rad_to_deg(PI * 2) # Returns 360
  3576. .. rst-class:: classref-item-separator
  3577. ----
  3578. .. _class_@GlobalScope_method_rand_from_seed:
  3579. .. rst-class:: classref-method
  3580. :ref:`PackedInt64Array<class_PackedInt64Array>` **rand_from_seed**\ (\ seed\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_rand_from_seed>`
  3581. 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.
  3582. \ **Note:** "Seed" here refers to the internal state of the pseudo random number generator, currently implemented as a 64 bit integer.
  3583. ::
  3584. var a = rand_from_seed(4)
  3585. print(a[0]) # Prints 2879024997
  3586. print(a[1]) # Prints 4
  3587. .. rst-class:: classref-item-separator
  3588. ----
  3589. .. _class_@GlobalScope_method_randf:
  3590. .. rst-class:: classref-method
  3591. :ref:`float<class_float>` **randf**\ (\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_randf>`
  3592. Returns a random floating-point value between ``0.0`` and ``1.0`` (inclusive).
  3593. .. tabs::
  3594. .. code-tab:: gdscript
  3595. randf() # Returns e.g. 0.375671
  3596. .. code-tab:: csharp
  3597. GD.Randf(); // Returns e.g. 0.375671
  3598. .. rst-class:: classref-item-separator
  3599. ----
  3600. .. _class_@GlobalScope_method_randf_range:
  3601. .. rst-class:: classref-method
  3602. :ref:`float<class_float>` **randf_range**\ (\ from\: :ref:`float<class_float>`, to\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_randf_range>`
  3603. Returns a random floating-point value between ``from`` and ``to`` (inclusive).
  3604. .. tabs::
  3605. .. code-tab:: gdscript
  3606. randf_range(0, 20.5) # Returns e.g. 7.45315
  3607. randf_range(-10, 10) # Returns e.g. -3.844535
  3608. .. code-tab:: csharp
  3609. GD.RandRange(0.0, 20.5); // Returns e.g. 7.45315
  3610. GD.RandRange(-10.0, 10.0); // Returns e.g. -3.844535
  3611. .. rst-class:: classref-item-separator
  3612. ----
  3613. .. _class_@GlobalScope_method_randfn:
  3614. .. rst-class:: classref-method
  3615. :ref:`float<class_float>` **randfn**\ (\ mean\: :ref:`float<class_float>`, deviation\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_randfn>`
  3616. 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.
  3617. \ **Note:** This method uses the `Box-Muller transform <https://en.wikipedia.org/wiki/Box%E2%80%93Muller_transform>`__ algorithm.
  3618. .. rst-class:: classref-item-separator
  3619. ----
  3620. .. _class_@GlobalScope_method_randi:
  3621. .. rst-class:: classref-method
  3622. :ref:`int<class_int>` **randi**\ (\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_randi>`
  3623. 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).
  3624. .. tabs::
  3625. .. code-tab:: gdscript
  3626. randi() # Returns random integer between 0 and 2^32 - 1
  3627. randi() % 20 # Returns random integer between 0 and 19
  3628. randi() % 100 # Returns random integer between 0 and 99
  3629. randi() % 100 + 1 # Returns random integer between 1 and 100
  3630. .. code-tab:: csharp
  3631. GD.Randi(); // Returns random integer between 0 and 2^32 - 1
  3632. GD.Randi() % 20; // Returns random integer between 0 and 19
  3633. GD.Randi() % 100; // Returns random integer between 0 and 99
  3634. GD.Randi() % 100 + 1; // Returns random integer between 1 and 100
  3635. .. rst-class:: classref-item-separator
  3636. ----
  3637. .. _class_@GlobalScope_method_randi_range:
  3638. .. rst-class:: classref-method
  3639. :ref:`int<class_int>` **randi_range**\ (\ from\: :ref:`int<class_int>`, to\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_randi_range>`
  3640. Returns a random signed 32-bit integer between ``from`` and ``to`` (inclusive). If ``to`` is lesser than ``from``, they are swapped.
  3641. .. tabs::
  3642. .. code-tab:: gdscript
  3643. randi_range(0, 1) # Returns either 0 or 1
  3644. randi_range(-10, 1000) # Returns random integer between -10 and 1000
  3645. .. code-tab:: csharp
  3646. GD.RandRange(0, 1); // Returns either 0 or 1
  3647. GD.RandRange(-10, 1000); // Returns random integer between -10 and 1000
  3648. .. rst-class:: classref-item-separator
  3649. ----
  3650. .. _class_@GlobalScope_method_randomize:
  3651. .. rst-class:: classref-method
  3652. |void| **randomize**\ (\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_randomize>`
  3653. Randomizes the seed (or the internal state) of the random number generator. The current implementation uses a number based on the device's time.
  3654. \ **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.
  3655. .. rst-class:: classref-item-separator
  3656. ----
  3657. .. _class_@GlobalScope_method_remap:
  3658. .. rst-class:: classref-method
  3659. :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>`
  3660. 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.
  3661. ::
  3662. remap(75, 0, 100, -1, 1) # Returns 0.5
  3663. For complex use cases where multiple ranges are needed, consider using :ref:`Curve<class_Curve>` or :ref:`Gradient<class_Gradient>` instead.
  3664. \ **Note:** If ``istart == istop``, the return value is undefined (most likely NaN, INF, or -INF).
  3665. .. rst-class:: classref-item-separator
  3666. ----
  3667. .. _class_@GlobalScope_method_rid_allocate_id:
  3668. .. rst-class:: classref-method
  3669. :ref:`int<class_int>` **rid_allocate_id**\ (\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_rid_allocate_id>`
  3670. 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.
  3671. .. rst-class:: classref-item-separator
  3672. ----
  3673. .. _class_@GlobalScope_method_rid_from_int64:
  3674. .. rst-class:: classref-method
  3675. :ref:`RID<class_RID>` **rid_from_int64**\ (\ base\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_rid_from_int64>`
  3676. Creates an RID from a ``base``. This is used mainly from native extensions to build servers.
  3677. .. rst-class:: classref-item-separator
  3678. ----
  3679. .. _class_@GlobalScope_method_rotate_toward:
  3680. .. rst-class:: classref-method
  3681. :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>`
  3682. Rotates ``from`` toward ``to`` by the ``delta`` amount. Will not go past ``to``.
  3683. 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>`.
  3684. If ``delta`` is negative, this function will rotate away from ``to``, toward the opposite angle, and will not go past the opposite angle.
  3685. .. rst-class:: classref-item-separator
  3686. ----
  3687. .. _class_@GlobalScope_method_round:
  3688. .. rst-class:: classref-method
  3689. :ref:`Variant<class_Variant>` **round**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_round>`
  3690. 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>`.
  3691. ::
  3692. round(2.4) # Returns 2
  3693. round(2.5) # Returns 3
  3694. round(2.6) # Returns 3
  3695. See also :ref:`floor()<class_@GlobalScope_method_floor>`, :ref:`ceil()<class_@GlobalScope_method_ceil>`, and :ref:`snapped()<class_@GlobalScope_method_snapped>`.
  3696. \ **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>`.
  3697. .. rst-class:: classref-item-separator
  3698. ----
  3699. .. _class_@GlobalScope_method_roundf:
  3700. .. rst-class:: classref-method
  3701. :ref:`float<class_float>` **roundf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_roundf>`
  3702. Rounds ``x`` to the nearest whole number, with halfway cases rounded away from 0.
  3703. A type-safe version of :ref:`round()<class_@GlobalScope_method_round>`, returning a :ref:`float<class_float>`.
  3704. .. rst-class:: classref-item-separator
  3705. ----
  3706. .. _class_@GlobalScope_method_roundi:
  3707. .. rst-class:: classref-method
  3708. :ref:`int<class_int>` **roundi**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_roundi>`
  3709. Rounds ``x`` to the nearest whole number, with halfway cases rounded away from 0.
  3710. A type-safe version of :ref:`round()<class_@GlobalScope_method_round>`, returning an :ref:`int<class_int>`.
  3711. .. rst-class:: classref-item-separator
  3712. ----
  3713. .. _class_@GlobalScope_method_seed:
  3714. .. rst-class:: classref-method
  3715. |void| **seed**\ (\ base\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_seed>`
  3716. Sets the seed for the random number generator to ``base``. Setting the seed manually can ensure consistent, repeatable results for most random functions.
  3717. .. tabs::
  3718. .. code-tab:: gdscript
  3719. var my_seed = "Godot Rocks".hash()
  3720. seed(my_seed)
  3721. var a = randf() + randi()
  3722. seed(my_seed)
  3723. var b = randf() + randi()
  3724. # a and b are now identical
  3725. .. code-tab:: csharp
  3726. ulong mySeed = (ulong)GD.Hash("Godot Rocks");
  3727. GD.Seed(mySeed);
  3728. var a = GD.Randf() + GD.Randi();
  3729. GD.Seed(mySeed);
  3730. var b = GD.Randf() + GD.Randi();
  3731. // a and b are now identical
  3732. .. rst-class:: classref-item-separator
  3733. ----
  3734. .. _class_@GlobalScope_method_sign:
  3735. .. rst-class:: classref-method
  3736. :ref:`Variant<class_Variant>` **sign**\ (\ x\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_sign>`
  3737. 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.
  3738. 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>`.
  3739. ::
  3740. sign(-6.0) # Returns -1
  3741. sign(0.0) # Returns 0
  3742. sign(6.0) # Returns 1
  3743. sign(NAN) # Returns 0
  3744. sign(Vector3(-6.0, 0.0, 6.0)) # Returns (-1, 0, 1)
  3745. \ **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>`.
  3746. .. rst-class:: classref-item-separator
  3747. ----
  3748. .. _class_@GlobalScope_method_signf:
  3749. .. rst-class:: classref-method
  3750. :ref:`float<class_float>` **signf**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_signf>`
  3751. 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.
  3752. ::
  3753. signf(-6.5) # Returns -1.0
  3754. signf(0.0) # Returns 0.0
  3755. signf(6.5) # Returns 1.0
  3756. signf(NAN) # Returns 0.0
  3757. .. rst-class:: classref-item-separator
  3758. ----
  3759. .. _class_@GlobalScope_method_signi:
  3760. .. rst-class:: classref-method
  3761. :ref:`int<class_int>` **signi**\ (\ x\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_signi>`
  3762. Returns ``-1`` if ``x`` is negative, ``1`` if ``x`` is positive, and ``0`` if ``x`` is zero.
  3763. ::
  3764. signi(-6) # Returns -1
  3765. signi(0) # Returns 0
  3766. signi(6) # Returns 1
  3767. .. rst-class:: classref-item-separator
  3768. ----
  3769. .. _class_@GlobalScope_method_sin:
  3770. .. rst-class:: classref-method
  3771. :ref:`float<class_float>` **sin**\ (\ angle_rad\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_sin>`
  3772. Returns the sine of angle ``angle_rad`` in radians.
  3773. ::
  3774. sin(0.523599) # Returns 0.5
  3775. sin(deg_to_rad(90)) # Returns 1.0
  3776. .. rst-class:: classref-item-separator
  3777. ----
  3778. .. _class_@GlobalScope_method_sinh:
  3779. .. rst-class:: classref-method
  3780. :ref:`float<class_float>` **sinh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_sinh>`
  3781. Returns the hyperbolic sine of ``x``.
  3782. ::
  3783. var a = log(2.0) # Returns 0.693147
  3784. sinh(a) # Returns 0.75
  3785. .. rst-class:: classref-item-separator
  3786. ----
  3787. .. _class_@GlobalScope_method_smoothstep:
  3788. .. rst-class:: classref-method
  3789. :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>`
  3790. Returns a smooth cubic Hermite interpolation between ``0`` and ``1``.
  3791. 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``.
  3792. For negative ranges (when ``from > to``) the function is mirrored and returns ``1`` when ``x <= to`` and ``0`` when ``x >= from``.
  3793. 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)``.
  3794. ::
  3795. smoothstep(0, 2, -5.0) # Returns 0.0
  3796. smoothstep(0, 2, 0.5) # Returns 0.15625
  3797. smoothstep(0, 2, 1.0) # Returns 0.5
  3798. smoothstep(0, 2, 2.0) # Returns 1.0
  3799. 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>`.
  3800. \ `Comparison between smoothstep() and ease(x, -1.6521) return values <https://raw.githubusercontent.com/godotengine/godot-docs/master/img/smoothstep_ease_comparison.png>`__\
  3801. \ `Smoothstep() return values with positive, zero, and negative ranges <https://raw.githubusercontent.com/godotengine/godot-docs/master/img/smoothstep_range.webp>`__
  3802. .. rst-class:: classref-item-separator
  3803. ----
  3804. .. _class_@GlobalScope_method_snapped:
  3805. .. rst-class:: classref-method
  3806. :ref:`Variant<class_Variant>` **snapped**\ (\ x\: :ref:`Variant<class_Variant>`, step\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_snapped>`
  3807. 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.
  3808. 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>`.
  3809. ::
  3810. snapped(100, 32) # Returns 96
  3811. snapped(3.14159, 0.01) # Returns 3.14
  3812. snapped(Vector2(34, 70), Vector2(8, 8)) # Returns (32, 72)
  3813. See also :ref:`ceil()<class_@GlobalScope_method_ceil>`, :ref:`floor()<class_@GlobalScope_method_floor>`, and :ref:`round()<class_@GlobalScope_method_round>`.
  3814. \ **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>`.
  3815. .. rst-class:: classref-item-separator
  3816. ----
  3817. .. _class_@GlobalScope_method_snappedf:
  3818. .. rst-class:: classref-method
  3819. :ref:`float<class_float>` **snappedf**\ (\ x\: :ref:`float<class_float>`, step\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_snappedf>`
  3820. 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.
  3821. A type-safe version of :ref:`snapped()<class_@GlobalScope_method_snapped>`, returning a :ref:`float<class_float>`.
  3822. ::
  3823. snappedf(32.0, 2.5) # Returns 32.5
  3824. snappedf(3.14159, 0.01) # Returns 3.14
  3825. .. rst-class:: classref-item-separator
  3826. ----
  3827. .. _class_@GlobalScope_method_snappedi:
  3828. .. rst-class:: classref-method
  3829. :ref:`int<class_int>` **snappedi**\ (\ x\: :ref:`float<class_float>`, step\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_snappedi>`
  3830. Returns the multiple of ``step`` that is the closest to ``x``.
  3831. A type-safe version of :ref:`snapped()<class_@GlobalScope_method_snapped>`, returning an :ref:`int<class_int>`.
  3832. ::
  3833. snappedi(53, 16) # Returns 48
  3834. snappedi(4096, 100) # Returns 4100
  3835. .. rst-class:: classref-item-separator
  3836. ----
  3837. .. _class_@GlobalScope_method_sqrt:
  3838. .. rst-class:: classref-method
  3839. :ref:`float<class_float>` **sqrt**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_sqrt>`
  3840. Returns the square root of ``x``, where ``x`` is a non-negative number.
  3841. ::
  3842. sqrt(9) # Returns 3
  3843. sqrt(10.24) # Returns 3.2
  3844. sqrt(-1) # Returns NaN
  3845. \ **Note:** Negative values of ``x`` return NaN ("Not a Number"). In C#, if you need negative inputs, use ``System.Numerics.Complex``.
  3846. .. rst-class:: classref-item-separator
  3847. ----
  3848. .. _class_@GlobalScope_method_step_decimals:
  3849. .. rst-class:: classref-method
  3850. :ref:`int<class_int>` **step_decimals**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_step_decimals>`
  3851. 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.
  3852. ::
  3853. var n = step_decimals(5) # n is 0
  3854. n = step_decimals(1.0005) # n is 4
  3855. n = step_decimals(0.000000005) # n is 9
  3856. .. rst-class:: classref-item-separator
  3857. ----
  3858. .. _class_@GlobalScope_method_str:
  3859. .. rst-class:: classref-method
  3860. :ref:`String<class_String>` **str**\ (\ ...\ ) |vararg| :ref:`๐Ÿ”—<class_@GlobalScope_method_str>`
  3861. Converts one or more arguments of any :ref:`Variant<class_Variant>` type to a :ref:`String<class_String>` in the best way possible.
  3862. ::
  3863. var a = [10, 20, 30]
  3864. var b = str(a)
  3865. print(len(a)) # Prints 3 (the number of elements in the array).
  3866. print(len(b)) # Prints 12 (the length of the string "[10, 20, 30]").
  3867. .. rst-class:: classref-item-separator
  3868. ----
  3869. .. _class_@GlobalScope_method_str_to_var:
  3870. .. rst-class:: classref-method
  3871. :ref:`Variant<class_Variant>` **str_to_var**\ (\ string\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_str_to_var>`
  3872. 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>`.
  3873. .. tabs::
  3874. .. code-tab:: gdscript
  3875. var data = '{ "a": 1, "b": 2 }' # data is a String
  3876. var dict = str_to_var(data) # dict is a Dictionary
  3877. print(dict["a"]) # Prints 1
  3878. .. code-tab:: csharp
  3879. string data = "{ \"a\": 1, \"b\": 2 }"; // data is a string
  3880. var dict = GD.StrToVar(data).AsGodotDictionary(); // dict is a Dictionary
  3881. GD.Print(dict["a"]); // Prints 1
  3882. .. rst-class:: classref-item-separator
  3883. ----
  3884. .. _class_@GlobalScope_method_tan:
  3885. .. rst-class:: classref-method
  3886. :ref:`float<class_float>` **tan**\ (\ angle_rad\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_tan>`
  3887. Returns the tangent of angle ``angle_rad`` in radians.
  3888. ::
  3889. tan(deg_to_rad(45)) # Returns 1
  3890. .. rst-class:: classref-item-separator
  3891. ----
  3892. .. _class_@GlobalScope_method_tanh:
  3893. .. rst-class:: classref-method
  3894. :ref:`float<class_float>` **tanh**\ (\ x\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_tanh>`
  3895. Returns the hyperbolic tangent of ``x``.
  3896. ::
  3897. var a = log(2.0) # Returns 0.693147
  3898. tanh(a) # Returns 0.6
  3899. .. rst-class:: classref-item-separator
  3900. ----
  3901. .. _class_@GlobalScope_method_type_convert:
  3902. .. rst-class:: classref-method
  3903. :ref:`Variant<class_Variant>` **type_convert**\ (\ variant\: :ref:`Variant<class_Variant>`, type\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_type_convert>`
  3904. 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>`.
  3905. 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.
  3906. The returned value is a :ref:`Variant<class_Variant>`, but the data inside and its type will be the same as the requested type.
  3907. ::
  3908. type_convert("Hi!", TYPE_INT) # Returns 0
  3909. type_convert("123", TYPE_INT) # Returns 123
  3910. type_convert(123.4, TYPE_INT) # Returns 123
  3911. type_convert(5, TYPE_VECTOR2) # Returns (0, 0)
  3912. type_convert("Hi!", TYPE_NIL) # Returns null
  3913. .. rst-class:: classref-item-separator
  3914. ----
  3915. .. _class_@GlobalScope_method_type_string:
  3916. .. rst-class:: classref-method
  3917. :ref:`String<class_String>` **type_string**\ (\ type\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_type_string>`
  3918. Returns a human-readable name of the given ``type``, using the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` values.
  3919. ::
  3920. print(TYPE_INT) # Prints 2
  3921. print(type_string(TYPE_INT)) # Prints "int"
  3922. print(type_string(TYPE_STRING)) # Prints "String"
  3923. See also :ref:`typeof()<class_@GlobalScope_method_typeof>`.
  3924. .. rst-class:: classref-item-separator
  3925. ----
  3926. .. _class_@GlobalScope_method_typeof:
  3927. .. rst-class:: classref-method
  3928. :ref:`int<class_int>` **typeof**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_typeof>`
  3929. Returns the internal type of the given ``variable``, using the :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>` values.
  3930. ::
  3931. var json = JSON.new()
  3932. json.parse('["a", "b", "c"]')
  3933. var result = json.get_data()
  3934. if result is Array:
  3935. print(result[0]) # Prints "a"
  3936. else:
  3937. print("Unexpected result!")
  3938. See also :ref:`type_string()<class_@GlobalScope_method_type_string>`.
  3939. .. rst-class:: classref-item-separator
  3940. ----
  3941. .. _class_@GlobalScope_method_var_to_bytes:
  3942. .. rst-class:: classref-method
  3943. :ref:`PackedByteArray<class_PackedByteArray>` **var_to_bytes**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_var_to_bytes>`
  3944. 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>`.
  3945. \ **Note:** If you need object serialization, see :ref:`var_to_bytes_with_objects()<class_@GlobalScope_method_var_to_bytes_with_objects>`.
  3946. \ **Note:** Encoding :ref:`Callable<class_Callable>` is not supported and will result in an empty value, regardless of the data.
  3947. .. rst-class:: classref-item-separator
  3948. ----
  3949. .. _class_@GlobalScope_method_var_to_bytes_with_objects:
  3950. .. rst-class:: classref-method
  3951. :ref:`PackedByteArray<class_PackedByteArray>` **var_to_bytes_with_objects**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_var_to_bytes_with_objects>`
  3952. 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>`.
  3953. \ **Note:** Encoding :ref:`Callable<class_Callable>` is not supported and will result in an empty value, regardless of the data.
  3954. .. rst-class:: classref-item-separator
  3955. ----
  3956. .. _class_@GlobalScope_method_var_to_str:
  3957. .. rst-class:: classref-method
  3958. :ref:`String<class_String>` **var_to_str**\ (\ variable\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_var_to_str>`
  3959. 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>`.
  3960. .. tabs::
  3961. .. code-tab:: gdscript
  3962. var a = { "a": 1, "b": 2 }
  3963. print(var_to_str(a))
  3964. .. code-tab:: csharp
  3965. var a = new Godot.Collections.Dictionary { ["a"] = 1, ["b"] = 2 };
  3966. GD.Print(GD.VarToStr(a));
  3967. Prints:
  3968. .. code:: text
  3969. {
  3970. "a": 1,
  3971. "b": 2
  3972. }
  3973. \ **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.
  3974. .. rst-class:: classref-item-separator
  3975. ----
  3976. .. _class_@GlobalScope_method_weakref:
  3977. .. rst-class:: classref-method
  3978. :ref:`Variant<class_Variant>` **weakref**\ (\ obj\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_@GlobalScope_method_weakref>`
  3979. 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``.
  3980. 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.
  3981. .. rst-class:: classref-item-separator
  3982. ----
  3983. .. _class_@GlobalScope_method_wrap:
  3984. .. rst-class:: classref-method
  3985. :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>`
  3986. Wraps the :ref:`Variant<class_Variant>` ``value`` between ``min`` and ``max``. ``min`` is *inclusive* while ``max`` is *exclusive*. This can be used for creating loop-like behavior or infinite surfaces.
  3987. 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>`.
  3988. ::
  3989. var a = wrap(4, 5, 10)
  3990. # a is 9 (int)
  3991. var a = wrap(7, 5, 10)
  3992. # a is 7 (int)
  3993. var a = wrap(10.5, 5, 10)
  3994. # a is 5.5 (float)
  3995. .. rst-class:: classref-item-separator
  3996. ----
  3997. .. _class_@GlobalScope_method_wrapf:
  3998. .. rst-class:: classref-method
  3999. :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>`
  4000. Wraps the float ``value`` between ``min`` and ``max``. ``min`` is *inclusive* while ``max`` is *exclusive*. This can be used for creating loop-like behavior or infinite surfaces.
  4001. ::
  4002. # Infinite loop between 5.0 and 9.9
  4003. value = wrapf(value + 0.1, 5.0, 10.0)
  4004. ::
  4005. # Infinite rotation (in radians)
  4006. angle = wrapf(angle + 0.1, 0.0, TAU)
  4007. ::
  4008. # Infinite rotation (in radians)
  4009. angle = wrapf(angle + 0.1, -PI, PI)
  4010. \ **Note:** If ``min`` is ``0``, this is equivalent to :ref:`fposmod()<class_@GlobalScope_method_fposmod>`, so prefer using that instead. :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.
  4011. .. rst-class:: classref-item-separator
  4012. ----
  4013. .. _class_@GlobalScope_method_wrapi:
  4014. .. rst-class:: classref-method
  4015. :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>`
  4016. Wraps the integer ``value`` between ``min`` and ``max``. ``min`` is *inclusive* while ``max`` is *exclusive*. This can be used for creating loop-like behavior or infinite surfaces.
  4017. ::
  4018. # Infinite loop between 5 and 9
  4019. frame = wrapi(frame + 1, 5, 10)
  4020. ::
  4021. # result is -2
  4022. var result = wrapi(-6, -5, -1)
  4023. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  4024. .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)`
  4025. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  4026. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  4027. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  4028. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  4029. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  4030. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  4031. .. |void| replace:: :abbr:`void (No return value.)`