class_projectsettings.rst 1.0 MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251
  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/ProjectSettings.xml.
  6. .. _class_ProjectSettings:
  7. ProjectSettings
  8. ===============
  9. **Inherits:** :ref:`Object<class_Object>`
  10. Stores globally-accessible variables.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. Stores variables that can be accessed from everywhere. Use :ref:`get_setting<class_ProjectSettings_method_get_setting>`, :ref:`set_setting<class_ProjectSettings_method_set_setting>` or :ref:`has_setting<class_ProjectSettings_method_has_setting>` to access them. Variables stored in ``project.godot`` are also loaded into **ProjectSettings**, making this object very useful for reading custom game configuration options.
  15. When naming a Project Settings property, use the full path to the setting including the category. For example, ``"application/config/name"`` for the project name. Category and property names can be viewed in the Project Settings dialog.
  16. \ **Feature tags:** Project settings can be overridden for specific platforms and configurations (debug, release, ...) using :doc:`feature tags <../tutorials/export/feature_tags>`.
  17. \ **Overriding:** Any project setting can be overridden by creating a file named ``override.cfg`` in the project's root directory. This can also be used in exported projects by placing this file in the same directory as the project binary. Overriding will still take the base project settings' :doc:`feature tags <../tutorials/export/feature_tags>` in account. Therefore, make sure to *also* override the setting with the desired feature tags if you want them to override base project settings on all platforms and configurations.
  18. .. rst-class:: classref-introduction-group
  19. Tutorials
  20. ---------
  21. - `3D Physics Tests Demo <https://godotengine.org/asset-library/asset/2747>`__
  22. - `3D Platformer Demo <https://godotengine.org/asset-library/asset/2748>`__
  23. - `Operating System Testing Demo <https://godotengine.org/asset-library/asset/2789>`__
  24. .. rst-class:: classref-reftable-group
  25. Properties
  26. ----------
  27. .. table::
  28. :widths: auto
  29. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  30. | :ref:`bool<class_bool>` | :ref:`animation/warnings/check_angle_interpolation_type_conflicting<class_ProjectSettings_property_animation/warnings/check_angle_interpolation_type_conflicting>` | ``true`` |
  31. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`animation/warnings/check_invalid_track_paths<class_ProjectSettings_property_animation/warnings/check_invalid_track_paths>` | ``true`` |
  33. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  34. | :ref:`Color<class_Color>` | :ref:`application/boot_splash/bg_color<class_ProjectSettings_property_application/boot_splash/bg_color>` | ``Color(0.14, 0.14, 0.14, 1)`` |
  35. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  36. | :ref:`bool<class_bool>` | :ref:`application/boot_splash/fullsize<class_ProjectSettings_property_application/boot_splash/fullsize>` | ``true`` |
  37. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  38. | :ref:`String<class_String>` | :ref:`application/boot_splash/image<class_ProjectSettings_property_application/boot_splash/image>` | ``""`` |
  39. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`application/boot_splash/minimum_display_time<class_ProjectSettings_property_application/boot_splash/minimum_display_time>` | ``0`` |
  41. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  42. | :ref:`bool<class_bool>` | :ref:`application/boot_splash/show_image<class_ProjectSettings_property_application/boot_splash/show_image>` | ``true`` |
  43. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  44. | :ref:`bool<class_bool>` | :ref:`application/boot_splash/use_filter<class_ProjectSettings_property_application/boot_splash/use_filter>` | ``true`` |
  45. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  46. | :ref:`bool<class_bool>` | :ref:`application/config/auto_accept_quit<class_ProjectSettings_property_application/config/auto_accept_quit>` | ``true`` |
  47. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  48. | :ref:`String<class_String>` | :ref:`application/config/custom_user_dir_name<class_ProjectSettings_property_application/config/custom_user_dir_name>` | ``""`` |
  49. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  50. | :ref:`String<class_String>` | :ref:`application/config/description<class_ProjectSettings_property_application/config/description>` | ``""`` |
  51. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  52. | :ref:`String<class_String>` | :ref:`application/config/icon<class_ProjectSettings_property_application/config/icon>` | ``""`` |
  53. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  54. | :ref:`String<class_String>` | :ref:`application/config/macos_native_icon<class_ProjectSettings_property_application/config/macos_native_icon>` | ``""`` |
  55. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  56. | :ref:`String<class_String>` | :ref:`application/config/name<class_ProjectSettings_property_application/config/name>` | ``""`` |
  57. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  58. | :ref:`Dictionary<class_Dictionary>` | :ref:`application/config/name_localized<class_ProjectSettings_property_application/config/name_localized>` | ``{}`` |
  59. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  60. | :ref:`String<class_String>` | :ref:`application/config/project_settings_override<class_ProjectSettings_property_application/config/project_settings_override>` | ``""`` |
  61. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  62. | :ref:`bool<class_bool>` | :ref:`application/config/quit_on_go_back<class_ProjectSettings_property_application/config/quit_on_go_back>` | ``true`` |
  63. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  64. | :ref:`bool<class_bool>` | :ref:`application/config/use_custom_user_dir<class_ProjectSettings_property_application/config/use_custom_user_dir>` | ``false`` |
  65. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  66. | :ref:`bool<class_bool>` | :ref:`application/config/use_hidden_project_data_directory<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>` | ``true`` |
  67. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  68. | :ref:`String<class_String>` | :ref:`application/config/version<class_ProjectSettings_property_application/config/version>` | ``""`` |
  69. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  70. | :ref:`String<class_String>` | :ref:`application/config/windows_native_icon<class_ProjectSettings_property_application/config/windows_native_icon>` | ``""`` |
  71. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  72. | :ref:`bool<class_bool>` | :ref:`application/run/delta_smoothing<class_ProjectSettings_property_application/run/delta_smoothing>` | ``true`` |
  73. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  74. | :ref:`bool<class_bool>` | :ref:`application/run/disable_stderr<class_ProjectSettings_property_application/run/disable_stderr>` | ``false`` |
  75. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  76. | :ref:`bool<class_bool>` | :ref:`application/run/disable_stdout<class_ProjectSettings_property_application/run/disable_stdout>` | ``false`` |
  77. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  78. | :ref:`bool<class_bool>` | :ref:`application/run/enable_alt_space_menu<class_ProjectSettings_property_application/run/enable_alt_space_menu>` | ``false`` |
  79. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`application/run/flush_stdout_on_print<class_ProjectSettings_property_application/run/flush_stdout_on_print>` | ``false`` |
  81. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  82. | :ref:`bool<class_bool>` | :ref:`application/run/flush_stdout_on_print.debug<class_ProjectSettings_property_application/run/flush_stdout_on_print.debug>` | ``true`` |
  83. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  84. | :ref:`int<class_int>` | :ref:`application/run/frame_delay_msec<class_ProjectSettings_property_application/run/frame_delay_msec>` | ``0`` |
  85. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  86. | :ref:`bool<class_bool>` | :ref:`application/run/low_processor_mode<class_ProjectSettings_property_application/run/low_processor_mode>` | ``false`` |
  87. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  88. | :ref:`int<class_int>` | :ref:`application/run/low_processor_mode_sleep_usec<class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec>` | ``6900`` |
  89. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  90. | :ref:`String<class_String>` | :ref:`application/run/main_loop_type<class_ProjectSettings_property_application/run/main_loop_type>` | ``"SceneTree"`` |
  91. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  92. | :ref:`String<class_String>` | :ref:`application/run/main_scene<class_ProjectSettings_property_application/run/main_scene>` | ``""`` |
  93. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  94. | :ref:`int<class_int>` | :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>` | ``0`` |
  95. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`application/run/print_header<class_ProjectSettings_property_application/run/print_header>` | ``true`` |
  97. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  98. | :ref:`float<class_float>` | :ref:`audio/buses/channel_disable_threshold_db<class_ProjectSettings_property_audio/buses/channel_disable_threshold_db>` | ``-60.0`` |
  99. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  100. | :ref:`float<class_float>` | :ref:`audio/buses/channel_disable_time<class_ProjectSettings_property_audio/buses/channel_disable_time>` | ``2.0`` |
  101. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  102. | :ref:`String<class_String>` | :ref:`audio/buses/default_bus_layout<class_ProjectSettings_property_audio/buses/default_bus_layout>` | ``"res://default_bus_layout.tres"`` |
  103. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  104. | :ref:`String<class_String>` | :ref:`audio/driver/driver<class_ProjectSettings_property_audio/driver/driver>` | |
  105. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  106. | :ref:`bool<class_bool>` | :ref:`audio/driver/enable_input<class_ProjectSettings_property_audio/driver/enable_input>` | ``false`` |
  107. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  108. | :ref:`int<class_int>` | :ref:`audio/driver/mix_rate<class_ProjectSettings_property_audio/driver/mix_rate>` | ``44100`` |
  109. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  110. | :ref:`int<class_int>` | :ref:`audio/driver/mix_rate.web<class_ProjectSettings_property_audio/driver/mix_rate.web>` | ``0`` |
  111. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  112. | :ref:`int<class_int>` | :ref:`audio/driver/output_latency<class_ProjectSettings_property_audio/driver/output_latency>` | ``15`` |
  113. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  114. | :ref:`int<class_int>` | :ref:`audio/driver/output_latency.web<class_ProjectSettings_property_audio/driver/output_latency.web>` | ``50`` |
  115. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  116. | :ref:`float<class_float>` | :ref:`audio/general/2d_panning_strength<class_ProjectSettings_property_audio/general/2d_panning_strength>` | ``0.5`` |
  117. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  118. | :ref:`float<class_float>` | :ref:`audio/general/3d_panning_strength<class_ProjectSettings_property_audio/general/3d_panning_strength>` | ``0.5`` |
  119. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  120. | :ref:`int<class_int>` | :ref:`audio/general/default_playback_type<class_ProjectSettings_property_audio/general/default_playback_type>` | ``0`` |
  121. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  122. | :ref:`int<class_int>` | :ref:`audio/general/default_playback_type.web<class_ProjectSettings_property_audio/general/default_playback_type.web>` | ``1`` |
  123. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  124. | :ref:`bool<class_bool>` | :ref:`audio/general/ios/mix_with_others<class_ProjectSettings_property_audio/general/ios/mix_with_others>` | ``false`` |
  125. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  126. | :ref:`int<class_int>` | :ref:`audio/general/ios/session_category<class_ProjectSettings_property_audio/general/ios/session_category>` | ``0`` |
  127. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  128. | :ref:`bool<class_bool>` | :ref:`audio/general/text_to_speech<class_ProjectSettings_property_audio/general/text_to_speech>` | ``false`` |
  129. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  130. | :ref:`int<class_int>` | :ref:`audio/video/video_delay_compensation_ms<class_ProjectSettings_property_audio/video/video_delay_compensation_ms>` | ``0`` |
  131. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  132. | :ref:`bool<class_bool>` | :ref:`collada/use_ambient<class_ProjectSettings_property_collada/use_ambient>` | ``false`` |
  133. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  134. | :ref:`int<class_int>` | :ref:`compression/formats/gzip/compression_level<class_ProjectSettings_property_compression/formats/gzip/compression_level>` | ``-1`` |
  135. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  136. | :ref:`int<class_int>` | :ref:`compression/formats/zlib/compression_level<class_ProjectSettings_property_compression/formats/zlib/compression_level>` | ``-1`` |
  137. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  138. | :ref:`int<class_int>` | :ref:`compression/formats/zstd/compression_level<class_ProjectSettings_property_compression/formats/zstd/compression_level>` | ``3`` |
  139. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  140. | :ref:`bool<class_bool>` | :ref:`compression/formats/zstd/long_distance_matching<class_ProjectSettings_property_compression/formats/zstd/long_distance_matching>` | ``false`` |
  141. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  142. | :ref:`int<class_int>` | :ref:`compression/formats/zstd/window_log_size<class_ProjectSettings_property_compression/formats/zstd/window_log_size>` | ``27`` |
  143. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  144. | :ref:`Color<class_Color>` | :ref:`debug/canvas_items/debug_redraw_color<class_ProjectSettings_property_debug/canvas_items/debug_redraw_color>` | ``Color(1, 0.2, 0.2, 0.5)`` |
  145. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  146. | :ref:`float<class_float>` | :ref:`debug/canvas_items/debug_redraw_time<class_ProjectSettings_property_debug/canvas_items/debug_redraw_time>` | ``1.0`` |
  147. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  148. | :ref:`bool<class_bool>` | :ref:`debug/file_logging/enable_file_logging<class_ProjectSettings_property_debug/file_logging/enable_file_logging>` | ``false`` |
  149. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  150. | :ref:`bool<class_bool>` | :ref:`debug/file_logging/enable_file_logging.pc<class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc>` | ``true`` |
  151. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  152. | :ref:`String<class_String>` | :ref:`debug/file_logging/log_path<class_ProjectSettings_property_debug/file_logging/log_path>` | ``"user://logs/godot.log"`` |
  153. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  154. | :ref:`int<class_int>` | :ref:`debug/file_logging/max_log_files<class_ProjectSettings_property_debug/file_logging/max_log_files>` | ``5`` |
  155. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  156. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/assert_always_false<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false>` | ``1`` |
  157. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  158. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/assert_always_true<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true>` | ``1`` |
  159. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  160. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_capture_reassignment<class_ProjectSettings_property_debug/gdscript/warnings/confusable_capture_reassignment>` | ``1`` |
  161. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  162. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_identifier<class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier>` | ``1`` |
  163. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  164. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_local_declaration<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration>` | ``1`` |
  165. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  166. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_local_usage<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage>` | ``1`` |
  167. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  168. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/constant_used_as_function<class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function>` | ``1`` |
  169. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  170. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/deprecated_keyword<class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword>` | ``1`` |
  171. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  172. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/empty_file<class_ProjectSettings_property_debug/gdscript/warnings/empty_file>` | ``1`` |
  173. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  174. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/enable<class_ProjectSettings_property_debug/gdscript/warnings/enable>` | ``true`` |
  175. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  176. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/enum_variable_without_default<class_ProjectSettings_property_debug/gdscript/warnings/enum_variable_without_default>` | ``1`` |
  177. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  178. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/exclude_addons<class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons>` | ``true`` |
  179. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  180. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/function_used_as_property<class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property>` | ``1`` |
  181. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  182. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/get_node_default_without_onready<class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready>` | ``2`` |
  183. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  184. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/incompatible_ternary<class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary>` | ``1`` |
  185. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  186. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/inference_on_variant<class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant>` | ``2`` |
  187. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  188. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/inferred_declaration<class_ProjectSettings_property_debug/gdscript/warnings/inferred_declaration>` | ``0`` |
  189. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  190. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/int_as_enum_without_cast<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast>` | ``1`` |
  191. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  192. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/int_as_enum_without_match<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match>` | ``1`` |
  193. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  194. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/integer_division<class_ProjectSettings_property_debug/gdscript/warnings/integer_division>` | ``1`` |
  195. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  196. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/narrowing_conversion<class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion>` | ``1`` |
  197. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  198. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/native_method_override<class_ProjectSettings_property_debug/gdscript/warnings/native_method_override>` | ``2`` |
  199. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  200. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/onready_with_export<class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export>` | ``2`` |
  201. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  202. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/property_used_as_function<class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function>` | ``1`` |
  203. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  204. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/redundant_await<class_ProjectSettings_property_debug/gdscript/warnings/redundant_await>` | ``1`` |
  205. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  206. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/redundant_static_unload<class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload>` | ``1`` |
  207. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  208. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/renamed_in_godot_4_hint<class_ProjectSettings_property_debug/gdscript/warnings/renamed_in_godot_4_hint>` | ``1`` |
  209. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  210. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/return_value_discarded<class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded>` | ``0`` |
  211. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  212. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_global_identifier<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier>` | ``1`` |
  213. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  214. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_variable<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable>` | ``1`` |
  215. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  216. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_variable_base_class<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class>` | ``1`` |
  217. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  218. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/standalone_expression<class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression>` | ``1`` |
  219. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  220. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/standalone_ternary<class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary>` | ``1`` |
  221. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  222. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/static_called_on_instance<class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance>` | ``1`` |
  223. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  224. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unassigned_variable<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable>` | ``1`` |
  225. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  226. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unassigned_variable_op_assign<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign>` | ``1`` |
  227. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  228. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unreachable_code<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code>` | ``1`` |
  229. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  230. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unreachable_pattern<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern>` | ``1`` |
  231. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  232. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_call_argument<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument>` | ``0`` |
  233. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  234. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_cast<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast>` | ``0`` |
  235. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  236. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_method_access<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access>` | ``0`` |
  237. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  238. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_property_access<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access>` | ``0`` |
  239. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  240. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_void_return<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return>` | ``1`` |
  241. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  242. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/untyped_declaration<class_ProjectSettings_property_debug/gdscript/warnings/untyped_declaration>` | ``0`` |
  243. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  244. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_local_constant<class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant>` | ``1`` |
  245. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  246. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_parameter<class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter>` | ``1`` |
  247. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  248. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_private_class_variable<class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable>` | ``1`` |
  249. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  250. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_signal<class_ProjectSettings_property_debug/gdscript/warnings/unused_signal>` | ``1`` |
  251. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  252. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_variable<class_ProjectSettings_property_debug/gdscript/warnings/unused_variable>` | ``1`` |
  253. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  254. | :ref:`String<class_String>` | :ref:`debug/settings/crash_handler/message<class_ProjectSettings_property_debug/settings/crash_handler/message>` | ``"Please include this when reporting the bug to the project developer."`` |
  255. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  256. | :ref:`String<class_String>` | :ref:`debug/settings/crash_handler/message.editor<class_ProjectSettings_property_debug/settings/crash_handler/message.editor>` | ``"Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"`` |
  257. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  258. | :ref:`int<class_int>` | :ref:`debug/settings/gdscript/max_call_stack<class_ProjectSettings_property_debug/settings/gdscript/max_call_stack>` | ``1024`` |
  259. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  260. | :ref:`int<class_int>` | :ref:`debug/settings/profiler/max_functions<class_ProjectSettings_property_debug/settings/profiler/max_functions>` | ``16384`` |
  261. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  262. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/print_fps<class_ProjectSettings_property_debug/settings/stdout/print_fps>` | ``false`` |
  263. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  264. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/print_gpu_profile<class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile>` | ``false`` |
  265. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  266. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/verbose_stdout<class_ProjectSettings_property_debug/settings/stdout/verbose_stdout>` | ``false`` |
  267. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  268. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/device_limit_exceeded<class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded>` | ``true`` |
  269. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  270. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/enable<class_ProjectSettings_property_debug/shader_language/warnings/enable>` | ``true`` |
  271. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  272. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/float_comparison<class_ProjectSettings_property_debug/shader_language/warnings/float_comparison>` | ``true`` |
  273. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  274. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/formatting_error<class_ProjectSettings_property_debug/shader_language/warnings/formatting_error>` | ``true`` |
  275. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  276. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/magic_position_write<class_ProjectSettings_property_debug/shader_language/warnings/magic_position_write>` | ``true`` |
  277. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  278. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/treat_warnings_as_errors<class_ProjectSettings_property_debug/shader_language/warnings/treat_warnings_as_errors>` | ``false`` |
  279. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  280. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_constant<class_ProjectSettings_property_debug/shader_language/warnings/unused_constant>` | ``true`` |
  281. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  282. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_function<class_ProjectSettings_property_debug/shader_language/warnings/unused_function>` | ``true`` |
  283. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  284. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_local_variable<class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable>` | ``true`` |
  285. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  286. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_struct<class_ProjectSettings_property_debug/shader_language/warnings/unused_struct>` | ``true`` |
  287. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  288. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_uniform<class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform>` | ``true`` |
  289. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  290. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_varying<class_ProjectSettings_property_debug/shader_language/warnings/unused_varying>` | ``true`` |
  291. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  292. | :ref:`Color<class_Color>` | :ref:`debug/shapes/avoidance/agents_radius_color<class_ProjectSettings_property_debug/shapes/avoidance/agents_radius_color>` | ``Color(1, 1, 0, 0.25)`` |
  293. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  294. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_agents_radius<class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius>` | ``true`` |
  295. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  296. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_obstacles_radius<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius>` | ``true`` |
  297. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  298. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_obstacles_static<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static>` | ``true`` |
  299. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  300. | :ref:`Color<class_Color>` | :ref:`debug/shapes/avoidance/obstacles_radius_color<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_radius_color>` | ``Color(1, 0.5, 0, 0.25)`` |
  301. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  302. | :ref:`Color<class_Color>` | :ref:`debug/shapes/avoidance/obstacles_static_edge_pushin_color<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushin_color>` | ``Color(1, 0, 0, 1)`` |
  303. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  304. | :ref:`Color<class_Color>` | :ref:`debug/shapes/avoidance/obstacles_static_edge_pushout_color<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushout_color>` | ``Color(1, 1, 0, 1)`` |
  305. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  306. | :ref:`Color<class_Color>` | :ref:`debug/shapes/avoidance/obstacles_static_face_pushin_color<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushin_color>` | ``Color(1, 0, 0, 0)`` |
  307. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  308. | :ref:`Color<class_Color>` | :ref:`debug/shapes/avoidance/obstacles_static_face_pushout_color<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushout_color>` | ``Color(1, 1, 0, 0.5)`` |
  309. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  310. | :ref:`Color<class_Color>` | :ref:`debug/shapes/collision/contact_color<class_ProjectSettings_property_debug/shapes/collision/contact_color>` | ``Color(1, 0.2, 0.1, 0.8)`` |
  311. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  312. | :ref:`bool<class_bool>` | :ref:`debug/shapes/collision/draw_2d_outlines<class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines>` | ``true`` |
  313. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  314. | :ref:`int<class_int>` | :ref:`debug/shapes/collision/max_contacts_displayed<class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed>` | ``10000`` |
  315. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  316. | :ref:`Color<class_Color>` | :ref:`debug/shapes/collision/shape_color<class_ProjectSettings_property_debug/shapes/collision/shape_color>` | ``Color(0, 0.6, 0.7, 0.42)`` |
  317. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  318. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/agent_path_color<class_ProjectSettings_property_debug/shapes/navigation/agent_path_color>` | ``Color(1, 0, 0, 1)`` |
  319. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  320. | :ref:`float<class_float>` | :ref:`debug/shapes/navigation/agent_path_point_size<class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size>` | ``4.0`` |
  321. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  322. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/edge_connection_color<class_ProjectSettings_property_debug/shapes/navigation/edge_connection_color>` | ``Color(1, 0, 1, 1)`` |
  323. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  324. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_agent_paths<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths>` | ``true`` |
  325. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  326. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_agent_paths_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray>` | ``true`` |
  327. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  328. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_connections<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections>` | ``true`` |
  329. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  330. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_connections_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray>` | ``true`` |
  331. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  332. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_lines<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines>` | ``true`` |
  333. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  334. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_lines_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray>` | ``true`` |
  335. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  336. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_geometry_face_random_color<class_ProjectSettings_property_debug/shapes/navigation/enable_geometry_face_random_color>` | ``true`` |
  337. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  338. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_link_connections<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections>` | ``true`` |
  339. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  340. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_link_connections_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray>` | ``true`` |
  341. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  342. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/geometry_edge_color<class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_color>` | ``Color(0.5, 1, 1, 1)`` |
  343. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  344. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/geometry_edge_disabled_color<class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_disabled_color>` | ``Color(0.5, 0.5, 0.5, 1)`` |
  345. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  346. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/geometry_face_color<class_ProjectSettings_property_debug/shapes/navigation/geometry_face_color>` | ``Color(0.5, 1, 1, 0.4)`` |
  347. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  348. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/geometry_face_disabled_color<class_ProjectSettings_property_debug/shapes/navigation/geometry_face_disabled_color>` | ``Color(0.5, 0.5, 0.5, 0.4)`` |
  349. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  350. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/link_connection_color<class_ProjectSettings_property_debug/shapes/navigation/link_connection_color>` | ``Color(1, 0.5, 1, 1)`` |
  351. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  352. | :ref:`Color<class_Color>` | :ref:`debug/shapes/navigation/link_connection_disabled_color<class_ProjectSettings_property_debug/shapes/navigation/link_connection_disabled_color>` | ``Color(0.5, 0.5, 0.5, 1)`` |
  353. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  354. | :ref:`Color<class_Color>` | :ref:`debug/shapes/paths/geometry_color<class_ProjectSettings_property_debug/shapes/paths/geometry_color>` | ``Color(0.1, 1, 0.7, 0.4)`` |
  355. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  356. | :ref:`float<class_float>` | :ref:`debug/shapes/paths/geometry_width<class_ProjectSettings_property_debug/shapes/paths/geometry_width>` | ``2.0`` |
  357. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  358. | :ref:`String<class_String>` | :ref:`display/display_server/driver<class_ProjectSettings_property_display/display_server/driver>` | |
  359. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  360. | :ref:`String<class_String>` | :ref:`display/display_server/driver.android<class_ProjectSettings_property_display/display_server/driver.android>` | |
  361. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  362. | :ref:`String<class_String>` | :ref:`display/display_server/driver.ios<class_ProjectSettings_property_display/display_server/driver.ios>` | |
  363. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  364. | :ref:`String<class_String>` | :ref:`display/display_server/driver.linuxbsd<class_ProjectSettings_property_display/display_server/driver.linuxbsd>` | |
  365. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  366. | :ref:`String<class_String>` | :ref:`display/display_server/driver.macos<class_ProjectSettings_property_display/display_server/driver.macos>` | |
  367. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  368. | :ref:`String<class_String>` | :ref:`display/display_server/driver.windows<class_ProjectSettings_property_display/display_server/driver.windows>` | |
  369. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  370. | :ref:`String<class_String>` | :ref:`display/mouse_cursor/custom_image<class_ProjectSettings_property_display/mouse_cursor/custom_image>` | ``""`` |
  371. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  372. | :ref:`Vector2<class_Vector2>` | :ref:`display/mouse_cursor/custom_image_hotspot<class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot>` | ``Vector2(0, 0)`` |
  373. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  374. | :ref:`Vector2<class_Vector2>` | :ref:`display/mouse_cursor/tooltip_position_offset<class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset>` | ``Vector2(10, 10)`` |
  375. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  376. | :ref:`bool<class_bool>` | :ref:`display/window/dpi/allow_hidpi<class_ProjectSettings_property_display/window/dpi/allow_hidpi>` | ``true`` |
  377. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  378. | :ref:`bool<class_bool>` | :ref:`display/window/energy_saving/keep_screen_on<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on>` | ``true`` |
  379. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  380. | :ref:`bool<class_bool>` | :ref:`display/window/energy_saving/keep_screen_on.editor_hint<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on.editor_hint>` | ``false`` |
  381. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  382. | :ref:`int<class_int>` | :ref:`display/window/handheld/orientation<class_ProjectSettings_property_display/window/handheld/orientation>` | ``0`` |
  383. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  384. | :ref:`bool<class_bool>` | :ref:`display/window/ios/allow_high_refresh_rate<class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate>` | ``true`` |
  385. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  386. | :ref:`bool<class_bool>` | :ref:`display/window/ios/hide_home_indicator<class_ProjectSettings_property_display/window/ios/hide_home_indicator>` | ``true`` |
  387. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  388. | :ref:`bool<class_bool>` | :ref:`display/window/ios/hide_status_bar<class_ProjectSettings_property_display/window/ios/hide_status_bar>` | ``true`` |
  389. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  390. | :ref:`bool<class_bool>` | :ref:`display/window/ios/suppress_ui_gesture<class_ProjectSettings_property_display/window/ios/suppress_ui_gesture>` | ``true`` |
  391. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  392. | :ref:`bool<class_bool>` | :ref:`display/window/per_pixel_transparency/allowed<class_ProjectSettings_property_display/window/per_pixel_transparency/allowed>` | ``false`` |
  393. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  394. | :ref:`bool<class_bool>` | :ref:`display/window/size/always_on_top<class_ProjectSettings_property_display/window/size/always_on_top>` | ``false`` |
  395. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  396. | :ref:`bool<class_bool>` | :ref:`display/window/size/borderless<class_ProjectSettings_property_display/window/size/borderless>` | ``false`` |
  397. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  398. | :ref:`bool<class_bool>` | :ref:`display/window/size/extend_to_title<class_ProjectSettings_property_display/window/size/extend_to_title>` | ``false`` |
  399. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  400. | :ref:`Vector2i<class_Vector2i>` | :ref:`display/window/size/initial_position<class_ProjectSettings_property_display/window/size/initial_position>` | ``Vector2i(0, 0)`` |
  401. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  402. | :ref:`int<class_int>` | :ref:`display/window/size/initial_position_type<class_ProjectSettings_property_display/window/size/initial_position_type>` | ``1`` |
  403. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  404. | :ref:`int<class_int>` | :ref:`display/window/size/initial_screen<class_ProjectSettings_property_display/window/size/initial_screen>` | ``0`` |
  405. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  406. | :ref:`int<class_int>` | :ref:`display/window/size/mode<class_ProjectSettings_property_display/window/size/mode>` | ``0`` |
  407. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  408. | :ref:`bool<class_bool>` | :ref:`display/window/size/no_focus<class_ProjectSettings_property_display/window/size/no_focus>` | ``false`` |
  409. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  410. | :ref:`bool<class_bool>` | :ref:`display/window/size/resizable<class_ProjectSettings_property_display/window/size/resizable>` | ``true`` |
  411. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  412. | :ref:`bool<class_bool>` | :ref:`display/window/size/transparent<class_ProjectSettings_property_display/window/size/transparent>` | ``false`` |
  413. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  414. | :ref:`int<class_int>` | :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>` | ``648`` |
  415. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  416. | :ref:`int<class_int>` | :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` | ``1152`` |
  417. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  418. | :ref:`int<class_int>` | :ref:`display/window/size/window_height_override<class_ProjectSettings_property_display/window/size/window_height_override>` | ``0`` |
  419. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  420. | :ref:`int<class_int>` | :ref:`display/window/size/window_width_override<class_ProjectSettings_property_display/window/size/window_width_override>` | ``0`` |
  421. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  422. | :ref:`String<class_String>` | :ref:`display/window/stretch/aspect<class_ProjectSettings_property_display/window/stretch/aspect>` | ``"keep"`` |
  423. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  424. | :ref:`String<class_String>` | :ref:`display/window/stretch/mode<class_ProjectSettings_property_display/window/stretch/mode>` | ``"disabled"`` |
  425. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  426. | :ref:`float<class_float>` | :ref:`display/window/stretch/scale<class_ProjectSettings_property_display/window/stretch/scale>` | ``1.0`` |
  427. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  428. | :ref:`String<class_String>` | :ref:`display/window/stretch/scale_mode<class_ProjectSettings_property_display/window/stretch/scale_mode>` | ``"fractional"`` |
  429. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  430. | :ref:`bool<class_bool>` | :ref:`display/window/subwindows/embed_subwindows<class_ProjectSettings_property_display/window/subwindows/embed_subwindows>` | ``true`` |
  431. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  432. | :ref:`int<class_int>` | :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` | ``1`` |
  433. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  434. | :ref:`String<class_String>` | :ref:`dotnet/project/assembly_name<class_ProjectSettings_property_dotnet/project/assembly_name>` | ``""`` |
  435. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  436. | :ref:`int<class_int>` | :ref:`dotnet/project/assembly_reload_attempts<class_ProjectSettings_property_dotnet/project/assembly_reload_attempts>` | ``3`` |
  437. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  438. | :ref:`String<class_String>` | :ref:`dotnet/project/solution_directory<class_ProjectSettings_property_dotnet/project/solution_directory>` | ``""`` |
  439. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  440. | :ref:`bool<class_bool>` | :ref:`editor/export/convert_text_resources_to_binary<class_ProjectSettings_property_editor/export/convert_text_resources_to_binary>` | ``true`` |
  441. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  442. | :ref:`int<class_int>` | :ref:`editor/import/atlas_max_width<class_ProjectSettings_property_editor/import/atlas_max_width>` | ``2048`` |
  443. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  444. | :ref:`bool<class_bool>` | :ref:`editor/import/reimport_missing_imported_files<class_ProjectSettings_property_editor/import/reimport_missing_imported_files>` | ``true`` |
  445. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  446. | :ref:`bool<class_bool>` | :ref:`editor/import/use_multiple_threads<class_ProjectSettings_property_editor/import/use_multiple_threads>` | ``true`` |
  447. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  448. | :ref:`bool<class_bool>` | :ref:`editor/movie_writer/disable_vsync<class_ProjectSettings_property_editor/movie_writer/disable_vsync>` | ``false`` |
  449. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  450. | :ref:`int<class_int>` | :ref:`editor/movie_writer/fps<class_ProjectSettings_property_editor/movie_writer/fps>` | ``60`` |
  451. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  452. | :ref:`int<class_int>` | :ref:`editor/movie_writer/mix_rate<class_ProjectSettings_property_editor/movie_writer/mix_rate>` | ``48000`` |
  453. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  454. | :ref:`float<class_float>` | :ref:`editor/movie_writer/mjpeg_quality<class_ProjectSettings_property_editor/movie_writer/mjpeg_quality>` | ``0.75`` |
  455. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  456. | :ref:`String<class_String>` | :ref:`editor/movie_writer/movie_file<class_ProjectSettings_property_editor/movie_writer/movie_file>` | ``""`` |
  457. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  458. | :ref:`int<class_int>` | :ref:`editor/movie_writer/speaker_mode<class_ProjectSettings_property_editor/movie_writer/speaker_mode>` | ``0`` |
  459. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  460. | :ref:`String<class_String>` | :ref:`editor/naming/default_signal_callback_name<class_ProjectSettings_property_editor/naming/default_signal_callback_name>` | ``"_on_{node_name}_{signal_name}"`` |
  461. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  462. | :ref:`String<class_String>` | :ref:`editor/naming/default_signal_callback_to_self_name<class_ProjectSettings_property_editor/naming/default_signal_callback_to_self_name>` | ``"_on_{signal_name}"`` |
  463. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  464. | :ref:`int<class_int>` | :ref:`editor/naming/node_name_casing<class_ProjectSettings_property_editor/naming/node_name_casing>` | ``0`` |
  465. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  466. | :ref:`int<class_int>` | :ref:`editor/naming/node_name_num_separator<class_ProjectSettings_property_editor/naming/node_name_num_separator>` | ``0`` |
  467. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  468. | :ref:`int<class_int>` | :ref:`editor/naming/scene_name_casing<class_ProjectSettings_property_editor/naming/scene_name_casing>` | ``2`` |
  469. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  470. | :ref:`int<class_int>` | :ref:`editor/naming/script_name_casing<class_ProjectSettings_property_editor/naming/script_name_casing>` | ``0`` |
  471. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  472. | :ref:`String<class_String>` | :ref:`editor/run/main_run_args<class_ProjectSettings_property_editor/run/main_run_args>` | ``""`` |
  473. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  474. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`editor/script/search_in_file_extensions<class_ProjectSettings_property_editor/script/search_in_file_extensions>` | ``PackedStringArray("gd", "gdshader")`` |
  475. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  476. | :ref:`String<class_String>` | :ref:`editor/script/templates_search_path<class_ProjectSettings_property_editor/script/templates_search_path>` | ``"res://script_templates"`` |
  477. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  478. | :ref:`bool<class_bool>` | :ref:`editor/version_control/autoload_on_startup<class_ProjectSettings_property_editor/version_control/autoload_on_startup>` | ``false`` |
  479. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  480. | :ref:`String<class_String>` | :ref:`editor/version_control/plugin_name<class_ProjectSettings_property_editor/version_control/plugin_name>` | ``""`` |
  481. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  482. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>` | ``true`` |
  483. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  484. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled.android<class_ProjectSettings_property_filesystem/import/blender/enabled.android>` | ``false`` |
  485. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  486. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled.web<class_ProjectSettings_property_filesystem/import/blender/enabled.web>` | ``false`` |
  487. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  488. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx2gltf/enabled<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled>` | ``true`` |
  489. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  490. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx2gltf/enabled.android<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled.android>` | ``false`` |
  491. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  492. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx2gltf/enabled.web<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled.web>` | ``false`` |
  493. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  494. | :ref:`int<class_int>` | :ref:`gui/common/default_scroll_deadzone<class_ProjectSettings_property_gui/common/default_scroll_deadzone>` | ``0`` |
  495. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  496. | :ref:`bool<class_bool>` | :ref:`gui/common/snap_controls_to_pixels<class_ProjectSettings_property_gui/common/snap_controls_to_pixels>` | ``true`` |
  497. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  498. | :ref:`bool<class_bool>` | :ref:`gui/common/swap_cancel_ok<class_ProjectSettings_property_gui/common/swap_cancel_ok>` | |
  499. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  500. | :ref:`int<class_int>` | :ref:`gui/common/text_edit_undo_stack_max_size<class_ProjectSettings_property_gui/common/text_edit_undo_stack_max_size>` | ``1024`` |
  501. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  502. | :ref:`bool<class_bool>` | :ref:`gui/fonts/dynamic_fonts/use_oversampling<class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling>` | ``true`` |
  503. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  504. | :ref:`String<class_String>` | :ref:`gui/theme/custom<class_ProjectSettings_property_gui/theme/custom>` | ``""`` |
  505. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  506. | :ref:`String<class_String>` | :ref:`gui/theme/custom_font<class_ProjectSettings_property_gui/theme/custom_font>` | ``""`` |
  507. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  508. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_antialiasing<class_ProjectSettings_property_gui/theme/default_font_antialiasing>` | ``1`` |
  509. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  510. | :ref:`bool<class_bool>` | :ref:`gui/theme/default_font_generate_mipmaps<class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps>` | ``false`` |
  511. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  512. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_hinting<class_ProjectSettings_property_gui/theme/default_font_hinting>` | ``1`` |
  513. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  514. | :ref:`bool<class_bool>` | :ref:`gui/theme/default_font_multichannel_signed_distance_field<class_ProjectSettings_property_gui/theme/default_font_multichannel_signed_distance_field>` | ``false`` |
  515. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  516. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_subpixel_positioning<class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning>` | ``1`` |
  517. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  518. | :ref:`float<class_float>` | :ref:`gui/theme/default_theme_scale<class_ProjectSettings_property_gui/theme/default_theme_scale>` | ``1.0`` |
  519. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  520. | :ref:`int<class_int>` | :ref:`gui/theme/lcd_subpixel_layout<class_ProjectSettings_property_gui/theme/lcd_subpixel_layout>` | ``1`` |
  521. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  522. | :ref:`float<class_float>` | :ref:`gui/timers/button_shortcut_feedback_highlight_time<class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time>` | ``0.2`` |
  523. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  524. | :ref:`int<class_int>` | :ref:`gui/timers/incremental_search_max_interval_msec<class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec>` | ``2000`` |
  525. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  526. | :ref:`float<class_float>` | :ref:`gui/timers/text_edit_idle_detect_sec<class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec>` | ``3`` |
  527. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  528. | :ref:`float<class_float>` | :ref:`gui/timers/tooltip_delay_sec<class_ProjectSettings_property_gui/timers/tooltip_delay_sec>` | ``0.5`` |
  529. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  530. | :ref:`float<class_float>` | :ref:`gui/timers/tooltip_delay_sec.editor_hint<class_ProjectSettings_property_gui/timers/tooltip_delay_sec.editor_hint>` | ``0.5`` |
  531. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  532. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_accept<class_ProjectSettings_property_input/ui_accept>` | |
  533. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  534. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_cancel<class_ProjectSettings_property_input/ui_cancel>` | |
  535. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  536. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_copy<class_ProjectSettings_property_input/ui_copy>` | |
  537. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  538. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_cut<class_ProjectSettings_property_input/ui_cut>` | |
  539. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  540. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_down<class_ProjectSettings_property_input/ui_down>` | |
  541. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  542. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_end<class_ProjectSettings_property_input/ui_end>` | |
  543. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  544. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_refresh<class_ProjectSettings_property_input/ui_filedialog_refresh>` | |
  545. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  546. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_show_hidden<class_ProjectSettings_property_input/ui_filedialog_show_hidden>` | |
  547. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  548. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_up_one_level<class_ProjectSettings_property_input/ui_filedialog_up_one_level>` | |
  549. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  550. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_focus_next<class_ProjectSettings_property_input/ui_focus_next>` | |
  551. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  552. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_focus_prev<class_ProjectSettings_property_input/ui_focus_prev>` | |
  553. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  554. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_graph_delete<class_ProjectSettings_property_input/ui_graph_delete>` | |
  555. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  556. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_graph_duplicate<class_ProjectSettings_property_input/ui_graph_duplicate>` | |
  557. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  558. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_home<class_ProjectSettings_property_input/ui_home>` | |
  559. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  560. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_left<class_ProjectSettings_property_input/ui_left>` | |
  561. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  562. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_menu<class_ProjectSettings_property_input/ui_menu>` | |
  563. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  564. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_page_down<class_ProjectSettings_property_input/ui_page_down>` | |
  565. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  566. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_page_up<class_ProjectSettings_property_input/ui_page_up>` | |
  567. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  568. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_paste<class_ProjectSettings_property_input/ui_paste>` | |
  569. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  570. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_redo<class_ProjectSettings_property_input/ui_redo>` | |
  571. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  572. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_right<class_ProjectSettings_property_input/ui_right>` | |
  573. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  574. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_select<class_ProjectSettings_property_input/ui_select>` | |
  575. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  576. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_swap_input_direction<class_ProjectSettings_property_input/ui_swap_input_direction>` | |
  577. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  578. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_add_selection_for_next_occurrence<class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence>` | |
  579. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  580. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace<class_ProjectSettings_property_input/ui_text_backspace>` | |
  581. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  582. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_all_to_left<class_ProjectSettings_property_input/ui_text_backspace_all_to_left>` | |
  583. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  584. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_all_to_left.macos<class_ProjectSettings_property_input/ui_text_backspace_all_to_left.macos>` | |
  585. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  586. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_word<class_ProjectSettings_property_input/ui_text_backspace_word>` | |
  587. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  588. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_word.macos<class_ProjectSettings_property_input/ui_text_backspace_word.macos>` | |
  589. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  590. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_above<class_ProjectSettings_property_input/ui_text_caret_add_above>` | |
  591. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  592. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_above.macos<class_ProjectSettings_property_input/ui_text_caret_add_above.macos>` | |
  593. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  594. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_below<class_ProjectSettings_property_input/ui_text_caret_add_below>` | |
  595. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  596. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_below.macos<class_ProjectSettings_property_input/ui_text_caret_add_below.macos>` | |
  597. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  598. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_end<class_ProjectSettings_property_input/ui_text_caret_document_end>` | |
  599. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  600. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_end.macos<class_ProjectSettings_property_input/ui_text_caret_document_end.macos>` | |
  601. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  602. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_start<class_ProjectSettings_property_input/ui_text_caret_document_start>` | |
  603. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  604. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_start.macos<class_ProjectSettings_property_input/ui_text_caret_document_start.macos>` | |
  605. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  606. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_down<class_ProjectSettings_property_input/ui_text_caret_down>` | |
  607. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  608. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_left<class_ProjectSettings_property_input/ui_text_caret_left>` | |
  609. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  610. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_end<class_ProjectSettings_property_input/ui_text_caret_line_end>` | |
  611. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  612. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_end.macos<class_ProjectSettings_property_input/ui_text_caret_line_end.macos>` | |
  613. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  614. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_start<class_ProjectSettings_property_input/ui_text_caret_line_start>` | |
  615. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  616. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_start.macos<class_ProjectSettings_property_input/ui_text_caret_line_start.macos>` | |
  617. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  618. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_page_down<class_ProjectSettings_property_input/ui_text_caret_page_down>` | |
  619. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  620. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_page_up<class_ProjectSettings_property_input/ui_text_caret_page_up>` | |
  621. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  622. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_right<class_ProjectSettings_property_input/ui_text_caret_right>` | |
  623. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  624. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_up<class_ProjectSettings_property_input/ui_text_caret_up>` | |
  625. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  626. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_left<class_ProjectSettings_property_input/ui_text_caret_word_left>` | |
  627. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  628. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_left.macos<class_ProjectSettings_property_input/ui_text_caret_word_left.macos>` | |
  629. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  630. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_right<class_ProjectSettings_property_input/ui_text_caret_word_right>` | |
  631. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  632. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_right.macos<class_ProjectSettings_property_input/ui_text_caret_word_right.macos>` | |
  633. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  634. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_clear_carets_and_selection<class_ProjectSettings_property_input/ui_text_clear_carets_and_selection>` | |
  635. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  636. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_accept<class_ProjectSettings_property_input/ui_text_completion_accept>` | |
  637. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  638. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_query<class_ProjectSettings_property_input/ui_text_completion_query>` | |
  639. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  640. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_replace<class_ProjectSettings_property_input/ui_text_completion_replace>` | |
  641. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  642. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_dedent<class_ProjectSettings_property_input/ui_text_dedent>` | |
  643. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  644. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete<class_ProjectSettings_property_input/ui_text_delete>` | |
  645. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  646. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_all_to_right<class_ProjectSettings_property_input/ui_text_delete_all_to_right>` | |
  647. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  648. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_all_to_right.macos<class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos>` | |
  649. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  650. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_word<class_ProjectSettings_property_input/ui_text_delete_word>` | |
  651. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  652. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_word.macos<class_ProjectSettings_property_input/ui_text_delete_word.macos>` | |
  653. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  654. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_indent<class_ProjectSettings_property_input/ui_text_indent>` | |
  655. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  656. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline<class_ProjectSettings_property_input/ui_text_newline>` | |
  657. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  658. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline_above<class_ProjectSettings_property_input/ui_text_newline_above>` | |
  659. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  660. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline_blank<class_ProjectSettings_property_input/ui_text_newline_blank>` | |
  661. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  662. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_down<class_ProjectSettings_property_input/ui_text_scroll_down>` | |
  663. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  664. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_down.macos<class_ProjectSettings_property_input/ui_text_scroll_down.macos>` | |
  665. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  666. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_up<class_ProjectSettings_property_input/ui_text_scroll_up>` | |
  667. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  668. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_up.macos<class_ProjectSettings_property_input/ui_text_scroll_up.macos>` | |
  669. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  670. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_all<class_ProjectSettings_property_input/ui_text_select_all>` | |
  671. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  672. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_word_under_caret<class_ProjectSettings_property_input/ui_text_select_word_under_caret>` | |
  673. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  674. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_word_under_caret.macos<class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos>` | |
  675. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  676. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_skip_selection_for_next_occurrence<class_ProjectSettings_property_input/ui_text_skip_selection_for_next_occurrence>` | |
  677. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  678. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_submit<class_ProjectSettings_property_input/ui_text_submit>` | |
  679. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  680. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_toggle_insert_mode<class_ProjectSettings_property_input/ui_text_toggle_insert_mode>` | |
  681. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  682. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_undo<class_ProjectSettings_property_input/ui_undo>` | |
  683. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  684. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_up<class_ProjectSettings_property_input/ui_up>` | |
  685. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  686. | :ref:`bool<class_bool>` | :ref:`input_devices/buffering/agile_event_flushing<class_ProjectSettings_property_input_devices/buffering/agile_event_flushing>` | ``false`` |
  687. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  688. | :ref:`bool<class_bool>` | :ref:`input_devices/compatibility/legacy_just_pressed_behavior<class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior>` | ``false`` |
  689. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  690. | :ref:`String<class_String>` | :ref:`input_devices/pen_tablet/driver<class_ProjectSettings_property_input_devices/pen_tablet/driver>` | |
  691. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  692. | :ref:`String<class_String>` | :ref:`input_devices/pen_tablet/driver.windows<class_ProjectSettings_property_input_devices/pen_tablet/driver.windows>` | |
  693. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  694. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/android/enable_long_press_as_right_click<class_ProjectSettings_property_input_devices/pointing/android/enable_long_press_as_right_click>` | ``false`` |
  695. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  696. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/android/enable_pan_and_scale_gestures<class_ProjectSettings_property_input_devices/pointing/android/enable_pan_and_scale_gestures>` | ``false`` |
  697. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  698. | :ref:`int<class_int>` | :ref:`input_devices/pointing/android/rotary_input_scroll_axis<class_ProjectSettings_property_input_devices/pointing/android/rotary_input_scroll_axis>` | ``1`` |
  699. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  700. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/emulate_mouse_from_touch<class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch>` | ``true`` |
  701. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  702. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/emulate_touch_from_mouse<class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse>` | ``false`` |
  703. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  704. | :ref:`String<class_String>` | :ref:`internationalization/locale/fallback<class_ProjectSettings_property_internationalization/locale/fallback>` | ``"en"`` |
  705. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  706. | :ref:`bool<class_bool>` | :ref:`internationalization/locale/include_text_server_data<class_ProjectSettings_property_internationalization/locale/include_text_server_data>` | ``false`` |
  707. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  708. | :ref:`String<class_String>` | :ref:`internationalization/locale/test<class_ProjectSettings_property_internationalization/locale/test>` | ``""`` |
  709. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  710. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/double_vowels<class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels>` | ``false`` |
  711. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  712. | :ref:`float<class_float>` | :ref:`internationalization/pseudolocalization/expansion_ratio<class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio>` | ``0.0`` |
  713. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  714. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/fake_bidi<class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi>` | ``false`` |
  715. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  716. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/override<class_ProjectSettings_property_internationalization/pseudolocalization/override>` | ``false`` |
  717. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  718. | :ref:`String<class_String>` | :ref:`internationalization/pseudolocalization/prefix<class_ProjectSettings_property_internationalization/pseudolocalization/prefix>` | ``"["`` |
  719. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  720. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/replace_with_accents<class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents>` | ``true`` |
  721. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  722. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/skip_placeholders<class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders>` | ``true`` |
  723. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  724. | :ref:`String<class_String>` | :ref:`internationalization/pseudolocalization/suffix<class_ProjectSettings_property_internationalization/pseudolocalization/suffix>` | ``"]"`` |
  725. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  726. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/use_pseudolocalization<class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization>` | ``false`` |
  727. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  728. | :ref:`bool<class_bool>` | :ref:`internationalization/rendering/force_right_to_left_layout_direction<class_ProjectSettings_property_internationalization/rendering/force_right_to_left_layout_direction>` | ``false`` |
  729. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  730. | :ref:`bool<class_bool>` | :ref:`internationalization/rendering/root_node_auto_translate<class_ProjectSettings_property_internationalization/rendering/root_node_auto_translate>` | ``true`` |
  731. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  732. | :ref:`int<class_int>` | :ref:`internationalization/rendering/root_node_layout_direction<class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction>` | ``0`` |
  733. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  734. | :ref:`String<class_String>` | :ref:`internationalization/rendering/text_driver<class_ProjectSettings_property_internationalization/rendering/text_driver>` | ``""`` |
  735. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  736. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_1<class_ProjectSettings_property_layer_names/2d_navigation/layer_1>` | ``""`` |
  737. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  738. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_2<class_ProjectSettings_property_layer_names/2d_navigation/layer_2>` | ``""`` |
  739. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  740. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_3<class_ProjectSettings_property_layer_names/2d_navigation/layer_3>` | ``""`` |
  741. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  742. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_4<class_ProjectSettings_property_layer_names/2d_navigation/layer_4>` | ``""`` |
  743. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  744. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_5<class_ProjectSettings_property_layer_names/2d_navigation/layer_5>` | ``""`` |
  745. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  746. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_6<class_ProjectSettings_property_layer_names/2d_navigation/layer_6>` | ``""`` |
  747. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  748. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_7<class_ProjectSettings_property_layer_names/2d_navigation/layer_7>` | ``""`` |
  749. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  750. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_8<class_ProjectSettings_property_layer_names/2d_navigation/layer_8>` | ``""`` |
  751. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  752. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_9<class_ProjectSettings_property_layer_names/2d_navigation/layer_9>` | ``""`` |
  753. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  754. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_10<class_ProjectSettings_property_layer_names/2d_navigation/layer_10>` | ``""`` |
  755. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  756. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_11<class_ProjectSettings_property_layer_names/2d_navigation/layer_11>` | ``""`` |
  757. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  758. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_12<class_ProjectSettings_property_layer_names/2d_navigation/layer_12>` | ``""`` |
  759. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  760. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_13<class_ProjectSettings_property_layer_names/2d_navigation/layer_13>` | ``""`` |
  761. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  762. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_14<class_ProjectSettings_property_layer_names/2d_navigation/layer_14>` | ``""`` |
  763. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  764. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_15<class_ProjectSettings_property_layer_names/2d_navigation/layer_15>` | ``""`` |
  765. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  766. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_16<class_ProjectSettings_property_layer_names/2d_navigation/layer_16>` | ``""`` |
  767. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  768. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_17<class_ProjectSettings_property_layer_names/2d_navigation/layer_17>` | ``""`` |
  769. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  770. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_18<class_ProjectSettings_property_layer_names/2d_navigation/layer_18>` | ``""`` |
  771. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  772. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_19<class_ProjectSettings_property_layer_names/2d_navigation/layer_19>` | ``""`` |
  773. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  774. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_20<class_ProjectSettings_property_layer_names/2d_navigation/layer_20>` | ``""`` |
  775. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  776. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_21<class_ProjectSettings_property_layer_names/2d_navigation/layer_21>` | ``""`` |
  777. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  778. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_22<class_ProjectSettings_property_layer_names/2d_navigation/layer_22>` | ``""`` |
  779. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  780. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_23<class_ProjectSettings_property_layer_names/2d_navigation/layer_23>` | ``""`` |
  781. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  782. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_24<class_ProjectSettings_property_layer_names/2d_navigation/layer_24>` | ``""`` |
  783. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  784. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_25<class_ProjectSettings_property_layer_names/2d_navigation/layer_25>` | ``""`` |
  785. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  786. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_26<class_ProjectSettings_property_layer_names/2d_navigation/layer_26>` | ``""`` |
  787. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  788. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_27<class_ProjectSettings_property_layer_names/2d_navigation/layer_27>` | ``""`` |
  789. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  790. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_28<class_ProjectSettings_property_layer_names/2d_navigation/layer_28>` | ``""`` |
  791. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  792. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_29<class_ProjectSettings_property_layer_names/2d_navigation/layer_29>` | ``""`` |
  793. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  794. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_30<class_ProjectSettings_property_layer_names/2d_navigation/layer_30>` | ``""`` |
  795. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  796. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_31<class_ProjectSettings_property_layer_names/2d_navigation/layer_31>` | ``""`` |
  797. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  798. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_32<class_ProjectSettings_property_layer_names/2d_navigation/layer_32>` | ``""`` |
  799. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  800. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_1<class_ProjectSettings_property_layer_names/2d_physics/layer_1>` | ``""`` |
  801. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  802. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_2<class_ProjectSettings_property_layer_names/2d_physics/layer_2>` | ``""`` |
  803. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  804. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_3<class_ProjectSettings_property_layer_names/2d_physics/layer_3>` | ``""`` |
  805. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  806. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_4<class_ProjectSettings_property_layer_names/2d_physics/layer_4>` | ``""`` |
  807. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  808. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_5<class_ProjectSettings_property_layer_names/2d_physics/layer_5>` | ``""`` |
  809. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  810. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_6<class_ProjectSettings_property_layer_names/2d_physics/layer_6>` | ``""`` |
  811. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  812. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_7<class_ProjectSettings_property_layer_names/2d_physics/layer_7>` | ``""`` |
  813. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  814. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_8<class_ProjectSettings_property_layer_names/2d_physics/layer_8>` | ``""`` |
  815. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  816. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_9<class_ProjectSettings_property_layer_names/2d_physics/layer_9>` | ``""`` |
  817. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  818. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_10<class_ProjectSettings_property_layer_names/2d_physics/layer_10>` | ``""`` |
  819. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  820. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_11<class_ProjectSettings_property_layer_names/2d_physics/layer_11>` | ``""`` |
  821. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  822. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_12<class_ProjectSettings_property_layer_names/2d_physics/layer_12>` | ``""`` |
  823. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  824. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_13<class_ProjectSettings_property_layer_names/2d_physics/layer_13>` | ``""`` |
  825. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  826. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_14<class_ProjectSettings_property_layer_names/2d_physics/layer_14>` | ``""`` |
  827. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  828. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_15<class_ProjectSettings_property_layer_names/2d_physics/layer_15>` | ``""`` |
  829. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  830. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_16<class_ProjectSettings_property_layer_names/2d_physics/layer_16>` | ``""`` |
  831. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  832. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_17<class_ProjectSettings_property_layer_names/2d_physics/layer_17>` | ``""`` |
  833. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  834. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_18<class_ProjectSettings_property_layer_names/2d_physics/layer_18>` | ``""`` |
  835. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  836. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_19<class_ProjectSettings_property_layer_names/2d_physics/layer_19>` | ``""`` |
  837. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  838. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_20<class_ProjectSettings_property_layer_names/2d_physics/layer_20>` | ``""`` |
  839. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  840. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_21<class_ProjectSettings_property_layer_names/2d_physics/layer_21>` | ``""`` |
  841. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  842. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_22<class_ProjectSettings_property_layer_names/2d_physics/layer_22>` | ``""`` |
  843. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  844. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_23<class_ProjectSettings_property_layer_names/2d_physics/layer_23>` | ``""`` |
  845. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  846. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_24<class_ProjectSettings_property_layer_names/2d_physics/layer_24>` | ``""`` |
  847. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  848. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_25<class_ProjectSettings_property_layer_names/2d_physics/layer_25>` | ``""`` |
  849. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  850. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_26<class_ProjectSettings_property_layer_names/2d_physics/layer_26>` | ``""`` |
  851. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  852. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_27<class_ProjectSettings_property_layer_names/2d_physics/layer_27>` | ``""`` |
  853. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  854. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_28<class_ProjectSettings_property_layer_names/2d_physics/layer_28>` | ``""`` |
  855. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  856. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_29<class_ProjectSettings_property_layer_names/2d_physics/layer_29>` | ``""`` |
  857. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  858. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_30<class_ProjectSettings_property_layer_names/2d_physics/layer_30>` | ``""`` |
  859. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  860. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_31<class_ProjectSettings_property_layer_names/2d_physics/layer_31>` | ``""`` |
  861. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  862. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_32<class_ProjectSettings_property_layer_names/2d_physics/layer_32>` | ``""`` |
  863. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  864. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_1<class_ProjectSettings_property_layer_names/2d_render/layer_1>` | ``""`` |
  865. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  866. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_2<class_ProjectSettings_property_layer_names/2d_render/layer_2>` | ``""`` |
  867. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  868. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_3<class_ProjectSettings_property_layer_names/2d_render/layer_3>` | ``""`` |
  869. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  870. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_4<class_ProjectSettings_property_layer_names/2d_render/layer_4>` | ``""`` |
  871. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  872. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_5<class_ProjectSettings_property_layer_names/2d_render/layer_5>` | ``""`` |
  873. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  874. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_6<class_ProjectSettings_property_layer_names/2d_render/layer_6>` | ``""`` |
  875. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  876. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_7<class_ProjectSettings_property_layer_names/2d_render/layer_7>` | ``""`` |
  877. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  878. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_8<class_ProjectSettings_property_layer_names/2d_render/layer_8>` | ``""`` |
  879. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  880. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_9<class_ProjectSettings_property_layer_names/2d_render/layer_9>` | ``""`` |
  881. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  882. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_10<class_ProjectSettings_property_layer_names/2d_render/layer_10>` | ``""`` |
  883. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  884. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_11<class_ProjectSettings_property_layer_names/2d_render/layer_11>` | ``""`` |
  885. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  886. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_12<class_ProjectSettings_property_layer_names/2d_render/layer_12>` | ``""`` |
  887. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  888. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_13<class_ProjectSettings_property_layer_names/2d_render/layer_13>` | ``""`` |
  889. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  890. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_14<class_ProjectSettings_property_layer_names/2d_render/layer_14>` | ``""`` |
  891. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  892. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_15<class_ProjectSettings_property_layer_names/2d_render/layer_15>` | ``""`` |
  893. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  894. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_16<class_ProjectSettings_property_layer_names/2d_render/layer_16>` | ``""`` |
  895. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  896. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_17<class_ProjectSettings_property_layer_names/2d_render/layer_17>` | ``""`` |
  897. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  898. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_18<class_ProjectSettings_property_layer_names/2d_render/layer_18>` | ``""`` |
  899. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  900. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_19<class_ProjectSettings_property_layer_names/2d_render/layer_19>` | ``""`` |
  901. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  902. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_20<class_ProjectSettings_property_layer_names/2d_render/layer_20>` | ``""`` |
  903. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  904. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_1<class_ProjectSettings_property_layer_names/3d_navigation/layer_1>` | ``""`` |
  905. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  906. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_2<class_ProjectSettings_property_layer_names/3d_navigation/layer_2>` | ``""`` |
  907. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  908. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_3<class_ProjectSettings_property_layer_names/3d_navigation/layer_3>` | ``""`` |
  909. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  910. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_4<class_ProjectSettings_property_layer_names/3d_navigation/layer_4>` | ``""`` |
  911. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  912. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_5<class_ProjectSettings_property_layer_names/3d_navigation/layer_5>` | ``""`` |
  913. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  914. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_6<class_ProjectSettings_property_layer_names/3d_navigation/layer_6>` | ``""`` |
  915. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  916. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_7<class_ProjectSettings_property_layer_names/3d_navigation/layer_7>` | ``""`` |
  917. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  918. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_8<class_ProjectSettings_property_layer_names/3d_navigation/layer_8>` | ``""`` |
  919. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  920. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_9<class_ProjectSettings_property_layer_names/3d_navigation/layer_9>` | ``""`` |
  921. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  922. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_10<class_ProjectSettings_property_layer_names/3d_navigation/layer_10>` | ``""`` |
  923. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  924. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_11<class_ProjectSettings_property_layer_names/3d_navigation/layer_11>` | ``""`` |
  925. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  926. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_12<class_ProjectSettings_property_layer_names/3d_navigation/layer_12>` | ``""`` |
  927. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  928. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_13<class_ProjectSettings_property_layer_names/3d_navigation/layer_13>` | ``""`` |
  929. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  930. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_14<class_ProjectSettings_property_layer_names/3d_navigation/layer_14>` | ``""`` |
  931. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  932. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_15<class_ProjectSettings_property_layer_names/3d_navigation/layer_15>` | ``""`` |
  933. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  934. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_16<class_ProjectSettings_property_layer_names/3d_navigation/layer_16>` | ``""`` |
  935. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  936. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_17<class_ProjectSettings_property_layer_names/3d_navigation/layer_17>` | ``""`` |
  937. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  938. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_18<class_ProjectSettings_property_layer_names/3d_navigation/layer_18>` | ``""`` |
  939. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  940. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_19<class_ProjectSettings_property_layer_names/3d_navigation/layer_19>` | ``""`` |
  941. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  942. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_20<class_ProjectSettings_property_layer_names/3d_navigation/layer_20>` | ``""`` |
  943. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  944. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_21<class_ProjectSettings_property_layer_names/3d_navigation/layer_21>` | ``""`` |
  945. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  946. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_22<class_ProjectSettings_property_layer_names/3d_navigation/layer_22>` | ``""`` |
  947. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  948. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_23<class_ProjectSettings_property_layer_names/3d_navigation/layer_23>` | ``""`` |
  949. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  950. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_24<class_ProjectSettings_property_layer_names/3d_navigation/layer_24>` | ``""`` |
  951. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  952. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_25<class_ProjectSettings_property_layer_names/3d_navigation/layer_25>` | ``""`` |
  953. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  954. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_26<class_ProjectSettings_property_layer_names/3d_navigation/layer_26>` | ``""`` |
  955. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  956. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_27<class_ProjectSettings_property_layer_names/3d_navigation/layer_27>` | ``""`` |
  957. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  958. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_28<class_ProjectSettings_property_layer_names/3d_navigation/layer_28>` | ``""`` |
  959. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  960. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_29<class_ProjectSettings_property_layer_names/3d_navigation/layer_29>` | ``""`` |
  961. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  962. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_30<class_ProjectSettings_property_layer_names/3d_navigation/layer_30>` | ``""`` |
  963. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  964. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_31<class_ProjectSettings_property_layer_names/3d_navigation/layer_31>` | ``""`` |
  965. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  966. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_32<class_ProjectSettings_property_layer_names/3d_navigation/layer_32>` | ``""`` |
  967. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  968. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_1<class_ProjectSettings_property_layer_names/3d_physics/layer_1>` | ``""`` |
  969. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  970. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_2<class_ProjectSettings_property_layer_names/3d_physics/layer_2>` | ``""`` |
  971. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  972. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_3<class_ProjectSettings_property_layer_names/3d_physics/layer_3>` | ``""`` |
  973. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  974. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_4<class_ProjectSettings_property_layer_names/3d_physics/layer_4>` | ``""`` |
  975. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  976. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_5<class_ProjectSettings_property_layer_names/3d_physics/layer_5>` | ``""`` |
  977. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  978. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_6<class_ProjectSettings_property_layer_names/3d_physics/layer_6>` | ``""`` |
  979. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  980. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_7<class_ProjectSettings_property_layer_names/3d_physics/layer_7>` | ``""`` |
  981. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  982. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_8<class_ProjectSettings_property_layer_names/3d_physics/layer_8>` | ``""`` |
  983. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  984. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_9<class_ProjectSettings_property_layer_names/3d_physics/layer_9>` | ``""`` |
  985. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  986. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_10<class_ProjectSettings_property_layer_names/3d_physics/layer_10>` | ``""`` |
  987. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  988. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_11<class_ProjectSettings_property_layer_names/3d_physics/layer_11>` | ``""`` |
  989. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  990. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_12<class_ProjectSettings_property_layer_names/3d_physics/layer_12>` | ``""`` |
  991. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  992. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_13<class_ProjectSettings_property_layer_names/3d_physics/layer_13>` | ``""`` |
  993. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  994. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_14<class_ProjectSettings_property_layer_names/3d_physics/layer_14>` | ``""`` |
  995. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  996. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_15<class_ProjectSettings_property_layer_names/3d_physics/layer_15>` | ``""`` |
  997. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  998. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_16<class_ProjectSettings_property_layer_names/3d_physics/layer_16>` | ``""`` |
  999. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1000. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_17<class_ProjectSettings_property_layer_names/3d_physics/layer_17>` | ``""`` |
  1001. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1002. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_18<class_ProjectSettings_property_layer_names/3d_physics/layer_18>` | ``""`` |
  1003. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1004. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_19<class_ProjectSettings_property_layer_names/3d_physics/layer_19>` | ``""`` |
  1005. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1006. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_20<class_ProjectSettings_property_layer_names/3d_physics/layer_20>` | ``""`` |
  1007. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1008. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_21<class_ProjectSettings_property_layer_names/3d_physics/layer_21>` | ``""`` |
  1009. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1010. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_22<class_ProjectSettings_property_layer_names/3d_physics/layer_22>` | ``""`` |
  1011. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1012. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_23<class_ProjectSettings_property_layer_names/3d_physics/layer_23>` | ``""`` |
  1013. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1014. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_24<class_ProjectSettings_property_layer_names/3d_physics/layer_24>` | ``""`` |
  1015. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1016. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_25<class_ProjectSettings_property_layer_names/3d_physics/layer_25>` | ``""`` |
  1017. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1018. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_26<class_ProjectSettings_property_layer_names/3d_physics/layer_26>` | ``""`` |
  1019. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1020. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_27<class_ProjectSettings_property_layer_names/3d_physics/layer_27>` | ``""`` |
  1021. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1022. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_28<class_ProjectSettings_property_layer_names/3d_physics/layer_28>` | ``""`` |
  1023. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1024. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_29<class_ProjectSettings_property_layer_names/3d_physics/layer_29>` | ``""`` |
  1025. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1026. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_30<class_ProjectSettings_property_layer_names/3d_physics/layer_30>` | ``""`` |
  1027. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1028. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_31<class_ProjectSettings_property_layer_names/3d_physics/layer_31>` | ``""`` |
  1029. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1030. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_32<class_ProjectSettings_property_layer_names/3d_physics/layer_32>` | ``""`` |
  1031. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1032. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_1<class_ProjectSettings_property_layer_names/3d_render/layer_1>` | ``""`` |
  1033. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1034. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_2<class_ProjectSettings_property_layer_names/3d_render/layer_2>` | ``""`` |
  1035. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1036. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_3<class_ProjectSettings_property_layer_names/3d_render/layer_3>` | ``""`` |
  1037. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1038. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_4<class_ProjectSettings_property_layer_names/3d_render/layer_4>` | ``""`` |
  1039. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1040. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_5<class_ProjectSettings_property_layer_names/3d_render/layer_5>` | ``""`` |
  1041. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1042. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_6<class_ProjectSettings_property_layer_names/3d_render/layer_6>` | ``""`` |
  1043. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1044. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_7<class_ProjectSettings_property_layer_names/3d_render/layer_7>` | ``""`` |
  1045. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1046. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_8<class_ProjectSettings_property_layer_names/3d_render/layer_8>` | ``""`` |
  1047. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1048. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_9<class_ProjectSettings_property_layer_names/3d_render/layer_9>` | ``""`` |
  1049. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1050. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_10<class_ProjectSettings_property_layer_names/3d_render/layer_10>` | ``""`` |
  1051. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1052. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_11<class_ProjectSettings_property_layer_names/3d_render/layer_11>` | ``""`` |
  1053. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1054. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_12<class_ProjectSettings_property_layer_names/3d_render/layer_12>` | ``""`` |
  1055. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1056. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_13<class_ProjectSettings_property_layer_names/3d_render/layer_13>` | ``""`` |
  1057. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1058. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_14<class_ProjectSettings_property_layer_names/3d_render/layer_14>` | ``""`` |
  1059. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1060. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_15<class_ProjectSettings_property_layer_names/3d_render/layer_15>` | ``""`` |
  1061. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1062. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_16<class_ProjectSettings_property_layer_names/3d_render/layer_16>` | ``""`` |
  1063. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1064. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_17<class_ProjectSettings_property_layer_names/3d_render/layer_17>` | ``""`` |
  1065. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1066. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_18<class_ProjectSettings_property_layer_names/3d_render/layer_18>` | ``""`` |
  1067. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1068. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_19<class_ProjectSettings_property_layer_names/3d_render/layer_19>` | ``""`` |
  1069. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1070. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_20<class_ProjectSettings_property_layer_names/3d_render/layer_20>` | ``""`` |
  1071. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1072. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_1<class_ProjectSettings_property_layer_names/avoidance/layer_1>` | ``""`` |
  1073. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1074. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_2<class_ProjectSettings_property_layer_names/avoidance/layer_2>` | ``""`` |
  1075. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1076. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_3<class_ProjectSettings_property_layer_names/avoidance/layer_3>` | ``""`` |
  1077. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1078. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_4<class_ProjectSettings_property_layer_names/avoidance/layer_4>` | ``""`` |
  1079. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1080. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_5<class_ProjectSettings_property_layer_names/avoidance/layer_5>` | ``""`` |
  1081. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1082. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_6<class_ProjectSettings_property_layer_names/avoidance/layer_6>` | ``""`` |
  1083. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1084. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_7<class_ProjectSettings_property_layer_names/avoidance/layer_7>` | ``""`` |
  1085. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1086. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_8<class_ProjectSettings_property_layer_names/avoidance/layer_8>` | ``""`` |
  1087. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1088. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_9<class_ProjectSettings_property_layer_names/avoidance/layer_9>` | ``""`` |
  1089. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1090. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_10<class_ProjectSettings_property_layer_names/avoidance/layer_10>` | ``""`` |
  1091. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1092. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_11<class_ProjectSettings_property_layer_names/avoidance/layer_11>` | ``""`` |
  1093. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1094. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_12<class_ProjectSettings_property_layer_names/avoidance/layer_12>` | ``""`` |
  1095. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1096. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_13<class_ProjectSettings_property_layer_names/avoidance/layer_13>` | ``""`` |
  1097. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1098. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_14<class_ProjectSettings_property_layer_names/avoidance/layer_14>` | ``""`` |
  1099. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1100. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_15<class_ProjectSettings_property_layer_names/avoidance/layer_15>` | ``""`` |
  1101. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1102. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_16<class_ProjectSettings_property_layer_names/avoidance/layer_16>` | ``""`` |
  1103. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1104. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_17<class_ProjectSettings_property_layer_names/avoidance/layer_17>` | ``""`` |
  1105. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1106. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_18<class_ProjectSettings_property_layer_names/avoidance/layer_18>` | ``""`` |
  1107. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1108. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_19<class_ProjectSettings_property_layer_names/avoidance/layer_19>` | ``""`` |
  1109. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1110. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_20<class_ProjectSettings_property_layer_names/avoidance/layer_20>` | ``""`` |
  1111. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1112. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_21<class_ProjectSettings_property_layer_names/avoidance/layer_21>` | ``""`` |
  1113. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1114. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_22<class_ProjectSettings_property_layer_names/avoidance/layer_22>` | ``""`` |
  1115. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1116. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_23<class_ProjectSettings_property_layer_names/avoidance/layer_23>` | ``""`` |
  1117. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1118. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_24<class_ProjectSettings_property_layer_names/avoidance/layer_24>` | ``""`` |
  1119. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1120. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_25<class_ProjectSettings_property_layer_names/avoidance/layer_25>` | ``""`` |
  1121. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1122. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_26<class_ProjectSettings_property_layer_names/avoidance/layer_26>` | ``""`` |
  1123. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1124. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_27<class_ProjectSettings_property_layer_names/avoidance/layer_27>` | ``""`` |
  1125. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1126. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_28<class_ProjectSettings_property_layer_names/avoidance/layer_28>` | ``""`` |
  1127. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1128. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_29<class_ProjectSettings_property_layer_names/avoidance/layer_29>` | ``""`` |
  1129. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1130. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_30<class_ProjectSettings_property_layer_names/avoidance/layer_30>` | ``""`` |
  1131. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1132. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_31<class_ProjectSettings_property_layer_names/avoidance/layer_31>` | ``""`` |
  1133. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1134. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_32<class_ProjectSettings_property_layer_names/avoidance/layer_32>` | ``""`` |
  1135. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1136. | :ref:`int<class_int>` | :ref:`memory/limits/message_queue/max_size_mb<class_ProjectSettings_property_memory/limits/message_queue/max_size_mb>` | ``32`` |
  1137. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1138. | :ref:`float<class_float>` | :ref:`navigation/2d/default_cell_size<class_ProjectSettings_property_navigation/2d/default_cell_size>` | ``1.0`` |
  1139. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1140. | :ref:`float<class_float>` | :ref:`navigation/2d/default_edge_connection_margin<class_ProjectSettings_property_navigation/2d/default_edge_connection_margin>` | ``1.0`` |
  1141. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1142. | :ref:`float<class_float>` | :ref:`navigation/2d/default_link_connection_radius<class_ProjectSettings_property_navigation/2d/default_link_connection_radius>` | ``4.0`` |
  1143. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1144. | :ref:`bool<class_bool>` | :ref:`navigation/2d/use_edge_connections<class_ProjectSettings_property_navigation/2d/use_edge_connections>` | ``true`` |
  1145. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1146. | :ref:`float<class_float>` | :ref:`navigation/3d/default_cell_height<class_ProjectSettings_property_navigation/3d/default_cell_height>` | ``0.25`` |
  1147. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1148. | :ref:`float<class_float>` | :ref:`navigation/3d/default_cell_size<class_ProjectSettings_property_navigation/3d/default_cell_size>` | ``0.25`` |
  1149. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1150. | :ref:`float<class_float>` | :ref:`navigation/3d/default_edge_connection_margin<class_ProjectSettings_property_navigation/3d/default_edge_connection_margin>` | ``0.25`` |
  1151. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1152. | :ref:`float<class_float>` | :ref:`navigation/3d/default_link_connection_radius<class_ProjectSettings_property_navigation/3d/default_link_connection_radius>` | ``1.0`` |
  1153. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1154. | :ref:`Vector3<class_Vector3>` | :ref:`navigation/3d/default_up<class_ProjectSettings_property_navigation/3d/default_up>` | ``Vector3(0, 1, 0)`` |
  1155. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1156. | :ref:`float<class_float>` | :ref:`navigation/3d/merge_rasterizer_cell_scale<class_ProjectSettings_property_navigation/3d/merge_rasterizer_cell_scale>` | ``1.0`` |
  1157. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1158. | :ref:`bool<class_bool>` | :ref:`navigation/3d/use_edge_connections<class_ProjectSettings_property_navigation/3d/use_edge_connections>` | ``true`` |
  1159. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1160. | :ref:`bool<class_bool>` | :ref:`navigation/avoidance/thread_model/avoidance_use_high_priority_threads<class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_high_priority_threads>` | ``true`` |
  1161. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1162. | :ref:`bool<class_bool>` | :ref:`navigation/avoidance/thread_model/avoidance_use_multiple_threads<class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_multiple_threads>` | ``true`` |
  1163. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1164. | :ref:`bool<class_bool>` | :ref:`navigation/baking/thread_model/baking_use_high_priority_threads<class_ProjectSettings_property_navigation/baking/thread_model/baking_use_high_priority_threads>` | ``true`` |
  1165. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1166. | :ref:`bool<class_bool>` | :ref:`navigation/baking/thread_model/baking_use_multiple_threads<class_ProjectSettings_property_navigation/baking/thread_model/baking_use_multiple_threads>` | ``true`` |
  1167. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1168. | :ref:`bool<class_bool>` | :ref:`navigation/baking/use_crash_prevention_checks<class_ProjectSettings_property_navigation/baking/use_crash_prevention_checks>` | ``true`` |
  1169. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1170. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_chars_per_second<class_ProjectSettings_property_network/limits/debugger/max_chars_per_second>` | ``32768`` |
  1171. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1172. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_errors_per_second<class_ProjectSettings_property_network/limits/debugger/max_errors_per_second>` | ``400`` |
  1173. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1174. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_queued_messages<class_ProjectSettings_property_network/limits/debugger/max_queued_messages>` | ``2048`` |
  1175. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1176. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_warnings_per_second<class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second>` | ``400`` |
  1177. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1178. | :ref:`int<class_int>` | :ref:`network/limits/packet_peer_stream/max_buffer_po2<class_ProjectSettings_property_network/limits/packet_peer_stream/max_buffer_po2>` | ``16`` |
  1179. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1180. | :ref:`int<class_int>` | :ref:`network/limits/tcp/connect_timeout_seconds<class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds>` | ``30`` |
  1181. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1182. | :ref:`int<class_int>` | :ref:`network/limits/webrtc/max_channel_in_buffer_kb<class_ProjectSettings_property_network/limits/webrtc/max_channel_in_buffer_kb>` | ``64`` |
  1183. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1184. | :ref:`String<class_String>` | :ref:`network/tls/certificate_bundle_override<class_ProjectSettings_property_network/tls/certificate_bundle_override>` | ``""`` |
  1185. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1186. | :ref:`float<class_float>` | :ref:`physics/2d/default_angular_damp<class_ProjectSettings_property_physics/2d/default_angular_damp>` | ``1.0`` |
  1187. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1188. | :ref:`float<class_float>` | :ref:`physics/2d/default_gravity<class_ProjectSettings_property_physics/2d/default_gravity>` | ``980.0`` |
  1189. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1190. | :ref:`Vector2<class_Vector2>` | :ref:`physics/2d/default_gravity_vector<class_ProjectSettings_property_physics/2d/default_gravity_vector>` | ``Vector2(0, 1)`` |
  1191. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1192. | :ref:`float<class_float>` | :ref:`physics/2d/default_linear_damp<class_ProjectSettings_property_physics/2d/default_linear_damp>` | ``0.1`` |
  1193. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1194. | :ref:`String<class_String>` | :ref:`physics/2d/physics_engine<class_ProjectSettings_property_physics/2d/physics_engine>` | ``"DEFAULT"`` |
  1195. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1196. | :ref:`bool<class_bool>` | :ref:`physics/2d/run_on_separate_thread<class_ProjectSettings_property_physics/2d/run_on_separate_thread>` | ``false`` |
  1197. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1198. | :ref:`float<class_float>` | :ref:`physics/2d/sleep_threshold_angular<class_ProjectSettings_property_physics/2d/sleep_threshold_angular>` | ``0.139626`` |
  1199. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1200. | :ref:`float<class_float>` | :ref:`physics/2d/sleep_threshold_linear<class_ProjectSettings_property_physics/2d/sleep_threshold_linear>` | ``2.0`` |
  1201. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1202. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_max_allowed_penetration<class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration>` | ``0.3`` |
  1203. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1204. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_max_separation<class_ProjectSettings_property_physics/2d/solver/contact_max_separation>` | ``1.5`` |
  1205. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1206. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_recycle_radius<class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius>` | ``1.0`` |
  1207. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1208. | :ref:`float<class_float>` | :ref:`physics/2d/solver/default_constraint_bias<class_ProjectSettings_property_physics/2d/solver/default_constraint_bias>` | ``0.2`` |
  1209. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1210. | :ref:`float<class_float>` | :ref:`physics/2d/solver/default_contact_bias<class_ProjectSettings_property_physics/2d/solver/default_contact_bias>` | ``0.8`` |
  1211. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1212. | :ref:`int<class_int>` | :ref:`physics/2d/solver/solver_iterations<class_ProjectSettings_property_physics/2d/solver/solver_iterations>` | ``16`` |
  1213. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1214. | :ref:`float<class_float>` | :ref:`physics/2d/time_before_sleep<class_ProjectSettings_property_physics/2d/time_before_sleep>` | ``0.5`` |
  1215. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1216. | :ref:`float<class_float>` | :ref:`physics/3d/default_angular_damp<class_ProjectSettings_property_physics/3d/default_angular_damp>` | ``0.1`` |
  1217. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1218. | :ref:`float<class_float>` | :ref:`physics/3d/default_gravity<class_ProjectSettings_property_physics/3d/default_gravity>` | ``9.8`` |
  1219. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1220. | :ref:`Vector3<class_Vector3>` | :ref:`physics/3d/default_gravity_vector<class_ProjectSettings_property_physics/3d/default_gravity_vector>` | ``Vector3(0, -1, 0)`` |
  1221. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1222. | :ref:`float<class_float>` | :ref:`physics/3d/default_linear_damp<class_ProjectSettings_property_physics/3d/default_linear_damp>` | ``0.1`` |
  1223. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1224. | :ref:`String<class_String>` | :ref:`physics/3d/physics_engine<class_ProjectSettings_property_physics/3d/physics_engine>` | ``"DEFAULT"`` |
  1225. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1226. | :ref:`bool<class_bool>` | :ref:`physics/3d/run_on_separate_thread<class_ProjectSettings_property_physics/3d/run_on_separate_thread>` | ``false`` |
  1227. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1228. | :ref:`float<class_float>` | :ref:`physics/3d/sleep_threshold_angular<class_ProjectSettings_property_physics/3d/sleep_threshold_angular>` | ``0.139626`` |
  1229. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1230. | :ref:`float<class_float>` | :ref:`physics/3d/sleep_threshold_linear<class_ProjectSettings_property_physics/3d/sleep_threshold_linear>` | ``0.1`` |
  1231. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1232. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_max_allowed_penetration<class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration>` | ``0.01`` |
  1233. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1234. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_max_separation<class_ProjectSettings_property_physics/3d/solver/contact_max_separation>` | ``0.05`` |
  1235. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1236. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_recycle_radius<class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius>` | ``0.01`` |
  1237. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1238. | :ref:`float<class_float>` | :ref:`physics/3d/solver/default_contact_bias<class_ProjectSettings_property_physics/3d/solver/default_contact_bias>` | ``0.8`` |
  1239. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1240. | :ref:`int<class_int>` | :ref:`physics/3d/solver/solver_iterations<class_ProjectSettings_property_physics/3d/solver/solver_iterations>` | ``16`` |
  1241. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1242. | :ref:`float<class_float>` | :ref:`physics/3d/time_before_sleep<class_ProjectSettings_property_physics/3d/time_before_sleep>` | ``0.5`` |
  1243. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1244. | :ref:`bool<class_bool>` | :ref:`physics/common/enable_object_picking<class_ProjectSettings_property_physics/common/enable_object_picking>` | ``true`` |
  1245. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1246. | :ref:`int<class_int>` | :ref:`physics/common/max_physics_steps_per_frame<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>` | ``8`` |
  1247. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1248. | :ref:`bool<class_bool>` | :ref:`physics/common/physics_interpolation<class_ProjectSettings_property_physics/common/physics_interpolation>` | ``false`` |
  1249. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1250. | :ref:`float<class_float>` | :ref:`physics/common/physics_jitter_fix<class_ProjectSettings_property_physics/common/physics_jitter_fix>` | ``0.5`` |
  1251. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1252. | :ref:`int<class_int>` | :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` | ``60`` |
  1253. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1254. | :ref:`int<class_int>` | :ref:`rendering/2d/sdf/oversize<class_ProjectSettings_property_rendering/2d/sdf/oversize>` | ``1`` |
  1255. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1256. | :ref:`int<class_int>` | :ref:`rendering/2d/sdf/scale<class_ProjectSettings_property_rendering/2d/sdf/scale>` | ``1`` |
  1257. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1258. | :ref:`int<class_int>` | :ref:`rendering/2d/shadow_atlas/size<class_ProjectSettings_property_rendering/2d/shadow_atlas/size>` | ``2048`` |
  1259. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1260. | :ref:`bool<class_bool>` | :ref:`rendering/2d/snap/snap_2d_transforms_to_pixel<class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel>` | ``false`` |
  1261. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1262. | :ref:`bool<class_bool>` | :ref:`rendering/2d/snap/snap_2d_vertices_to_pixel<class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel>` | ``false`` |
  1263. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1264. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/msaa_2d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d>` | ``0`` |
  1265. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1266. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/msaa_3d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d>` | ``0`` |
  1267. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1268. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/screen_space_aa<class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa>` | ``0`` |
  1269. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1270. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/quality/use_debanding<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding>` | ``false`` |
  1271. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1272. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/quality/use_taa<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>` | ``false`` |
  1273. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1274. | :ref:`float<class_float>` | :ref:`rendering/anti_aliasing/screen_space_roughness_limiter/amount<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/amount>` | ``0.25`` |
  1275. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1276. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/screen_space_roughness_limiter/enabled<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/enabled>` | ``true`` |
  1277. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1278. | :ref:`float<class_float>` | :ref:`rendering/anti_aliasing/screen_space_roughness_limiter/limit<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/limit>` | ``0.18`` |
  1279. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1280. | :ref:`int<class_int>` | :ref:`rendering/camera/depth_of_field/depth_of_field_bokeh_quality<class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_quality>` | ``1`` |
  1281. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1282. | :ref:`int<class_int>` | :ref:`rendering/camera/depth_of_field/depth_of_field_bokeh_shape<class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_shape>` | ``1`` |
  1283. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1284. | :ref:`bool<class_bool>` | :ref:`rendering/camera/depth_of_field/depth_of_field_use_jitter<class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_use_jitter>` | ``false`` |
  1285. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1286. | :ref:`String<class_String>` | :ref:`rendering/driver/depth_prepass/disable_for_vendors<class_ProjectSettings_property_rendering/driver/depth_prepass/disable_for_vendors>` | ``"PowerVR,Mali,Adreno,Apple"`` |
  1287. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1288. | :ref:`bool<class_bool>` | :ref:`rendering/driver/depth_prepass/enable<class_ProjectSettings_property_rendering/driver/depth_prepass/enable>` | ``true`` |
  1289. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1290. | :ref:`int<class_int>` | :ref:`rendering/driver/threads/thread_model<class_ProjectSettings_property_rendering/driver/threads/thread_model>` | ``1`` |
  1291. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1292. | :ref:`Color<class_Color>` | :ref:`rendering/environment/defaults/default_clear_color<class_ProjectSettings_property_rendering/environment/defaults/default_clear_color>` | ``Color(0.3, 0.3, 0.3, 1)`` |
  1293. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1294. | :ref:`String<class_String>` | :ref:`rendering/environment/defaults/default_environment<class_ProjectSettings_property_rendering/environment/defaults/default_environment>` | ``""`` |
  1295. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1296. | :ref:`int<class_int>` | :ref:`rendering/environment/glow/upscale_mode<class_ProjectSettings_property_rendering/environment/glow/upscale_mode>` | ``1`` |
  1297. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1298. | :ref:`int<class_int>` | :ref:`rendering/environment/glow/upscale_mode.mobile<class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile>` | ``0`` |
  1299. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1300. | :ref:`int<class_int>` | :ref:`rendering/environment/screen_space_reflection/roughness_quality<class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality>` | ``1`` |
  1301. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1302. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/adaptive_target<class_ProjectSettings_property_rendering/environment/ssao/adaptive_target>` | ``0.5`` |
  1303. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1304. | :ref:`int<class_int>` | :ref:`rendering/environment/ssao/blur_passes<class_ProjectSettings_property_rendering/environment/ssao/blur_passes>` | ``2`` |
  1305. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1306. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/fadeout_from<class_ProjectSettings_property_rendering/environment/ssao/fadeout_from>` | ``50.0`` |
  1307. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1308. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/fadeout_to<class_ProjectSettings_property_rendering/environment/ssao/fadeout_to>` | ``300.0`` |
  1309. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1310. | :ref:`bool<class_bool>` | :ref:`rendering/environment/ssao/half_size<class_ProjectSettings_property_rendering/environment/ssao/half_size>` | ``true`` |
  1311. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1312. | :ref:`int<class_int>` | :ref:`rendering/environment/ssao/quality<class_ProjectSettings_property_rendering/environment/ssao/quality>` | ``2`` |
  1313. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1314. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/adaptive_target<class_ProjectSettings_property_rendering/environment/ssil/adaptive_target>` | ``0.5`` |
  1315. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1316. | :ref:`int<class_int>` | :ref:`rendering/environment/ssil/blur_passes<class_ProjectSettings_property_rendering/environment/ssil/blur_passes>` | ``4`` |
  1317. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1318. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/fadeout_from<class_ProjectSettings_property_rendering/environment/ssil/fadeout_from>` | ``50.0`` |
  1319. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1320. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/fadeout_to<class_ProjectSettings_property_rendering/environment/ssil/fadeout_to>` | ``300.0`` |
  1321. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1322. | :ref:`bool<class_bool>` | :ref:`rendering/environment/ssil/half_size<class_ProjectSettings_property_rendering/environment/ssil/half_size>` | ``true`` |
  1323. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1324. | :ref:`int<class_int>` | :ref:`rendering/environment/ssil/quality<class_ProjectSettings_property_rendering/environment/ssil/quality>` | ``2`` |
  1325. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1326. | :ref:`float<class_float>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale>` | ``0.01`` |
  1327. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1328. | :ref:`int<class_int>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_quality<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality>` | ``1`` |
  1329. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1330. | :ref:`float<class_float>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_scale<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale>` | ``0.05`` |
  1331. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1332. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/use_filter<class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter>` | ``1`` |
  1333. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1334. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/volume_depth<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth>` | ``64`` |
  1335. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1336. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/volume_size<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size>` | ``64`` |
  1337. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1338. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>` | |
  1339. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1340. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.android<class_ProjectSettings_property_rendering/gl_compatibility/driver.android>` | |
  1341. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1342. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.ios<class_ProjectSettings_property_rendering/gl_compatibility/driver.ios>` | |
  1343. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1344. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.linuxbsd<class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd>` | |
  1345. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1346. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.macos<class_ProjectSettings_property_rendering/gl_compatibility/driver.macos>` | |
  1347. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1348. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.web<class_ProjectSettings_property_rendering/gl_compatibility/driver.web>` | |
  1349. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1350. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.windows<class_ProjectSettings_property_rendering/gl_compatibility/driver.windows>` | |
  1351. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1352. | :ref:`bool<class_bool>` | :ref:`rendering/gl_compatibility/fallback_to_angle<class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_angle>` | ``true`` |
  1353. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1354. | :ref:`bool<class_bool>` | :ref:`rendering/gl_compatibility/fallback_to_gles<class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_gles>` | ``true`` |
  1355. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1356. | :ref:`bool<class_bool>` | :ref:`rendering/gl_compatibility/fallback_to_native<class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_native>` | ``true`` |
  1357. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1358. | :ref:`Array<class_Array>` | :ref:`rendering/gl_compatibility/force_angle_on_devices<class_ProjectSettings_property_rendering/gl_compatibility/force_angle_on_devices>` | |
  1359. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1360. | :ref:`int<class_int>` | :ref:`rendering/gl_compatibility/item_buffer_size<class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size>` | ``16384`` |
  1361. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1362. | :ref:`bool<class_bool>` | :ref:`rendering/gl_compatibility/nvidia_disable_threaded_optimization<class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization>` | ``true`` |
  1363. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1364. | :ref:`bool<class_bool>` | :ref:`rendering/global_illumination/gi/use_half_resolution<class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution>` | ``false`` |
  1365. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1366. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/frames_to_converge<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge>` | ``5`` |
  1367. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1368. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/frames_to_update_lights<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights>` | ``2`` |
  1369. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1370. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/probe_ray_count<class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count>` | ``1`` |
  1371. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1372. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/voxel_gi/quality<class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality>` | ``0`` |
  1373. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1374. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_performance/max_rays_per_pass<class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_pass>` | ``32`` |
  1375. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1376. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_performance/max_rays_per_probe_pass<class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_probe_pass>` | ``64`` |
  1377. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1378. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_performance/region_size<class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size>` | ``512`` |
  1379. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1380. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/high_quality_probe_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_probe_ray_count>` | ``512`` |
  1381. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1382. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/high_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_ray_count>` | ``512`` |
  1383. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1384. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/low_quality_probe_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_probe_ray_count>` | ``64`` |
  1385. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1386. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/low_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_ray_count>` | ``32`` |
  1387. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1388. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/medium_quality_probe_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_probe_ray_count>` | ``256`` |
  1389. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1390. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/medium_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_ray_count>` | ``128`` |
  1391. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1392. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count>` | ``2048`` |
  1393. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1394. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/ultra_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_ray_count>` | ``2048`` |
  1395. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1396. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/denoising/denoiser<class_ProjectSettings_property_rendering/lightmapping/denoising/denoiser>` | ``0`` |
  1397. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1398. | :ref:`float<class_float>` | :ref:`rendering/lightmapping/primitive_meshes/texel_size<class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size>` | ``0.2`` |
  1399. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1400. | :ref:`float<class_float>` | :ref:`rendering/lightmapping/probe_capture/update_speed<class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed>` | ``15`` |
  1401. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1402. | :ref:`bool<class_bool>` | :ref:`rendering/lights_and_shadows/directional_shadow/16_bits<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/16_bits>` | ``true`` |
  1403. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1404. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/directional_shadow/size<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size>` | ``4096`` |
  1405. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1406. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/directional_shadow/size.mobile<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size.mobile>` | ``2048`` |
  1407. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1408. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality>` | ``2`` |
  1409. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1410. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile>` | ``0`` |
  1411. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1412. | :ref:`bool<class_bool>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_16_bits<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_16_bits>` | ``true`` |
  1413. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1414. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv>` | ``2`` |
  1415. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1416. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv>` | ``2`` |
  1417. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1418. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv>` | ``3`` |
  1419. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1420. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv>` | ``4`` |
  1421. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1422. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_size<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size>` | ``4096`` |
  1423. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1424. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/atlas_size.mobile<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size.mobile>` | ``2048`` |
  1425. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1426. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality>` | ``2`` |
  1427. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1428. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile>` | ``0`` |
  1429. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1430. | :ref:`bool<class_bool>` | :ref:`rendering/lights_and_shadows/tighter_shadow_caster_culling<class_ProjectSettings_property_rendering/lights_and_shadows/tighter_shadow_caster_culling>` | ``true`` |
  1431. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1432. | :ref:`bool<class_bool>` | :ref:`rendering/lights_and_shadows/use_physical_light_units<class_ProjectSettings_property_rendering/lights_and_shadows/use_physical_light_units>` | ``false`` |
  1433. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1434. | :ref:`float<class_float>` | :ref:`rendering/limits/cluster_builder/max_clustered_elements<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>` | ``512`` |
  1435. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1436. | :ref:`int<class_int>` | :ref:`rendering/limits/global_shader_variables/buffer_size<class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size>` | ``65536`` |
  1437. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1438. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_lights_per_object<class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object>` | ``8`` |
  1439. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1440. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_renderable_elements<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements>` | ``65536`` |
  1441. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1442. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_renderable_lights<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights>` | ``32`` |
  1443. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1444. | :ref:`int<class_int>` | :ref:`rendering/limits/spatial_indexer/threaded_cull_minimum_instances<class_ProjectSettings_property_rendering/limits/spatial_indexer/threaded_cull_minimum_instances>` | ``1000`` |
  1445. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1446. | :ref:`int<class_int>` | :ref:`rendering/limits/spatial_indexer/update_iterations_per_frame<class_ProjectSettings_property_rendering/limits/spatial_indexer/update_iterations_per_frame>` | ``10`` |
  1447. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1448. | :ref:`float<class_float>` | :ref:`rendering/limits/time/time_rollover_secs<class_ProjectSettings_property_rendering/limits/time/time_rollover_secs>` | ``3600`` |
  1449. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1450. | :ref:`float<class_float>` | :ref:`rendering/mesh_lod/lod_change/threshold_pixels<class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels>` | ``1.0`` |
  1451. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1452. | :ref:`int<class_int>` | :ref:`rendering/occlusion_culling/bvh_build_quality<class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality>` | ``2`` |
  1453. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1454. | :ref:`bool<class_bool>` | :ref:`rendering/occlusion_culling/jitter_projection<class_ProjectSettings_property_rendering/occlusion_culling/jitter_projection>` | ``true`` |
  1455. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1456. | :ref:`int<class_int>` | :ref:`rendering/occlusion_culling/occlusion_rays_per_thread<class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread>` | ``512`` |
  1457. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1458. | :ref:`bool<class_bool>` | :ref:`rendering/occlusion_culling/use_occlusion_culling<class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling>` | ``false`` |
  1459. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1460. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_count<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count>` | ``64`` |
  1461. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1462. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_size<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size>` | ``256`` |
  1463. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1464. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_size.mobile<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile>` | ``128`` |
  1465. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1466. | :ref:`bool<class_bool>` | :ref:`rendering/reflections/sky_reflections/fast_filter_high_quality<class_ProjectSettings_property_rendering/reflections/sky_reflections/fast_filter_high_quality>` | ``false`` |
  1467. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1468. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/ggx_samples<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples>` | ``32`` |
  1469. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1470. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/ggx_samples.mobile<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile>` | ``16`` |
  1471. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1472. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/roughness_layers<class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers>` | ``8`` |
  1473. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1474. | :ref:`bool<class_bool>` | :ref:`rendering/reflections/sky_reflections/texture_array_reflections<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections>` | ``true`` |
  1475. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1476. | :ref:`bool<class_bool>` | :ref:`rendering/reflections/sky_reflections/texture_array_reflections.mobile<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections.mobile>` | ``false`` |
  1477. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1478. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` | ``"forward_plus"`` |
  1479. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1480. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method.mobile<class_ProjectSettings_property_rendering/renderer/rendering_method.mobile>` | ``"mobile"`` |
  1481. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1482. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method.web<class_ProjectSettings_property_rendering/renderer/rendering_method.web>` | ``"gl_compatibility"`` |
  1483. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1484. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/d3d12/agility_sdk_version<class_ProjectSettings_property_rendering/rendering_device/d3d12/agility_sdk_version>` | ``613`` |
  1485. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1486. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/d3d12/max_misc_descriptors_per_frame<class_ProjectSettings_property_rendering/rendering_device/d3d12/max_misc_descriptors_per_frame>` | ``512`` |
  1487. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1488. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/d3d12/max_resource_descriptors_per_frame<class_ProjectSettings_property_rendering/rendering_device/d3d12/max_resource_descriptors_per_frame>` | ``16384`` |
  1489. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1490. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/d3d12/max_sampler_descriptors_per_frame<class_ProjectSettings_property_rendering/rendering_device/d3d12/max_sampler_descriptors_per_frame>` | ``1024`` |
  1491. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1492. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>` | |
  1493. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1494. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.android<class_ProjectSettings_property_rendering/rendering_device/driver.android>` | |
  1495. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1496. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.ios<class_ProjectSettings_property_rendering/rendering_device/driver.ios>` | |
  1497. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1498. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.linuxbsd<class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd>` | |
  1499. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1500. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.macos<class_ProjectSettings_property_rendering/rendering_device/driver.macos>` | |
  1501. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1502. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.windows<class_ProjectSettings_property_rendering/rendering_device/driver.windows>` | |
  1503. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1504. | :ref:`bool<class_bool>` | :ref:`rendering/rendering_device/pipeline_cache/enable<class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/enable>` | ``true`` |
  1505. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1506. | :ref:`float<class_float>` | :ref:`rendering/rendering_device/pipeline_cache/save_chunk_size_mb<class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/save_chunk_size_mb>` | ``3.0`` |
  1507. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1508. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/staging_buffer/block_size_kb<class_ProjectSettings_property_rendering/rendering_device/staging_buffer/block_size_kb>` | ``256`` |
  1509. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1510. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/staging_buffer/max_size_mb<class_ProjectSettings_property_rendering/rendering_device/staging_buffer/max_size_mb>` | ``128`` |
  1511. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1512. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/staging_buffer/texture_upload_region_size_px<class_ProjectSettings_property_rendering/rendering_device/staging_buffer/texture_upload_region_size_px>` | ``64`` |
  1513. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1514. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/vsync/frame_queue_size<class_ProjectSettings_property_rendering/rendering_device/vsync/frame_queue_size>` | ``2`` |
  1515. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1516. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/vsync/swapchain_image_count<class_ProjectSettings_property_rendering/rendering_device/vsync/swapchain_image_count>` | ``3`` |
  1517. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1518. | :ref:`int<class_int>` | :ref:`rendering/rendering_device/vulkan/max_descriptors_per_pool<class_ProjectSettings_property_rendering/rendering_device/vulkan/max_descriptors_per_pool>` | ``64`` |
  1519. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1520. | :ref:`float<class_float>` | :ref:`rendering/scaling_3d/fsr_sharpness<class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness>` | ``0.2`` |
  1521. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1522. | :ref:`int<class_int>` | :ref:`rendering/scaling_3d/mode<class_ProjectSettings_property_rendering/scaling_3d/mode>` | ``0`` |
  1523. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1524. | :ref:`float<class_float>` | :ref:`rendering/scaling_3d/scale<class_ProjectSettings_property_rendering/scaling_3d/scale>` | ``1.0`` |
  1525. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1526. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/compress<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress>` | ``true`` |
  1527. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1528. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/enabled<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled>` | ``true`` |
  1529. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1530. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/strip_debug<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug>` | ``false`` |
  1531. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1532. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/strip_debug.release<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug.release>` | ``true`` |
  1533. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1534. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/use_zstd_compression<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/use_zstd_compression>` | ``true`` |
  1535. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1536. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_lambert_over_burley<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley>` | ``false`` |
  1537. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1538. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_lambert_over_burley.mobile<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley.mobile>` | ``true`` |
  1539. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1540. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_vertex_shading<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading>` | ``false`` |
  1541. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1542. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_vertex_shading.mobile<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile>` | ``true`` |
  1543. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1544. | :ref:`int<class_int>` | :ref:`rendering/textures/canvas_textures/default_texture_filter<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter>` | ``1`` |
  1545. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1546. | :ref:`int<class_int>` | :ref:`rendering/textures/canvas_textures/default_texture_repeat<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat>` | ``0`` |
  1547. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1548. | :ref:`int<class_int>` | :ref:`rendering/textures/decals/filter<class_ProjectSettings_property_rendering/textures/decals/filter>` | ``3`` |
  1549. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1550. | :ref:`int<class_int>` | :ref:`rendering/textures/default_filters/anisotropic_filtering_level<class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level>` | ``2`` |
  1551. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1552. | :ref:`float<class_float>` | :ref:`rendering/textures/default_filters/texture_mipmap_bias<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>` | ``0.0`` |
  1553. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1554. | :ref:`bool<class_bool>` | :ref:`rendering/textures/default_filters/use_nearest_mipmap_filter<class_ProjectSettings_property_rendering/textures/default_filters/use_nearest_mipmap_filter>` | ``false`` |
  1555. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1556. | :ref:`int<class_int>` | :ref:`rendering/textures/light_projectors/filter<class_ProjectSettings_property_rendering/textures/light_projectors/filter>` | ``3`` |
  1557. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1558. | :ref:`bool<class_bool>` | :ref:`rendering/textures/lossless_compression/force_png<class_ProjectSettings_property_rendering/textures/lossless_compression/force_png>` | ``false`` |
  1559. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1560. | :ref:`bool<class_bool>` | :ref:`rendering/textures/vram_compression/import_etc2_astc<class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc>` | ``false`` |
  1561. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1562. | :ref:`bool<class_bool>` | :ref:`rendering/textures/vram_compression/import_s3tc_bptc<class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc>` | ``false`` |
  1563. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1564. | :ref:`int<class_int>` | :ref:`rendering/textures/webp_compression/compression_method<class_ProjectSettings_property_rendering/textures/webp_compression/compression_method>` | ``2`` |
  1565. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1566. | :ref:`float<class_float>` | :ref:`rendering/textures/webp_compression/lossless_compression_factor<class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor>` | ``25`` |
  1567. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1568. | :ref:`bool<class_bool>` | :ref:`rendering/viewport/hdr_2d<class_ProjectSettings_property_rendering/viewport/hdr_2d>` | ``false`` |
  1569. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1570. | :ref:`bool<class_bool>` | :ref:`rendering/viewport/transparent_background<class_ProjectSettings_property_rendering/viewport/transparent_background>` | ``false`` |
  1571. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1572. | :ref:`int<class_int>` | :ref:`rendering/vrs/mode<class_ProjectSettings_property_rendering/vrs/mode>` | ``0`` |
  1573. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1574. | :ref:`String<class_String>` | :ref:`rendering/vrs/texture<class_ProjectSettings_property_rendering/vrs/texture>` | ``""`` |
  1575. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1576. | :ref:`float<class_float>` | :ref:`threading/worker_pool/low_priority_thread_ratio<class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio>` | ``0.3`` |
  1577. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1578. | :ref:`int<class_int>` | :ref:`threading/worker_pool/max_threads<class_ProjectSettings_property_threading/worker_pool/max_threads>` | ``-1`` |
  1579. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1580. | :ref:`String<class_String>` | :ref:`xr/openxr/default_action_map<class_ProjectSettings_property_xr/openxr/default_action_map>` | ``"res://openxr_action_map.tres"`` |
  1581. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1582. | :ref:`bool<class_bool>` | :ref:`xr/openxr/enabled<class_ProjectSettings_property_xr/openxr/enabled>` | ``false`` |
  1583. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1584. | :ref:`int<class_int>` | :ref:`xr/openxr/environment_blend_mode<class_ProjectSettings_property_xr/openxr/environment_blend_mode>` | ``"0"`` |
  1585. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1586. | :ref:`bool<class_bool>` | :ref:`xr/openxr/extensions/eye_gaze_interaction<class_ProjectSettings_property_xr/openxr/extensions/eye_gaze_interaction>` | ``false`` |
  1587. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1588. | :ref:`bool<class_bool>` | :ref:`xr/openxr/extensions/hand_interaction_profile<class_ProjectSettings_property_xr/openxr/extensions/hand_interaction_profile>` | ``false`` |
  1589. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1590. | :ref:`bool<class_bool>` | :ref:`xr/openxr/extensions/hand_tracking<class_ProjectSettings_property_xr/openxr/extensions/hand_tracking>` | ``true`` |
  1591. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1592. | :ref:`int<class_int>` | :ref:`xr/openxr/form_factor<class_ProjectSettings_property_xr/openxr/form_factor>` | ``"0"`` |
  1593. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1594. | :ref:`bool<class_bool>` | :ref:`xr/openxr/foveation_dynamic<class_ProjectSettings_property_xr/openxr/foveation_dynamic>` | ``false`` |
  1595. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1596. | :ref:`int<class_int>` | :ref:`xr/openxr/foveation_level<class_ProjectSettings_property_xr/openxr/foveation_level>` | ``"0"`` |
  1597. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1598. | :ref:`int<class_int>` | :ref:`xr/openxr/reference_space<class_ProjectSettings_property_xr/openxr/reference_space>` | ``"1"`` |
  1599. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1600. | :ref:`bool<class_bool>` | :ref:`xr/openxr/startup_alert<class_ProjectSettings_property_xr/openxr/startup_alert>` | ``true`` |
  1601. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1602. | :ref:`bool<class_bool>` | :ref:`xr/openxr/submit_depth_buffer<class_ProjectSettings_property_xr/openxr/submit_depth_buffer>` | ``false`` |
  1603. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1604. | :ref:`int<class_int>` | :ref:`xr/openxr/view_configuration<class_ProjectSettings_property_xr/openxr/view_configuration>` | ``"1"`` |
  1605. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1606. | :ref:`bool<class_bool>` | :ref:`xr/shaders/enabled<class_ProjectSettings_property_xr/shaders/enabled>` | ``false`` |
  1607. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1608. .. rst-class:: classref-reftable-group
  1609. Methods
  1610. -------
  1611. .. table::
  1612. :widths: auto
  1613. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1614. | |void| | :ref:`add_property_info<class_ProjectSettings_method_add_property_info>`\ (\ hint\: :ref:`Dictionary<class_Dictionary>`\ ) |
  1615. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1616. | |void| | :ref:`clear<class_ProjectSettings_method_clear>`\ (\ name\: :ref:`String<class_String>`\ ) |
  1617. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1618. | :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] | :ref:`get_global_class_list<class_ProjectSettings_method_get_global_class_list>`\ (\ ) |
  1619. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1620. | :ref:`int<class_int>` | :ref:`get_order<class_ProjectSettings_method_get_order>`\ (\ name\: :ref:`String<class_String>`\ ) |const| |
  1621. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1622. | :ref:`Variant<class_Variant>` | :ref:`get_setting<class_ProjectSettings_method_get_setting>`\ (\ name\: :ref:`String<class_String>`, default_value\: :ref:`Variant<class_Variant>` = null\ ) |const| |
  1623. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1624. | :ref:`Variant<class_Variant>` | :ref:`get_setting_with_override<class_ProjectSettings_method_get_setting_with_override>`\ (\ name\: :ref:`StringName<class_StringName>`\ ) |const| |
  1625. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1626. | :ref:`String<class_String>` | :ref:`globalize_path<class_ProjectSettings_method_globalize_path>`\ (\ path\: :ref:`String<class_String>`\ ) |const| |
  1627. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1628. | :ref:`bool<class_bool>` | :ref:`has_setting<class_ProjectSettings_method_has_setting>`\ (\ name\: :ref:`String<class_String>`\ ) |const| |
  1629. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1630. | :ref:`bool<class_bool>` | :ref:`load_resource_pack<class_ProjectSettings_method_load_resource_pack>`\ (\ pack\: :ref:`String<class_String>`, replace_files\: :ref:`bool<class_bool>` = true, offset\: :ref:`int<class_int>` = 0\ ) |
  1631. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1632. | :ref:`String<class_String>` | :ref:`localize_path<class_ProjectSettings_method_localize_path>`\ (\ path\: :ref:`String<class_String>`\ ) |const| |
  1633. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1634. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save<class_ProjectSettings_method_save>`\ (\ ) |
  1635. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1636. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save_custom<class_ProjectSettings_method_save_custom>`\ (\ file\: :ref:`String<class_String>`\ ) |
  1637. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1638. | |void| | :ref:`set_as_basic<class_ProjectSettings_method_set_as_basic>`\ (\ name\: :ref:`String<class_String>`, basic\: :ref:`bool<class_bool>`\ ) |
  1639. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1640. | |void| | :ref:`set_as_internal<class_ProjectSettings_method_set_as_internal>`\ (\ name\: :ref:`String<class_String>`, internal\: :ref:`bool<class_bool>`\ ) |
  1641. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1642. | |void| | :ref:`set_initial_value<class_ProjectSettings_method_set_initial_value>`\ (\ name\: :ref:`String<class_String>`, value\: :ref:`Variant<class_Variant>`\ ) |
  1643. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1644. | |void| | :ref:`set_order<class_ProjectSettings_method_set_order>`\ (\ name\: :ref:`String<class_String>`, position\: :ref:`int<class_int>`\ ) |
  1645. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1646. | |void| | :ref:`set_restart_if_changed<class_ProjectSettings_method_set_restart_if_changed>`\ (\ name\: :ref:`String<class_String>`, restart\: :ref:`bool<class_bool>`\ ) |
  1647. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1648. | |void| | :ref:`set_setting<class_ProjectSettings_method_set_setting>`\ (\ name\: :ref:`String<class_String>`, value\: :ref:`Variant<class_Variant>`\ ) |
  1649. +------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1650. .. rst-class:: classref-section-separator
  1651. ----
  1652. .. rst-class:: classref-descriptions-group
  1653. Signals
  1654. -------
  1655. .. _class_ProjectSettings_signal_settings_changed:
  1656. .. rst-class:: classref-signal
  1657. **settings_changed**\ (\ ) :ref:`๐Ÿ”—<class_ProjectSettings_signal_settings_changed>`
  1658. Emitted when any setting is changed, up to once per process frame.
  1659. .. rst-class:: classref-section-separator
  1660. ----
  1661. .. rst-class:: classref-descriptions-group
  1662. Property Descriptions
  1663. ---------------------
  1664. .. _class_ProjectSettings_property_animation/warnings/check_angle_interpolation_type_conflicting:
  1665. .. rst-class:: classref-property
  1666. :ref:`bool<class_bool>` **animation/warnings/check_angle_interpolation_type_conflicting** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_animation/warnings/check_angle_interpolation_type_conflicting>`
  1667. If ``true``, :ref:`AnimationMixer<class_AnimationMixer>` prints the warning of interpolation being forced to choose the shortest rotation path due to multiple angle interpolation types being mixed in the :ref:`AnimationMixer<class_AnimationMixer>` cache.
  1668. .. rst-class:: classref-item-separator
  1669. ----
  1670. .. _class_ProjectSettings_property_animation/warnings/check_invalid_track_paths:
  1671. .. rst-class:: classref-property
  1672. :ref:`bool<class_bool>` **animation/warnings/check_invalid_track_paths** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_animation/warnings/check_invalid_track_paths>`
  1673. If ``true``, :ref:`AnimationMixer<class_AnimationMixer>` prints the warning of no matching object of the track path in the scene.
  1674. .. rst-class:: classref-item-separator
  1675. ----
  1676. .. _class_ProjectSettings_property_application/boot_splash/bg_color:
  1677. .. rst-class:: classref-property
  1678. :ref:`Color<class_Color>` **application/boot_splash/bg_color** = ``Color(0.14, 0.14, 0.14, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/boot_splash/bg_color>`
  1679. Background color for the boot splash.
  1680. .. rst-class:: classref-item-separator
  1681. ----
  1682. .. _class_ProjectSettings_property_application/boot_splash/fullsize:
  1683. .. rst-class:: classref-property
  1684. :ref:`bool<class_bool>` **application/boot_splash/fullsize** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/boot_splash/fullsize>`
  1685. If ``true``, scale the boot splash image to the full window size (preserving the aspect ratio) when the engine starts. If ``false``, the engine will leave it at the default pixel size.
  1686. .. rst-class:: classref-item-separator
  1687. ----
  1688. .. _class_ProjectSettings_property_application/boot_splash/image:
  1689. .. rst-class:: classref-property
  1690. :ref:`String<class_String>` **application/boot_splash/image** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/boot_splash/image>`
  1691. Path to an image used as the boot splash. If left empty, the default Godot Engine splash will be displayed instead.
  1692. \ **Note:** Only effective if :ref:`application/boot_splash/show_image<class_ProjectSettings_property_application/boot_splash/show_image>` is ``true``.
  1693. \ **Note:** The only supported format is PNG. Using another image format will result in an error.
  1694. \ **Note:** The image will also show when opening the project in the editor. If you want to display the default splash image in the editor, add an empty override for ``editor_hint`` feature.
  1695. .. rst-class:: classref-item-separator
  1696. ----
  1697. .. _class_ProjectSettings_property_application/boot_splash/minimum_display_time:
  1698. .. rst-class:: classref-property
  1699. :ref:`int<class_int>` **application/boot_splash/minimum_display_time** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/boot_splash/minimum_display_time>`
  1700. Minimum boot splash display time (in milliseconds). It is not recommended to set too high values for this setting.
  1701. .. rst-class:: classref-item-separator
  1702. ----
  1703. .. _class_ProjectSettings_property_application/boot_splash/show_image:
  1704. .. rst-class:: classref-property
  1705. :ref:`bool<class_bool>` **application/boot_splash/show_image** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/boot_splash/show_image>`
  1706. If ``true``, displays the image specified in :ref:`application/boot_splash/image<class_ProjectSettings_property_application/boot_splash/image>` when the engine starts. If ``false``, only displays the plain color specified in :ref:`application/boot_splash/bg_color<class_ProjectSettings_property_application/boot_splash/bg_color>`.
  1707. .. rst-class:: classref-item-separator
  1708. ----
  1709. .. _class_ProjectSettings_property_application/boot_splash/use_filter:
  1710. .. rst-class:: classref-property
  1711. :ref:`bool<class_bool>` **application/boot_splash/use_filter** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/boot_splash/use_filter>`
  1712. If ``true``, applies linear filtering when scaling the image (recommended for high-resolution artwork). If ``false``, uses nearest-neighbor interpolation (recommended for pixel art).
  1713. .. rst-class:: classref-item-separator
  1714. ----
  1715. .. _class_ProjectSettings_property_application/config/auto_accept_quit:
  1716. .. rst-class:: classref-property
  1717. :ref:`bool<class_bool>` **application/config/auto_accept_quit** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/auto_accept_quit>`
  1718. If ``true``, the application automatically accepts quitting requests.
  1719. .. rst-class:: classref-item-separator
  1720. ----
  1721. .. _class_ProjectSettings_property_application/config/custom_user_dir_name:
  1722. .. rst-class:: classref-property
  1723. :ref:`String<class_String>` **application/config/custom_user_dir_name** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/custom_user_dir_name>`
  1724. This user directory is used for storing persistent data (``user://`` filesystem). If a custom directory name is defined, this name will be appended to the system-specific user data directory (same parent folder as the Godot configuration folder documented in :ref:`OS.get_user_data_dir<class_OS_method_get_user_data_dir>`).
  1725. The :ref:`application/config/use_custom_user_dir<class_ProjectSettings_property_application/config/use_custom_user_dir>` setting must be enabled for this to take effect.
  1726. \ **Note:** If :ref:`application/config/custom_user_dir_name<class_ProjectSettings_property_application/config/custom_user_dir_name>` contains trailing periods, they will be stripped as folder names ending with a period are not allowed on Windows.
  1727. .. rst-class:: classref-item-separator
  1728. ----
  1729. .. _class_ProjectSettings_property_application/config/description:
  1730. .. rst-class:: classref-property
  1731. :ref:`String<class_String>` **application/config/description** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/description>`
  1732. The project's description, displayed as a tooltip in the Project Manager when hovering the project.
  1733. .. rst-class:: classref-item-separator
  1734. ----
  1735. .. _class_ProjectSettings_property_application/config/icon:
  1736. .. rst-class:: classref-property
  1737. :ref:`String<class_String>` **application/config/icon** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/icon>`
  1738. Icon used for the project, set when project loads. Exporters will also use this icon as a fallback if necessary.
  1739. .. rst-class:: classref-item-separator
  1740. ----
  1741. .. _class_ProjectSettings_property_application/config/macos_native_icon:
  1742. .. rst-class:: classref-property
  1743. :ref:`String<class_String>` **application/config/macos_native_icon** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/macos_native_icon>`
  1744. Icon set in ``.icns`` format used on macOS to set the game's icon. This is done automatically on start by calling :ref:`DisplayServer.set_native_icon<class_DisplayServer_method_set_native_icon>`.
  1745. .. rst-class:: classref-item-separator
  1746. ----
  1747. .. _class_ProjectSettings_property_application/config/name:
  1748. .. rst-class:: classref-property
  1749. :ref:`String<class_String>` **application/config/name** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/name>`
  1750. The project's name. It is used both by the Project Manager and by exporters. The project name can be translated by translating its value in localization files. The window title will be set to match the project name automatically on startup.
  1751. \ **Note:** Changing this value will also change the user data folder's path if :ref:`application/config/use_custom_user_dir<class_ProjectSettings_property_application/config/use_custom_user_dir>` is ``false``. After renaming the project, you will no longer be able to access existing data in ``user://`` unless you rename the old folder to match the new project name. See :doc:`Data paths <../tutorials/io/data_paths>` in the documentation for more information.
  1752. .. rst-class:: classref-item-separator
  1753. ----
  1754. .. _class_ProjectSettings_property_application/config/name_localized:
  1755. .. rst-class:: classref-property
  1756. :ref:`Dictionary<class_Dictionary>` **application/config/name_localized** = ``{}`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/name_localized>`
  1757. Translations of the project's name. This setting is used by OS tools to translate application name on Android, iOS and macOS.
  1758. .. rst-class:: classref-item-separator
  1759. ----
  1760. .. _class_ProjectSettings_property_application/config/project_settings_override:
  1761. .. rst-class:: classref-property
  1762. :ref:`String<class_String>` **application/config/project_settings_override** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/project_settings_override>`
  1763. Specifies a file to override project settings. For example: ``user://custom_settings.cfg``. See "Overriding" in the **ProjectSettings** class description at the top for more information.
  1764. \ **Note:** Regardless of this setting's value, ``res://override.cfg`` will still be read to override the project settings.
  1765. .. rst-class:: classref-item-separator
  1766. ----
  1767. .. _class_ProjectSettings_property_application/config/quit_on_go_back:
  1768. .. rst-class:: classref-property
  1769. :ref:`bool<class_bool>` **application/config/quit_on_go_back** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/quit_on_go_back>`
  1770. If ``true``, the application quits automatically when navigating back (e.g. using the system "Back" button on Android).
  1771. .. rst-class:: classref-item-separator
  1772. ----
  1773. .. _class_ProjectSettings_property_application/config/use_custom_user_dir:
  1774. .. rst-class:: classref-property
  1775. :ref:`bool<class_bool>` **application/config/use_custom_user_dir** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/use_custom_user_dir>`
  1776. If ``true``, the project will save user data to its own user directory. If :ref:`application/config/custom_user_dir_name<class_ProjectSettings_property_application/config/custom_user_dir_name>` is empty, ``<OS user data directory>/<project name>`` directory will be used. If ``false``, the project will save user data to ``<OS user data directory>/Godot/app_userdata/<project name>``.
  1777. See also `File paths in Godot projects <../tutorials/io/data_paths.html#accessing-persistent-user-data-user>`__. This setting is only effective on desktop platforms.
  1778. .. rst-class:: classref-item-separator
  1779. ----
  1780. .. _class_ProjectSettings_property_application/config/use_hidden_project_data_directory:
  1781. .. rst-class:: classref-property
  1782. :ref:`bool<class_bool>` **application/config/use_hidden_project_data_directory** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>`
  1783. If ``true``, the project will use a hidden directory (``.godot``) for storing project-specific data (metadata, shader cache, etc.).
  1784. If ``false``, a non-hidden directory (``godot``) will be used instead.
  1785. \ **Note:** Restart the application after changing this setting.
  1786. \ **Note:** Changing this value can help on platforms or with third-party tools where hidden directory patterns are disallowed. Only modify this setting if you know that your environment requires it, as changing the default can impact compatibility with some external tools or plugins which expect the default ``.godot`` folder.
  1787. .. rst-class:: classref-item-separator
  1788. ----
  1789. .. _class_ProjectSettings_property_application/config/version:
  1790. .. rst-class:: classref-property
  1791. :ref:`String<class_String>` **application/config/version** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/version>`
  1792. The project's human-readable version identifier. This is used by exporters if the version identifier isn't overridden there. If :ref:`application/config/version<class_ProjectSettings_property_application/config/version>` is an empty string and the version identifier isn't overridden in an exporter, the exporter will use ``1.0.0`` as a version identifier.
  1793. .. rst-class:: classref-item-separator
  1794. ----
  1795. .. _class_ProjectSettings_property_application/config/windows_native_icon:
  1796. .. rst-class:: classref-property
  1797. :ref:`String<class_String>` **application/config/windows_native_icon** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/config/windows_native_icon>`
  1798. Icon set in ``.ico`` format used on Windows to set the game's icon. This is done automatically on start by calling :ref:`DisplayServer.set_native_icon<class_DisplayServer_method_set_native_icon>`.
  1799. .. rst-class:: classref-item-separator
  1800. ----
  1801. .. _class_ProjectSettings_property_application/run/delta_smoothing:
  1802. .. rst-class:: classref-property
  1803. :ref:`bool<class_bool>` **application/run/delta_smoothing** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/delta_smoothing>`
  1804. Time samples for frame deltas are subject to random variation introduced by the platform, even when frames are displayed at regular intervals thanks to V-Sync. This can lead to jitter. Delta smoothing can often give a better result by filtering the input deltas to correct for minor fluctuations from the refresh rate.
  1805. \ **Note:** Delta smoothing is only attempted when :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` is set to ``enabled``, as it does not work well without V-Sync.
  1806. It may take several seconds at a stable frame rate before the smoothing is initially activated. It will only be active on machines where performance is adequate to render frames at the refresh rate.
  1807. .. rst-class:: classref-item-separator
  1808. ----
  1809. .. _class_ProjectSettings_property_application/run/disable_stderr:
  1810. .. rst-class:: classref-property
  1811. :ref:`bool<class_bool>` **application/run/disable_stderr** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/disable_stderr>`
  1812. If ``true``, disables printing to standard error. If ``true``, this also hides error and warning messages printed by :ref:`@GlobalScope.push_error<class_@GlobalScope_method_push_error>` and :ref:`@GlobalScope.push_warning<class_@GlobalScope_method_push_warning>`. See also :ref:`application/run/disable_stdout<class_ProjectSettings_property_application/run/disable_stdout>`.
  1813. Changes to this setting will only be applied upon restarting the application.
  1814. .. rst-class:: classref-item-separator
  1815. ----
  1816. .. _class_ProjectSettings_property_application/run/disable_stdout:
  1817. .. rst-class:: classref-property
  1818. :ref:`bool<class_bool>` **application/run/disable_stdout** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/disable_stdout>`
  1819. If ``true``, disables printing to standard output. This is equivalent to starting the editor or project with the ``--quiet`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`. See also :ref:`application/run/disable_stderr<class_ProjectSettings_property_application/run/disable_stderr>`.
  1820. Changes to this setting will only be applied upon restarting the application.
  1821. .. rst-class:: classref-item-separator
  1822. ----
  1823. .. _class_ProjectSettings_property_application/run/enable_alt_space_menu:
  1824. .. rst-class:: classref-property
  1825. :ref:`bool<class_bool>` **application/run/enable_alt_space_menu** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/enable_alt_space_menu>`
  1826. If ``true``, allows the :kbd:`Alt + Space` keys to display the window menu. This menu allows the user to perform various window management operations such as moving, resizing, or minimizing the window.
  1827. \ **Note:** When the menu is displayed, project execution will pause until the menu is *fully* closed due to Windows behavior. Consider this when enabling this setting in a networked multiplayer game. The menu is only considered fully closed when an option is selected, when the user clicks outside, or when :kbd:`Escape` is pressed after bringing up the window menu *and* another key is pressed afterwards.
  1828. \ **Note:** This setting is implemented only on Windows.
  1829. .. rst-class:: classref-item-separator
  1830. ----
  1831. .. _class_ProjectSettings_property_application/run/flush_stdout_on_print:
  1832. .. rst-class:: classref-property
  1833. :ref:`bool<class_bool>` **application/run/flush_stdout_on_print** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/flush_stdout_on_print>`
  1834. If ``true``, flushes the standard output stream every time a line is printed. This affects both terminal logging and file logging.
  1835. When running a project, this setting must be enabled if you want logs to be collected by service managers such as systemd/journalctl. This setting is disabled by default on release builds, since flushing on every printed line will negatively affect performance if lots of lines are printed in a rapid succession. Also, if this setting is enabled, logged files will still be written successfully if the application crashes or is otherwise killed by the user (without being closed "normally").
  1836. \ **Note:** Regardless of this setting, the standard error stream (``stderr``) is always flushed when a line is printed to it.
  1837. Changes to this setting will only be applied upon restarting the application.
  1838. .. rst-class:: classref-item-separator
  1839. ----
  1840. .. _class_ProjectSettings_property_application/run/flush_stdout_on_print.debug:
  1841. .. rst-class:: classref-property
  1842. :ref:`bool<class_bool>` **application/run/flush_stdout_on_print.debug** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/flush_stdout_on_print.debug>`
  1843. Debug build override for :ref:`application/run/flush_stdout_on_print<class_ProjectSettings_property_application/run/flush_stdout_on_print>`, as performance is less important during debugging.
  1844. Changes to this setting will only be applied upon restarting the application.
  1845. .. rst-class:: classref-item-separator
  1846. ----
  1847. .. _class_ProjectSettings_property_application/run/frame_delay_msec:
  1848. .. rst-class:: classref-property
  1849. :ref:`int<class_int>` **application/run/frame_delay_msec** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/frame_delay_msec>`
  1850. Forces a *constant* delay between frames in the main loop (in milliseconds). In most situations, :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>` should be preferred as an FPS limiter as it's more precise.
  1851. This setting can be overridden using the ``--frame-delay <ms;>`` command line argument.
  1852. .. rst-class:: classref-item-separator
  1853. ----
  1854. .. _class_ProjectSettings_property_application/run/low_processor_mode:
  1855. .. rst-class:: classref-property
  1856. :ref:`bool<class_bool>` **application/run/low_processor_mode** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/low_processor_mode>`
  1857. If ``true``, enables low-processor usage mode. When enabled, the engine takes longer to redraw, but only redraws the screen if necessary. This may lower power consumption, and is intended for editors or mobile applications. For most games, because the screen needs to be redrawn every frame, it is recommended to keep this setting disabled.
  1858. .. rst-class:: classref-item-separator
  1859. ----
  1860. .. _class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec:
  1861. .. rst-class:: classref-property
  1862. :ref:`int<class_int>` **application/run/low_processor_mode_sleep_usec** = ``6900`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec>`
  1863. Amount of sleeping between frames when the low-processor usage mode is enabled (in microseconds). Higher values will result in lower CPU usage.
  1864. .. rst-class:: classref-item-separator
  1865. ----
  1866. .. _class_ProjectSettings_property_application/run/main_loop_type:
  1867. .. rst-class:: classref-property
  1868. :ref:`String<class_String>` **application/run/main_loop_type** = ``"SceneTree"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/main_loop_type>`
  1869. The name of the type implementing the engine's main loop.
  1870. .. rst-class:: classref-item-separator
  1871. ----
  1872. .. _class_ProjectSettings_property_application/run/main_scene:
  1873. .. rst-class:: classref-property
  1874. :ref:`String<class_String>` **application/run/main_scene** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/main_scene>`
  1875. Path to the main scene file that will be loaded when the project runs.
  1876. .. rst-class:: classref-item-separator
  1877. ----
  1878. .. _class_ProjectSettings_property_application/run/max_fps:
  1879. .. rst-class:: classref-property
  1880. :ref:`int<class_int>` **application/run/max_fps** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/max_fps>`
  1881. Maximum number of frames per second allowed. A value of ``0`` means "no limit". The actual number of frames per second may still be below this value if the CPU or GPU cannot keep up with the project logic and rendering.
  1882. Limiting the FPS can be useful to reduce system power consumption, which reduces heat and noise emissions (and improves battery life on mobile devices).
  1883. If :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` is set to ``Enabled`` or ``Adaptive``, it takes precedence and the forced FPS number cannot exceed the monitor's refresh rate.
  1884. If :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` is ``Enabled``, on monitors with variable refresh rate enabled (G-Sync/FreeSync), using an FPS limit a few frames lower than the monitor's refresh rate will `reduce input lag while avoiding tearing <https://blurbusters.com/howto-low-lag-vsync-on/>`__.
  1885. If :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` is ``Disabled``, limiting the FPS to a high value that can be consistently reached on the system can reduce input lag compared to an uncapped framerate. Since this works by ensuring the GPU load is lower than 100%, this latency reduction is only effective in GPU-bottlenecked scenarios, not CPU-bottlenecked scenarios.
  1886. See also :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`.
  1887. This setting can be overridden using the ``--max-fps <fps>`` command line argument (including with a value of ``0`` for unlimited framerate).
  1888. \ **Note:** This property is only read when the project starts. To change the rendering FPS cap at runtime, set :ref:`Engine.max_fps<class_Engine_property_max_fps>` instead.
  1889. .. rst-class:: classref-item-separator
  1890. ----
  1891. .. _class_ProjectSettings_property_application/run/print_header:
  1892. .. rst-class:: classref-property
  1893. :ref:`bool<class_bool>` **application/run/print_header** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_application/run/print_header>`
  1894. If ``true``, the engine header is printed in the console on startup. This header describes the current version of the engine, as well as the renderer being used. This behavior can also be disabled on the command line with the ``--no-header`` option.
  1895. .. rst-class:: classref-item-separator
  1896. ----
  1897. .. _class_ProjectSettings_property_audio/buses/channel_disable_threshold_db:
  1898. .. rst-class:: classref-property
  1899. :ref:`float<class_float>` **audio/buses/channel_disable_threshold_db** = ``-60.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/buses/channel_disable_threshold_db>`
  1900. Audio buses will disable automatically when sound goes below a given dB threshold for a given time. This saves CPU as effects assigned to that bus will no longer do any processing.
  1901. .. rst-class:: classref-item-separator
  1902. ----
  1903. .. _class_ProjectSettings_property_audio/buses/channel_disable_time:
  1904. .. rst-class:: classref-property
  1905. :ref:`float<class_float>` **audio/buses/channel_disable_time** = ``2.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/buses/channel_disable_time>`
  1906. Audio buses will disable automatically when sound goes below a given dB threshold for a given time. This saves CPU as effects assigned to that bus will no longer do any processing.
  1907. .. rst-class:: classref-item-separator
  1908. ----
  1909. .. _class_ProjectSettings_property_audio/buses/default_bus_layout:
  1910. .. rst-class:: classref-property
  1911. :ref:`String<class_String>` **audio/buses/default_bus_layout** = ``"res://default_bus_layout.tres"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/buses/default_bus_layout>`
  1912. Default :ref:`AudioBusLayout<class_AudioBusLayout>` resource file to use in the project, unless overridden by the scene.
  1913. .. rst-class:: classref-item-separator
  1914. ----
  1915. .. _class_ProjectSettings_property_audio/driver/driver:
  1916. .. rst-class:: classref-property
  1917. :ref:`String<class_String>` **audio/driver/driver** :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/driver/driver>`
  1918. Specifies the audio driver to use. This setting is platform-dependent as each platform supports different audio drivers. If left empty, the default audio driver will be used.
  1919. The ``Dummy`` audio driver disables all audio playback and recording, which is useful for non-game applications as it reduces CPU usage. It also prevents the engine from appearing as an application playing audio in the OS' audio mixer.
  1920. \ **Note:** The driver in use can be overridden at runtime via the ``--audio-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  1921. .. rst-class:: classref-item-separator
  1922. ----
  1923. .. _class_ProjectSettings_property_audio/driver/enable_input:
  1924. .. rst-class:: classref-property
  1925. :ref:`bool<class_bool>` **audio/driver/enable_input** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/driver/enable_input>`
  1926. If ``true``, microphone input will be allowed. This requires appropriate permissions to be set when exporting to Android or iOS.
  1927. \ **Note:** If the operating system blocks access to audio input devices (due to the user's privacy settings), audio capture will only return silence. On Windows 10 and later, make sure that apps are allowed to access the microphone in the OS' privacy settings.
  1928. .. rst-class:: classref-item-separator
  1929. ----
  1930. .. _class_ProjectSettings_property_audio/driver/mix_rate:
  1931. .. rst-class:: classref-property
  1932. :ref:`int<class_int>` **audio/driver/mix_rate** = ``44100`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/driver/mix_rate>`
  1933. The mixing rate used for audio (in Hz). In general, it's better to not touch this and leave it to the host operating system.
  1934. .. rst-class:: classref-item-separator
  1935. ----
  1936. .. _class_ProjectSettings_property_audio/driver/mix_rate.web:
  1937. .. rst-class:: classref-property
  1938. :ref:`int<class_int>` **audio/driver/mix_rate.web** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/driver/mix_rate.web>`
  1939. Safer override for :ref:`audio/driver/mix_rate<class_ProjectSettings_property_audio/driver/mix_rate>` in the Web platform. Here ``0`` means "let the browser choose" (since some browsers do not like forcing the mix rate).
  1940. .. rst-class:: classref-item-separator
  1941. ----
  1942. .. _class_ProjectSettings_property_audio/driver/output_latency:
  1943. .. rst-class:: classref-property
  1944. :ref:`int<class_int>` **audio/driver/output_latency** = ``15`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/driver/output_latency>`
  1945. Specifies the preferred output latency in milliseconds for audio. Lower values will result in lower audio latency at the cost of increased CPU usage. Low values may result in audible crackling on slower hardware.
  1946. Audio output latency may be constrained by the host operating system and audio hardware drivers. If the host can not provide the specified audio output latency then Godot will attempt to use the nearest latency allowed by the host. As such you should always use :ref:`AudioServer.get_output_latency<class_AudioServer_method_get_output_latency>` to determine the actual audio output latency.
  1947. Audio output latency can be overridden using the ``--audio-output-latency <ms>`` command line argument.
  1948. \ **Note:** This setting is ignored on Android, and on all versions of Windows prior to Windows 10.
  1949. .. rst-class:: classref-item-separator
  1950. ----
  1951. .. _class_ProjectSettings_property_audio/driver/output_latency.web:
  1952. .. rst-class:: classref-property
  1953. :ref:`int<class_int>` **audio/driver/output_latency.web** = ``50`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/driver/output_latency.web>`
  1954. Safer override for :ref:`audio/driver/output_latency<class_ProjectSettings_property_audio/driver/output_latency>` in the Web platform, to avoid audio issues especially on mobile devices.
  1955. .. rst-class:: classref-item-separator
  1956. ----
  1957. .. _class_ProjectSettings_property_audio/general/2d_panning_strength:
  1958. .. rst-class:: classref-property
  1959. :ref:`float<class_float>` **audio/general/2d_panning_strength** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/2d_panning_strength>`
  1960. The base strength of the panning effect for all :ref:`AudioStreamPlayer2D<class_AudioStreamPlayer2D>` nodes. The panning strength can be further scaled on each Node using :ref:`AudioStreamPlayer2D.panning_strength<class_AudioStreamPlayer2D_property_panning_strength>`. A value of ``0.0`` disables stereo panning entirely, leaving only volume attenuation in place. A value of ``1.0`` completely mutes one of the channels if the sound is located exactly to the left (or right) of the listener.
  1961. The default value of ``0.5`` is tuned for headphones. When using speakers, you may find lower values to sound better as speakers have a lower stereo separation compared to headphones.
  1962. .. rst-class:: classref-item-separator
  1963. ----
  1964. .. _class_ProjectSettings_property_audio/general/3d_panning_strength:
  1965. .. rst-class:: classref-property
  1966. :ref:`float<class_float>` **audio/general/3d_panning_strength** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/3d_panning_strength>`
  1967. The base strength of the panning effect for all :ref:`AudioStreamPlayer3D<class_AudioStreamPlayer3D>` nodes. The panning strength can be further scaled on each Node using :ref:`AudioStreamPlayer3D.panning_strength<class_AudioStreamPlayer3D_property_panning_strength>`. A value of ``0.0`` disables stereo panning entirely, leaving only volume attenuation in place. A value of ``1.0`` completely mutes one of the channels if the sound is located exactly to the left (or right) of the listener.
  1968. The default value of ``0.5`` is tuned for headphones. When using speakers, you may find lower values to sound better as speakers have a lower stereo separation compared to headphones.
  1969. .. rst-class:: classref-item-separator
  1970. ----
  1971. .. _class_ProjectSettings_property_audio/general/default_playback_type:
  1972. .. rst-class:: classref-property
  1973. :ref:`int<class_int>` **audio/general/default_playback_type** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/default_playback_type>`
  1974. **Experimental:** This property may be changed or removed in future versions.
  1975. Specifies the default playback type of the platform.
  1976. The default value is set to **Stream**, as most platforms have no issues mixing streams.
  1977. .. rst-class:: classref-item-separator
  1978. ----
  1979. .. _class_ProjectSettings_property_audio/general/default_playback_type.web:
  1980. .. rst-class:: classref-property
  1981. :ref:`int<class_int>` **audio/general/default_playback_type.web** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/default_playback_type.web>`
  1982. **Experimental:** This property may be changed or removed in future versions.
  1983. Specifies the default playback type of the Web platform.
  1984. The default value is set to **Sample** as the Web platform is not suited to mix audio streams outside of the Web Audio API, especially when exporting a single-threaded game. **Sample** allows for lower latency on the web platform at the cost of flexibility (:ref:`AudioEffect<class_AudioEffect>`\ s are not supported).
  1985. \ **Warning:** Forcing **Stream** on the Web platform may cause high audio latency and crackling, especially when exporting a multi-threaded game.
  1986. .. rst-class:: classref-item-separator
  1987. ----
  1988. .. _class_ProjectSettings_property_audio/general/ios/mix_with_others:
  1989. .. rst-class:: classref-property
  1990. :ref:`bool<class_bool>` **audio/general/ios/mix_with_others** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/ios/mix_with_others>`
  1991. Sets the `mixWithOthers <https://developer.apple.com/documentation/avfaudio/avaudiosession/categoryoptions/1616611-mixwithothers>`__ option for the AVAudioSession on iOS. This will override the mix behavior, if the category is set to ``Play and Record``, ``Playback``, or ``Multi Route``.
  1992. \ ``Ambient`` always has this set per default.
  1993. .. rst-class:: classref-item-separator
  1994. ----
  1995. .. _class_ProjectSettings_property_audio/general/ios/session_category:
  1996. .. rst-class:: classref-property
  1997. :ref:`int<class_int>` **audio/general/ios/session_category** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/ios/session_category>`
  1998. Sets the `AVAudioSessionCategory <https://developer.apple.com/documentation/avfaudio/avaudiosessioncategory>`__ on iOS. Use the ``Playback`` category to get sound output, even if the phone is in silent mode.
  1999. .. rst-class:: classref-item-separator
  2000. ----
  2001. .. _class_ProjectSettings_property_audio/general/text_to_speech:
  2002. .. rst-class:: classref-property
  2003. :ref:`bool<class_bool>` **audio/general/text_to_speech** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/general/text_to_speech>`
  2004. If ``true``, text-to-speech support is enabled, see :ref:`DisplayServer.tts_get_voices<class_DisplayServer_method_tts_get_voices>` and :ref:`DisplayServer.tts_speak<class_DisplayServer_method_tts_speak>`.
  2005. \ **Note:** Enabling TTS can cause addition idle CPU usage and interfere with the sleep mode, so consider disabling it if TTS is not used.
  2006. .. rst-class:: classref-item-separator
  2007. ----
  2008. .. _class_ProjectSettings_property_audio/video/video_delay_compensation_ms:
  2009. .. rst-class:: classref-property
  2010. :ref:`int<class_int>` **audio/video/video_delay_compensation_ms** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_audio/video/video_delay_compensation_ms>`
  2011. Setting to hardcode audio delay when playing video. Best to leave this unchanged unless you know what you are doing.
  2012. .. rst-class:: classref-item-separator
  2013. ----
  2014. .. _class_ProjectSettings_property_collada/use_ambient:
  2015. .. rst-class:: classref-property
  2016. :ref:`bool<class_bool>` **collada/use_ambient** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_collada/use_ambient>`
  2017. If ``true``, ambient lights will be imported from COLLADA models as :ref:`DirectionalLight3D<class_DirectionalLight3D>`. If ``false``, ambient lights will be ignored.
  2018. .. rst-class:: classref-item-separator
  2019. ----
  2020. .. _class_ProjectSettings_property_compression/formats/gzip/compression_level:
  2021. .. rst-class:: classref-property
  2022. :ref:`int<class_int>` **compression/formats/gzip/compression_level** = ``-1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_compression/formats/gzip/compression_level>`
  2023. The default compression level for gzip. Affects compressed scenes and resources. Higher levels result in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression level. ``-1`` uses the default gzip compression level, which is identical to ``6`` but could change in the future due to underlying zlib updates.
  2024. .. rst-class:: classref-item-separator
  2025. ----
  2026. .. _class_ProjectSettings_property_compression/formats/zlib/compression_level:
  2027. .. rst-class:: classref-property
  2028. :ref:`int<class_int>` **compression/formats/zlib/compression_level** = ``-1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_compression/formats/zlib/compression_level>`
  2029. The default compression level for Zlib. Affects compressed scenes and resources. Higher levels result in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression level. ``-1`` uses the default gzip compression level, which is identical to ``6`` but could change in the future due to underlying zlib updates.
  2030. .. rst-class:: classref-item-separator
  2031. ----
  2032. .. _class_ProjectSettings_property_compression/formats/zstd/compression_level:
  2033. .. rst-class:: classref-property
  2034. :ref:`int<class_int>` **compression/formats/zstd/compression_level** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_compression/formats/zstd/compression_level>`
  2035. The default compression level for Zstandard. Affects compressed scenes and resources. Higher levels result in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression level.
  2036. .. rst-class:: classref-item-separator
  2037. ----
  2038. .. _class_ProjectSettings_property_compression/formats/zstd/long_distance_matching:
  2039. .. rst-class:: classref-property
  2040. :ref:`bool<class_bool>` **compression/formats/zstd/long_distance_matching** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_compression/formats/zstd/long_distance_matching>`
  2041. Enables `long-distance matching <https://github.com/facebook/zstd/releases/tag/v1.3.2>`__ in Zstandard.
  2042. .. rst-class:: classref-item-separator
  2043. ----
  2044. .. _class_ProjectSettings_property_compression/formats/zstd/window_log_size:
  2045. .. rst-class:: classref-property
  2046. :ref:`int<class_int>` **compression/formats/zstd/window_log_size** = ``27`` :ref:`๐Ÿ”—<class_ProjectSettings_property_compression/formats/zstd/window_log_size>`
  2047. Largest size limit (in power of 2) allowed when compressing using long-distance matching with Zstandard. Higher values can result in better compression, but will require more memory when compressing and decompressing.
  2048. .. rst-class:: classref-item-separator
  2049. ----
  2050. .. _class_ProjectSettings_property_debug/canvas_items/debug_redraw_color:
  2051. .. rst-class:: classref-property
  2052. :ref:`Color<class_Color>` **debug/canvas_items/debug_redraw_color** = ``Color(1, 0.2, 0.2, 0.5)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/canvas_items/debug_redraw_color>`
  2053. If canvas item redraw debugging is active, this color will be flashed on canvas items when they redraw.
  2054. .. rst-class:: classref-item-separator
  2055. ----
  2056. .. _class_ProjectSettings_property_debug/canvas_items/debug_redraw_time:
  2057. .. rst-class:: classref-property
  2058. :ref:`float<class_float>` **debug/canvas_items/debug_redraw_time** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/canvas_items/debug_redraw_time>`
  2059. If canvas item redraw debugging is active, this will be the time the flash will last each time they redraw.
  2060. .. rst-class:: classref-item-separator
  2061. ----
  2062. .. _class_ProjectSettings_property_debug/file_logging/enable_file_logging:
  2063. .. rst-class:: classref-property
  2064. :ref:`bool<class_bool>` **debug/file_logging/enable_file_logging** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/file_logging/enable_file_logging>`
  2065. If ``true``, logs all output and error messages to files. See also :ref:`debug/file_logging/log_path<class_ProjectSettings_property_debug/file_logging/log_path>`, :ref:`debug/file_logging/max_log_files<class_ProjectSettings_property_debug/file_logging/max_log_files>`, and :ref:`application/run/flush_stdout_on_print<class_ProjectSettings_property_application/run/flush_stdout_on_print>`.
  2066. .. rst-class:: classref-item-separator
  2067. ----
  2068. .. _class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc:
  2069. .. rst-class:: classref-property
  2070. :ref:`bool<class_bool>` **debug/file_logging/enable_file_logging.pc** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc>`
  2071. Desktop override for :ref:`debug/file_logging/enable_file_logging<class_ProjectSettings_property_debug/file_logging/enable_file_logging>`, as log files are not readily accessible on mobile/Web platforms.
  2072. .. rst-class:: classref-item-separator
  2073. ----
  2074. .. _class_ProjectSettings_property_debug/file_logging/log_path:
  2075. .. rst-class:: classref-property
  2076. :ref:`String<class_String>` **debug/file_logging/log_path** = ``"user://logs/godot.log"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/file_logging/log_path>`
  2077. Path at which to store log files for the project. Using a path under ``user://`` is recommended.
  2078. This can be specified manually on the command line using the ``--log-file <file>`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`. If this command line argument is specified, log rotation is automatically disabled (see :ref:`debug/file_logging/max_log_files<class_ProjectSettings_property_debug/file_logging/max_log_files>`).
  2079. .. rst-class:: classref-item-separator
  2080. ----
  2081. .. _class_ProjectSettings_property_debug/file_logging/max_log_files:
  2082. .. rst-class:: classref-property
  2083. :ref:`int<class_int>` **debug/file_logging/max_log_files** = ``5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/file_logging/max_log_files>`
  2084. Specifies the maximum number of log files allowed (used for rotation). Set to ``1`` to disable log file rotation.
  2085. If the ``--log-file <file>`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>` is used, log rotation is always disabled.
  2086. .. rst-class:: classref-item-separator
  2087. ----
  2088. .. _class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false:
  2089. .. rst-class:: classref-property
  2090. :ref:`int<class_int>` **debug/gdscript/warnings/assert_always_false** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false>`
  2091. When set to ``warn`` or ``error``, produces a warning or an error respectively when an ``assert`` call always evaluates to false.
  2092. .. rst-class:: classref-item-separator
  2093. ----
  2094. .. _class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true:
  2095. .. rst-class:: classref-property
  2096. :ref:`int<class_int>` **debug/gdscript/warnings/assert_always_true** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true>`
  2097. When set to ``warn`` or ``error``, produces a warning or an error respectively when an ``assert`` call always evaluates to true.
  2098. .. rst-class:: classref-item-separator
  2099. ----
  2100. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_capture_reassignment:
  2101. .. rst-class:: classref-property
  2102. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_capture_reassignment** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/confusable_capture_reassignment>`
  2103. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local variable captured by a lambda is reassigned, since this does not modify the outer local variable.
  2104. .. rst-class:: classref-item-separator
  2105. ----
  2106. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier:
  2107. .. rst-class:: classref-property
  2108. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_identifier** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier>`
  2109. When set to ``warn`` or ``error``, produces a warning or an error respectively when an identifier contains characters that can be confused with something else, like when mixing different alphabets.
  2110. .. rst-class:: classref-item-separator
  2111. ----
  2112. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration:
  2113. .. rst-class:: classref-property
  2114. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_local_declaration** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration>`
  2115. When set to ``warn`` or ``error``, produces a warning or an error respectively when an identifier declared in the nested block has the same name as an identifier declared below in the parent block.
  2116. .. rst-class:: classref-item-separator
  2117. ----
  2118. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage:
  2119. .. rst-class:: classref-property
  2120. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_local_usage** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage>`
  2121. When set to ``warn`` or ``error``, produces a warning or an error respectively when an identifier that will be shadowed below in the block is used.
  2122. .. rst-class:: classref-item-separator
  2123. ----
  2124. .. _class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function:
  2125. .. rst-class:: classref-property
  2126. :ref:`int<class_int>` **debug/gdscript/warnings/constant_used_as_function** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function>`
  2127. **Deprecated:** This warning is never produced. Instead, an error is generated if the expression type is known at compile time.
  2128. When set to ``warn`` or ``error``, produces a warning or an error respectively when a constant is used as a function.
  2129. .. rst-class:: classref-item-separator
  2130. ----
  2131. .. _class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword:
  2132. .. rst-class:: classref-property
  2133. :ref:`int<class_int>` **debug/gdscript/warnings/deprecated_keyword** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword>`
  2134. When set to ``warn`` or ``error``, produces a warning or an error respectively when deprecated keywords are used.
  2135. \ **Note:** There are currently no deprecated keywords, so this warning is never produced.
  2136. .. rst-class:: classref-item-separator
  2137. ----
  2138. .. _class_ProjectSettings_property_debug/gdscript/warnings/empty_file:
  2139. .. rst-class:: classref-property
  2140. :ref:`int<class_int>` **debug/gdscript/warnings/empty_file** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/empty_file>`
  2141. When set to ``warn`` or ``error``, produces a warning or an error respectively when an empty file is parsed.
  2142. .. rst-class:: classref-item-separator
  2143. ----
  2144. .. _class_ProjectSettings_property_debug/gdscript/warnings/enable:
  2145. .. rst-class:: classref-property
  2146. :ref:`bool<class_bool>` **debug/gdscript/warnings/enable** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/enable>`
  2147. If ``true``, enables specific GDScript warnings (see ``debug/gdscript/warnings/*`` settings). If ``false``, disables all GDScript warnings.
  2148. .. rst-class:: classref-item-separator
  2149. ----
  2150. .. _class_ProjectSettings_property_debug/gdscript/warnings/enum_variable_without_default:
  2151. .. rst-class:: classref-property
  2152. :ref:`int<class_int>` **debug/gdscript/warnings/enum_variable_without_default** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/enum_variable_without_default>`
  2153. When set to ``warn`` or ``error``, produces a warning or an error respectively when a variable has an enum type but no explicit default value, but only if the enum does not contain ``0`` as a valid value.
  2154. .. rst-class:: classref-item-separator
  2155. ----
  2156. .. _class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons:
  2157. .. rst-class:: classref-property
  2158. :ref:`bool<class_bool>` **debug/gdscript/warnings/exclude_addons** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons>`
  2159. If ``true``, scripts in the ``res://addons`` folder will not generate warnings.
  2160. .. rst-class:: classref-item-separator
  2161. ----
  2162. .. _class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property:
  2163. .. rst-class:: classref-property
  2164. :ref:`int<class_int>` **debug/gdscript/warnings/function_used_as_property** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property>`
  2165. **Deprecated:** This warning is never produced. When a function is used as a property, a :ref:`Callable<class_Callable>` is returned.
  2166. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a function as if it is a property.
  2167. .. rst-class:: classref-item-separator
  2168. ----
  2169. .. _class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready:
  2170. .. rst-class:: classref-property
  2171. :ref:`int<class_int>` **debug/gdscript/warnings/get_node_default_without_onready** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready>`
  2172. When set to ``warn`` or ``error``, produces a warning or an error respectively when :ref:`Node.get_node<class_Node_method_get_node>` (or the shorthand ``$``) is used as default value of a class variable without the ``@onready`` annotation.
  2173. .. rst-class:: classref-item-separator
  2174. ----
  2175. .. _class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary:
  2176. .. rst-class:: classref-property
  2177. :ref:`int<class_int>` **debug/gdscript/warnings/incompatible_ternary** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary>`
  2178. When set to ``warn`` or ``error``, produces a warning or an error respectively when a ternary operator may emit values with incompatible types.
  2179. .. rst-class:: classref-item-separator
  2180. ----
  2181. .. _class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant:
  2182. .. rst-class:: classref-property
  2183. :ref:`int<class_int>` **debug/gdscript/warnings/inference_on_variant** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant>`
  2184. When set to ``warn`` or ``error``, produces a warning or an error respectively when a static inferred type uses a :ref:`Variant<class_Variant>` as initial value, which makes the static type to also be Variant.
  2185. .. rst-class:: classref-item-separator
  2186. ----
  2187. .. _class_ProjectSettings_property_debug/gdscript/warnings/inferred_declaration:
  2188. .. rst-class:: classref-property
  2189. :ref:`int<class_int>` **debug/gdscript/warnings/inferred_declaration** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/inferred_declaration>`
  2190. When set to ``warn`` or ``error``, produces a warning or an error respectively when a variable, constant, or parameter has an implicitly inferred static type.
  2191. \ **Note:** This warning is recommended *in addition* to :ref:`debug/gdscript/warnings/untyped_declaration<class_ProjectSettings_property_debug/gdscript/warnings/untyped_declaration>` if you want to always specify the type explicitly. Having ``INFERRED_DECLARATION`` warning level higher than ``UNTYPED_DECLARATION`` warning level makes little sense and is not recommended.
  2192. .. rst-class:: classref-item-separator
  2193. ----
  2194. .. _class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast:
  2195. .. rst-class:: classref-property
  2196. :ref:`int<class_int>` **debug/gdscript/warnings/int_as_enum_without_cast** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast>`
  2197. When set to ``warn`` or ``error``, produces a warning or an error respectively when trying to use an integer as an enum without an explicit cast.
  2198. .. rst-class:: classref-item-separator
  2199. ----
  2200. .. _class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match:
  2201. .. rst-class:: classref-property
  2202. :ref:`int<class_int>` **debug/gdscript/warnings/int_as_enum_without_match** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match>`
  2203. When set to ``warn`` or ``error``, produces a warning or an error respectively when trying to use an integer as an enum when there is no matching enum member for that numeric value.
  2204. .. rst-class:: classref-item-separator
  2205. ----
  2206. .. _class_ProjectSettings_property_debug/gdscript/warnings/integer_division:
  2207. .. rst-class:: classref-property
  2208. :ref:`int<class_int>` **debug/gdscript/warnings/integer_division** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/integer_division>`
  2209. When set to ``warn`` or ``error``, produces a warning or an error respectively when dividing an integer by another integer (the decimal part will be discarded).
  2210. .. rst-class:: classref-item-separator
  2211. ----
  2212. .. _class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion:
  2213. .. rst-class:: classref-property
  2214. :ref:`int<class_int>` **debug/gdscript/warnings/narrowing_conversion** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion>`
  2215. When set to ``warn`` or ``error``, produces a warning or an error respectively when passing a floating-point value to a function that expects an integer (it will be converted and lose precision).
  2216. .. rst-class:: classref-item-separator
  2217. ----
  2218. .. _class_ProjectSettings_property_debug/gdscript/warnings/native_method_override:
  2219. .. rst-class:: classref-property
  2220. :ref:`int<class_int>` **debug/gdscript/warnings/native_method_override** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/native_method_override>`
  2221. When set to ``warn`` or ``error``, produces a warning or an error respectively when a method in the script overrides a native method, because it may not behave as expected.
  2222. .. rst-class:: classref-item-separator
  2223. ----
  2224. .. _class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export:
  2225. .. rst-class:: classref-property
  2226. :ref:`int<class_int>` **debug/gdscript/warnings/onready_with_export** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export>`
  2227. When set to ``warn`` or ``error``, produces a warning or an error respectively when the ``@onready`` annotation is used together with the ``@export`` annotation, since it may not behave as expected.
  2228. .. rst-class:: classref-item-separator
  2229. ----
  2230. .. _class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function:
  2231. .. rst-class:: classref-property
  2232. :ref:`int<class_int>` **debug/gdscript/warnings/property_used_as_function** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function>`
  2233. **Deprecated:** This warning is never produced. Instead, an error is generated if the expression type is known at compile time.
  2234. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a property as if it is a function.
  2235. .. rst-class:: classref-item-separator
  2236. ----
  2237. .. _class_ProjectSettings_property_debug/gdscript/warnings/redundant_await:
  2238. .. rst-class:: classref-property
  2239. :ref:`int<class_int>` **debug/gdscript/warnings/redundant_await** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/redundant_await>`
  2240. When set to ``warn`` or ``error``, produces a warning or an error respectively when a function that is not a coroutine is called with await.
  2241. .. rst-class:: classref-item-separator
  2242. ----
  2243. .. _class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload:
  2244. .. rst-class:: classref-property
  2245. :ref:`int<class_int>` **debug/gdscript/warnings/redundant_static_unload** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload>`
  2246. When set to ``warn`` or ``error``, produces a warning or an error respectively when the ``@static_unload`` annotation is used in a script without any static variables.
  2247. .. rst-class:: classref-item-separator
  2248. ----
  2249. .. _class_ProjectSettings_property_debug/gdscript/warnings/renamed_in_godot_4_hint:
  2250. .. rst-class:: classref-property
  2251. :ref:`bool<class_bool>` **debug/gdscript/warnings/renamed_in_godot_4_hint** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/renamed_in_godot_4_hint>`
  2252. When enabled, using a property, enum, or function that was renamed since Godot 3 will produce a hint if an error occurs.
  2253. .. rst-class:: classref-item-separator
  2254. ----
  2255. .. _class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded:
  2256. .. rst-class:: classref-property
  2257. :ref:`int<class_int>` **debug/gdscript/warnings/return_value_discarded** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded>`
  2258. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling a function without using its return value (by assigning it to a variable or using it as a function argument). These return values are sometimes used to indicate possible errors using the :ref:`Error<enum_@GlobalScope_Error>` enum.
  2259. .. rst-class:: classref-item-separator
  2260. ----
  2261. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier:
  2262. .. rst-class:: classref-property
  2263. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_global_identifier** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier>`
  2264. When set to ``warn`` or ``error``, produces a warning or an error respectively when defining a local or member variable, signal, or enum that would have the same name as a built-in function or global class name, thus shadowing it.
  2265. .. rst-class:: classref-item-separator
  2266. ----
  2267. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable:
  2268. .. rst-class:: classref-property
  2269. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_variable** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable>`
  2270. When set to ``warn`` or ``error``, produces a warning or an error respectively when defining a local or member variable that would shadow a member variable that the class defines.
  2271. .. rst-class:: classref-item-separator
  2272. ----
  2273. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class:
  2274. .. rst-class:: classref-property
  2275. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_variable_base_class** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class>`
  2276. When set to ``warn`` or ``error``, produces a warning or an error respectively when defining a local or subclass member variable that would shadow a variable that is inherited from a parent class.
  2277. .. rst-class:: classref-item-separator
  2278. ----
  2279. .. _class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression:
  2280. .. rst-class:: classref-property
  2281. :ref:`int<class_int>` **debug/gdscript/warnings/standalone_expression** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression>`
  2282. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling an expression that may have no effect on the surrounding code, such as writing ``2 + 2`` as a statement.
  2283. .. rst-class:: classref-item-separator
  2284. ----
  2285. .. _class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary:
  2286. .. rst-class:: classref-property
  2287. :ref:`int<class_int>` **debug/gdscript/warnings/standalone_ternary** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary>`
  2288. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling a ternary expression that may have no effect on the surrounding code, such as writing ``42 if active else 0`` as a statement.
  2289. .. rst-class:: classref-item-separator
  2290. ----
  2291. .. _class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance:
  2292. .. rst-class:: classref-property
  2293. :ref:`int<class_int>` **debug/gdscript/warnings/static_called_on_instance** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance>`
  2294. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling a static method from an instance of a class instead of from the class directly.
  2295. .. rst-class:: classref-item-separator
  2296. ----
  2297. .. _class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable:
  2298. .. rst-class:: classref-property
  2299. :ref:`int<class_int>` **debug/gdscript/warnings/unassigned_variable** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable>`
  2300. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a variable that wasn't previously assigned.
  2301. .. rst-class:: classref-item-separator
  2302. ----
  2303. .. _class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign:
  2304. .. rst-class:: classref-property
  2305. :ref:`int<class_int>` **debug/gdscript/warnings/unassigned_variable_op_assign** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign>`
  2306. When set to ``warn`` or ``error``, produces a warning or an error respectively when assigning a variable using an assignment operator like ``+=`` if the variable wasn't previously assigned.
  2307. .. rst-class:: classref-item-separator
  2308. ----
  2309. .. _class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code:
  2310. .. rst-class:: classref-property
  2311. :ref:`int<class_int>` **debug/gdscript/warnings/unreachable_code** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code>`
  2312. When set to ``warn`` or ``error``, produces a warning or an error respectively when unreachable code is detected (such as after a ``return`` statement that will always be executed).
  2313. .. rst-class:: classref-item-separator
  2314. ----
  2315. .. _class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern:
  2316. .. rst-class:: classref-property
  2317. :ref:`int<class_int>` **debug/gdscript/warnings/unreachable_pattern** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern>`
  2318. When set to ``warn`` or ``error``, produces a warning or an error respectively when an unreachable ``match`` pattern is detected.
  2319. .. rst-class:: classref-item-separator
  2320. ----
  2321. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument:
  2322. .. rst-class:: classref-property
  2323. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_call_argument** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument>`
  2324. When set to ``warn`` or ``error``, produces a warning or an error respectively when using an expression whose type may not be compatible with the function parameter expected.
  2325. .. rst-class:: classref-item-separator
  2326. ----
  2327. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast:
  2328. .. rst-class:: classref-property
  2329. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_cast** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast>`
  2330. When set to ``warn`` or ``error``, produces a warning or an error respectively when a :ref:`Variant<class_Variant>` value is cast to a non-Variant.
  2331. .. rst-class:: classref-item-separator
  2332. ----
  2333. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access:
  2334. .. rst-class:: classref-property
  2335. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_method_access** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access>`
  2336. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling a method whose presence is not guaranteed at compile-time in the class.
  2337. .. rst-class:: classref-item-separator
  2338. ----
  2339. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access:
  2340. .. rst-class:: classref-property
  2341. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_property_access** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access>`
  2342. When set to ``warn`` or ``error``, produces a warning or an error respectively when accessing a property whose presence is not guaranteed at compile-time in the class.
  2343. .. rst-class:: classref-item-separator
  2344. ----
  2345. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return:
  2346. .. rst-class:: classref-property
  2347. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_void_return** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return>`
  2348. When set to ``warn`` or ``error``, produces a warning or an error respectively when returning a call from a ``void`` function when such call cannot be guaranteed to be also ``void``.
  2349. .. rst-class:: classref-item-separator
  2350. ----
  2351. .. _class_ProjectSettings_property_debug/gdscript/warnings/untyped_declaration:
  2352. .. rst-class:: classref-property
  2353. :ref:`int<class_int>` **debug/gdscript/warnings/untyped_declaration** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/untyped_declaration>`
  2354. When set to ``warn`` or ``error``, produces a warning or an error respectively when a variable or parameter has no static type, or if a function has no static return type.
  2355. \ **Note:** This warning is recommended together with :ref:`EditorSettings.text_editor/completion/add_type_hints<class_EditorSettings_property_text_editor/completion/add_type_hints>` to help achieve type safety.
  2356. .. rst-class:: classref-item-separator
  2357. ----
  2358. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant:
  2359. .. rst-class:: classref-property
  2360. :ref:`int<class_int>` **debug/gdscript/warnings/unused_local_constant** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant>`
  2361. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local constant is never used.
  2362. .. rst-class:: classref-item-separator
  2363. ----
  2364. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter:
  2365. .. rst-class:: classref-property
  2366. :ref:`int<class_int>` **debug/gdscript/warnings/unused_parameter** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter>`
  2367. When set to ``warn`` or ``error``, produces a warning or an error respectively when a function parameter is never used.
  2368. .. rst-class:: classref-item-separator
  2369. ----
  2370. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable:
  2371. .. rst-class:: classref-property
  2372. :ref:`int<class_int>` **debug/gdscript/warnings/unused_private_class_variable** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable>`
  2373. When set to ``warn`` or ``error``, produces a warning or an error respectively when a private member variable is never used.
  2374. .. rst-class:: classref-item-separator
  2375. ----
  2376. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_signal:
  2377. .. rst-class:: classref-property
  2378. :ref:`int<class_int>` **debug/gdscript/warnings/unused_signal** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unused_signal>`
  2379. When set to ``warn`` or ``error``, produces a warning or an error respectively when a signal is declared but never explicitly used in the class.
  2380. .. rst-class:: classref-item-separator
  2381. ----
  2382. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_variable:
  2383. .. rst-class:: classref-property
  2384. :ref:`int<class_int>` **debug/gdscript/warnings/unused_variable** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/gdscript/warnings/unused_variable>`
  2385. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local variable is unused.
  2386. .. rst-class:: classref-item-separator
  2387. ----
  2388. .. _class_ProjectSettings_property_debug/settings/crash_handler/message:
  2389. .. rst-class:: classref-property
  2390. :ref:`String<class_String>` **debug/settings/crash_handler/message** = ``"Please include this when reporting the bug to the project developer."`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/crash_handler/message>`
  2391. Message to be displayed before the backtrace when the engine crashes. By default, this message is only used in exported projects due to the editor-only override applied to this setting.
  2392. .. rst-class:: classref-item-separator
  2393. ----
  2394. .. _class_ProjectSettings_property_debug/settings/crash_handler/message.editor:
  2395. .. rst-class:: classref-property
  2396. :ref:`String<class_String>` **debug/settings/crash_handler/message.editor** = ``"Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/crash_handler/message.editor>`
  2397. Editor-only override for :ref:`debug/settings/crash_handler/message<class_ProjectSettings_property_debug/settings/crash_handler/message>`. Does not affect exported projects in debug or release mode.
  2398. .. rst-class:: classref-item-separator
  2399. ----
  2400. .. _class_ProjectSettings_property_debug/settings/gdscript/max_call_stack:
  2401. .. rst-class:: classref-property
  2402. :ref:`int<class_int>` **debug/settings/gdscript/max_call_stack** = ``1024`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/gdscript/max_call_stack>`
  2403. Maximum call stack allowed for debugging GDScript.
  2404. .. rst-class:: classref-item-separator
  2405. ----
  2406. .. _class_ProjectSettings_property_debug/settings/profiler/max_functions:
  2407. .. rst-class:: classref-property
  2408. :ref:`int<class_int>` **debug/settings/profiler/max_functions** = ``16384`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/profiler/max_functions>`
  2409. Maximum number of functions per frame allowed when profiling.
  2410. .. rst-class:: classref-item-separator
  2411. ----
  2412. .. _class_ProjectSettings_property_debug/settings/stdout/print_fps:
  2413. .. rst-class:: classref-property
  2414. :ref:`bool<class_bool>` **debug/settings/stdout/print_fps** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/stdout/print_fps>`
  2415. Print frames per second to standard output every second.
  2416. .. rst-class:: classref-item-separator
  2417. ----
  2418. .. _class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile:
  2419. .. rst-class:: classref-property
  2420. :ref:`bool<class_bool>` **debug/settings/stdout/print_gpu_profile** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile>`
  2421. Print GPU profile information to standard output every second. This includes how long each frame takes the GPU to render on average, broken down into different steps of the render pipeline, such as CanvasItems, shadows, glow, etc.
  2422. .. rst-class:: classref-item-separator
  2423. ----
  2424. .. _class_ProjectSettings_property_debug/settings/stdout/verbose_stdout:
  2425. .. rst-class:: classref-property
  2426. :ref:`bool<class_bool>` **debug/settings/stdout/verbose_stdout** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/settings/stdout/verbose_stdout>`
  2427. Print more information to standard output when running. It displays information such as memory leaks, which scenes and resources are being loaded, etc. This can also be enabled using the ``--verbose`` or ``-v`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`, even on an exported project. See also :ref:`OS.is_stdout_verbose<class_OS_method_is_stdout_verbose>` and :ref:`@GlobalScope.print_verbose<class_@GlobalScope_method_print_verbose>`.
  2428. .. rst-class:: classref-item-separator
  2429. ----
  2430. .. _class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded:
  2431. .. rst-class:: classref-property
  2432. :ref:`bool<class_bool>` **debug/shader_language/warnings/device_limit_exceeded** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded>`
  2433. When set to ``true``, produces a warning when the shader exceeds certain device limits. Currently, the only device limit checked is the limit on uniform buffer size. More device limits will be added in the future.
  2434. .. rst-class:: classref-item-separator
  2435. ----
  2436. .. _class_ProjectSettings_property_debug/shader_language/warnings/enable:
  2437. .. rst-class:: classref-property
  2438. :ref:`bool<class_bool>` **debug/shader_language/warnings/enable** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/enable>`
  2439. If ``true``, enables specific shader warnings (see ``debug/shader_language/warnings/*`` settings). If ``false``, disables all shader warnings.
  2440. .. rst-class:: classref-item-separator
  2441. ----
  2442. .. _class_ProjectSettings_property_debug/shader_language/warnings/float_comparison:
  2443. .. rst-class:: classref-property
  2444. :ref:`bool<class_bool>` **debug/shader_language/warnings/float_comparison** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/float_comparison>`
  2445. When set to ``true``, produces a warning when two floating-point numbers are compared directly with the ``==`` operator or the ``!=`` operator.
  2446. .. rst-class:: classref-item-separator
  2447. ----
  2448. .. _class_ProjectSettings_property_debug/shader_language/warnings/formatting_error:
  2449. .. rst-class:: classref-property
  2450. :ref:`bool<class_bool>` **debug/shader_language/warnings/formatting_error** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/formatting_error>`
  2451. When set to ``true``, produces a warning upon encountering certain formatting errors. Currently this only checks for empty statements. More formatting errors may be added over time.
  2452. .. rst-class:: classref-item-separator
  2453. ----
  2454. .. _class_ProjectSettings_property_debug/shader_language/warnings/magic_position_write:
  2455. .. rst-class:: classref-property
  2456. :ref:`bool<class_bool>` **debug/shader_language/warnings/magic_position_write** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/magic_position_write>`
  2457. When set to ``true``, produces a warning when the shader contains ``POSITION = vec4(vertex,`` as this was very common code written in Godot 4.2 and earlier that was paired with a QuadMesh to produce a full screen post processes pass. With the switch to reversed z in 4.3, this trick no longer works, as it implicitly relied on the ``VERTEX.z`` being 0.
  2458. .. rst-class:: classref-item-separator
  2459. ----
  2460. .. _class_ProjectSettings_property_debug/shader_language/warnings/treat_warnings_as_errors:
  2461. .. rst-class:: classref-property
  2462. :ref:`bool<class_bool>` **debug/shader_language/warnings/treat_warnings_as_errors** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/treat_warnings_as_errors>`
  2463. When set to ``true``, warnings are treated as errors.
  2464. .. rst-class:: classref-item-separator
  2465. ----
  2466. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_constant:
  2467. .. rst-class:: classref-property
  2468. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_constant** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/unused_constant>`
  2469. When set to ``true``, produces a warning when a constant is never used.
  2470. .. rst-class:: classref-item-separator
  2471. ----
  2472. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_function:
  2473. .. rst-class:: classref-property
  2474. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_function** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/unused_function>`
  2475. When set to ``true``, produces a warning when a function is never used.
  2476. .. rst-class:: classref-item-separator
  2477. ----
  2478. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable:
  2479. .. rst-class:: classref-property
  2480. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_local_variable** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable>`
  2481. When set to ``true``, produces a warning when a local variable is never used.
  2482. .. rst-class:: classref-item-separator
  2483. ----
  2484. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_struct:
  2485. .. rst-class:: classref-property
  2486. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_struct** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/unused_struct>`
  2487. When set to ``true``, produces a warning when a struct is never used.
  2488. .. rst-class:: classref-item-separator
  2489. ----
  2490. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform:
  2491. .. rst-class:: classref-property
  2492. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_uniform** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform>`
  2493. When set to ``true``, produces a warning when a uniform is never used.
  2494. .. rst-class:: classref-item-separator
  2495. ----
  2496. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_varying:
  2497. .. rst-class:: classref-property
  2498. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_varying** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shader_language/warnings/unused_varying>`
  2499. When set to ``true``, produces a warning when a varying is never used.
  2500. .. rst-class:: classref-item-separator
  2501. ----
  2502. .. _class_ProjectSettings_property_debug/shapes/avoidance/agents_radius_color:
  2503. .. rst-class:: classref-property
  2504. :ref:`Color<class_Color>` **debug/shapes/avoidance/agents_radius_color** = ``Color(1, 1, 0, 0.25)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/agents_radius_color>`
  2505. Color of the avoidance agents radius, visible when "Visible Avoidance" is enabled in the Debug menu.
  2506. .. rst-class:: classref-item-separator
  2507. ----
  2508. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius:
  2509. .. rst-class:: classref-property
  2510. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_agents_radius** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius>`
  2511. If enabled, displays avoidance agents radius when "Visible Avoidance" is enabled in the Debug menu.
  2512. .. rst-class:: classref-item-separator
  2513. ----
  2514. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius:
  2515. .. rst-class:: classref-property
  2516. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_obstacles_radius** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius>`
  2517. If enabled, displays avoidance obstacles radius when "Visible Avoidance" is enabled in the Debug menu.
  2518. .. rst-class:: classref-item-separator
  2519. ----
  2520. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static:
  2521. .. rst-class:: classref-property
  2522. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_obstacles_static** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static>`
  2523. If enabled, displays static avoidance obstacles when "Visible Avoidance" is enabled in the Debug menu.
  2524. .. rst-class:: classref-item-separator
  2525. ----
  2526. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_radius_color:
  2527. .. rst-class:: classref-property
  2528. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_radius_color** = ``Color(1, 0.5, 0, 0.25)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_radius_color>`
  2529. Color of the avoidance obstacles radius, visible when "Visible Avoidance" is enabled in the Debug menu.
  2530. .. rst-class:: classref-item-separator
  2531. ----
  2532. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushin_color:
  2533. .. rst-class:: classref-property
  2534. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_edge_pushin_color** = ``Color(1, 0, 0, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushin_color>`
  2535. Color of the static avoidance obstacles edges when their vertices are winded in order to push agents in, visible when "Visible Avoidance" is enabled in the Debug menu.
  2536. .. rst-class:: classref-item-separator
  2537. ----
  2538. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushout_color:
  2539. .. rst-class:: classref-property
  2540. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_edge_pushout_color** = ``Color(1, 1, 0, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushout_color>`
  2541. Color of the static avoidance obstacles edges when their vertices are winded in order to push agents out, visible when "Visible Avoidance" is enabled in the Debug menu.
  2542. .. rst-class:: classref-item-separator
  2543. ----
  2544. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushin_color:
  2545. .. rst-class:: classref-property
  2546. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_face_pushin_color** = ``Color(1, 0, 0, 0)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushin_color>`
  2547. Color of the static avoidance obstacles faces when their vertices are winded in order to push agents in, visible when "Visible Avoidance" is enabled in the Debug menu.
  2548. .. rst-class:: classref-item-separator
  2549. ----
  2550. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushout_color:
  2551. .. rst-class:: classref-property
  2552. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_face_pushout_color** = ``Color(1, 1, 0, 0.5)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushout_color>`
  2553. Color of the static avoidance obstacles faces when their vertices are winded in order to push agents out, visible when "Visible Avoidance" is enabled in the Debug menu.
  2554. .. rst-class:: classref-item-separator
  2555. ----
  2556. .. _class_ProjectSettings_property_debug/shapes/collision/contact_color:
  2557. .. rst-class:: classref-property
  2558. :ref:`Color<class_Color>` **debug/shapes/collision/contact_color** = ``Color(1, 0.2, 0.1, 0.8)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/collision/contact_color>`
  2559. Color of the contact points between collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu.
  2560. .. rst-class:: classref-item-separator
  2561. ----
  2562. .. _class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines:
  2563. .. rst-class:: classref-property
  2564. :ref:`bool<class_bool>` **debug/shapes/collision/draw_2d_outlines** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines>`
  2565. Sets whether 2D physics will display collision outlines in game when "Visible Collision Shapes" is enabled in the Debug menu.
  2566. .. rst-class:: classref-item-separator
  2567. ----
  2568. .. _class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed:
  2569. .. rst-class:: classref-property
  2570. :ref:`int<class_int>` **debug/shapes/collision/max_contacts_displayed** = ``10000`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed>`
  2571. Maximum number of contact points between collision shapes to display when "Visible Collision Shapes" is enabled in the Debug menu.
  2572. .. rst-class:: classref-item-separator
  2573. ----
  2574. .. _class_ProjectSettings_property_debug/shapes/collision/shape_color:
  2575. .. rst-class:: classref-property
  2576. :ref:`Color<class_Color>` **debug/shapes/collision/shape_color** = ``Color(0, 0.6, 0.7, 0.42)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/collision/shape_color>`
  2577. Color of the collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu.
  2578. .. rst-class:: classref-item-separator
  2579. ----
  2580. .. _class_ProjectSettings_property_debug/shapes/navigation/agent_path_color:
  2581. .. rst-class:: classref-property
  2582. :ref:`Color<class_Color>` **debug/shapes/navigation/agent_path_color** = ``Color(1, 0, 0, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/agent_path_color>`
  2583. Color to display enabled navigation agent paths when an agent has debug enabled.
  2584. .. rst-class:: classref-item-separator
  2585. ----
  2586. .. _class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size:
  2587. .. rst-class:: classref-property
  2588. :ref:`float<class_float>` **debug/shapes/navigation/agent_path_point_size** = ``4.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size>`
  2589. Rasterized size (pixel) used to render navigation agent path points when an agent has debug enabled.
  2590. .. rst-class:: classref-item-separator
  2591. ----
  2592. .. _class_ProjectSettings_property_debug/shapes/navigation/edge_connection_color:
  2593. .. rst-class:: classref-property
  2594. :ref:`Color<class_Color>` **debug/shapes/navigation/edge_connection_color** = ``Color(1, 0, 1, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/edge_connection_color>`
  2595. Color to display edge connections between navigation regions, visible when "Visible Navigation" is enabled in the Debug menu.
  2596. .. rst-class:: classref-item-separator
  2597. ----
  2598. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths:
  2599. .. rst-class:: classref-property
  2600. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_agent_paths** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths>`
  2601. If enabled, displays navigation agent paths when an agent has debug enabled.
  2602. .. rst-class:: classref-item-separator
  2603. ----
  2604. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray:
  2605. .. rst-class:: classref-property
  2606. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_agent_paths_xray** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray>`
  2607. If enabled, displays navigation agent paths through geometry when an agent has debug enabled.
  2608. .. rst-class:: classref-item-separator
  2609. ----
  2610. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections:
  2611. .. rst-class:: classref-property
  2612. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_connections** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections>`
  2613. If enabled, displays edge connections between navigation regions when "Visible Navigation" is enabled in the Debug menu.
  2614. .. rst-class:: classref-item-separator
  2615. ----
  2616. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray:
  2617. .. rst-class:: classref-property
  2618. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_connections_xray** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray>`
  2619. If enabled, displays edge connections between navigation regions through geometry when "Visible Navigation" is enabled in the Debug menu.
  2620. .. rst-class:: classref-item-separator
  2621. ----
  2622. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines:
  2623. .. rst-class:: classref-property
  2624. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_lines** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines>`
  2625. If enabled, displays navigation mesh polygon edges when "Visible Navigation" is enabled in the Debug menu.
  2626. .. rst-class:: classref-item-separator
  2627. ----
  2628. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray:
  2629. .. rst-class:: classref-property
  2630. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_lines_xray** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray>`
  2631. If enabled, displays navigation mesh polygon edges through geometry when "Visible Navigation" is enabled in the Debug menu.
  2632. .. rst-class:: classref-item-separator
  2633. ----
  2634. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_geometry_face_random_color:
  2635. .. rst-class:: classref-property
  2636. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_geometry_face_random_color** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_geometry_face_random_color>`
  2637. If enabled, colorizes each navigation mesh polygon face with a random color when "Visible Navigation" is enabled in the Debug menu.
  2638. .. rst-class:: classref-item-separator
  2639. ----
  2640. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections:
  2641. .. rst-class:: classref-property
  2642. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_link_connections** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections>`
  2643. If enabled, displays navigation link connections when "Visible Navigation" is enabled in the Debug menu.
  2644. .. rst-class:: classref-item-separator
  2645. ----
  2646. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray:
  2647. .. rst-class:: classref-property
  2648. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_link_connections_xray** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray>`
  2649. If enabled, displays navigation link connections through geometry when "Visible Navigation" is enabled in the Debug menu.
  2650. .. rst-class:: classref-item-separator
  2651. ----
  2652. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_color:
  2653. .. rst-class:: classref-property
  2654. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_edge_color** = ``Color(0.5, 1, 1, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_color>`
  2655. Color to display enabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu.
  2656. .. rst-class:: classref-item-separator
  2657. ----
  2658. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_disabled_color:
  2659. .. rst-class:: classref-property
  2660. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_edge_disabled_color** = ``Color(0.5, 0.5, 0.5, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_disabled_color>`
  2661. Color to display disabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu.
  2662. .. rst-class:: classref-item-separator
  2663. ----
  2664. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_face_color:
  2665. .. rst-class:: classref-property
  2666. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_face_color** = ``Color(0.5, 1, 1, 0.4)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/geometry_face_color>`
  2667. Color to display enabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu.
  2668. .. rst-class:: classref-item-separator
  2669. ----
  2670. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_face_disabled_color:
  2671. .. rst-class:: classref-property
  2672. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_face_disabled_color** = ``Color(0.5, 0.5, 0.5, 0.4)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/geometry_face_disabled_color>`
  2673. Color to display disabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu.
  2674. .. rst-class:: classref-item-separator
  2675. ----
  2676. .. _class_ProjectSettings_property_debug/shapes/navigation/link_connection_color:
  2677. .. rst-class:: classref-property
  2678. :ref:`Color<class_Color>` **debug/shapes/navigation/link_connection_color** = ``Color(1, 0.5, 1, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/link_connection_color>`
  2679. Color to use to display navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu.
  2680. .. rst-class:: classref-item-separator
  2681. ----
  2682. .. _class_ProjectSettings_property_debug/shapes/navigation/link_connection_disabled_color:
  2683. .. rst-class:: classref-property
  2684. :ref:`Color<class_Color>` **debug/shapes/navigation/link_connection_disabled_color** = ``Color(0.5, 0.5, 0.5, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/navigation/link_connection_disabled_color>`
  2685. Color to use to display disabled navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu.
  2686. .. rst-class:: classref-item-separator
  2687. ----
  2688. .. _class_ProjectSettings_property_debug/shapes/paths/geometry_color:
  2689. .. rst-class:: classref-property
  2690. :ref:`Color<class_Color>` **debug/shapes/paths/geometry_color** = ``Color(0.1, 1, 0.7, 0.4)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/paths/geometry_color>`
  2691. Color of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu.
  2692. .. rst-class:: classref-item-separator
  2693. ----
  2694. .. _class_ProjectSettings_property_debug/shapes/paths/geometry_width:
  2695. .. rst-class:: classref-property
  2696. :ref:`float<class_float>` **debug/shapes/paths/geometry_width** = ``2.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_debug/shapes/paths/geometry_width>`
  2697. Line width of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu.
  2698. .. rst-class:: classref-item-separator
  2699. ----
  2700. .. _class_ProjectSettings_property_display/display_server/driver:
  2701. .. rst-class:: classref-property
  2702. :ref:`String<class_String>` **display/display_server/driver** :ref:`๐Ÿ”—<class_ProjectSettings_property_display/display_server/driver>`
  2703. Sets the driver to be used by the display server. This property can not be edited directly, instead, set the driver using the platform-specific overrides.
  2704. .. rst-class:: classref-item-separator
  2705. ----
  2706. .. _class_ProjectSettings_property_display/display_server/driver.android:
  2707. .. rst-class:: classref-property
  2708. :ref:`String<class_String>` **display/display_server/driver.android** :ref:`๐Ÿ”—<class_ProjectSettings_property_display/display_server/driver.android>`
  2709. Android override for :ref:`display/display_server/driver<class_ProjectSettings_property_display/display_server/driver>`.
  2710. .. rst-class:: classref-item-separator
  2711. ----
  2712. .. _class_ProjectSettings_property_display/display_server/driver.ios:
  2713. .. rst-class:: classref-property
  2714. :ref:`String<class_String>` **display/display_server/driver.ios** :ref:`๐Ÿ”—<class_ProjectSettings_property_display/display_server/driver.ios>`
  2715. iOS override for :ref:`display/display_server/driver<class_ProjectSettings_property_display/display_server/driver>`.
  2716. .. rst-class:: classref-item-separator
  2717. ----
  2718. .. _class_ProjectSettings_property_display/display_server/driver.linuxbsd:
  2719. .. rst-class:: classref-property
  2720. :ref:`String<class_String>` **display/display_server/driver.linuxbsd** :ref:`๐Ÿ”—<class_ProjectSettings_property_display/display_server/driver.linuxbsd>`
  2721. LinuxBSD override for :ref:`display/display_server/driver<class_ProjectSettings_property_display/display_server/driver>`.
  2722. .. rst-class:: classref-item-separator
  2723. ----
  2724. .. _class_ProjectSettings_property_display/display_server/driver.macos:
  2725. .. rst-class:: classref-property
  2726. :ref:`String<class_String>` **display/display_server/driver.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_display/display_server/driver.macos>`
  2727. MacOS override for :ref:`display/display_server/driver<class_ProjectSettings_property_display/display_server/driver>`.
  2728. .. rst-class:: classref-item-separator
  2729. ----
  2730. .. _class_ProjectSettings_property_display/display_server/driver.windows:
  2731. .. rst-class:: classref-property
  2732. :ref:`String<class_String>` **display/display_server/driver.windows** :ref:`๐Ÿ”—<class_ProjectSettings_property_display/display_server/driver.windows>`
  2733. Windows override for :ref:`display/display_server/driver<class_ProjectSettings_property_display/display_server/driver>`.
  2734. .. rst-class:: classref-item-separator
  2735. ----
  2736. .. _class_ProjectSettings_property_display/mouse_cursor/custom_image:
  2737. .. rst-class:: classref-property
  2738. :ref:`String<class_String>` **display/mouse_cursor/custom_image** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/mouse_cursor/custom_image>`
  2739. Custom image for the mouse cursor (limited to 256ร—256).
  2740. .. rst-class:: classref-item-separator
  2741. ----
  2742. .. _class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot:
  2743. .. rst-class:: classref-property
  2744. :ref:`Vector2<class_Vector2>` **display/mouse_cursor/custom_image_hotspot** = ``Vector2(0, 0)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot>`
  2745. Hotspot for the custom mouse cursor image.
  2746. .. rst-class:: classref-item-separator
  2747. ----
  2748. .. _class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset:
  2749. .. rst-class:: classref-property
  2750. :ref:`Vector2<class_Vector2>` **display/mouse_cursor/tooltip_position_offset** = ``Vector2(10, 10)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset>`
  2751. Position offset for tooltips, relative to the mouse cursor's hotspot.
  2752. .. rst-class:: classref-item-separator
  2753. ----
  2754. .. _class_ProjectSettings_property_display/window/dpi/allow_hidpi:
  2755. .. rst-class:: classref-property
  2756. :ref:`bool<class_bool>` **display/window/dpi/allow_hidpi** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/dpi/allow_hidpi>`
  2757. If ``true``, allows HiDPI display on Windows, macOS, Android, iOS and Web. If ``false``, the platform's low-DPI fallback will be used on HiDPI displays, which causes the window to be displayed in a blurry or pixelated manner (and can cause various window management bugs). Therefore, it is recommended to make your project scale to :doc:`multiple resolutions <../tutorials/rendering/multiple_resolutions>` instead of disabling this setting.
  2758. \ **Note:** This setting has no effect on Linux as DPI-awareness fallbacks are not supported there.
  2759. .. rst-class:: classref-item-separator
  2760. ----
  2761. .. _class_ProjectSettings_property_display/window/energy_saving/keep_screen_on:
  2762. .. rst-class:: classref-property
  2763. :ref:`bool<class_bool>` **display/window/energy_saving/keep_screen_on** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on>`
  2764. If ``true``, keeps the screen on (even in case of inactivity), so the screensaver does not take over. Works on desktop and mobile platforms.
  2765. .. rst-class:: classref-item-separator
  2766. ----
  2767. .. _class_ProjectSettings_property_display/window/energy_saving/keep_screen_on.editor_hint:
  2768. .. rst-class:: classref-property
  2769. :ref:`bool<class_bool>` **display/window/energy_saving/keep_screen_on.editor_hint** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on.editor_hint>`
  2770. Editor-only override for :ref:`display/window/energy_saving/keep_screen_on<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on>`. Does not affect running project.
  2771. .. rst-class:: classref-item-separator
  2772. ----
  2773. .. _class_ProjectSettings_property_display/window/handheld/orientation:
  2774. .. rst-class:: classref-property
  2775. :ref:`int<class_int>` **display/window/handheld/orientation** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/handheld/orientation>`
  2776. The default screen orientation to use on mobile devices. See :ref:`ScreenOrientation<enum_DisplayServer_ScreenOrientation>` for possible values.
  2777. \ **Note:** When set to a portrait orientation, this project setting does not flip the project resolution's width and height automatically. Instead, you have to set :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` and :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>` accordingly.
  2778. .. rst-class:: classref-item-separator
  2779. ----
  2780. .. _class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate:
  2781. .. rst-class:: classref-property
  2782. :ref:`bool<class_bool>` **display/window/ios/allow_high_refresh_rate** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate>`
  2783. If ``true``, iOS devices that support high refresh rate/"ProMotion" will be allowed to render at up to 120 frames per second.
  2784. .. rst-class:: classref-item-separator
  2785. ----
  2786. .. _class_ProjectSettings_property_display/window/ios/hide_home_indicator:
  2787. .. rst-class:: classref-property
  2788. :ref:`bool<class_bool>` **display/window/ios/hide_home_indicator** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/ios/hide_home_indicator>`
  2789. If ``true``, the home indicator is hidden automatically. This only affects iOS devices without a physical home button.
  2790. .. rst-class:: classref-item-separator
  2791. ----
  2792. .. _class_ProjectSettings_property_display/window/ios/hide_status_bar:
  2793. .. rst-class:: classref-property
  2794. :ref:`bool<class_bool>` **display/window/ios/hide_status_bar** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/ios/hide_status_bar>`
  2795. If ``true``, the status bar is hidden while the app is running.
  2796. .. rst-class:: classref-item-separator
  2797. ----
  2798. .. _class_ProjectSettings_property_display/window/ios/suppress_ui_gesture:
  2799. .. rst-class:: classref-property
  2800. :ref:`bool<class_bool>` **display/window/ios/suppress_ui_gesture** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/ios/suppress_ui_gesture>`
  2801. If ``true``, it will require two swipes to access iOS UI that uses gestures.
  2802. \ **Note:** This setting has no effect on the home indicator if ``hide_home_indicator`` is ``true``.
  2803. .. rst-class:: classref-item-separator
  2804. ----
  2805. .. _class_ProjectSettings_property_display/window/per_pixel_transparency/allowed:
  2806. .. rst-class:: classref-property
  2807. :ref:`bool<class_bool>` **display/window/per_pixel_transparency/allowed** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/per_pixel_transparency/allowed>`
  2808. If ``true``, allows per-pixel transparency for the window background. This affects performance, so leave it on ``false`` unless you need it. See also :ref:`display/window/size/transparent<class_ProjectSettings_property_display/window/size/transparent>` and :ref:`rendering/viewport/transparent_background<class_ProjectSettings_property_rendering/viewport/transparent_background>`.
  2809. .. rst-class:: classref-item-separator
  2810. ----
  2811. .. _class_ProjectSettings_property_display/window/size/always_on_top:
  2812. .. rst-class:: classref-property
  2813. :ref:`bool<class_bool>` **display/window/size/always_on_top** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/always_on_top>`
  2814. Forces the main window to be always on top.
  2815. \ **Note:** This setting is ignored on iOS, Android, and Web.
  2816. .. rst-class:: classref-item-separator
  2817. ----
  2818. .. _class_ProjectSettings_property_display/window/size/borderless:
  2819. .. rst-class:: classref-property
  2820. :ref:`bool<class_bool>` **display/window/size/borderless** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/borderless>`
  2821. Forces the main window to be borderless.
  2822. \ **Note:** This setting is ignored on iOS, Android, and Web.
  2823. .. rst-class:: classref-item-separator
  2824. ----
  2825. .. _class_ProjectSettings_property_display/window/size/extend_to_title:
  2826. .. rst-class:: classref-property
  2827. :ref:`bool<class_bool>` **display/window/size/extend_to_title** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/extend_to_title>`
  2828. Main window content is expanded to the full size of the window. Unlike a borderless window, the frame is left intact and can be used to resize the window, and the title bar is transparent, but has minimize/maximize/close buttons.
  2829. \ **Note:** This setting is implemented only on macOS.
  2830. .. rst-class:: classref-item-separator
  2831. ----
  2832. .. _class_ProjectSettings_property_display/window/size/initial_position:
  2833. .. rst-class:: classref-property
  2834. :ref:`Vector2i<class_Vector2i>` **display/window/size/initial_position** = ``Vector2i(0, 0)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/initial_position>`
  2835. Main window initial position (in virtual desktop coordinates), this setting is used only if :ref:`display/window/size/initial_position_type<class_ProjectSettings_property_display/window/size/initial_position_type>` is set to "Absolute" (``0``).
  2836. \ **Note:** This setting only affects the exported project, or when the project is run from the command line. In the editor, the value of :ref:`EditorSettings.run/window_placement/rect_custom_position<class_EditorSettings_property_run/window_placement/rect_custom_position>` is used instead.
  2837. .. rst-class:: classref-item-separator
  2838. ----
  2839. .. _class_ProjectSettings_property_display/window/size/initial_position_type:
  2840. .. rst-class:: classref-property
  2841. :ref:`int<class_int>` **display/window/size/initial_position_type** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/initial_position_type>`
  2842. Main window initial position.
  2843. \ ``0`` - "Absolute", :ref:`display/window/size/initial_position<class_ProjectSettings_property_display/window/size/initial_position>` is used to set window position.
  2844. \ ``1`` - "Primary Screen Center".
  2845. \ ``2`` - "Other Screen Center", :ref:`display/window/size/initial_screen<class_ProjectSettings_property_display/window/size/initial_screen>` is used to set the screen.
  2846. \ **Note:** This setting only affects the exported project, or when the project is run from the command line. In the editor, the value of :ref:`EditorSettings.run/window_placement/rect<class_EditorSettings_property_run/window_placement/rect>` is used instead.
  2847. .. rst-class:: classref-item-separator
  2848. ----
  2849. .. _class_ProjectSettings_property_display/window/size/initial_screen:
  2850. .. rst-class:: classref-property
  2851. :ref:`int<class_int>` **display/window/size/initial_screen** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/initial_screen>`
  2852. Main window initial screen, this setting is used only if :ref:`display/window/size/initial_position_type<class_ProjectSettings_property_display/window/size/initial_position_type>` is set to "Other Screen Center" (``2``).
  2853. \ **Note:** This setting only affects the exported project, or when the project is run from the command line. In the editor, the value of :ref:`EditorSettings.run/window_placement/screen<class_EditorSettings_property_run/window_placement/screen>` is used instead.
  2854. .. rst-class:: classref-item-separator
  2855. ----
  2856. .. _class_ProjectSettings_property_display/window/size/mode:
  2857. .. rst-class:: classref-property
  2858. :ref:`int<class_int>` **display/window/size/mode** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/mode>`
  2859. Main window mode. See :ref:`WindowMode<enum_DisplayServer_WindowMode>` for possible values and how each mode behaves.
  2860. .. rst-class:: classref-item-separator
  2861. ----
  2862. .. _class_ProjectSettings_property_display/window/size/no_focus:
  2863. .. rst-class:: classref-property
  2864. :ref:`bool<class_bool>` **display/window/size/no_focus** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/no_focus>`
  2865. Main window can't be focused. No-focus window will ignore all input, except mouse clicks.
  2866. .. rst-class:: classref-item-separator
  2867. ----
  2868. .. _class_ProjectSettings_property_display/window/size/resizable:
  2869. .. rst-class:: classref-property
  2870. :ref:`bool<class_bool>` **display/window/size/resizable** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/resizable>`
  2871. If ``true``, allows the window to be resizable by default.
  2872. \ **Note:** This property is only read when the project starts. To change whether the window is resizable at runtime, set :ref:`Window.unresizable<class_Window_property_unresizable>` instead on the root Window, which can be retrieved using ``get_viewport().get_window()``. :ref:`Window.unresizable<class_Window_property_unresizable>` takes the opposite value of this setting.
  2873. \ **Note:** Certain window managers can be configured to ignore the non-resizable status of a window. Do not rely on this setting as a guarantee that the window will *never* be resizable.
  2874. \ **Note:** This setting is ignored on iOS.
  2875. .. rst-class:: classref-item-separator
  2876. ----
  2877. .. _class_ProjectSettings_property_display/window/size/transparent:
  2878. .. rst-class:: classref-property
  2879. :ref:`bool<class_bool>` **display/window/size/transparent** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/transparent>`
  2880. If ``true``, enables a window manager hint that the main window background *can* be transparent. This does not make the background actually transparent. For the background to be transparent, the root viewport must also be made transparent by enabling :ref:`rendering/viewport/transparent_background<class_ProjectSettings_property_rendering/viewport/transparent_background>`.
  2881. \ **Note:** To use a transparent splash screen, set :ref:`application/boot_splash/bg_color<class_ProjectSettings_property_application/boot_splash/bg_color>` to ``Color(0, 0, 0, 0)``.
  2882. \ **Note:** This setting has no effect if :ref:`display/window/per_pixel_transparency/allowed<class_ProjectSettings_property_display/window/per_pixel_transparency/allowed>` is set to ``false``.
  2883. .. rst-class:: classref-item-separator
  2884. ----
  2885. .. _class_ProjectSettings_property_display/window/size/viewport_height:
  2886. .. rst-class:: classref-property
  2887. :ref:`int<class_int>` **display/window/size/viewport_height** = ``648`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/viewport_height>`
  2888. Sets the game's main viewport height. On desktop platforms, this is also the initial window height, represented by an indigo-colored rectangle in the 2D editor. Stretch mode settings also use this as a reference when using the ``canvas_items`` or ``viewport`` stretch modes. See also :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>`, :ref:`display/window/size/window_width_override<class_ProjectSettings_property_display/window/size/window_width_override>` and :ref:`display/window/size/window_height_override<class_ProjectSettings_property_display/window/size/window_height_override>`.
  2889. .. rst-class:: classref-item-separator
  2890. ----
  2891. .. _class_ProjectSettings_property_display/window/size/viewport_width:
  2892. .. rst-class:: classref-property
  2893. :ref:`int<class_int>` **display/window/size/viewport_width** = ``1152`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/viewport_width>`
  2894. Sets the game's main viewport width. On desktop platforms, this is also the initial window width, represented by an indigo-colored rectangle in the 2D editor. Stretch mode settings also use this as a reference when using the ``canvas_items`` or ``viewport`` stretch modes. See also :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>`, :ref:`display/window/size/window_width_override<class_ProjectSettings_property_display/window/size/window_width_override>` and :ref:`display/window/size/window_height_override<class_ProjectSettings_property_display/window/size/window_height_override>`.
  2895. .. rst-class:: classref-item-separator
  2896. ----
  2897. .. _class_ProjectSettings_property_display/window/size/window_height_override:
  2898. .. rst-class:: classref-property
  2899. :ref:`int<class_int>` **display/window/size/window_height_override** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/window_height_override>`
  2900. On desktop platforms, overrides the game's initial window height. See also :ref:`display/window/size/window_width_override<class_ProjectSettings_property_display/window/size/window_width_override>`, :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` and :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>`.
  2901. \ **Note:** By default, or when set to ``0``, the initial window height is the :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>`. This setting is ignored on iOS, Android, and Web.
  2902. .. rst-class:: classref-item-separator
  2903. ----
  2904. .. _class_ProjectSettings_property_display/window/size/window_width_override:
  2905. .. rst-class:: classref-property
  2906. :ref:`int<class_int>` **display/window/size/window_width_override** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/size/window_width_override>`
  2907. On desktop platforms, overrides the game's initial window width. See also :ref:`display/window/size/window_height_override<class_ProjectSettings_property_display/window/size/window_height_override>`, :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` and :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>`.
  2908. \ **Note:** By default, or when set to ``0``, the initial window width is the :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>`. This setting is ignored on iOS, Android, and Web.
  2909. .. rst-class:: classref-item-separator
  2910. ----
  2911. .. _class_ProjectSettings_property_display/window/stretch/aspect:
  2912. .. rst-class:: classref-property
  2913. :ref:`String<class_String>` **display/window/stretch/aspect** = ``"keep"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/stretch/aspect>`
  2914. .. container:: contribute
  2915. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2916. .. rst-class:: classref-item-separator
  2917. ----
  2918. .. _class_ProjectSettings_property_display/window/stretch/mode:
  2919. .. rst-class:: classref-property
  2920. :ref:`String<class_String>` **display/window/stretch/mode** = ``"disabled"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/stretch/mode>`
  2921. Defines how the base size is stretched to fit the resolution of the window or screen.
  2922. \ **"disabled"**: No stretching happens. One unit in the scene corresponds to one pixel on the screen. In this mode, :ref:`display/window/stretch/aspect<class_ProjectSettings_property_display/window/stretch/aspect>` has no effect. Recommended for non-game applications.
  2923. \ **"canvas_items"**: The base size specified in width and height in the project settings is stretched to cover the whole screen (taking :ref:`display/window/stretch/aspect<class_ProjectSettings_property_display/window/stretch/aspect>` into account). This means that everything is rendered directly at the target resolution. 3D is unaffected, while in 2D, there is no longer a 1:1 correspondence between sprite pixels and screen pixels, which may result in scaling artifacts. Recommended for most games that don't use a pixel art esthetic, although it is possible to use this stretch mode for pixel art games too (especially in 3D).
  2924. \ **"viewport"**: The size of the root :ref:`Viewport<class_Viewport>` is set precisely to the base size specified in the Project Settings' Display section. The scene is rendered to this viewport first. Finally, this viewport is scaled to fit the screen (taking :ref:`display/window/stretch/aspect<class_ProjectSettings_property_display/window/stretch/aspect>` into account). Recommended for games that use a pixel art esthetic.
  2925. .. rst-class:: classref-item-separator
  2926. ----
  2927. .. _class_ProjectSettings_property_display/window/stretch/scale:
  2928. .. rst-class:: classref-property
  2929. :ref:`float<class_float>` **display/window/stretch/scale** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/stretch/scale>`
  2930. The scale factor multiplier to use for 2D elements. This multiplies the final scale factor determined by :ref:`display/window/stretch/mode<class_ProjectSettings_property_display/window/stretch/mode>`. If using the **Disabled** stretch mode, this scale factor is applied as-is. This can be adjusted to make the UI easier to read on certain displays.
  2931. .. rst-class:: classref-item-separator
  2932. ----
  2933. .. _class_ProjectSettings_property_display/window/stretch/scale_mode:
  2934. .. rst-class:: classref-property
  2935. :ref:`String<class_String>` **display/window/stretch/scale_mode** = ``"fractional"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/stretch/scale_mode>`
  2936. The policy to use to determine the final scale factor for 2D elements. This affects how :ref:`display/window/stretch/scale<class_ProjectSettings_property_display/window/stretch/scale>` is applied, in addition to the automatic scale factor determined by :ref:`display/window/stretch/mode<class_ProjectSettings_property_display/window/stretch/mode>`.
  2937. \ **"fractional"**: The scale factor will not be modified.
  2938. \ **"integer"**: The scale factor will be floored to an integer value, which means that the screen size will always be an integer multiple of the base viewport size. This provides a crisp pixel art appearance.
  2939. \ **Note:** When using integer scaling with a stretch mode, resizing the window to be smaller than the base viewport size will clip the contents. Consider preventing that by setting :ref:`Window.min_size<class_Window_property_min_size>` to the same value as the base viewport size defined in :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` and :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>`.
  2940. .. rst-class:: classref-item-separator
  2941. ----
  2942. .. _class_ProjectSettings_property_display/window/subwindows/embed_subwindows:
  2943. .. rst-class:: classref-property
  2944. :ref:`bool<class_bool>` **display/window/subwindows/embed_subwindows** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/subwindows/embed_subwindows>`
  2945. If ``true`` subwindows are embedded in the main window.
  2946. .. rst-class:: classref-item-separator
  2947. ----
  2948. .. _class_ProjectSettings_property_display/window/vsync/vsync_mode:
  2949. .. rst-class:: classref-property
  2950. :ref:`int<class_int>` **display/window/vsync/vsync_mode** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_display/window/vsync/vsync_mode>`
  2951. Sets the V-Sync mode for the main game window. The editor's own V-Sync mode can be set using :ref:`EditorSettings.interface/editor/vsync_mode<class_EditorSettings_property_interface/editor/vsync_mode>`.
  2952. See :ref:`VSyncMode<enum_DisplayServer_VSyncMode>` for possible values and how they affect the behavior of your application.
  2953. Depending on the platform and rendering method, the engine will fall back to **Enabled** if the desired mode is not supported.
  2954. V-Sync can be disabled on the command line using the ``--disable-vsync`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  2955. \ **Note:** The **Adaptive** and **Mailbox** V-Sync modes are only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  2956. \ **Note:** This property is only read when the project starts. To change the V-Sync mode at runtime, call :ref:`DisplayServer.window_set_vsync_mode<class_DisplayServer_method_window_set_vsync_mode>` instead.
  2957. .. rst-class:: classref-item-separator
  2958. ----
  2959. .. _class_ProjectSettings_property_dotnet/project/assembly_name:
  2960. .. rst-class:: classref-property
  2961. :ref:`String<class_String>` **dotnet/project/assembly_name** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_dotnet/project/assembly_name>`
  2962. Name of the .NET assembly. This name is used as the name of the ``.csproj`` and ``.sln`` files. By default, it's set to the name of the project (:ref:`application/config/name<class_ProjectSettings_property_application/config/name>`) allowing to change it in the future without affecting the .NET assembly.
  2963. .. rst-class:: classref-item-separator
  2964. ----
  2965. .. _class_ProjectSettings_property_dotnet/project/assembly_reload_attempts:
  2966. .. rst-class:: classref-property
  2967. :ref:`int<class_int>` **dotnet/project/assembly_reload_attempts** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_dotnet/project/assembly_reload_attempts>`
  2968. Number of times to attempt assembly reloading after rebuilding .NET assemblies. Effectively also the timeout in seconds to wait for unloading of script assemblies to finish.
  2969. .. rst-class:: classref-item-separator
  2970. ----
  2971. .. _class_ProjectSettings_property_dotnet/project/solution_directory:
  2972. .. rst-class:: classref-property
  2973. :ref:`String<class_String>` **dotnet/project/solution_directory** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_dotnet/project/solution_directory>`
  2974. Directory that contains the ``.sln`` file. By default, the ``.sln`` files is in the root of the project directory, next to the ``project.godot`` and ``.csproj`` files.
  2975. Changing this value allows setting up a multi-project scenario where there are multiple ``.csproj``. Keep in mind that the Godot project is considered one of the C# projects in the workspace and it's root directory should contain the ``project.godot`` and ``.csproj`` next to each other.
  2976. .. rst-class:: classref-item-separator
  2977. ----
  2978. .. _class_ProjectSettings_property_editor/export/convert_text_resources_to_binary:
  2979. .. rst-class:: classref-property
  2980. :ref:`bool<class_bool>` **editor/export/convert_text_resources_to_binary** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/export/convert_text_resources_to_binary>`
  2981. If ``true``, text resources are converted to a binary format on export. This decreases file sizes and speeds up loading slightly.
  2982. \ **Note:** If :ref:`editor/export/convert_text_resources_to_binary<class_ProjectSettings_property_editor/export/convert_text_resources_to_binary>` is ``true``, :ref:`@GDScript.load<class_@GDScript_method_load>` will not be able to return the converted files in an exported project. Some file paths within the exported PCK will also change, such as ``project.godot`` becoming ``project.binary``. If you rely on run-time loading of files present within the PCK, set :ref:`editor/export/convert_text_resources_to_binary<class_ProjectSettings_property_editor/export/convert_text_resources_to_binary>` to ``false``.
  2983. .. rst-class:: classref-item-separator
  2984. ----
  2985. .. _class_ProjectSettings_property_editor/import/atlas_max_width:
  2986. .. rst-class:: classref-property
  2987. :ref:`int<class_int>` **editor/import/atlas_max_width** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/import/atlas_max_width>`
  2988. The maximum width to use when importing textures as an atlas. The value will be rounded to the nearest power of two when used. Use this to prevent imported textures from growing too large in the other direction.
  2989. .. rst-class:: classref-item-separator
  2990. ----
  2991. .. _class_ProjectSettings_property_editor/import/reimport_missing_imported_files:
  2992. .. rst-class:: classref-property
  2993. :ref:`bool<class_bool>` **editor/import/reimport_missing_imported_files** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/import/reimport_missing_imported_files>`
  2994. .. container:: contribute
  2995. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2996. .. rst-class:: classref-item-separator
  2997. ----
  2998. .. _class_ProjectSettings_property_editor/import/use_multiple_threads:
  2999. .. rst-class:: classref-property
  3000. :ref:`bool<class_bool>` **editor/import/use_multiple_threads** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/import/use_multiple_threads>`
  3001. If ``true`` importing of resources is run on multiple threads.
  3002. .. rst-class:: classref-item-separator
  3003. ----
  3004. .. _class_ProjectSettings_property_editor/movie_writer/disable_vsync:
  3005. .. rst-class:: classref-property
  3006. :ref:`bool<class_bool>` **editor/movie_writer/disable_vsync** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/movie_writer/disable_vsync>`
  3007. If ``true``, requests V-Sync to be disabled when writing a movie (similar to setting :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` to **Disabled**). This can speed up video writing if the hardware is fast enough to render, encode and save the video at a framerate higher than the monitor's refresh rate.
  3008. \ **Note:** :ref:`editor/movie_writer/disable_vsync<class_ProjectSettings_property_editor/movie_writer/disable_vsync>` has no effect if the operating system or graphics driver forces V-Sync with no way for applications to disable it.
  3009. .. rst-class:: classref-item-separator
  3010. ----
  3011. .. _class_ProjectSettings_property_editor/movie_writer/fps:
  3012. .. rst-class:: classref-property
  3013. :ref:`int<class_int>` **editor/movie_writer/fps** = ``60`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/movie_writer/fps>`
  3014. The number of frames per second to record in the video when writing a movie. Simulation speed will adjust to always match the specified framerate, which means the engine will appear to run slower at higher :ref:`editor/movie_writer/fps<class_ProjectSettings_property_editor/movie_writer/fps>` values. Certain FPS values will require you to adjust :ref:`editor/movie_writer/mix_rate<class_ProjectSettings_property_editor/movie_writer/mix_rate>` to prevent audio from desynchronizing over time.
  3015. This can be specified manually on the command line using the ``--fixed-fps <fps>`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3016. .. rst-class:: classref-item-separator
  3017. ----
  3018. .. _class_ProjectSettings_property_editor/movie_writer/mix_rate:
  3019. .. rst-class:: classref-property
  3020. :ref:`int<class_int>` **editor/movie_writer/mix_rate** = ``48000`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/movie_writer/mix_rate>`
  3021. The audio mix rate to use in the recorded audio when writing a movie (in Hz). This can be different from :ref:`audio/driver/mix_rate<class_ProjectSettings_property_audio/driver/mix_rate>`, but this value must be divisible by :ref:`editor/movie_writer/fps<class_ProjectSettings_property_editor/movie_writer/fps>` to prevent audio from desynchronizing over time.
  3022. .. rst-class:: classref-item-separator
  3023. ----
  3024. .. _class_ProjectSettings_property_editor/movie_writer/mjpeg_quality:
  3025. .. rst-class:: classref-property
  3026. :ref:`float<class_float>` **editor/movie_writer/mjpeg_quality** = ``0.75`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/movie_writer/mjpeg_quality>`
  3027. The JPEG quality to use when writing a video to an AVI file, between ``0.01`` and ``1.0`` (inclusive). Higher ``quality`` values result in better-looking output at the cost of larger file sizes. Recommended ``quality`` values are between ``0.75`` and ``0.9``. Even at quality ``1.0``, JPEG compression remains lossy.
  3028. \ **Note:** This does not affect the audio quality or writing PNG image sequences.
  3029. .. rst-class:: classref-item-separator
  3030. ----
  3031. .. _class_ProjectSettings_property_editor/movie_writer/movie_file:
  3032. .. rst-class:: classref-property
  3033. :ref:`String<class_String>` **editor/movie_writer/movie_file** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/movie_writer/movie_file>`
  3034. The output path for the movie. The file extension determines the :ref:`MovieWriter<class_MovieWriter>` that will be used.
  3035. Godot has 2 built-in :ref:`MovieWriter<class_MovieWriter>`\ s:
  3036. - AVI container with MJPEG for video and uncompressed audio (``.avi`` file extension). Lossy compression, medium file sizes, fast encoding. The lossy compression quality can be adjusted by changing :ref:`editor/movie_writer/mjpeg_quality<class_ProjectSettings_property_editor/movie_writer/mjpeg_quality>`. The resulting file can be viewed in most video players, but it must be converted to another format for viewing on the web or by Godot with :ref:`VideoStreamPlayer<class_VideoStreamPlayer>`. MJPEG does not support transparency. AVI output is currently limited to a file of 4 GB in size at most.
  3037. - PNG image sequence for video and WAV for audio (``.png`` file extension). Lossless compression, large file sizes, slow encoding. Designed to be encoded to a video file with another tool such as `FFmpeg <https://ffmpeg.org/>`__ after recording. Transparency is currently not supported, even if the root viewport is set to be transparent.
  3038. If you need to encode to a different format or pipe a stream through third-party software, you can extend this :ref:`MovieWriter<class_MovieWriter>` class to create your own movie writers.
  3039. When using PNG output, the frame number will be appended at the end of the file name. It starts from 0 and is padded with 8 digits to ensure correct sorting and easier processing. For example, if the output path is ``/tmp/hello.png``, the first two frames will be ``/tmp/hello00000000.png`` and ``/tmp/hello00000001.png``. The audio will be saved at ``/tmp/hello.wav``.
  3040. .. rst-class:: classref-item-separator
  3041. ----
  3042. .. _class_ProjectSettings_property_editor/movie_writer/speaker_mode:
  3043. .. rst-class:: classref-property
  3044. :ref:`int<class_int>` **editor/movie_writer/speaker_mode** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/movie_writer/speaker_mode>`
  3045. The speaker mode to use in the recorded audio when writing a movie. See :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` for possible values.
  3046. .. rst-class:: classref-item-separator
  3047. ----
  3048. .. _class_ProjectSettings_property_editor/naming/default_signal_callback_name:
  3049. .. rst-class:: classref-property
  3050. :ref:`String<class_String>` **editor/naming/default_signal_callback_name** = ``"_on_{node_name}_{signal_name}"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/naming/default_signal_callback_name>`
  3051. The format of the default signal callback name (in the Signal Connection Dialog). The following substitutions are available: ``{NodeName}``, ``{nodeName}``, ``{node_name}``, ``{SignalName}``, ``{signalName}``, and ``{signal_name}``.
  3052. .. rst-class:: classref-item-separator
  3053. ----
  3054. .. _class_ProjectSettings_property_editor/naming/default_signal_callback_to_self_name:
  3055. .. rst-class:: classref-property
  3056. :ref:`String<class_String>` **editor/naming/default_signal_callback_to_self_name** = ``"_on_{signal_name}"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/naming/default_signal_callback_to_self_name>`
  3057. The format of the default signal callback name when a signal connects to the same node that emits it (in the Signal Connection Dialog). The following substitutions are available: ``{NodeName}``, ``{nodeName}``, ``{node_name}``, ``{SignalName}``, ``{signalName}``, and ``{signal_name}``.
  3058. .. rst-class:: classref-item-separator
  3059. ----
  3060. .. _class_ProjectSettings_property_editor/naming/node_name_casing:
  3061. .. rst-class:: classref-property
  3062. :ref:`int<class_int>` **editor/naming/node_name_casing** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/naming/node_name_casing>`
  3063. When creating node names automatically, set the type of casing to use in this project. This is mostly an editor setting.
  3064. .. rst-class:: classref-item-separator
  3065. ----
  3066. .. _class_ProjectSettings_property_editor/naming/node_name_num_separator:
  3067. .. rst-class:: classref-property
  3068. :ref:`int<class_int>` **editor/naming/node_name_num_separator** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/naming/node_name_num_separator>`
  3069. What to use to separate node name from number. This is mostly an editor setting.
  3070. .. rst-class:: classref-item-separator
  3071. ----
  3072. .. _class_ProjectSettings_property_editor/naming/scene_name_casing:
  3073. .. rst-class:: classref-property
  3074. :ref:`int<class_int>` **editor/naming/scene_name_casing** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/naming/scene_name_casing>`
  3075. When generating scene file names from scene root node, set the type of casing to use in this project. This is mostly an editor setting.
  3076. .. rst-class:: classref-item-separator
  3077. ----
  3078. .. _class_ProjectSettings_property_editor/naming/script_name_casing:
  3079. .. rst-class:: classref-property
  3080. :ref:`int<class_int>` **editor/naming/script_name_casing** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/naming/script_name_casing>`
  3081. When generating script file names from the selected node, set the type of casing to use in this project. This is mostly an editor setting.
  3082. .. rst-class:: classref-item-separator
  3083. ----
  3084. .. _class_ProjectSettings_property_editor/run/main_run_args:
  3085. .. rst-class:: classref-property
  3086. :ref:`String<class_String>` **editor/run/main_run_args** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/run/main_run_args>`
  3087. The command-line arguments to append to Godot's own command line when running the project. This doesn't affect the editor itself.
  3088. It is possible to make another executable run Godot by using the ``%command%`` placeholder. The placeholder will be replaced with Godot's own command line. Program-specific arguments should be placed *before* the placeholder, whereas Godot-specific arguments should be placed *after* the placeholder.
  3089. For example, this can be used to force the project to run on the dedicated GPU in an NVIDIA Optimus system on Linux:
  3090. .. code:: text
  3091. prime-run %command%
  3092. .. rst-class:: classref-item-separator
  3093. ----
  3094. .. _class_ProjectSettings_property_editor/script/search_in_file_extensions:
  3095. .. rst-class:: classref-property
  3096. :ref:`PackedStringArray<class_PackedStringArray>` **editor/script/search_in_file_extensions** = ``PackedStringArray("gd", "gdshader")`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/script/search_in_file_extensions>`
  3097. Text-based file extensions to include in the script editor's "Find in Files" feature. You can add e.g. ``tscn`` if you wish to also parse your scene files, especially if you use built-in scripts which are serialized in the scene files.
  3098. **Note:** The returned array is *copied* and any changes to it will not update the original property value. See :ref:`PackedStringArray<class_PackedStringArray>` for more details.
  3099. .. rst-class:: classref-item-separator
  3100. ----
  3101. .. _class_ProjectSettings_property_editor/script/templates_search_path:
  3102. .. rst-class:: classref-property
  3103. :ref:`String<class_String>` **editor/script/templates_search_path** = ``"res://script_templates"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/script/templates_search_path>`
  3104. Search path for project-specific script templates. Godot will search for script templates both in the editor-specific path and in this project-specific path.
  3105. .. rst-class:: classref-item-separator
  3106. ----
  3107. .. _class_ProjectSettings_property_editor/version_control/autoload_on_startup:
  3108. .. rst-class:: classref-property
  3109. :ref:`bool<class_bool>` **editor/version_control/autoload_on_startup** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/version_control/autoload_on_startup>`
  3110. .. container:: contribute
  3111. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  3112. .. rst-class:: classref-item-separator
  3113. ----
  3114. .. _class_ProjectSettings_property_editor/version_control/plugin_name:
  3115. .. rst-class:: classref-property
  3116. :ref:`String<class_String>` **editor/version_control/plugin_name** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_editor/version_control/plugin_name>`
  3117. .. container:: contribute
  3118. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  3119. .. rst-class:: classref-item-separator
  3120. ----
  3121. .. _class_ProjectSettings_property_filesystem/import/blender/enabled:
  3122. .. rst-class:: classref-property
  3123. :ref:`bool<class_bool>` **filesystem/import/blender/enabled** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_filesystem/import/blender/enabled>`
  3124. If ``true``, Blender 3D scene files with the ``.blend`` extension will be imported by converting them to glTF 2.0.
  3125. This requires configuring a path to a Blender executable in the editor settings at ``filesystem/import/blender/blender_path``. Blender 3.0 or later is required.
  3126. .. rst-class:: classref-item-separator
  3127. ----
  3128. .. _class_ProjectSettings_property_filesystem/import/blender/enabled.android:
  3129. .. rst-class:: classref-property
  3130. :ref:`bool<class_bool>` **filesystem/import/blender/enabled.android** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_filesystem/import/blender/enabled.android>`
  3131. Override for :ref:`filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>` on Android where Blender can't easily be accessed from Godot.
  3132. .. rst-class:: classref-item-separator
  3133. ----
  3134. .. _class_ProjectSettings_property_filesystem/import/blender/enabled.web:
  3135. .. rst-class:: classref-property
  3136. :ref:`bool<class_bool>` **filesystem/import/blender/enabled.web** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_filesystem/import/blender/enabled.web>`
  3137. Override for :ref:`filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>` on the Web where Blender can't easily be accessed from Godot.
  3138. .. rst-class:: classref-item-separator
  3139. ----
  3140. .. _class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled:
  3141. .. rst-class:: classref-property
  3142. :ref:`bool<class_bool>` **filesystem/import/fbx2gltf/enabled** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled>`
  3143. If ``true``, Autodesk FBX 3D scene files with the ``.fbx`` extension will be imported by converting them to glTF 2.0.
  3144. This requires configuring a path to an FBX2glTF executable in the editor settings at :ref:`EditorSettings.filesystem/import/fbx/fbx2gltf_path<class_EditorSettings_property_filesystem/import/fbx/fbx2gltf_path>`.
  3145. .. rst-class:: classref-item-separator
  3146. ----
  3147. .. _class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled.android:
  3148. .. rst-class:: classref-property
  3149. :ref:`bool<class_bool>` **filesystem/import/fbx2gltf/enabled.android** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled.android>`
  3150. Override for :ref:`filesystem/import/fbx2gltf/enabled<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled>` on Android where FBX2glTF can't easily be accessed from Godot.
  3151. .. rst-class:: classref-item-separator
  3152. ----
  3153. .. _class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled.web:
  3154. .. rst-class:: classref-property
  3155. :ref:`bool<class_bool>` **filesystem/import/fbx2gltf/enabled.web** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled.web>`
  3156. Override for :ref:`filesystem/import/fbx2gltf/enabled<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled>` on the Web where FBX2glTF can't easily be accessed from Godot.
  3157. .. rst-class:: classref-item-separator
  3158. ----
  3159. .. _class_ProjectSettings_property_gui/common/default_scroll_deadzone:
  3160. .. rst-class:: classref-property
  3161. :ref:`int<class_int>` **gui/common/default_scroll_deadzone** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/common/default_scroll_deadzone>`
  3162. Default value for :ref:`ScrollContainer.scroll_deadzone<class_ScrollContainer_property_scroll_deadzone>`, which will be used for all :ref:`ScrollContainer<class_ScrollContainer>`\ s unless overridden.
  3163. .. rst-class:: classref-item-separator
  3164. ----
  3165. .. _class_ProjectSettings_property_gui/common/snap_controls_to_pixels:
  3166. .. rst-class:: classref-property
  3167. :ref:`bool<class_bool>` **gui/common/snap_controls_to_pixels** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/common/snap_controls_to_pixels>`
  3168. If ``true``, snaps :ref:`Control<class_Control>` node vertices to the nearest pixel to ensure they remain crisp even when the camera moves or zooms.
  3169. .. rst-class:: classref-item-separator
  3170. ----
  3171. .. _class_ProjectSettings_property_gui/common/swap_cancel_ok:
  3172. .. rst-class:: classref-property
  3173. :ref:`bool<class_bool>` **gui/common/swap_cancel_ok** :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/common/swap_cancel_ok>`
  3174. If ``true``, swaps **Cancel** and **OK** buttons in dialogs on Windows to follow interface conventions. :ref:`DisplayServer.get_swap_cancel_ok<class_DisplayServer_method_get_swap_cancel_ok>` can be used to query whether buttons are swapped at run-time.
  3175. \ **Note:** This doesn't affect native dialogs such as the ones spawned by :ref:`DisplayServer.dialog_show<class_DisplayServer_method_dialog_show>`.
  3176. .. rst-class:: classref-item-separator
  3177. ----
  3178. .. _class_ProjectSettings_property_gui/common/text_edit_undo_stack_max_size:
  3179. .. rst-class:: classref-property
  3180. :ref:`int<class_int>` **gui/common/text_edit_undo_stack_max_size** = ``1024`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/common/text_edit_undo_stack_max_size>`
  3181. Maximum undo/redo history size for :ref:`TextEdit<class_TextEdit>` fields.
  3182. .. rst-class:: classref-item-separator
  3183. ----
  3184. .. _class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling:
  3185. .. rst-class:: classref-property
  3186. :ref:`bool<class_bool>` **gui/fonts/dynamic_fonts/use_oversampling** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling>`
  3187. .. container:: contribute
  3188. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  3189. .. rst-class:: classref-item-separator
  3190. ----
  3191. .. _class_ProjectSettings_property_gui/theme/custom:
  3192. .. rst-class:: classref-property
  3193. :ref:`String<class_String>` **gui/theme/custom** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/custom>`
  3194. Path to a custom :ref:`Theme<class_Theme>` resource file to use for the project (``.theme`` or generic ``.tres``/``.res`` extension).
  3195. .. rst-class:: classref-item-separator
  3196. ----
  3197. .. _class_ProjectSettings_property_gui/theme/custom_font:
  3198. .. rst-class:: classref-property
  3199. :ref:`String<class_String>` **gui/theme/custom_font** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/custom_font>`
  3200. Path to a custom :ref:`Font<class_Font>` resource to use as default for all GUI elements of the project.
  3201. .. rst-class:: classref-item-separator
  3202. ----
  3203. .. _class_ProjectSettings_property_gui/theme/default_font_antialiasing:
  3204. .. rst-class:: classref-property
  3205. :ref:`int<class_int>` **gui/theme/default_font_antialiasing** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/default_font_antialiasing>`
  3206. Font anti-aliasing mode for the default project font. See :ref:`FontFile.antialiasing<class_FontFile_property_antialiasing>`.
  3207. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project. Use the **Import** dock for that instead (see :ref:`ResourceImporterDynamicFont.antialiasing<class_ResourceImporterDynamicFont_property_antialiasing>`).
  3208. .. rst-class:: classref-item-separator
  3209. ----
  3210. .. _class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps:
  3211. .. rst-class:: classref-property
  3212. :ref:`bool<class_bool>` **gui/theme/default_font_generate_mipmaps** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps>`
  3213. If set to ``true``, the default font will have mipmaps generated. This prevents text from looking grainy when a :ref:`Control<class_Control>` is scaled down, or when a :ref:`Label3D<class_Label3D>` is viewed from a long distance (if :ref:`Label3D.texture_filter<class_Label3D_property_texture_filter>` is set to a mode that displays mipmaps).
  3214. Enabling :ref:`gui/theme/default_font_generate_mipmaps<class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps>` increases font generation time and memory usage. Only enable this setting if you actually need it.
  3215. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project. Use the **Import** dock for that instead (see :ref:`ResourceImporterDynamicFont.generate_mipmaps<class_ResourceImporterDynamicFont_property_generate_mipmaps>`).
  3216. .. rst-class:: classref-item-separator
  3217. ----
  3218. .. _class_ProjectSettings_property_gui/theme/default_font_hinting:
  3219. .. rst-class:: classref-property
  3220. :ref:`int<class_int>` **gui/theme/default_font_hinting** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/default_font_hinting>`
  3221. Font hinting mode for the default project font. See :ref:`FontFile.hinting<class_FontFile_property_hinting>`.
  3222. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project. Use the **Import** dock for that instead (see :ref:`ResourceImporterDynamicFont.hinting<class_ResourceImporterDynamicFont_property_hinting>`).
  3223. .. rst-class:: classref-item-separator
  3224. ----
  3225. .. _class_ProjectSettings_property_gui/theme/default_font_multichannel_signed_distance_field:
  3226. .. rst-class:: classref-property
  3227. :ref:`bool<class_bool>` **gui/theme/default_font_multichannel_signed_distance_field** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/default_font_multichannel_signed_distance_field>`
  3228. If set to ``true``, the default font will use multichannel signed distance field (MSDF) for crisp rendering at any size. Since this approach does not rely on rasterizing the font every time its size changes, this allows for resizing the font in real-time without any performance penalty. Text will also not look grainy for :ref:`Control<class_Control>`\ s that are scaled down (or for :ref:`Label3D<class_Label3D>`\ s viewed from a long distance).
  3229. MSDF font rendering can be combined with :ref:`gui/theme/default_font_generate_mipmaps<class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps>` to further improve font rendering quality when scaled down.
  3230. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project. Use the **Import** dock for that instead (see :ref:`ResourceImporterDynamicFont.multichannel_signed_distance_field<class_ResourceImporterDynamicFont_property_multichannel_signed_distance_field>`).
  3231. .. rst-class:: classref-item-separator
  3232. ----
  3233. .. _class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning:
  3234. .. rst-class:: classref-property
  3235. :ref:`int<class_int>` **gui/theme/default_font_subpixel_positioning** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning>`
  3236. Font glyph subpixel positioning mode for the default project font. See :ref:`FontFile.subpixel_positioning<class_FontFile_property_subpixel_positioning>`.
  3237. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project. Use the **Import** dock for that instead (see :ref:`ResourceImporterDynamicFont.subpixel_positioning<class_ResourceImporterDynamicFont_property_subpixel_positioning>`).
  3238. .. rst-class:: classref-item-separator
  3239. ----
  3240. .. _class_ProjectSettings_property_gui/theme/default_theme_scale:
  3241. .. rst-class:: classref-property
  3242. :ref:`float<class_float>` **gui/theme/default_theme_scale** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/default_theme_scale>`
  3243. The default scale factor for :ref:`Control<class_Control>`\ s, when not overridden by a :ref:`Theme<class_Theme>`.
  3244. \ **Note:** This property is only read when the project starts. To change the default scale at runtime, set :ref:`ThemeDB.fallback_base_scale<class_ThemeDB_property_fallback_base_scale>` instead.
  3245. .. rst-class:: classref-item-separator
  3246. ----
  3247. .. _class_ProjectSettings_property_gui/theme/lcd_subpixel_layout:
  3248. .. rst-class:: classref-property
  3249. :ref:`int<class_int>` **gui/theme/lcd_subpixel_layout** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/theme/lcd_subpixel_layout>`
  3250. LCD subpixel layout used for font anti-aliasing. See :ref:`FontLCDSubpixelLayout<enum_TextServer_FontLCDSubpixelLayout>`.
  3251. .. rst-class:: classref-item-separator
  3252. ----
  3253. .. _class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time:
  3254. .. rst-class:: classref-property
  3255. :ref:`float<class_float>` **gui/timers/button_shortcut_feedback_highlight_time** = ``0.2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time>`
  3256. When :ref:`BaseButton.shortcut_feedback<class_BaseButton_property_shortcut_feedback>` is enabled, this is the time the :ref:`BaseButton<class_BaseButton>` will remain highlighted after a shortcut.
  3257. .. rst-class:: classref-item-separator
  3258. ----
  3259. .. _class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec:
  3260. .. rst-class:: classref-property
  3261. :ref:`int<class_int>` **gui/timers/incremental_search_max_interval_msec** = ``2000`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec>`
  3262. Timer setting for incremental search in :ref:`Tree<class_Tree>`, :ref:`ItemList<class_ItemList>`, etc. controls (in milliseconds).
  3263. .. rst-class:: classref-item-separator
  3264. ----
  3265. .. _class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec:
  3266. .. rst-class:: classref-property
  3267. :ref:`float<class_float>` **gui/timers/text_edit_idle_detect_sec** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec>`
  3268. Timer for detecting idle in :ref:`TextEdit<class_TextEdit>` (in seconds).
  3269. .. rst-class:: classref-item-separator
  3270. ----
  3271. .. _class_ProjectSettings_property_gui/timers/tooltip_delay_sec:
  3272. .. rst-class:: classref-property
  3273. :ref:`float<class_float>` **gui/timers/tooltip_delay_sec** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/timers/tooltip_delay_sec>`
  3274. Default delay for tooltips (in seconds).
  3275. .. rst-class:: classref-item-separator
  3276. ----
  3277. .. _class_ProjectSettings_property_gui/timers/tooltip_delay_sec.editor_hint:
  3278. .. rst-class:: classref-property
  3279. :ref:`float<class_float>` **gui/timers/tooltip_delay_sec.editor_hint** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_gui/timers/tooltip_delay_sec.editor_hint>`
  3280. Delay for tooltips in the editor.
  3281. .. rst-class:: classref-item-separator
  3282. ----
  3283. .. _class_ProjectSettings_property_input/ui_accept:
  3284. .. rst-class:: classref-property
  3285. :ref:`Dictionary<class_Dictionary>` **input/ui_accept** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_accept>`
  3286. Default :ref:`InputEventAction<class_InputEventAction>` to confirm a focused button, menu or list item, or validate input.
  3287. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3288. .. rst-class:: classref-item-separator
  3289. ----
  3290. .. _class_ProjectSettings_property_input/ui_cancel:
  3291. .. rst-class:: classref-property
  3292. :ref:`Dictionary<class_Dictionary>` **input/ui_cancel** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_cancel>`
  3293. Default :ref:`InputEventAction<class_InputEventAction>` to discard a modal or pending input.
  3294. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3295. .. rst-class:: classref-item-separator
  3296. ----
  3297. .. _class_ProjectSettings_property_input/ui_copy:
  3298. .. rst-class:: classref-property
  3299. :ref:`Dictionary<class_Dictionary>` **input/ui_copy** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_copy>`
  3300. Default :ref:`InputEventAction<class_InputEventAction>` to copy a selection to the clipboard.
  3301. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3302. .. rst-class:: classref-item-separator
  3303. ----
  3304. .. _class_ProjectSettings_property_input/ui_cut:
  3305. .. rst-class:: classref-property
  3306. :ref:`Dictionary<class_Dictionary>` **input/ui_cut** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_cut>`
  3307. Default :ref:`InputEventAction<class_InputEventAction>` to cut a selection to the clipboard.
  3308. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3309. .. rst-class:: classref-item-separator
  3310. ----
  3311. .. _class_ProjectSettings_property_input/ui_down:
  3312. .. rst-class:: classref-property
  3313. :ref:`Dictionary<class_Dictionary>` **input/ui_down** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_down>`
  3314. Default :ref:`InputEventAction<class_InputEventAction>` to move down in the UI.
  3315. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3316. .. rst-class:: classref-item-separator
  3317. ----
  3318. .. _class_ProjectSettings_property_input/ui_end:
  3319. .. rst-class:: classref-property
  3320. :ref:`Dictionary<class_Dictionary>` **input/ui_end** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_end>`
  3321. Default :ref:`InputEventAction<class_InputEventAction>` to go to the end position of a :ref:`Control<class_Control>` (e.g. last item in an :ref:`ItemList<class_ItemList>` or a :ref:`Tree<class_Tree>`), matching the behavior of :ref:`@GlobalScope.KEY_END<class_@GlobalScope_constant_KEY_END>` on typical desktop UI systems.
  3322. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3323. .. rst-class:: classref-item-separator
  3324. ----
  3325. .. _class_ProjectSettings_property_input/ui_filedialog_refresh:
  3326. .. rst-class:: classref-property
  3327. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_refresh** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_filedialog_refresh>`
  3328. Default :ref:`InputEventAction<class_InputEventAction>` to refresh the contents of the current directory of a :ref:`FileDialog<class_FileDialog>`.
  3329. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3330. .. rst-class:: classref-item-separator
  3331. ----
  3332. .. _class_ProjectSettings_property_input/ui_filedialog_show_hidden:
  3333. .. rst-class:: classref-property
  3334. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_show_hidden** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_filedialog_show_hidden>`
  3335. Default :ref:`InputEventAction<class_InputEventAction>` to toggle showing hidden files and directories in a :ref:`FileDialog<class_FileDialog>`.
  3336. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3337. .. rst-class:: classref-item-separator
  3338. ----
  3339. .. _class_ProjectSettings_property_input/ui_filedialog_up_one_level:
  3340. .. rst-class:: classref-property
  3341. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_up_one_level** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_filedialog_up_one_level>`
  3342. Default :ref:`InputEventAction<class_InputEventAction>` to go up one directory in a :ref:`FileDialog<class_FileDialog>`.
  3343. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3344. .. rst-class:: classref-item-separator
  3345. ----
  3346. .. _class_ProjectSettings_property_input/ui_focus_next:
  3347. .. rst-class:: classref-property
  3348. :ref:`Dictionary<class_Dictionary>` **input/ui_focus_next** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_focus_next>`
  3349. Default :ref:`InputEventAction<class_InputEventAction>` to focus the next :ref:`Control<class_Control>` in the scene. The focus behavior can be configured via :ref:`Control.focus_next<class_Control_property_focus_next>`.
  3350. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3351. .. rst-class:: classref-item-separator
  3352. ----
  3353. .. _class_ProjectSettings_property_input/ui_focus_prev:
  3354. .. rst-class:: classref-property
  3355. :ref:`Dictionary<class_Dictionary>` **input/ui_focus_prev** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_focus_prev>`
  3356. Default :ref:`InputEventAction<class_InputEventAction>` to focus the previous :ref:`Control<class_Control>` in the scene. The focus behavior can be configured via :ref:`Control.focus_previous<class_Control_property_focus_previous>`.
  3357. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3358. .. rst-class:: classref-item-separator
  3359. ----
  3360. .. _class_ProjectSettings_property_input/ui_graph_delete:
  3361. .. rst-class:: classref-property
  3362. :ref:`Dictionary<class_Dictionary>` **input/ui_graph_delete** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_graph_delete>`
  3363. Default :ref:`InputEventAction<class_InputEventAction>` to delete a :ref:`GraphNode<class_GraphNode>` in a :ref:`GraphEdit<class_GraphEdit>`.
  3364. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3365. .. rst-class:: classref-item-separator
  3366. ----
  3367. .. _class_ProjectSettings_property_input/ui_graph_duplicate:
  3368. .. rst-class:: classref-property
  3369. :ref:`Dictionary<class_Dictionary>` **input/ui_graph_duplicate** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_graph_duplicate>`
  3370. Default :ref:`InputEventAction<class_InputEventAction>` to duplicate a :ref:`GraphNode<class_GraphNode>` in a :ref:`GraphEdit<class_GraphEdit>`.
  3371. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3372. .. rst-class:: classref-item-separator
  3373. ----
  3374. .. _class_ProjectSettings_property_input/ui_home:
  3375. .. rst-class:: classref-property
  3376. :ref:`Dictionary<class_Dictionary>` **input/ui_home** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_home>`
  3377. Default :ref:`InputEventAction<class_InputEventAction>` to go to the start position of a :ref:`Control<class_Control>` (e.g. first item in an :ref:`ItemList<class_ItemList>` or a :ref:`Tree<class_Tree>`), matching the behavior of :ref:`@GlobalScope.KEY_HOME<class_@GlobalScope_constant_KEY_HOME>` on typical desktop UI systems.
  3378. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3379. .. rst-class:: classref-item-separator
  3380. ----
  3381. .. _class_ProjectSettings_property_input/ui_left:
  3382. .. rst-class:: classref-property
  3383. :ref:`Dictionary<class_Dictionary>` **input/ui_left** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_left>`
  3384. Default :ref:`InputEventAction<class_InputEventAction>` to move left in the UI.
  3385. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3386. .. rst-class:: classref-item-separator
  3387. ----
  3388. .. _class_ProjectSettings_property_input/ui_menu:
  3389. .. rst-class:: classref-property
  3390. :ref:`Dictionary<class_Dictionary>` **input/ui_menu** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_menu>`
  3391. Default :ref:`InputEventAction<class_InputEventAction>` to open a context menu in a text field.
  3392. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3393. .. rst-class:: classref-item-separator
  3394. ----
  3395. .. _class_ProjectSettings_property_input/ui_page_down:
  3396. .. rst-class:: classref-property
  3397. :ref:`Dictionary<class_Dictionary>` **input/ui_page_down** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_page_down>`
  3398. Default :ref:`InputEventAction<class_InputEventAction>` to go down a page in a :ref:`Control<class_Control>` (e.g. in an :ref:`ItemList<class_ItemList>` or a :ref:`Tree<class_Tree>`), matching the behavior of :ref:`@GlobalScope.KEY_PAGEDOWN<class_@GlobalScope_constant_KEY_PAGEDOWN>` on typical desktop UI systems.
  3399. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3400. .. rst-class:: classref-item-separator
  3401. ----
  3402. .. _class_ProjectSettings_property_input/ui_page_up:
  3403. .. rst-class:: classref-property
  3404. :ref:`Dictionary<class_Dictionary>` **input/ui_page_up** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_page_up>`
  3405. Default :ref:`InputEventAction<class_InputEventAction>` to go up a page in a :ref:`Control<class_Control>` (e.g. in an :ref:`ItemList<class_ItemList>` or a :ref:`Tree<class_Tree>`), matching the behavior of :ref:`@GlobalScope.KEY_PAGEUP<class_@GlobalScope_constant_KEY_PAGEUP>` on typical desktop UI systems.
  3406. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3407. .. rst-class:: classref-item-separator
  3408. ----
  3409. .. _class_ProjectSettings_property_input/ui_paste:
  3410. .. rst-class:: classref-property
  3411. :ref:`Dictionary<class_Dictionary>` **input/ui_paste** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_paste>`
  3412. Default :ref:`InputEventAction<class_InputEventAction>` to paste from the clipboard.
  3413. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3414. .. rst-class:: classref-item-separator
  3415. ----
  3416. .. _class_ProjectSettings_property_input/ui_redo:
  3417. .. rst-class:: classref-property
  3418. :ref:`Dictionary<class_Dictionary>` **input/ui_redo** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_redo>`
  3419. Default :ref:`InputEventAction<class_InputEventAction>` to redo an undone action.
  3420. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3421. .. rst-class:: classref-item-separator
  3422. ----
  3423. .. _class_ProjectSettings_property_input/ui_right:
  3424. .. rst-class:: classref-property
  3425. :ref:`Dictionary<class_Dictionary>` **input/ui_right** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_right>`
  3426. Default :ref:`InputEventAction<class_InputEventAction>` to move right in the UI.
  3427. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3428. .. rst-class:: classref-item-separator
  3429. ----
  3430. .. _class_ProjectSettings_property_input/ui_select:
  3431. .. rst-class:: classref-property
  3432. :ref:`Dictionary<class_Dictionary>` **input/ui_select** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_select>`
  3433. Default :ref:`InputEventAction<class_InputEventAction>` to select an item in a :ref:`Control<class_Control>` (e.g. in an :ref:`ItemList<class_ItemList>` or a :ref:`Tree<class_Tree>`).
  3434. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3435. .. rst-class:: classref-item-separator
  3436. ----
  3437. .. _class_ProjectSettings_property_input/ui_swap_input_direction:
  3438. .. rst-class:: classref-property
  3439. :ref:`Dictionary<class_Dictionary>` **input/ui_swap_input_direction** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_swap_input_direction>`
  3440. Default :ref:`InputEventAction<class_InputEventAction>` to swap input direction, i.e. change between left-to-right to right-to-left modes. Affects text-editing controls (:ref:`LineEdit<class_LineEdit>`, :ref:`TextEdit<class_TextEdit>`).
  3441. .. rst-class:: classref-item-separator
  3442. ----
  3443. .. _class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence:
  3444. .. rst-class:: classref-property
  3445. :ref:`Dictionary<class_Dictionary>` **input/ui_text_add_selection_for_next_occurrence** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence>`
  3446. If a selection is currently active with the last caret in text fields, searches for the next occurrence of the selection, adds a caret and selects the next occurrence.
  3447. If no selection is currently active with the last caret in text fields, selects the word currently under the caret.
  3448. The action can be performed sequentially for all occurrences of the selection of the last caret and for all existing carets.
  3449. The viewport is adjusted to the latest newly added caret.
  3450. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3451. .. rst-class:: classref-item-separator
  3452. ----
  3453. .. _class_ProjectSettings_property_input/ui_text_backspace:
  3454. .. rst-class:: classref-property
  3455. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_backspace>`
  3456. Default :ref:`InputEventAction<class_InputEventAction>` to delete the character before the text cursor.
  3457. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3458. .. rst-class:: classref-item-separator
  3459. ----
  3460. .. _class_ProjectSettings_property_input/ui_text_backspace_all_to_left:
  3461. .. rst-class:: classref-property
  3462. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_all_to_left** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_backspace_all_to_left>`
  3463. Default :ref:`InputEventAction<class_InputEventAction>` to delete **all** text before the text cursor.
  3464. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3465. .. rst-class:: classref-item-separator
  3466. ----
  3467. .. _class_ProjectSettings_property_input/ui_text_backspace_all_to_left.macos:
  3468. .. rst-class:: classref-property
  3469. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_all_to_left.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_backspace_all_to_left.macos>`
  3470. macOS specific override for the shortcut to delete all text before the text cursor.
  3471. .. rst-class:: classref-item-separator
  3472. ----
  3473. .. _class_ProjectSettings_property_input/ui_text_backspace_word:
  3474. .. rst-class:: classref-property
  3475. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_word** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_backspace_word>`
  3476. Default :ref:`InputEventAction<class_InputEventAction>` to delete all characters before the cursor up until a whitespace or punctuation character.
  3477. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3478. .. rst-class:: classref-item-separator
  3479. ----
  3480. .. _class_ProjectSettings_property_input/ui_text_backspace_word.macos:
  3481. .. rst-class:: classref-property
  3482. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_word.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_backspace_word.macos>`
  3483. macOS specific override for the shortcut to delete a word.
  3484. .. rst-class:: classref-item-separator
  3485. ----
  3486. .. _class_ProjectSettings_property_input/ui_text_caret_add_above:
  3487. .. rst-class:: classref-property
  3488. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_above** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_add_above>`
  3489. Default :ref:`InputEventAction<class_InputEventAction>` to add an additional caret above every caret of a text.
  3490. .. rst-class:: classref-item-separator
  3491. ----
  3492. .. _class_ProjectSettings_property_input/ui_text_caret_add_above.macos:
  3493. .. rst-class:: classref-property
  3494. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_above.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_add_above.macos>`
  3495. macOS specific override for the shortcut to add a caret above every caret.
  3496. .. rst-class:: classref-item-separator
  3497. ----
  3498. .. _class_ProjectSettings_property_input/ui_text_caret_add_below:
  3499. .. rst-class:: classref-property
  3500. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_below** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_add_below>`
  3501. Default :ref:`InputEventAction<class_InputEventAction>` to add an additional caret below every caret of a text.
  3502. .. rst-class:: classref-item-separator
  3503. ----
  3504. .. _class_ProjectSettings_property_input/ui_text_caret_add_below.macos:
  3505. .. rst-class:: classref-property
  3506. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_below.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_add_below.macos>`
  3507. macOS specific override for the shortcut to add a caret below every caret.
  3508. .. rst-class:: classref-item-separator
  3509. ----
  3510. .. _class_ProjectSettings_property_input/ui_text_caret_document_end:
  3511. .. rst-class:: classref-property
  3512. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_end** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_document_end>`
  3513. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the end of the text.
  3514. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3515. .. rst-class:: classref-item-separator
  3516. ----
  3517. .. _class_ProjectSettings_property_input/ui_text_caret_document_end.macos:
  3518. .. rst-class:: classref-property
  3519. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_end.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_document_end.macos>`
  3520. macOS specific override for the shortcut to move the text cursor to the end of the text.
  3521. .. rst-class:: classref-item-separator
  3522. ----
  3523. .. _class_ProjectSettings_property_input/ui_text_caret_document_start:
  3524. .. rst-class:: classref-property
  3525. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_start** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_document_start>`
  3526. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the start of the text.
  3527. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3528. .. rst-class:: classref-item-separator
  3529. ----
  3530. .. _class_ProjectSettings_property_input/ui_text_caret_document_start.macos:
  3531. .. rst-class:: classref-property
  3532. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_start.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_document_start.macos>`
  3533. macOS specific override for the shortcut to move the text cursor to the start of the text.
  3534. .. rst-class:: classref-item-separator
  3535. ----
  3536. .. _class_ProjectSettings_property_input/ui_text_caret_down:
  3537. .. rst-class:: classref-property
  3538. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_down** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_down>`
  3539. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor down.
  3540. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3541. .. rst-class:: classref-item-separator
  3542. ----
  3543. .. _class_ProjectSettings_property_input/ui_text_caret_left:
  3544. .. rst-class:: classref-property
  3545. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_left** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_left>`
  3546. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor left.
  3547. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3548. .. rst-class:: classref-item-separator
  3549. ----
  3550. .. _class_ProjectSettings_property_input/ui_text_caret_line_end:
  3551. .. rst-class:: classref-property
  3552. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_end** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_line_end>`
  3553. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the end of the line.
  3554. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3555. .. rst-class:: classref-item-separator
  3556. ----
  3557. .. _class_ProjectSettings_property_input/ui_text_caret_line_end.macos:
  3558. .. rst-class:: classref-property
  3559. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_end.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_line_end.macos>`
  3560. macOS specific override for the shortcut to move the text cursor to the end of the line.
  3561. .. rst-class:: classref-item-separator
  3562. ----
  3563. .. _class_ProjectSettings_property_input/ui_text_caret_line_start:
  3564. .. rst-class:: classref-property
  3565. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_start** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_line_start>`
  3566. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the start of the line.
  3567. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3568. .. rst-class:: classref-item-separator
  3569. ----
  3570. .. _class_ProjectSettings_property_input/ui_text_caret_line_start.macos:
  3571. .. rst-class:: classref-property
  3572. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_start.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_line_start.macos>`
  3573. macOS specific override for the shortcut to move the text cursor to the start of the line.
  3574. .. rst-class:: classref-item-separator
  3575. ----
  3576. .. _class_ProjectSettings_property_input/ui_text_caret_page_down:
  3577. .. rst-class:: classref-property
  3578. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_page_down** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_page_down>`
  3579. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor down one page.
  3580. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3581. .. rst-class:: classref-item-separator
  3582. ----
  3583. .. _class_ProjectSettings_property_input/ui_text_caret_page_up:
  3584. .. rst-class:: classref-property
  3585. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_page_up** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_page_up>`
  3586. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor up one page.
  3587. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3588. .. rst-class:: classref-item-separator
  3589. ----
  3590. .. _class_ProjectSettings_property_input/ui_text_caret_right:
  3591. .. rst-class:: classref-property
  3592. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_right** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_right>`
  3593. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor right.
  3594. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3595. .. rst-class:: classref-item-separator
  3596. ----
  3597. .. _class_ProjectSettings_property_input/ui_text_caret_up:
  3598. .. rst-class:: classref-property
  3599. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_up** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_up>`
  3600. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor up.
  3601. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3602. .. rst-class:: classref-item-separator
  3603. ----
  3604. .. _class_ProjectSettings_property_input/ui_text_caret_word_left:
  3605. .. rst-class:: classref-property
  3606. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_left** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_word_left>`
  3607. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor left to the next whitespace or punctuation.
  3608. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3609. .. rst-class:: classref-item-separator
  3610. ----
  3611. .. _class_ProjectSettings_property_input/ui_text_caret_word_left.macos:
  3612. .. rst-class:: classref-property
  3613. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_left.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_word_left.macos>`
  3614. macOS specific override for the shortcut to move the text cursor back one word.
  3615. .. rst-class:: classref-item-separator
  3616. ----
  3617. .. _class_ProjectSettings_property_input/ui_text_caret_word_right:
  3618. .. rst-class:: classref-property
  3619. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_right** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_word_right>`
  3620. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor right to the next whitespace or punctuation.
  3621. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3622. .. rst-class:: classref-item-separator
  3623. ----
  3624. .. _class_ProjectSettings_property_input/ui_text_caret_word_right.macos:
  3625. .. rst-class:: classref-property
  3626. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_right.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_caret_word_right.macos>`
  3627. macOS specific override for the shortcut to move the text cursor forward one word.
  3628. .. rst-class:: classref-item-separator
  3629. ----
  3630. .. _class_ProjectSettings_property_input/ui_text_clear_carets_and_selection:
  3631. .. rst-class:: classref-property
  3632. :ref:`Dictionary<class_Dictionary>` **input/ui_text_clear_carets_and_selection** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_clear_carets_and_selection>`
  3633. If there's only one caret active and with a selection, clears the selection.
  3634. In case there's more than one caret active, removes the secondary carets and clears their selections.
  3635. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3636. .. rst-class:: classref-item-separator
  3637. ----
  3638. .. _class_ProjectSettings_property_input/ui_text_completion_accept:
  3639. .. rst-class:: classref-property
  3640. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_accept** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_completion_accept>`
  3641. Default :ref:`InputEventAction<class_InputEventAction>` to accept an autocompletion hint.
  3642. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3643. .. rst-class:: classref-item-separator
  3644. ----
  3645. .. _class_ProjectSettings_property_input/ui_text_completion_query:
  3646. .. rst-class:: classref-property
  3647. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_query** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_completion_query>`
  3648. Default :ref:`InputEventAction<class_InputEventAction>` to request autocompletion.
  3649. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3650. .. rst-class:: classref-item-separator
  3651. ----
  3652. .. _class_ProjectSettings_property_input/ui_text_completion_replace:
  3653. .. rst-class:: classref-property
  3654. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_replace** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_completion_replace>`
  3655. Default :ref:`InputEventAction<class_InputEventAction>` to accept an autocompletion hint, replacing existing text.
  3656. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3657. .. rst-class:: classref-item-separator
  3658. ----
  3659. .. _class_ProjectSettings_property_input/ui_text_dedent:
  3660. .. rst-class:: classref-property
  3661. :ref:`Dictionary<class_Dictionary>` **input/ui_text_dedent** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_dedent>`
  3662. Default :ref:`InputEventAction<class_InputEventAction>` to unindent text.
  3663. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3664. .. rst-class:: classref-item-separator
  3665. ----
  3666. .. _class_ProjectSettings_property_input/ui_text_delete:
  3667. .. rst-class:: classref-property
  3668. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_delete>`
  3669. Default :ref:`InputEventAction<class_InputEventAction>` to delete the character after the text cursor.
  3670. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3671. .. rst-class:: classref-item-separator
  3672. ----
  3673. .. _class_ProjectSettings_property_input/ui_text_delete_all_to_right:
  3674. .. rst-class:: classref-property
  3675. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_all_to_right** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_delete_all_to_right>`
  3676. Default :ref:`InputEventAction<class_InputEventAction>` to delete **all** text after the text cursor.
  3677. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3678. .. rst-class:: classref-item-separator
  3679. ----
  3680. .. _class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos:
  3681. .. rst-class:: classref-property
  3682. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_all_to_right.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos>`
  3683. macOS specific override for the shortcut to delete all text after the text cursor.
  3684. .. rst-class:: classref-item-separator
  3685. ----
  3686. .. _class_ProjectSettings_property_input/ui_text_delete_word:
  3687. .. rst-class:: classref-property
  3688. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_word** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_delete_word>`
  3689. Default :ref:`InputEventAction<class_InputEventAction>` to delete all characters after the cursor up until a whitespace or punctuation character.
  3690. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3691. .. rst-class:: classref-item-separator
  3692. ----
  3693. .. _class_ProjectSettings_property_input/ui_text_delete_word.macos:
  3694. .. rst-class:: classref-property
  3695. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_word.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_delete_word.macos>`
  3696. macOS specific override for the shortcut to delete a word after the text cursor.
  3697. .. rst-class:: classref-item-separator
  3698. ----
  3699. .. _class_ProjectSettings_property_input/ui_text_indent:
  3700. .. rst-class:: classref-property
  3701. :ref:`Dictionary<class_Dictionary>` **input/ui_text_indent** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_indent>`
  3702. Default :ref:`InputEventAction<class_InputEventAction>` to indent the current line.
  3703. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3704. .. rst-class:: classref-item-separator
  3705. ----
  3706. .. _class_ProjectSettings_property_input/ui_text_newline:
  3707. .. rst-class:: classref-property
  3708. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_newline>`
  3709. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line at the position of the text cursor.
  3710. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3711. .. rst-class:: classref-item-separator
  3712. ----
  3713. .. _class_ProjectSettings_property_input/ui_text_newline_above:
  3714. .. rst-class:: classref-property
  3715. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline_above** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_newline_above>`
  3716. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line before the current one.
  3717. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3718. .. rst-class:: classref-item-separator
  3719. ----
  3720. .. _class_ProjectSettings_property_input/ui_text_newline_blank:
  3721. .. rst-class:: classref-property
  3722. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline_blank** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_newline_blank>`
  3723. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line after the current one.
  3724. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3725. .. rst-class:: classref-item-separator
  3726. ----
  3727. .. _class_ProjectSettings_property_input/ui_text_scroll_down:
  3728. .. rst-class:: classref-property
  3729. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_down** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_scroll_down>`
  3730. Default :ref:`InputEventAction<class_InputEventAction>` to scroll down one line of text.
  3731. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3732. .. rst-class:: classref-item-separator
  3733. ----
  3734. .. _class_ProjectSettings_property_input/ui_text_scroll_down.macos:
  3735. .. rst-class:: classref-property
  3736. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_down.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_scroll_down.macos>`
  3737. macOS specific override for the shortcut to scroll down one line.
  3738. .. rst-class:: classref-item-separator
  3739. ----
  3740. .. _class_ProjectSettings_property_input/ui_text_scroll_up:
  3741. .. rst-class:: classref-property
  3742. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_up** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_scroll_up>`
  3743. Default :ref:`InputEventAction<class_InputEventAction>` to scroll up one line of text.
  3744. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3745. .. rst-class:: classref-item-separator
  3746. ----
  3747. .. _class_ProjectSettings_property_input/ui_text_scroll_up.macos:
  3748. .. rst-class:: classref-property
  3749. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_up.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_scroll_up.macos>`
  3750. macOS specific override for the shortcut to scroll up one line.
  3751. .. rst-class:: classref-item-separator
  3752. ----
  3753. .. _class_ProjectSettings_property_input/ui_text_select_all:
  3754. .. rst-class:: classref-property
  3755. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_all** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_select_all>`
  3756. Default :ref:`InputEventAction<class_InputEventAction>` to select all text.
  3757. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3758. .. rst-class:: classref-item-separator
  3759. ----
  3760. .. _class_ProjectSettings_property_input/ui_text_select_word_under_caret:
  3761. .. rst-class:: classref-property
  3762. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_word_under_caret** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_select_word_under_caret>`
  3763. If no selection is currently active, selects the word currently under the caret in text fields. If a selection is currently active, deselects the current selection.
  3764. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3765. .. rst-class:: classref-item-separator
  3766. ----
  3767. .. _class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos:
  3768. .. rst-class:: classref-property
  3769. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_word_under_caret.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos>`
  3770. macOS specific override for the shortcut to select the word currently under the caret.
  3771. .. rst-class:: classref-item-separator
  3772. ----
  3773. .. _class_ProjectSettings_property_input/ui_text_skip_selection_for_next_occurrence:
  3774. .. rst-class:: classref-property
  3775. :ref:`Dictionary<class_Dictionary>` **input/ui_text_skip_selection_for_next_occurrence** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_skip_selection_for_next_occurrence>`
  3776. If no selection is currently active with the last caret in text fields, searches for the next occurrence of the the word currently under the caret and moves the caret to the next occurrence. The action can be performed sequentially for other occurrences of the word under the last caret.
  3777. If a selection is currently active with the last caret in text fields, searches for the next occurrence of the selection, adds a caret, selects the next occurrence then deselects the previous selection and its associated caret. The action can be performed sequentially for other occurrences of the selection of the last caret.
  3778. The viewport is adjusted to the latest newly added caret.
  3779. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3780. .. rst-class:: classref-item-separator
  3781. ----
  3782. .. _class_ProjectSettings_property_input/ui_text_submit:
  3783. .. rst-class:: classref-property
  3784. :ref:`Dictionary<class_Dictionary>` **input/ui_text_submit** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_submit>`
  3785. Default :ref:`InputEventAction<class_InputEventAction>` to submit a text field.
  3786. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3787. .. rst-class:: classref-item-separator
  3788. ----
  3789. .. _class_ProjectSettings_property_input/ui_text_toggle_insert_mode:
  3790. .. rst-class:: classref-property
  3791. :ref:`Dictionary<class_Dictionary>` **input/ui_text_toggle_insert_mode** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_text_toggle_insert_mode>`
  3792. Default :ref:`InputEventAction<class_InputEventAction>` to toggle *insert mode* in a text field. While in insert mode, inserting new text overrides the character after the cursor, unless the next character is a new line.
  3793. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3794. .. rst-class:: classref-item-separator
  3795. ----
  3796. .. _class_ProjectSettings_property_input/ui_undo:
  3797. .. rst-class:: classref-property
  3798. :ref:`Dictionary<class_Dictionary>` **input/ui_undo** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_undo>`
  3799. Default :ref:`InputEventAction<class_InputEventAction>` to undo the most recent action.
  3800. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3801. .. rst-class:: classref-item-separator
  3802. ----
  3803. .. _class_ProjectSettings_property_input/ui_up:
  3804. .. rst-class:: classref-property
  3805. :ref:`Dictionary<class_Dictionary>` **input/ui_up** :ref:`๐Ÿ”—<class_ProjectSettings_property_input/ui_up>`
  3806. Default :ref:`InputEventAction<class_InputEventAction>` to move up in the UI.
  3807. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3808. .. rst-class:: classref-item-separator
  3809. ----
  3810. .. _class_ProjectSettings_property_input_devices/buffering/agile_event_flushing:
  3811. .. rst-class:: classref-property
  3812. :ref:`bool<class_bool>` **input_devices/buffering/agile_event_flushing** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/buffering/agile_event_flushing>`
  3813. If ``true``, key/touch/joystick events will be flushed just before every idle and physics frame.
  3814. If ``false``, such events will be flushed only once per process frame, between iterations of the engine.
  3815. Enabling this can greatly improve the responsiveness to input, specially in devices that need to run multiple physics frames per visible (process) frame, because they can't run at the target frame rate.
  3816. \ **Note:** Currently implemented only on Android.
  3817. .. rst-class:: classref-item-separator
  3818. ----
  3819. .. _class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior:
  3820. .. rst-class:: classref-property
  3821. :ref:`bool<class_bool>` **input_devices/compatibility/legacy_just_pressed_behavior** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior>`
  3822. If ``true``, :ref:`Input.is_action_just_pressed<class_Input_method_is_action_just_pressed>` and :ref:`Input.is_action_just_released<class_Input_method_is_action_just_released>` will only return ``true`` if the action is still in the respective state, i.e. an action that is pressed *and* released on the same frame will be missed.
  3823. If ``false``, no input will be lost.
  3824. \ **Note:** You should in nearly all cases prefer the ``false`` setting. The legacy behavior is to enable supporting old projects that rely on the old logic, without changes to script.
  3825. .. rst-class:: classref-item-separator
  3826. ----
  3827. .. _class_ProjectSettings_property_input_devices/pen_tablet/driver:
  3828. .. rst-class:: classref-property
  3829. :ref:`String<class_String>` **input_devices/pen_tablet/driver** :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pen_tablet/driver>`
  3830. Specifies the tablet driver to use. If left empty, the default driver will be used.
  3831. \ **Note:** The driver in use can be overridden at runtime via the ``--tablet-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3832. .. rst-class:: classref-item-separator
  3833. ----
  3834. .. _class_ProjectSettings_property_input_devices/pen_tablet/driver.windows:
  3835. .. rst-class:: classref-property
  3836. :ref:`String<class_String>` **input_devices/pen_tablet/driver.windows** :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pen_tablet/driver.windows>`
  3837. Override for :ref:`input_devices/pen_tablet/driver<class_ProjectSettings_property_input_devices/pen_tablet/driver>` on Windows.
  3838. .. rst-class:: classref-item-separator
  3839. ----
  3840. .. _class_ProjectSettings_property_input_devices/pointing/android/enable_long_press_as_right_click:
  3841. .. rst-class:: classref-property
  3842. :ref:`bool<class_bool>` **input_devices/pointing/android/enable_long_press_as_right_click** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pointing/android/enable_long_press_as_right_click>`
  3843. If ``true``, long press events on an Android touchscreen are transformed into right click events.
  3844. .. rst-class:: classref-item-separator
  3845. ----
  3846. .. _class_ProjectSettings_property_input_devices/pointing/android/enable_pan_and_scale_gestures:
  3847. .. rst-class:: classref-property
  3848. :ref:`bool<class_bool>` **input_devices/pointing/android/enable_pan_and_scale_gestures** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pointing/android/enable_pan_and_scale_gestures>`
  3849. If ``true``, multi-touch pan and scale gestures are enabled on Android devices.
  3850. .. rst-class:: classref-item-separator
  3851. ----
  3852. .. _class_ProjectSettings_property_input_devices/pointing/android/rotary_input_scroll_axis:
  3853. .. rst-class:: classref-property
  3854. :ref:`int<class_int>` **input_devices/pointing/android/rotary_input_scroll_axis** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pointing/android/rotary_input_scroll_axis>`
  3855. On Wear OS devices, defines which axis of the mouse wheel rotary input is mapped to. This rotary input is usually performed by rotating the physical or virtual (touch-based) bezel on a smartwatch.
  3856. .. rst-class:: classref-item-separator
  3857. ----
  3858. .. _class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch:
  3859. .. rst-class:: classref-property
  3860. :ref:`bool<class_bool>` **input_devices/pointing/emulate_mouse_from_touch** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch>`
  3861. If ``true``, sends mouse input events when tapping or swiping on the touchscreen.
  3862. .. rst-class:: classref-item-separator
  3863. ----
  3864. .. _class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse:
  3865. .. rst-class:: classref-property
  3866. :ref:`bool<class_bool>` **input_devices/pointing/emulate_touch_from_mouse** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse>`
  3867. If ``true``, sends touch input events when clicking or dragging the mouse.
  3868. .. rst-class:: classref-item-separator
  3869. ----
  3870. .. _class_ProjectSettings_property_internationalization/locale/fallback:
  3871. .. rst-class:: classref-property
  3872. :ref:`String<class_String>` **internationalization/locale/fallback** = ``"en"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/locale/fallback>`
  3873. The locale to fall back to if a translation isn't available in a given language. If left empty, ``en`` (English) will be used.
  3874. .. rst-class:: classref-item-separator
  3875. ----
  3876. .. _class_ProjectSettings_property_internationalization/locale/include_text_server_data:
  3877. .. rst-class:: classref-property
  3878. :ref:`bool<class_bool>` **internationalization/locale/include_text_server_data** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/locale/include_text_server_data>`
  3879. If ``true``, text server break iteration rule sets, dictionaries and other optional data are included in the exported project.
  3880. \ **Note:** "ICU / HarfBuzz / Graphite" text server data includes dictionaries for Burmese, Chinese, Japanese, Khmer, Lao and Thai as well as Unicode Standard Annex #29 and Unicode Standard Annex #14 word and line breaking rules. Data is about 4 MB large.
  3881. \ **Note:** "Fallback" text server does not use additional data.
  3882. .. rst-class:: classref-item-separator
  3883. ----
  3884. .. _class_ProjectSettings_property_internationalization/locale/test:
  3885. .. rst-class:: classref-property
  3886. :ref:`String<class_String>` **internationalization/locale/test** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/locale/test>`
  3887. If non-empty, this locale will be used when running the project from the editor.
  3888. .. rst-class:: classref-item-separator
  3889. ----
  3890. .. _class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels:
  3891. .. rst-class:: classref-property
  3892. :ref:`bool<class_bool>` **internationalization/pseudolocalization/double_vowels** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels>`
  3893. Double vowels in strings during pseudolocalization to simulate the lengthening of text due to localization.
  3894. .. rst-class:: classref-item-separator
  3895. ----
  3896. .. _class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio:
  3897. .. rst-class:: classref-property
  3898. :ref:`float<class_float>` **internationalization/pseudolocalization/expansion_ratio** = ``0.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio>`
  3899. The expansion ratio to use during pseudolocalization. A value of ``0.3`` is sufficient for most practical purposes, and will increase the length of each string by 30%.
  3900. .. rst-class:: classref-item-separator
  3901. ----
  3902. .. _class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi:
  3903. .. rst-class:: classref-property
  3904. :ref:`bool<class_bool>` **internationalization/pseudolocalization/fake_bidi** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi>`
  3905. If ``true``, emulate bidirectional (right-to-left) text when pseudolocalization is enabled. This can be used to spot issues with RTL layout and UI mirroring that will crop up if the project is localized to RTL languages such as Arabic or Hebrew.
  3906. .. rst-class:: classref-item-separator
  3907. ----
  3908. .. _class_ProjectSettings_property_internationalization/pseudolocalization/override:
  3909. .. rst-class:: classref-property
  3910. :ref:`bool<class_bool>` **internationalization/pseudolocalization/override** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/override>`
  3911. Replace all characters in the string with ``*``. Useful for finding non-localizable strings.
  3912. .. rst-class:: classref-item-separator
  3913. ----
  3914. .. _class_ProjectSettings_property_internationalization/pseudolocalization/prefix:
  3915. .. rst-class:: classref-property
  3916. :ref:`String<class_String>` **internationalization/pseudolocalization/prefix** = ``"["`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/prefix>`
  3917. Prefix that will be prepended to the pseudolocalized string.
  3918. .. rst-class:: classref-item-separator
  3919. ----
  3920. .. _class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents:
  3921. .. rst-class:: classref-property
  3922. :ref:`bool<class_bool>` **internationalization/pseudolocalization/replace_with_accents** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents>`
  3923. Replace all characters with their accented variants during pseudolocalization.
  3924. .. rst-class:: classref-item-separator
  3925. ----
  3926. .. _class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders:
  3927. .. rst-class:: classref-property
  3928. :ref:`bool<class_bool>` **internationalization/pseudolocalization/skip_placeholders** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders>`
  3929. Skip placeholders for string formatting like ``%s`` or ``%f`` during pseudolocalization. Useful to identify strings which need additional control characters to display correctly.
  3930. .. rst-class:: classref-item-separator
  3931. ----
  3932. .. _class_ProjectSettings_property_internationalization/pseudolocalization/suffix:
  3933. .. rst-class:: classref-property
  3934. :ref:`String<class_String>` **internationalization/pseudolocalization/suffix** = ``"]"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/suffix>`
  3935. Suffix that will be appended to the pseudolocalized string.
  3936. .. rst-class:: classref-item-separator
  3937. ----
  3938. .. _class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization:
  3939. .. rst-class:: classref-property
  3940. :ref:`bool<class_bool>` **internationalization/pseudolocalization/use_pseudolocalization** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization>`
  3941. If ``true``, enables pseudolocalization for the project. This can be used to spot untranslatable strings or layout issues that may occur once the project is localized to languages that have longer strings than the source language.
  3942. \ **Note:** This property is only read when the project starts. To toggle pseudolocalization at run-time, use :ref:`TranslationServer.pseudolocalization_enabled<class_TranslationServer_property_pseudolocalization_enabled>` instead.
  3943. .. rst-class:: classref-item-separator
  3944. ----
  3945. .. _class_ProjectSettings_property_internationalization/rendering/force_right_to_left_layout_direction:
  3946. .. rst-class:: classref-property
  3947. :ref:`bool<class_bool>` **internationalization/rendering/force_right_to_left_layout_direction** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/rendering/force_right_to_left_layout_direction>`
  3948. Force layout direction and text writing direction to RTL for all controls.
  3949. .. rst-class:: classref-item-separator
  3950. ----
  3951. .. _class_ProjectSettings_property_internationalization/rendering/root_node_auto_translate:
  3952. .. rst-class:: classref-property
  3953. :ref:`bool<class_bool>` **internationalization/rendering/root_node_auto_translate** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/rendering/root_node_auto_translate>`
  3954. If ``true``, root node will use :ref:`Node.AUTO_TRANSLATE_MODE_ALWAYS<class_Node_constant_AUTO_TRANSLATE_MODE_ALWAYS>`, otherwise :ref:`Node.AUTO_TRANSLATE_MODE_DISABLED<class_Node_constant_AUTO_TRANSLATE_MODE_DISABLED>` will be used.
  3955. \ **Note:** This property is only read when the project starts. To change the auto translate mode at runtime, set :ref:`Node.auto_translate_mode<class_Node_property_auto_translate_mode>` of :ref:`SceneTree.root<class_SceneTree_property_root>` instead.
  3956. .. rst-class:: classref-item-separator
  3957. ----
  3958. .. _class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction:
  3959. .. rst-class:: classref-property
  3960. :ref:`int<class_int>` **internationalization/rendering/root_node_layout_direction** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction>`
  3961. Root node default layout direction.
  3962. .. rst-class:: classref-item-separator
  3963. ----
  3964. .. _class_ProjectSettings_property_internationalization/rendering/text_driver:
  3965. .. rst-class:: classref-property
  3966. :ref:`String<class_String>` **internationalization/rendering/text_driver** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_internationalization/rendering/text_driver>`
  3967. Specifies the :ref:`TextServer<class_TextServer>` to use. If left empty, the default will be used.
  3968. "ICU / HarfBuzz / Graphite" is the most advanced text driver, supporting right-to-left typesetting and complex scripts (for languages like Arabic, Hebrew, etc.). The "Fallback" text driver does not support right-to-left typesetting and complex scripts.
  3969. \ **Note:** The driver in use can be overridden at runtime via the ``--text-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3970. \ **Note:** There is an additional ``Dummy`` text driver available, which disables all text rendering and font-related functionality. This driver is not listed in the project settings, but it can be enabled when running the editor or project using the ``--text-driver Dummy`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3971. .. rst-class:: classref-item-separator
  3972. ----
  3973. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_1:
  3974. .. rst-class:: classref-property
  3975. :ref:`String<class_String>` **layer_names/2d_navigation/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_1>`
  3976. Optional name for the 2D navigation layer 1. If left empty, the layer will display as "Layer 1".
  3977. .. rst-class:: classref-item-separator
  3978. ----
  3979. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_2:
  3980. .. rst-class:: classref-property
  3981. :ref:`String<class_String>` **layer_names/2d_navigation/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_2>`
  3982. Optional name for the 2D navigation layer 2. If left empty, the layer will display as "Layer 2".
  3983. .. rst-class:: classref-item-separator
  3984. ----
  3985. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_3:
  3986. .. rst-class:: classref-property
  3987. :ref:`String<class_String>` **layer_names/2d_navigation/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_3>`
  3988. Optional name for the 2D navigation layer 3. If left empty, the layer will display as "Layer 3".
  3989. .. rst-class:: classref-item-separator
  3990. ----
  3991. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_4:
  3992. .. rst-class:: classref-property
  3993. :ref:`String<class_String>` **layer_names/2d_navigation/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_4>`
  3994. Optional name for the 2D navigation layer 4. If left empty, the layer will display as "Layer 4".
  3995. .. rst-class:: classref-item-separator
  3996. ----
  3997. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_5:
  3998. .. rst-class:: classref-property
  3999. :ref:`String<class_String>` **layer_names/2d_navigation/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_5>`
  4000. Optional name for the 2D navigation layer 5. If left empty, the layer will display as "Layer 5".
  4001. .. rst-class:: classref-item-separator
  4002. ----
  4003. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_6:
  4004. .. rst-class:: classref-property
  4005. :ref:`String<class_String>` **layer_names/2d_navigation/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_6>`
  4006. Optional name for the 2D navigation layer 6. If left empty, the layer will display as "Layer 6".
  4007. .. rst-class:: classref-item-separator
  4008. ----
  4009. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_7:
  4010. .. rst-class:: classref-property
  4011. :ref:`String<class_String>` **layer_names/2d_navigation/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_7>`
  4012. Optional name for the 2D navigation layer 7. If left empty, the layer will display as "Layer 7".
  4013. .. rst-class:: classref-item-separator
  4014. ----
  4015. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_8:
  4016. .. rst-class:: classref-property
  4017. :ref:`String<class_String>` **layer_names/2d_navigation/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_8>`
  4018. Optional name for the 2D navigation layer 8. If left empty, the layer will display as "Layer 8".
  4019. .. rst-class:: classref-item-separator
  4020. ----
  4021. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_9:
  4022. .. rst-class:: classref-property
  4023. :ref:`String<class_String>` **layer_names/2d_navigation/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_9>`
  4024. Optional name for the 2D navigation layer 9. If left empty, the layer will display as "Layer 9".
  4025. .. rst-class:: classref-item-separator
  4026. ----
  4027. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_10:
  4028. .. rst-class:: classref-property
  4029. :ref:`String<class_String>` **layer_names/2d_navigation/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_10>`
  4030. Optional name for the 2D navigation layer 10. If left empty, the layer will display as "Layer 10".
  4031. .. rst-class:: classref-item-separator
  4032. ----
  4033. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_11:
  4034. .. rst-class:: classref-property
  4035. :ref:`String<class_String>` **layer_names/2d_navigation/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_11>`
  4036. Optional name for the 2D navigation layer 11. If left empty, the layer will display as "Layer 11".
  4037. .. rst-class:: classref-item-separator
  4038. ----
  4039. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_12:
  4040. .. rst-class:: classref-property
  4041. :ref:`String<class_String>` **layer_names/2d_navigation/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_12>`
  4042. Optional name for the 2D navigation layer 12. If left empty, the layer will display as "Layer 12".
  4043. .. rst-class:: classref-item-separator
  4044. ----
  4045. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_13:
  4046. .. rst-class:: classref-property
  4047. :ref:`String<class_String>` **layer_names/2d_navigation/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_13>`
  4048. Optional name for the 2D navigation layer 13. If left empty, the layer will display as "Layer 13".
  4049. .. rst-class:: classref-item-separator
  4050. ----
  4051. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_14:
  4052. .. rst-class:: classref-property
  4053. :ref:`String<class_String>` **layer_names/2d_navigation/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_14>`
  4054. Optional name for the 2D navigation layer 14. If left empty, the layer will display as "Layer 14".
  4055. .. rst-class:: classref-item-separator
  4056. ----
  4057. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_15:
  4058. .. rst-class:: classref-property
  4059. :ref:`String<class_String>` **layer_names/2d_navigation/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_15>`
  4060. Optional name for the 2D navigation layer 15. If left empty, the layer will display as "Layer 15".
  4061. .. rst-class:: classref-item-separator
  4062. ----
  4063. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_16:
  4064. .. rst-class:: classref-property
  4065. :ref:`String<class_String>` **layer_names/2d_navigation/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_16>`
  4066. Optional name for the 2D navigation layer 16. If left empty, the layer will display as "Layer 16".
  4067. .. rst-class:: classref-item-separator
  4068. ----
  4069. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_17:
  4070. .. rst-class:: classref-property
  4071. :ref:`String<class_String>` **layer_names/2d_navigation/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_17>`
  4072. Optional name for the 2D navigation layer 17. If left empty, the layer will display as "Layer 17".
  4073. .. rst-class:: classref-item-separator
  4074. ----
  4075. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_18:
  4076. .. rst-class:: classref-property
  4077. :ref:`String<class_String>` **layer_names/2d_navigation/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_18>`
  4078. Optional name for the 2D navigation layer 18. If left empty, the layer will display as "Layer 18".
  4079. .. rst-class:: classref-item-separator
  4080. ----
  4081. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_19:
  4082. .. rst-class:: classref-property
  4083. :ref:`String<class_String>` **layer_names/2d_navigation/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_19>`
  4084. Optional name for the 2D navigation layer 19. If left empty, the layer will display as "Layer 19".
  4085. .. rst-class:: classref-item-separator
  4086. ----
  4087. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_20:
  4088. .. rst-class:: classref-property
  4089. :ref:`String<class_String>` **layer_names/2d_navigation/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_20>`
  4090. Optional name for the 2D navigation layer 20. If left empty, the layer will display as "Layer 20".
  4091. .. rst-class:: classref-item-separator
  4092. ----
  4093. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_21:
  4094. .. rst-class:: classref-property
  4095. :ref:`String<class_String>` **layer_names/2d_navigation/layer_21** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_21>`
  4096. Optional name for the 2D navigation layer 21. If left empty, the layer will display as "Layer 21".
  4097. .. rst-class:: classref-item-separator
  4098. ----
  4099. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_22:
  4100. .. rst-class:: classref-property
  4101. :ref:`String<class_String>` **layer_names/2d_navigation/layer_22** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_22>`
  4102. Optional name for the 2D navigation layer 22. If left empty, the layer will display as "Layer 22".
  4103. .. rst-class:: classref-item-separator
  4104. ----
  4105. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_23:
  4106. .. rst-class:: classref-property
  4107. :ref:`String<class_String>` **layer_names/2d_navigation/layer_23** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_23>`
  4108. Optional name for the 2D navigation layer 23. If left empty, the layer will display as "Layer 23".
  4109. .. rst-class:: classref-item-separator
  4110. ----
  4111. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_24:
  4112. .. rst-class:: classref-property
  4113. :ref:`String<class_String>` **layer_names/2d_navigation/layer_24** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_24>`
  4114. Optional name for the 2D navigation layer 24. If left empty, the layer will display as "Layer 24".
  4115. .. rst-class:: classref-item-separator
  4116. ----
  4117. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_25:
  4118. .. rst-class:: classref-property
  4119. :ref:`String<class_String>` **layer_names/2d_navigation/layer_25** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_25>`
  4120. Optional name for the 2D navigation layer 25. If left empty, the layer will display as "Layer 25".
  4121. .. rst-class:: classref-item-separator
  4122. ----
  4123. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_26:
  4124. .. rst-class:: classref-property
  4125. :ref:`String<class_String>` **layer_names/2d_navigation/layer_26** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_26>`
  4126. Optional name for the 2D navigation layer 26. If left empty, the layer will display as "Layer 26".
  4127. .. rst-class:: classref-item-separator
  4128. ----
  4129. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_27:
  4130. .. rst-class:: classref-property
  4131. :ref:`String<class_String>` **layer_names/2d_navigation/layer_27** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_27>`
  4132. Optional name for the 2D navigation layer 27. If left empty, the layer will display as "Layer 27".
  4133. .. rst-class:: classref-item-separator
  4134. ----
  4135. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_28:
  4136. .. rst-class:: classref-property
  4137. :ref:`String<class_String>` **layer_names/2d_navigation/layer_28** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_28>`
  4138. Optional name for the 2D navigation layer 28. If left empty, the layer will display as "Layer 28".
  4139. .. rst-class:: classref-item-separator
  4140. ----
  4141. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_29:
  4142. .. rst-class:: classref-property
  4143. :ref:`String<class_String>` **layer_names/2d_navigation/layer_29** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_29>`
  4144. Optional name for the 2D navigation layer 29. If left empty, the layer will display as "Layer 29".
  4145. .. rst-class:: classref-item-separator
  4146. ----
  4147. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_30:
  4148. .. rst-class:: classref-property
  4149. :ref:`String<class_String>` **layer_names/2d_navigation/layer_30** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_30>`
  4150. Optional name for the 2D navigation layer 30. If left empty, the layer will display as "Layer 30".
  4151. .. rst-class:: classref-item-separator
  4152. ----
  4153. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_31:
  4154. .. rst-class:: classref-property
  4155. :ref:`String<class_String>` **layer_names/2d_navigation/layer_31** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_31>`
  4156. Optional name for the 2D navigation layer 31. If left empty, the layer will display as "Layer 31".
  4157. .. rst-class:: classref-item-separator
  4158. ----
  4159. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_32:
  4160. .. rst-class:: classref-property
  4161. :ref:`String<class_String>` **layer_names/2d_navigation/layer_32** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_navigation/layer_32>`
  4162. Optional name for the 2D navigation layer 32. If left empty, the layer will display as "Layer 32".
  4163. .. rst-class:: classref-item-separator
  4164. ----
  4165. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_1:
  4166. .. rst-class:: classref-property
  4167. :ref:`String<class_String>` **layer_names/2d_physics/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_1>`
  4168. Optional name for the 2D physics layer 1. If left empty, the layer will display as "Layer 1".
  4169. .. rst-class:: classref-item-separator
  4170. ----
  4171. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_2:
  4172. .. rst-class:: classref-property
  4173. :ref:`String<class_String>` **layer_names/2d_physics/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_2>`
  4174. Optional name for the 2D physics layer 2. If left empty, the layer will display as "Layer 2".
  4175. .. rst-class:: classref-item-separator
  4176. ----
  4177. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_3:
  4178. .. rst-class:: classref-property
  4179. :ref:`String<class_String>` **layer_names/2d_physics/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_3>`
  4180. Optional name for the 2D physics layer 3. If left empty, the layer will display as "Layer 3".
  4181. .. rst-class:: classref-item-separator
  4182. ----
  4183. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_4:
  4184. .. rst-class:: classref-property
  4185. :ref:`String<class_String>` **layer_names/2d_physics/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_4>`
  4186. Optional name for the 2D physics layer 4. If left empty, the layer will display as "Layer 4".
  4187. .. rst-class:: classref-item-separator
  4188. ----
  4189. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_5:
  4190. .. rst-class:: classref-property
  4191. :ref:`String<class_String>` **layer_names/2d_physics/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_5>`
  4192. Optional name for the 2D physics layer 5. If left empty, the layer will display as "Layer 5".
  4193. .. rst-class:: classref-item-separator
  4194. ----
  4195. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_6:
  4196. .. rst-class:: classref-property
  4197. :ref:`String<class_String>` **layer_names/2d_physics/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_6>`
  4198. Optional name for the 2D physics layer 6. If left empty, the layer will display as "Layer 6".
  4199. .. rst-class:: classref-item-separator
  4200. ----
  4201. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_7:
  4202. .. rst-class:: classref-property
  4203. :ref:`String<class_String>` **layer_names/2d_physics/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_7>`
  4204. Optional name for the 2D physics layer 7. If left empty, the layer will display as "Layer 7".
  4205. .. rst-class:: classref-item-separator
  4206. ----
  4207. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_8:
  4208. .. rst-class:: classref-property
  4209. :ref:`String<class_String>` **layer_names/2d_physics/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_8>`
  4210. Optional name for the 2D physics layer 8. If left empty, the layer will display as "Layer 8".
  4211. .. rst-class:: classref-item-separator
  4212. ----
  4213. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_9:
  4214. .. rst-class:: classref-property
  4215. :ref:`String<class_String>` **layer_names/2d_physics/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_9>`
  4216. Optional name for the 2D physics layer 9. If left empty, the layer will display as "Layer 9".
  4217. .. rst-class:: classref-item-separator
  4218. ----
  4219. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_10:
  4220. .. rst-class:: classref-property
  4221. :ref:`String<class_String>` **layer_names/2d_physics/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_10>`
  4222. Optional name for the 2D physics layer 10. If left empty, the layer will display as "Layer 10".
  4223. .. rst-class:: classref-item-separator
  4224. ----
  4225. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_11:
  4226. .. rst-class:: classref-property
  4227. :ref:`String<class_String>` **layer_names/2d_physics/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_11>`
  4228. Optional name for the 2D physics layer 11. If left empty, the layer will display as "Layer 11".
  4229. .. rst-class:: classref-item-separator
  4230. ----
  4231. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_12:
  4232. .. rst-class:: classref-property
  4233. :ref:`String<class_String>` **layer_names/2d_physics/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_12>`
  4234. Optional name for the 2D physics layer 12. If left empty, the layer will display as "Layer 12".
  4235. .. rst-class:: classref-item-separator
  4236. ----
  4237. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_13:
  4238. .. rst-class:: classref-property
  4239. :ref:`String<class_String>` **layer_names/2d_physics/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_13>`
  4240. Optional name for the 2D physics layer 13. If left empty, the layer will display as "Layer 13".
  4241. .. rst-class:: classref-item-separator
  4242. ----
  4243. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_14:
  4244. .. rst-class:: classref-property
  4245. :ref:`String<class_String>` **layer_names/2d_physics/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_14>`
  4246. Optional name for the 2D physics layer 14. If left empty, the layer will display as "Layer 14".
  4247. .. rst-class:: classref-item-separator
  4248. ----
  4249. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_15:
  4250. .. rst-class:: classref-property
  4251. :ref:`String<class_String>` **layer_names/2d_physics/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_15>`
  4252. Optional name for the 2D physics layer 15. If left empty, the layer will display as "Layer 15".
  4253. .. rst-class:: classref-item-separator
  4254. ----
  4255. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_16:
  4256. .. rst-class:: classref-property
  4257. :ref:`String<class_String>` **layer_names/2d_physics/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_16>`
  4258. Optional name for the 2D physics layer 16. If left empty, the layer will display as "Layer 16".
  4259. .. rst-class:: classref-item-separator
  4260. ----
  4261. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_17:
  4262. .. rst-class:: classref-property
  4263. :ref:`String<class_String>` **layer_names/2d_physics/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_17>`
  4264. Optional name for the 2D physics layer 17. If left empty, the layer will display as "Layer 17".
  4265. .. rst-class:: classref-item-separator
  4266. ----
  4267. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_18:
  4268. .. rst-class:: classref-property
  4269. :ref:`String<class_String>` **layer_names/2d_physics/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_18>`
  4270. Optional name for the 2D physics layer 18. If left empty, the layer will display as "Layer 18".
  4271. .. rst-class:: classref-item-separator
  4272. ----
  4273. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_19:
  4274. .. rst-class:: classref-property
  4275. :ref:`String<class_String>` **layer_names/2d_physics/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_19>`
  4276. Optional name for the 2D physics layer 19. If left empty, the layer will display as "Layer 19".
  4277. .. rst-class:: classref-item-separator
  4278. ----
  4279. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_20:
  4280. .. rst-class:: classref-property
  4281. :ref:`String<class_String>` **layer_names/2d_physics/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_20>`
  4282. Optional name for the 2D physics layer 20. If left empty, the layer will display as "Layer 20".
  4283. .. rst-class:: classref-item-separator
  4284. ----
  4285. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_21:
  4286. .. rst-class:: classref-property
  4287. :ref:`String<class_String>` **layer_names/2d_physics/layer_21** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_21>`
  4288. Optional name for the 2D physics layer 21. If left empty, the layer will display as "Layer 21".
  4289. .. rst-class:: classref-item-separator
  4290. ----
  4291. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_22:
  4292. .. rst-class:: classref-property
  4293. :ref:`String<class_String>` **layer_names/2d_physics/layer_22** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_22>`
  4294. Optional name for the 2D physics layer 22. If left empty, the layer will display as "Layer 22".
  4295. .. rst-class:: classref-item-separator
  4296. ----
  4297. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_23:
  4298. .. rst-class:: classref-property
  4299. :ref:`String<class_String>` **layer_names/2d_physics/layer_23** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_23>`
  4300. Optional name for the 2D physics layer 23. If left empty, the layer will display as "Layer 23".
  4301. .. rst-class:: classref-item-separator
  4302. ----
  4303. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_24:
  4304. .. rst-class:: classref-property
  4305. :ref:`String<class_String>` **layer_names/2d_physics/layer_24** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_24>`
  4306. Optional name for the 2D physics layer 24. If left empty, the layer will display as "Layer 24".
  4307. .. rst-class:: classref-item-separator
  4308. ----
  4309. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_25:
  4310. .. rst-class:: classref-property
  4311. :ref:`String<class_String>` **layer_names/2d_physics/layer_25** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_25>`
  4312. Optional name for the 2D physics layer 25. If left empty, the layer will display as "Layer 25".
  4313. .. rst-class:: classref-item-separator
  4314. ----
  4315. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_26:
  4316. .. rst-class:: classref-property
  4317. :ref:`String<class_String>` **layer_names/2d_physics/layer_26** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_26>`
  4318. Optional name for the 2D physics layer 26. If left empty, the layer will display as "Layer 26".
  4319. .. rst-class:: classref-item-separator
  4320. ----
  4321. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_27:
  4322. .. rst-class:: classref-property
  4323. :ref:`String<class_String>` **layer_names/2d_physics/layer_27** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_27>`
  4324. Optional name for the 2D physics layer 27. If left empty, the layer will display as "Layer 27".
  4325. .. rst-class:: classref-item-separator
  4326. ----
  4327. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_28:
  4328. .. rst-class:: classref-property
  4329. :ref:`String<class_String>` **layer_names/2d_physics/layer_28** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_28>`
  4330. Optional name for the 2D physics layer 28. If left empty, the layer will display as "Layer 28".
  4331. .. rst-class:: classref-item-separator
  4332. ----
  4333. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_29:
  4334. .. rst-class:: classref-property
  4335. :ref:`String<class_String>` **layer_names/2d_physics/layer_29** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_29>`
  4336. Optional name for the 2D physics layer 29. If left empty, the layer will display as "Layer 29".
  4337. .. rst-class:: classref-item-separator
  4338. ----
  4339. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_30:
  4340. .. rst-class:: classref-property
  4341. :ref:`String<class_String>` **layer_names/2d_physics/layer_30** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_30>`
  4342. Optional name for the 2D physics layer 30. If left empty, the layer will display as "Layer 30".
  4343. .. rst-class:: classref-item-separator
  4344. ----
  4345. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_31:
  4346. .. rst-class:: classref-property
  4347. :ref:`String<class_String>` **layer_names/2d_physics/layer_31** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_31>`
  4348. Optional name for the 2D physics layer 31. If left empty, the layer will display as "Layer 31".
  4349. .. rst-class:: classref-item-separator
  4350. ----
  4351. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_32:
  4352. .. rst-class:: classref-property
  4353. :ref:`String<class_String>` **layer_names/2d_physics/layer_32** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_physics/layer_32>`
  4354. Optional name for the 2D physics layer 32. If left empty, the layer will display as "Layer 32".
  4355. .. rst-class:: classref-item-separator
  4356. ----
  4357. .. _class_ProjectSettings_property_layer_names/2d_render/layer_1:
  4358. .. rst-class:: classref-property
  4359. :ref:`String<class_String>` **layer_names/2d_render/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_1>`
  4360. Optional name for the 2D render layer 1. If left empty, the layer will display as "Layer 1".
  4361. .. rst-class:: classref-item-separator
  4362. ----
  4363. .. _class_ProjectSettings_property_layer_names/2d_render/layer_2:
  4364. .. rst-class:: classref-property
  4365. :ref:`String<class_String>` **layer_names/2d_render/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_2>`
  4366. Optional name for the 2D render layer 2. If left empty, the layer will display as "Layer 2".
  4367. .. rst-class:: classref-item-separator
  4368. ----
  4369. .. _class_ProjectSettings_property_layer_names/2d_render/layer_3:
  4370. .. rst-class:: classref-property
  4371. :ref:`String<class_String>` **layer_names/2d_render/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_3>`
  4372. Optional name for the 2D render layer 3. If left empty, the layer will display as "Layer 3".
  4373. .. rst-class:: classref-item-separator
  4374. ----
  4375. .. _class_ProjectSettings_property_layer_names/2d_render/layer_4:
  4376. .. rst-class:: classref-property
  4377. :ref:`String<class_String>` **layer_names/2d_render/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_4>`
  4378. Optional name for the 2D render layer 4. If left empty, the layer will display as "Layer 4".
  4379. .. rst-class:: classref-item-separator
  4380. ----
  4381. .. _class_ProjectSettings_property_layer_names/2d_render/layer_5:
  4382. .. rst-class:: classref-property
  4383. :ref:`String<class_String>` **layer_names/2d_render/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_5>`
  4384. Optional name for the 2D render layer 5. If left empty, the layer will display as "Layer 5".
  4385. .. rst-class:: classref-item-separator
  4386. ----
  4387. .. _class_ProjectSettings_property_layer_names/2d_render/layer_6:
  4388. .. rst-class:: classref-property
  4389. :ref:`String<class_String>` **layer_names/2d_render/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_6>`
  4390. Optional name for the 2D render layer 6. If left empty, the layer will display as "Layer 6".
  4391. .. rst-class:: classref-item-separator
  4392. ----
  4393. .. _class_ProjectSettings_property_layer_names/2d_render/layer_7:
  4394. .. rst-class:: classref-property
  4395. :ref:`String<class_String>` **layer_names/2d_render/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_7>`
  4396. Optional name for the 2D render layer 7. If left empty, the layer will display as "Layer 7".
  4397. .. rst-class:: classref-item-separator
  4398. ----
  4399. .. _class_ProjectSettings_property_layer_names/2d_render/layer_8:
  4400. .. rst-class:: classref-property
  4401. :ref:`String<class_String>` **layer_names/2d_render/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_8>`
  4402. Optional name for the 2D render layer 8. If left empty, the layer will display as "Layer 8".
  4403. .. rst-class:: classref-item-separator
  4404. ----
  4405. .. _class_ProjectSettings_property_layer_names/2d_render/layer_9:
  4406. .. rst-class:: classref-property
  4407. :ref:`String<class_String>` **layer_names/2d_render/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_9>`
  4408. Optional name for the 2D render layer 9. If left empty, the layer will display as "Layer 9".
  4409. .. rst-class:: classref-item-separator
  4410. ----
  4411. .. _class_ProjectSettings_property_layer_names/2d_render/layer_10:
  4412. .. rst-class:: classref-property
  4413. :ref:`String<class_String>` **layer_names/2d_render/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_10>`
  4414. Optional name for the 2D render layer 10. If left empty, the layer will display as "Layer 10".
  4415. .. rst-class:: classref-item-separator
  4416. ----
  4417. .. _class_ProjectSettings_property_layer_names/2d_render/layer_11:
  4418. .. rst-class:: classref-property
  4419. :ref:`String<class_String>` **layer_names/2d_render/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_11>`
  4420. Optional name for the 2D render layer 11. If left empty, the layer will display as "Layer 11".
  4421. .. rst-class:: classref-item-separator
  4422. ----
  4423. .. _class_ProjectSettings_property_layer_names/2d_render/layer_12:
  4424. .. rst-class:: classref-property
  4425. :ref:`String<class_String>` **layer_names/2d_render/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_12>`
  4426. Optional name for the 2D render layer 12. If left empty, the layer will display as "Layer 12".
  4427. .. rst-class:: classref-item-separator
  4428. ----
  4429. .. _class_ProjectSettings_property_layer_names/2d_render/layer_13:
  4430. .. rst-class:: classref-property
  4431. :ref:`String<class_String>` **layer_names/2d_render/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_13>`
  4432. Optional name for the 2D render layer 13. If left empty, the layer will display as "Layer 13".
  4433. .. rst-class:: classref-item-separator
  4434. ----
  4435. .. _class_ProjectSettings_property_layer_names/2d_render/layer_14:
  4436. .. rst-class:: classref-property
  4437. :ref:`String<class_String>` **layer_names/2d_render/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_14>`
  4438. Optional name for the 2D render layer 14. If left empty, the layer will display as "Layer 14".
  4439. .. rst-class:: classref-item-separator
  4440. ----
  4441. .. _class_ProjectSettings_property_layer_names/2d_render/layer_15:
  4442. .. rst-class:: classref-property
  4443. :ref:`String<class_String>` **layer_names/2d_render/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_15>`
  4444. Optional name for the 2D render layer 15. If left empty, the layer will display as "Layer 15".
  4445. .. rst-class:: classref-item-separator
  4446. ----
  4447. .. _class_ProjectSettings_property_layer_names/2d_render/layer_16:
  4448. .. rst-class:: classref-property
  4449. :ref:`String<class_String>` **layer_names/2d_render/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_16>`
  4450. Optional name for the 2D render layer 16. If left empty, the layer will display as "Layer 16".
  4451. .. rst-class:: classref-item-separator
  4452. ----
  4453. .. _class_ProjectSettings_property_layer_names/2d_render/layer_17:
  4454. .. rst-class:: classref-property
  4455. :ref:`String<class_String>` **layer_names/2d_render/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_17>`
  4456. Optional name for the 2D render layer 17. If left empty, the layer will display as "Layer 17".
  4457. .. rst-class:: classref-item-separator
  4458. ----
  4459. .. _class_ProjectSettings_property_layer_names/2d_render/layer_18:
  4460. .. rst-class:: classref-property
  4461. :ref:`String<class_String>` **layer_names/2d_render/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_18>`
  4462. Optional name for the 2D render layer 18. If left empty, the layer will display as "Layer 18".
  4463. .. rst-class:: classref-item-separator
  4464. ----
  4465. .. _class_ProjectSettings_property_layer_names/2d_render/layer_19:
  4466. .. rst-class:: classref-property
  4467. :ref:`String<class_String>` **layer_names/2d_render/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_19>`
  4468. Optional name for the 2D render layer 19. If left empty, the layer will display as "Layer 19".
  4469. .. rst-class:: classref-item-separator
  4470. ----
  4471. .. _class_ProjectSettings_property_layer_names/2d_render/layer_20:
  4472. .. rst-class:: classref-property
  4473. :ref:`String<class_String>` **layer_names/2d_render/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/2d_render/layer_20>`
  4474. Optional name for the 2D render layer 20. If left empty, the layer will display as "Layer 20".
  4475. .. rst-class:: classref-item-separator
  4476. ----
  4477. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_1:
  4478. .. rst-class:: classref-property
  4479. :ref:`String<class_String>` **layer_names/3d_navigation/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_1>`
  4480. Optional name for the 3D navigation layer 1. If left empty, the layer will display as "Layer 1".
  4481. .. rst-class:: classref-item-separator
  4482. ----
  4483. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_2:
  4484. .. rst-class:: classref-property
  4485. :ref:`String<class_String>` **layer_names/3d_navigation/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_2>`
  4486. Optional name for the 3D navigation layer 2. If left empty, the layer will display as "Layer 2".
  4487. .. rst-class:: classref-item-separator
  4488. ----
  4489. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_3:
  4490. .. rst-class:: classref-property
  4491. :ref:`String<class_String>` **layer_names/3d_navigation/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_3>`
  4492. Optional name for the 3D navigation layer 3. If left empty, the layer will display as "Layer 3".
  4493. .. rst-class:: classref-item-separator
  4494. ----
  4495. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_4:
  4496. .. rst-class:: classref-property
  4497. :ref:`String<class_String>` **layer_names/3d_navigation/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_4>`
  4498. Optional name for the 3D navigation layer 4. If left empty, the layer will display as "Layer 4".
  4499. .. rst-class:: classref-item-separator
  4500. ----
  4501. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_5:
  4502. .. rst-class:: classref-property
  4503. :ref:`String<class_String>` **layer_names/3d_navigation/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_5>`
  4504. Optional name for the 3D navigation layer 5. If left empty, the layer will display as "Layer 5".
  4505. .. rst-class:: classref-item-separator
  4506. ----
  4507. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_6:
  4508. .. rst-class:: classref-property
  4509. :ref:`String<class_String>` **layer_names/3d_navigation/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_6>`
  4510. Optional name for the 3D navigation layer 6. If left empty, the layer will display as "Layer 6".
  4511. .. rst-class:: classref-item-separator
  4512. ----
  4513. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_7:
  4514. .. rst-class:: classref-property
  4515. :ref:`String<class_String>` **layer_names/3d_navigation/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_7>`
  4516. Optional name for the 3D navigation layer 7. If left empty, the layer will display as "Layer 7".
  4517. .. rst-class:: classref-item-separator
  4518. ----
  4519. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_8:
  4520. .. rst-class:: classref-property
  4521. :ref:`String<class_String>` **layer_names/3d_navigation/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_8>`
  4522. Optional name for the 3D navigation layer 8. If left empty, the layer will display as "Layer 8".
  4523. .. rst-class:: classref-item-separator
  4524. ----
  4525. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_9:
  4526. .. rst-class:: classref-property
  4527. :ref:`String<class_String>` **layer_names/3d_navigation/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_9>`
  4528. Optional name for the 3D navigation layer 9. If left empty, the layer will display as "Layer 9".
  4529. .. rst-class:: classref-item-separator
  4530. ----
  4531. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_10:
  4532. .. rst-class:: classref-property
  4533. :ref:`String<class_String>` **layer_names/3d_navigation/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_10>`
  4534. Optional name for the 3D navigation layer 10. If left empty, the layer will display as "Layer 10".
  4535. .. rst-class:: classref-item-separator
  4536. ----
  4537. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_11:
  4538. .. rst-class:: classref-property
  4539. :ref:`String<class_String>` **layer_names/3d_navigation/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_11>`
  4540. Optional name for the 3D navigation layer 11. If left empty, the layer will display as "Layer 11".
  4541. .. rst-class:: classref-item-separator
  4542. ----
  4543. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_12:
  4544. .. rst-class:: classref-property
  4545. :ref:`String<class_String>` **layer_names/3d_navigation/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_12>`
  4546. Optional name for the 3D navigation layer 12. If left empty, the layer will display as "Layer 12".
  4547. .. rst-class:: classref-item-separator
  4548. ----
  4549. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_13:
  4550. .. rst-class:: classref-property
  4551. :ref:`String<class_String>` **layer_names/3d_navigation/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_13>`
  4552. Optional name for the 3D navigation layer 13. If left empty, the layer will display as "Layer 13".
  4553. .. rst-class:: classref-item-separator
  4554. ----
  4555. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_14:
  4556. .. rst-class:: classref-property
  4557. :ref:`String<class_String>` **layer_names/3d_navigation/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_14>`
  4558. Optional name for the 3D navigation layer 14. If left empty, the layer will display as "Layer 14".
  4559. .. rst-class:: classref-item-separator
  4560. ----
  4561. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_15:
  4562. .. rst-class:: classref-property
  4563. :ref:`String<class_String>` **layer_names/3d_navigation/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_15>`
  4564. Optional name for the 3D navigation layer 15. If left empty, the layer will display as "Layer 15".
  4565. .. rst-class:: classref-item-separator
  4566. ----
  4567. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_16:
  4568. .. rst-class:: classref-property
  4569. :ref:`String<class_String>` **layer_names/3d_navigation/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_16>`
  4570. Optional name for the 3D navigation layer 16. If left empty, the layer will display as "Layer 16".
  4571. .. rst-class:: classref-item-separator
  4572. ----
  4573. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_17:
  4574. .. rst-class:: classref-property
  4575. :ref:`String<class_String>` **layer_names/3d_navigation/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_17>`
  4576. Optional name for the 3D navigation layer 17. If left empty, the layer will display as "Layer 17".
  4577. .. rst-class:: classref-item-separator
  4578. ----
  4579. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_18:
  4580. .. rst-class:: classref-property
  4581. :ref:`String<class_String>` **layer_names/3d_navigation/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_18>`
  4582. Optional name for the 3D navigation layer 18. If left empty, the layer will display as "Layer 18".
  4583. .. rst-class:: classref-item-separator
  4584. ----
  4585. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_19:
  4586. .. rst-class:: classref-property
  4587. :ref:`String<class_String>` **layer_names/3d_navigation/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_19>`
  4588. Optional name for the 3D navigation layer 19. If left empty, the layer will display as "Layer 19".
  4589. .. rst-class:: classref-item-separator
  4590. ----
  4591. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_20:
  4592. .. rst-class:: classref-property
  4593. :ref:`String<class_String>` **layer_names/3d_navigation/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_20>`
  4594. Optional name for the 3D navigation layer 20. If left empty, the layer will display as "Layer 20".
  4595. .. rst-class:: classref-item-separator
  4596. ----
  4597. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_21:
  4598. .. rst-class:: classref-property
  4599. :ref:`String<class_String>` **layer_names/3d_navigation/layer_21** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_21>`
  4600. Optional name for the 3D navigation layer 21. If left empty, the layer will display as "Layer 21".
  4601. .. rst-class:: classref-item-separator
  4602. ----
  4603. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_22:
  4604. .. rst-class:: classref-property
  4605. :ref:`String<class_String>` **layer_names/3d_navigation/layer_22** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_22>`
  4606. Optional name for the 3D navigation layer 22. If left empty, the layer will display as "Layer 22".
  4607. .. rst-class:: classref-item-separator
  4608. ----
  4609. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_23:
  4610. .. rst-class:: classref-property
  4611. :ref:`String<class_String>` **layer_names/3d_navigation/layer_23** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_23>`
  4612. Optional name for the 3D navigation layer 23. If left empty, the layer will display as "Layer 23".
  4613. .. rst-class:: classref-item-separator
  4614. ----
  4615. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_24:
  4616. .. rst-class:: classref-property
  4617. :ref:`String<class_String>` **layer_names/3d_navigation/layer_24** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_24>`
  4618. Optional name for the 3D navigation layer 24. If left empty, the layer will display as "Layer 24".
  4619. .. rst-class:: classref-item-separator
  4620. ----
  4621. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_25:
  4622. .. rst-class:: classref-property
  4623. :ref:`String<class_String>` **layer_names/3d_navigation/layer_25** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_25>`
  4624. Optional name for the 3D navigation layer 25. If left empty, the layer will display as "Layer 25".
  4625. .. rst-class:: classref-item-separator
  4626. ----
  4627. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_26:
  4628. .. rst-class:: classref-property
  4629. :ref:`String<class_String>` **layer_names/3d_navigation/layer_26** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_26>`
  4630. Optional name for the 3D navigation layer 26. If left empty, the layer will display as "Layer 26".
  4631. .. rst-class:: classref-item-separator
  4632. ----
  4633. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_27:
  4634. .. rst-class:: classref-property
  4635. :ref:`String<class_String>` **layer_names/3d_navigation/layer_27** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_27>`
  4636. Optional name for the 3D navigation layer 27. If left empty, the layer will display as "Layer 27".
  4637. .. rst-class:: classref-item-separator
  4638. ----
  4639. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_28:
  4640. .. rst-class:: classref-property
  4641. :ref:`String<class_String>` **layer_names/3d_navigation/layer_28** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_28>`
  4642. Optional name for the 3D navigation layer 28. If left empty, the layer will display as "Layer 28".
  4643. .. rst-class:: classref-item-separator
  4644. ----
  4645. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_29:
  4646. .. rst-class:: classref-property
  4647. :ref:`String<class_String>` **layer_names/3d_navigation/layer_29** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_29>`
  4648. Optional name for the 3D navigation layer 29. If left empty, the layer will display as "Layer 29".
  4649. .. rst-class:: classref-item-separator
  4650. ----
  4651. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_30:
  4652. .. rst-class:: classref-property
  4653. :ref:`String<class_String>` **layer_names/3d_navigation/layer_30** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_30>`
  4654. Optional name for the 3D navigation layer 30. If left empty, the layer will display as "Layer 30".
  4655. .. rst-class:: classref-item-separator
  4656. ----
  4657. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_31:
  4658. .. rst-class:: classref-property
  4659. :ref:`String<class_String>` **layer_names/3d_navigation/layer_31** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_31>`
  4660. Optional name for the 3D navigation layer 31. If left empty, the layer will display as "Layer 31".
  4661. .. rst-class:: classref-item-separator
  4662. ----
  4663. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_32:
  4664. .. rst-class:: classref-property
  4665. :ref:`String<class_String>` **layer_names/3d_navigation/layer_32** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_navigation/layer_32>`
  4666. Optional name for the 3D navigation layer 32. If left empty, the layer will display as "Layer 32".
  4667. .. rst-class:: classref-item-separator
  4668. ----
  4669. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_1:
  4670. .. rst-class:: classref-property
  4671. :ref:`String<class_String>` **layer_names/3d_physics/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_1>`
  4672. Optional name for the 3D physics layer 1. If left empty, the layer will display as "Layer 1".
  4673. .. rst-class:: classref-item-separator
  4674. ----
  4675. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_2:
  4676. .. rst-class:: classref-property
  4677. :ref:`String<class_String>` **layer_names/3d_physics/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_2>`
  4678. Optional name for the 3D physics layer 2. If left empty, the layer will display as "Layer 2".
  4679. .. rst-class:: classref-item-separator
  4680. ----
  4681. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_3:
  4682. .. rst-class:: classref-property
  4683. :ref:`String<class_String>` **layer_names/3d_physics/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_3>`
  4684. Optional name for the 3D physics layer 3. If left empty, the layer will display as "Layer 3".
  4685. .. rst-class:: classref-item-separator
  4686. ----
  4687. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_4:
  4688. .. rst-class:: classref-property
  4689. :ref:`String<class_String>` **layer_names/3d_physics/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_4>`
  4690. Optional name for the 3D physics layer 4. If left empty, the layer will display as "Layer 4".
  4691. .. rst-class:: classref-item-separator
  4692. ----
  4693. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_5:
  4694. .. rst-class:: classref-property
  4695. :ref:`String<class_String>` **layer_names/3d_physics/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_5>`
  4696. Optional name for the 3D physics layer 5. If left empty, the layer will display as "Layer 5".
  4697. .. rst-class:: classref-item-separator
  4698. ----
  4699. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_6:
  4700. .. rst-class:: classref-property
  4701. :ref:`String<class_String>` **layer_names/3d_physics/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_6>`
  4702. Optional name for the 3D physics layer 6. If left empty, the layer will display as "Layer 6".
  4703. .. rst-class:: classref-item-separator
  4704. ----
  4705. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_7:
  4706. .. rst-class:: classref-property
  4707. :ref:`String<class_String>` **layer_names/3d_physics/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_7>`
  4708. Optional name for the 3D physics layer 7. If left empty, the layer will display as "Layer 7".
  4709. .. rst-class:: classref-item-separator
  4710. ----
  4711. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_8:
  4712. .. rst-class:: classref-property
  4713. :ref:`String<class_String>` **layer_names/3d_physics/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_8>`
  4714. Optional name for the 3D physics layer 8. If left empty, the layer will display as "Layer 8".
  4715. .. rst-class:: classref-item-separator
  4716. ----
  4717. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_9:
  4718. .. rst-class:: classref-property
  4719. :ref:`String<class_String>` **layer_names/3d_physics/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_9>`
  4720. Optional name for the 3D physics layer 9. If left empty, the layer will display as "Layer 9".
  4721. .. rst-class:: classref-item-separator
  4722. ----
  4723. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_10:
  4724. .. rst-class:: classref-property
  4725. :ref:`String<class_String>` **layer_names/3d_physics/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_10>`
  4726. Optional name for the 3D physics layer 10. If left empty, the layer will display as "Layer 10".
  4727. .. rst-class:: classref-item-separator
  4728. ----
  4729. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_11:
  4730. .. rst-class:: classref-property
  4731. :ref:`String<class_String>` **layer_names/3d_physics/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_11>`
  4732. Optional name for the 3D physics layer 11. If left empty, the layer will display as "Layer 11".
  4733. .. rst-class:: classref-item-separator
  4734. ----
  4735. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_12:
  4736. .. rst-class:: classref-property
  4737. :ref:`String<class_String>` **layer_names/3d_physics/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_12>`
  4738. Optional name for the 3D physics layer 12. If left empty, the layer will display as "Layer 12".
  4739. .. rst-class:: classref-item-separator
  4740. ----
  4741. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_13:
  4742. .. rst-class:: classref-property
  4743. :ref:`String<class_String>` **layer_names/3d_physics/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_13>`
  4744. Optional name for the 3D physics layer 13. If left empty, the layer will display as "Layer 13".
  4745. .. rst-class:: classref-item-separator
  4746. ----
  4747. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_14:
  4748. .. rst-class:: classref-property
  4749. :ref:`String<class_String>` **layer_names/3d_physics/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_14>`
  4750. Optional name for the 3D physics layer 14. If left empty, the layer will display as "Layer 14".
  4751. .. rst-class:: classref-item-separator
  4752. ----
  4753. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_15:
  4754. .. rst-class:: classref-property
  4755. :ref:`String<class_String>` **layer_names/3d_physics/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_15>`
  4756. Optional name for the 3D physics layer 15. If left empty, the layer will display as "Layer 15".
  4757. .. rst-class:: classref-item-separator
  4758. ----
  4759. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_16:
  4760. .. rst-class:: classref-property
  4761. :ref:`String<class_String>` **layer_names/3d_physics/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_16>`
  4762. Optional name for the 3D physics layer 16. If left empty, the layer will display as "Layer 16".
  4763. .. rst-class:: classref-item-separator
  4764. ----
  4765. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_17:
  4766. .. rst-class:: classref-property
  4767. :ref:`String<class_String>` **layer_names/3d_physics/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_17>`
  4768. Optional name for the 3D physics layer 17. If left empty, the layer will display as "Layer 17".
  4769. .. rst-class:: classref-item-separator
  4770. ----
  4771. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_18:
  4772. .. rst-class:: classref-property
  4773. :ref:`String<class_String>` **layer_names/3d_physics/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_18>`
  4774. Optional name for the 3D physics layer 18. If left empty, the layer will display as "Layer 18".
  4775. .. rst-class:: classref-item-separator
  4776. ----
  4777. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_19:
  4778. .. rst-class:: classref-property
  4779. :ref:`String<class_String>` **layer_names/3d_physics/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_19>`
  4780. Optional name for the 3D physics layer 19. If left empty, the layer will display as "Layer 19".
  4781. .. rst-class:: classref-item-separator
  4782. ----
  4783. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_20:
  4784. .. rst-class:: classref-property
  4785. :ref:`String<class_String>` **layer_names/3d_physics/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_20>`
  4786. Optional name for the 3D physics layer 20. If left empty, the layer will display as "Layer 20".
  4787. .. rst-class:: classref-item-separator
  4788. ----
  4789. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_21:
  4790. .. rst-class:: classref-property
  4791. :ref:`String<class_String>` **layer_names/3d_physics/layer_21** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_21>`
  4792. Optional name for the 3D physics layer 21. If left empty, the layer will display as "Layer 21".
  4793. .. rst-class:: classref-item-separator
  4794. ----
  4795. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_22:
  4796. .. rst-class:: classref-property
  4797. :ref:`String<class_String>` **layer_names/3d_physics/layer_22** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_22>`
  4798. Optional name for the 3D physics layer 22. If left empty, the layer will display as "Layer 22".
  4799. .. rst-class:: classref-item-separator
  4800. ----
  4801. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_23:
  4802. .. rst-class:: classref-property
  4803. :ref:`String<class_String>` **layer_names/3d_physics/layer_23** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_23>`
  4804. Optional name for the 3D physics layer 23. If left empty, the layer will display as "Layer 23".
  4805. .. rst-class:: classref-item-separator
  4806. ----
  4807. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_24:
  4808. .. rst-class:: classref-property
  4809. :ref:`String<class_String>` **layer_names/3d_physics/layer_24** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_24>`
  4810. Optional name for the 3D physics layer 24. If left empty, the layer will display as "Layer 24".
  4811. .. rst-class:: classref-item-separator
  4812. ----
  4813. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_25:
  4814. .. rst-class:: classref-property
  4815. :ref:`String<class_String>` **layer_names/3d_physics/layer_25** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_25>`
  4816. Optional name for the 3D physics layer 25. If left empty, the layer will display as "Layer 25".
  4817. .. rst-class:: classref-item-separator
  4818. ----
  4819. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_26:
  4820. .. rst-class:: classref-property
  4821. :ref:`String<class_String>` **layer_names/3d_physics/layer_26** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_26>`
  4822. Optional name for the 3D physics layer 26. If left empty, the layer will display as "Layer 26".
  4823. .. rst-class:: classref-item-separator
  4824. ----
  4825. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_27:
  4826. .. rst-class:: classref-property
  4827. :ref:`String<class_String>` **layer_names/3d_physics/layer_27** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_27>`
  4828. Optional name for the 3D physics layer 27. If left empty, the layer will display as "Layer 27".
  4829. .. rst-class:: classref-item-separator
  4830. ----
  4831. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_28:
  4832. .. rst-class:: classref-property
  4833. :ref:`String<class_String>` **layer_names/3d_physics/layer_28** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_28>`
  4834. Optional name for the 3D physics layer 28. If left empty, the layer will display as "Layer 28".
  4835. .. rst-class:: classref-item-separator
  4836. ----
  4837. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_29:
  4838. .. rst-class:: classref-property
  4839. :ref:`String<class_String>` **layer_names/3d_physics/layer_29** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_29>`
  4840. Optional name for the 3D physics layer 29. If left empty, the layer will display as "Layer 29".
  4841. .. rst-class:: classref-item-separator
  4842. ----
  4843. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_30:
  4844. .. rst-class:: classref-property
  4845. :ref:`String<class_String>` **layer_names/3d_physics/layer_30** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_30>`
  4846. Optional name for the 3D physics layer 30. If left empty, the layer will display as "Layer 30".
  4847. .. rst-class:: classref-item-separator
  4848. ----
  4849. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_31:
  4850. .. rst-class:: classref-property
  4851. :ref:`String<class_String>` **layer_names/3d_physics/layer_31** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_31>`
  4852. Optional name for the 3D physics layer 31. If left empty, the layer will display as "Layer 31".
  4853. .. rst-class:: classref-item-separator
  4854. ----
  4855. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_32:
  4856. .. rst-class:: classref-property
  4857. :ref:`String<class_String>` **layer_names/3d_physics/layer_32** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_physics/layer_32>`
  4858. Optional name for the 3D physics layer 32. If left empty, the layer will display as "Layer 32".
  4859. .. rst-class:: classref-item-separator
  4860. ----
  4861. .. _class_ProjectSettings_property_layer_names/3d_render/layer_1:
  4862. .. rst-class:: classref-property
  4863. :ref:`String<class_String>` **layer_names/3d_render/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_1>`
  4864. Optional name for the 3D render layer 1. If left empty, the layer will display as "Layer 1".
  4865. .. rst-class:: classref-item-separator
  4866. ----
  4867. .. _class_ProjectSettings_property_layer_names/3d_render/layer_2:
  4868. .. rst-class:: classref-property
  4869. :ref:`String<class_String>` **layer_names/3d_render/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_2>`
  4870. Optional name for the 3D render layer 2. If left empty, the layer will display as "Layer 2".
  4871. .. rst-class:: classref-item-separator
  4872. ----
  4873. .. _class_ProjectSettings_property_layer_names/3d_render/layer_3:
  4874. .. rst-class:: classref-property
  4875. :ref:`String<class_String>` **layer_names/3d_render/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_3>`
  4876. Optional name for the 3D render layer 3. If left empty, the layer will display as "Layer 3".
  4877. .. rst-class:: classref-item-separator
  4878. ----
  4879. .. _class_ProjectSettings_property_layer_names/3d_render/layer_4:
  4880. .. rst-class:: classref-property
  4881. :ref:`String<class_String>` **layer_names/3d_render/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_4>`
  4882. Optional name for the 3D render layer 4. If left empty, the layer will display as "Layer 4".
  4883. .. rst-class:: classref-item-separator
  4884. ----
  4885. .. _class_ProjectSettings_property_layer_names/3d_render/layer_5:
  4886. .. rst-class:: classref-property
  4887. :ref:`String<class_String>` **layer_names/3d_render/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_5>`
  4888. Optional name for the 3D render layer 5. If left empty, the layer will display as "Layer 5".
  4889. .. rst-class:: classref-item-separator
  4890. ----
  4891. .. _class_ProjectSettings_property_layer_names/3d_render/layer_6:
  4892. .. rst-class:: classref-property
  4893. :ref:`String<class_String>` **layer_names/3d_render/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_6>`
  4894. Optional name for the 3D render layer 6. If left empty, the layer will display as "Layer 6".
  4895. .. rst-class:: classref-item-separator
  4896. ----
  4897. .. _class_ProjectSettings_property_layer_names/3d_render/layer_7:
  4898. .. rst-class:: classref-property
  4899. :ref:`String<class_String>` **layer_names/3d_render/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_7>`
  4900. Optional name for the 3D render layer 7. If left empty, the layer will display as "Layer 7".
  4901. .. rst-class:: classref-item-separator
  4902. ----
  4903. .. _class_ProjectSettings_property_layer_names/3d_render/layer_8:
  4904. .. rst-class:: classref-property
  4905. :ref:`String<class_String>` **layer_names/3d_render/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_8>`
  4906. Optional name for the 3D render layer 8. If left empty, the layer will display as "Layer 8".
  4907. .. rst-class:: classref-item-separator
  4908. ----
  4909. .. _class_ProjectSettings_property_layer_names/3d_render/layer_9:
  4910. .. rst-class:: classref-property
  4911. :ref:`String<class_String>` **layer_names/3d_render/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_9>`
  4912. Optional name for the 3D render layer 9. If left empty, the layer will display as "Layer 9".
  4913. .. rst-class:: classref-item-separator
  4914. ----
  4915. .. _class_ProjectSettings_property_layer_names/3d_render/layer_10:
  4916. .. rst-class:: classref-property
  4917. :ref:`String<class_String>` **layer_names/3d_render/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_10>`
  4918. Optional name for the 3D render layer 10. If left empty, the layer will display as "Layer 10".
  4919. .. rst-class:: classref-item-separator
  4920. ----
  4921. .. _class_ProjectSettings_property_layer_names/3d_render/layer_11:
  4922. .. rst-class:: classref-property
  4923. :ref:`String<class_String>` **layer_names/3d_render/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_11>`
  4924. Optional name for the 3D render layer 11. If left empty, the layer will display as "Layer 11".
  4925. .. rst-class:: classref-item-separator
  4926. ----
  4927. .. _class_ProjectSettings_property_layer_names/3d_render/layer_12:
  4928. .. rst-class:: classref-property
  4929. :ref:`String<class_String>` **layer_names/3d_render/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_12>`
  4930. Optional name for the 3D render layer 12. If left empty, the layer will display as "Layer 12".
  4931. .. rst-class:: classref-item-separator
  4932. ----
  4933. .. _class_ProjectSettings_property_layer_names/3d_render/layer_13:
  4934. .. rst-class:: classref-property
  4935. :ref:`String<class_String>` **layer_names/3d_render/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_13>`
  4936. Optional name for the 3D render layer 13. If left empty, the layer will display as "Layer 13".
  4937. .. rst-class:: classref-item-separator
  4938. ----
  4939. .. _class_ProjectSettings_property_layer_names/3d_render/layer_14:
  4940. .. rst-class:: classref-property
  4941. :ref:`String<class_String>` **layer_names/3d_render/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_14>`
  4942. Optional name for the 3D render layer 14. If left empty, the layer will display as "Layer 14".
  4943. .. rst-class:: classref-item-separator
  4944. ----
  4945. .. _class_ProjectSettings_property_layer_names/3d_render/layer_15:
  4946. .. rst-class:: classref-property
  4947. :ref:`String<class_String>` **layer_names/3d_render/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_15>`
  4948. Optional name for the 3D render layer 15. If left empty, the layer will display as "Layer 15".
  4949. .. rst-class:: classref-item-separator
  4950. ----
  4951. .. _class_ProjectSettings_property_layer_names/3d_render/layer_16:
  4952. .. rst-class:: classref-property
  4953. :ref:`String<class_String>` **layer_names/3d_render/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_16>`
  4954. Optional name for the 3D render layer 16. If left empty, the layer will display as "Layer 16".
  4955. .. rst-class:: classref-item-separator
  4956. ----
  4957. .. _class_ProjectSettings_property_layer_names/3d_render/layer_17:
  4958. .. rst-class:: classref-property
  4959. :ref:`String<class_String>` **layer_names/3d_render/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_17>`
  4960. Optional name for the 3D render layer 17. If left empty, the layer will display as "Layer 17".
  4961. .. rst-class:: classref-item-separator
  4962. ----
  4963. .. _class_ProjectSettings_property_layer_names/3d_render/layer_18:
  4964. .. rst-class:: classref-property
  4965. :ref:`String<class_String>` **layer_names/3d_render/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_18>`
  4966. Optional name for the 3D render layer 18. If left empty, the layer will display as "Layer 18".
  4967. .. rst-class:: classref-item-separator
  4968. ----
  4969. .. _class_ProjectSettings_property_layer_names/3d_render/layer_19:
  4970. .. rst-class:: classref-property
  4971. :ref:`String<class_String>` **layer_names/3d_render/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_19>`
  4972. Optional name for the 3D render layer 19. If left empty, the layer will display as "Layer 19".
  4973. .. rst-class:: classref-item-separator
  4974. ----
  4975. .. _class_ProjectSettings_property_layer_names/3d_render/layer_20:
  4976. .. rst-class:: classref-property
  4977. :ref:`String<class_String>` **layer_names/3d_render/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/3d_render/layer_20>`
  4978. Optional name for the 3D render layer 20. If left empty, the layer will display as "Layer 20".
  4979. .. rst-class:: classref-item-separator
  4980. ----
  4981. .. _class_ProjectSettings_property_layer_names/avoidance/layer_1:
  4982. .. rst-class:: classref-property
  4983. :ref:`String<class_String>` **layer_names/avoidance/layer_1** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_1>`
  4984. Optional name for the navigation avoidance layer 1. If left empty, the layer will display as "Layer 1".
  4985. .. rst-class:: classref-item-separator
  4986. ----
  4987. .. _class_ProjectSettings_property_layer_names/avoidance/layer_2:
  4988. .. rst-class:: classref-property
  4989. :ref:`String<class_String>` **layer_names/avoidance/layer_2** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_2>`
  4990. Optional name for the navigation avoidance layer 2. If left empty, the layer will display as "Layer 2".
  4991. .. rst-class:: classref-item-separator
  4992. ----
  4993. .. _class_ProjectSettings_property_layer_names/avoidance/layer_3:
  4994. .. rst-class:: classref-property
  4995. :ref:`String<class_String>` **layer_names/avoidance/layer_3** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_3>`
  4996. Optional name for the navigation avoidance layer 3. If left empty, the layer will display as "Layer 3".
  4997. .. rst-class:: classref-item-separator
  4998. ----
  4999. .. _class_ProjectSettings_property_layer_names/avoidance/layer_4:
  5000. .. rst-class:: classref-property
  5001. :ref:`String<class_String>` **layer_names/avoidance/layer_4** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_4>`
  5002. Optional name for the navigation avoidance layer 4. If left empty, the layer will display as "Layer 4".
  5003. .. rst-class:: classref-item-separator
  5004. ----
  5005. .. _class_ProjectSettings_property_layer_names/avoidance/layer_5:
  5006. .. rst-class:: classref-property
  5007. :ref:`String<class_String>` **layer_names/avoidance/layer_5** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_5>`
  5008. Optional name for the navigation avoidance layer 5. If left empty, the layer will display as "Layer 5".
  5009. .. rst-class:: classref-item-separator
  5010. ----
  5011. .. _class_ProjectSettings_property_layer_names/avoidance/layer_6:
  5012. .. rst-class:: classref-property
  5013. :ref:`String<class_String>` **layer_names/avoidance/layer_6** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_6>`
  5014. Optional name for the navigation avoidance layer 6. If left empty, the layer will display as "Layer 6".
  5015. .. rst-class:: classref-item-separator
  5016. ----
  5017. .. _class_ProjectSettings_property_layer_names/avoidance/layer_7:
  5018. .. rst-class:: classref-property
  5019. :ref:`String<class_String>` **layer_names/avoidance/layer_7** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_7>`
  5020. Optional name for the navigation avoidance layer 7. If left empty, the layer will display as "Layer 7".
  5021. .. rst-class:: classref-item-separator
  5022. ----
  5023. .. _class_ProjectSettings_property_layer_names/avoidance/layer_8:
  5024. .. rst-class:: classref-property
  5025. :ref:`String<class_String>` **layer_names/avoidance/layer_8** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_8>`
  5026. Optional name for the navigation avoidance layer 8. If left empty, the layer will display as "Layer 8".
  5027. .. rst-class:: classref-item-separator
  5028. ----
  5029. .. _class_ProjectSettings_property_layer_names/avoidance/layer_9:
  5030. .. rst-class:: classref-property
  5031. :ref:`String<class_String>` **layer_names/avoidance/layer_9** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_9>`
  5032. Optional name for the navigation avoidance layer 9. If left empty, the layer will display as "Layer 9".
  5033. .. rst-class:: classref-item-separator
  5034. ----
  5035. .. _class_ProjectSettings_property_layer_names/avoidance/layer_10:
  5036. .. rst-class:: classref-property
  5037. :ref:`String<class_String>` **layer_names/avoidance/layer_10** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_10>`
  5038. Optional name for the navigation avoidance layer 10. If left empty, the layer will display as "Layer 10".
  5039. .. rst-class:: classref-item-separator
  5040. ----
  5041. .. _class_ProjectSettings_property_layer_names/avoidance/layer_11:
  5042. .. rst-class:: classref-property
  5043. :ref:`String<class_String>` **layer_names/avoidance/layer_11** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_11>`
  5044. Optional name for the navigation avoidance layer 11. If left empty, the layer will display as "Layer 11".
  5045. .. rst-class:: classref-item-separator
  5046. ----
  5047. .. _class_ProjectSettings_property_layer_names/avoidance/layer_12:
  5048. .. rst-class:: classref-property
  5049. :ref:`String<class_String>` **layer_names/avoidance/layer_12** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_12>`
  5050. Optional name for the navigation avoidance layer 12. If left empty, the layer will display as "Layer 12".
  5051. .. rst-class:: classref-item-separator
  5052. ----
  5053. .. _class_ProjectSettings_property_layer_names/avoidance/layer_13:
  5054. .. rst-class:: classref-property
  5055. :ref:`String<class_String>` **layer_names/avoidance/layer_13** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_13>`
  5056. Optional name for the navigation avoidance layer 13. If left empty, the layer will display as "Layer 13".
  5057. .. rst-class:: classref-item-separator
  5058. ----
  5059. .. _class_ProjectSettings_property_layer_names/avoidance/layer_14:
  5060. .. rst-class:: classref-property
  5061. :ref:`String<class_String>` **layer_names/avoidance/layer_14** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_14>`
  5062. Optional name for the navigation avoidance layer 14. If left empty, the layer will display as "Layer 14".
  5063. .. rst-class:: classref-item-separator
  5064. ----
  5065. .. _class_ProjectSettings_property_layer_names/avoidance/layer_15:
  5066. .. rst-class:: classref-property
  5067. :ref:`String<class_String>` **layer_names/avoidance/layer_15** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_15>`
  5068. Optional name for the navigation avoidance layer 15. If left empty, the layer will display as "Layer 15".
  5069. .. rst-class:: classref-item-separator
  5070. ----
  5071. .. _class_ProjectSettings_property_layer_names/avoidance/layer_16:
  5072. .. rst-class:: classref-property
  5073. :ref:`String<class_String>` **layer_names/avoidance/layer_16** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_16>`
  5074. Optional name for the navigation avoidance layer 16. If left empty, the layer will display as "Layer 16".
  5075. .. rst-class:: classref-item-separator
  5076. ----
  5077. .. _class_ProjectSettings_property_layer_names/avoidance/layer_17:
  5078. .. rst-class:: classref-property
  5079. :ref:`String<class_String>` **layer_names/avoidance/layer_17** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_17>`
  5080. Optional name for the navigation avoidance layer 17. If left empty, the layer will display as "Layer 17".
  5081. .. rst-class:: classref-item-separator
  5082. ----
  5083. .. _class_ProjectSettings_property_layer_names/avoidance/layer_18:
  5084. .. rst-class:: classref-property
  5085. :ref:`String<class_String>` **layer_names/avoidance/layer_18** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_18>`
  5086. Optional name for the navigation avoidance layer 18. If left empty, the layer will display as "Layer 18".
  5087. .. rst-class:: classref-item-separator
  5088. ----
  5089. .. _class_ProjectSettings_property_layer_names/avoidance/layer_19:
  5090. .. rst-class:: classref-property
  5091. :ref:`String<class_String>` **layer_names/avoidance/layer_19** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_19>`
  5092. Optional name for the navigation avoidance layer 19. If left empty, the layer will display as "Layer 19".
  5093. .. rst-class:: classref-item-separator
  5094. ----
  5095. .. _class_ProjectSettings_property_layer_names/avoidance/layer_20:
  5096. .. rst-class:: classref-property
  5097. :ref:`String<class_String>` **layer_names/avoidance/layer_20** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_20>`
  5098. Optional name for the navigation avoidance layer 20. If left empty, the layer will display as "Layer 20".
  5099. .. rst-class:: classref-item-separator
  5100. ----
  5101. .. _class_ProjectSettings_property_layer_names/avoidance/layer_21:
  5102. .. rst-class:: classref-property
  5103. :ref:`String<class_String>` **layer_names/avoidance/layer_21** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_21>`
  5104. Optional name for the navigation avoidance layer 21. If left empty, the layer will display as "Layer 21".
  5105. .. rst-class:: classref-item-separator
  5106. ----
  5107. .. _class_ProjectSettings_property_layer_names/avoidance/layer_22:
  5108. .. rst-class:: classref-property
  5109. :ref:`String<class_String>` **layer_names/avoidance/layer_22** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_22>`
  5110. Optional name for the navigation avoidance layer 22. If left empty, the layer will display as "Layer 22".
  5111. .. rst-class:: classref-item-separator
  5112. ----
  5113. .. _class_ProjectSettings_property_layer_names/avoidance/layer_23:
  5114. .. rst-class:: classref-property
  5115. :ref:`String<class_String>` **layer_names/avoidance/layer_23** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_23>`
  5116. Optional name for the navigation avoidance layer 23. If left empty, the layer will display as "Layer 23".
  5117. .. rst-class:: classref-item-separator
  5118. ----
  5119. .. _class_ProjectSettings_property_layer_names/avoidance/layer_24:
  5120. .. rst-class:: classref-property
  5121. :ref:`String<class_String>` **layer_names/avoidance/layer_24** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_24>`
  5122. Optional name for the navigation avoidance layer 24. If left empty, the layer will display as "Layer 24".
  5123. .. rst-class:: classref-item-separator
  5124. ----
  5125. .. _class_ProjectSettings_property_layer_names/avoidance/layer_25:
  5126. .. rst-class:: classref-property
  5127. :ref:`String<class_String>` **layer_names/avoidance/layer_25** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_25>`
  5128. Optional name for the navigation avoidance layer 25. If left empty, the layer will display as "Layer 25".
  5129. .. rst-class:: classref-item-separator
  5130. ----
  5131. .. _class_ProjectSettings_property_layer_names/avoidance/layer_26:
  5132. .. rst-class:: classref-property
  5133. :ref:`String<class_String>` **layer_names/avoidance/layer_26** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_26>`
  5134. Optional name for the navigation avoidance layer 26. If left empty, the layer will display as "Layer 26".
  5135. .. rst-class:: classref-item-separator
  5136. ----
  5137. .. _class_ProjectSettings_property_layer_names/avoidance/layer_27:
  5138. .. rst-class:: classref-property
  5139. :ref:`String<class_String>` **layer_names/avoidance/layer_27** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_27>`
  5140. Optional name for the navigation avoidance layer 27. If left empty, the layer will display as "Layer 27".
  5141. .. rst-class:: classref-item-separator
  5142. ----
  5143. .. _class_ProjectSettings_property_layer_names/avoidance/layer_28:
  5144. .. rst-class:: classref-property
  5145. :ref:`String<class_String>` **layer_names/avoidance/layer_28** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_28>`
  5146. Optional name for the navigation avoidance layer 28. If left empty, the layer will display as "Layer 28".
  5147. .. rst-class:: classref-item-separator
  5148. ----
  5149. .. _class_ProjectSettings_property_layer_names/avoidance/layer_29:
  5150. .. rst-class:: classref-property
  5151. :ref:`String<class_String>` **layer_names/avoidance/layer_29** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_29>`
  5152. Optional name for the navigation avoidance layer 29. If left empty, the layer will display as "Layer 29".
  5153. .. rst-class:: classref-item-separator
  5154. ----
  5155. .. _class_ProjectSettings_property_layer_names/avoidance/layer_30:
  5156. .. rst-class:: classref-property
  5157. :ref:`String<class_String>` **layer_names/avoidance/layer_30** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_30>`
  5158. Optional name for the navigation avoidance layer 30. If left empty, the layer will display as "Layer 30".
  5159. .. rst-class:: classref-item-separator
  5160. ----
  5161. .. _class_ProjectSettings_property_layer_names/avoidance/layer_31:
  5162. .. rst-class:: classref-property
  5163. :ref:`String<class_String>` **layer_names/avoidance/layer_31** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_31>`
  5164. Optional name for the navigation avoidance layer 31. If left empty, the layer will display as "Layer 31".
  5165. .. rst-class:: classref-item-separator
  5166. ----
  5167. .. _class_ProjectSettings_property_layer_names/avoidance/layer_32:
  5168. .. rst-class:: classref-property
  5169. :ref:`String<class_String>` **layer_names/avoidance/layer_32** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_layer_names/avoidance/layer_32>`
  5170. Optional name for the navigation avoidance layer 32. If left empty, the layer will display as "Layer 32".
  5171. .. rst-class:: classref-item-separator
  5172. ----
  5173. .. _class_ProjectSettings_property_memory/limits/message_queue/max_size_mb:
  5174. .. rst-class:: classref-property
  5175. :ref:`int<class_int>` **memory/limits/message_queue/max_size_mb** = ``32`` :ref:`๐Ÿ”—<class_ProjectSettings_property_memory/limits/message_queue/max_size_mb>`
  5176. Godot uses a message queue to defer some function calls. If you run out of space on it (you will see an error), you can increase the size here.
  5177. .. rst-class:: classref-item-separator
  5178. ----
  5179. .. _class_ProjectSettings_property_navigation/2d/default_cell_size:
  5180. .. rst-class:: classref-property
  5181. :ref:`float<class_float>` **navigation/2d/default_cell_size** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/2d/default_cell_size>`
  5182. Default cell size for 2D navigation maps. See :ref:`NavigationServer2D.map_set_cell_size<class_NavigationServer2D_method_map_set_cell_size>`.
  5183. .. rst-class:: classref-item-separator
  5184. ----
  5185. .. _class_ProjectSettings_property_navigation/2d/default_edge_connection_margin:
  5186. .. rst-class:: classref-property
  5187. :ref:`float<class_float>` **navigation/2d/default_edge_connection_margin** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/2d/default_edge_connection_margin>`
  5188. Default edge connection margin for 2D navigation maps. See :ref:`NavigationServer2D.map_set_edge_connection_margin<class_NavigationServer2D_method_map_set_edge_connection_margin>`.
  5189. .. rst-class:: classref-item-separator
  5190. ----
  5191. .. _class_ProjectSettings_property_navigation/2d/default_link_connection_radius:
  5192. .. rst-class:: classref-property
  5193. :ref:`float<class_float>` **navigation/2d/default_link_connection_radius** = ``4.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/2d/default_link_connection_radius>`
  5194. Default link connection radius for 2D navigation maps. See :ref:`NavigationServer2D.map_set_link_connection_radius<class_NavigationServer2D_method_map_set_link_connection_radius>`.
  5195. .. rst-class:: classref-item-separator
  5196. ----
  5197. .. _class_ProjectSettings_property_navigation/2d/use_edge_connections:
  5198. .. rst-class:: classref-property
  5199. :ref:`bool<class_bool>` **navigation/2d/use_edge_connections** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/2d/use_edge_connections>`
  5200. If enabled 2D navigation regions will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. This setting only affects World2D default navigation maps.
  5201. .. rst-class:: classref-item-separator
  5202. ----
  5203. .. _class_ProjectSettings_property_navigation/3d/default_cell_height:
  5204. .. rst-class:: classref-property
  5205. :ref:`float<class_float>` **navigation/3d/default_cell_height** = ``0.25`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/default_cell_height>`
  5206. Default cell height for 3D navigation maps. See :ref:`NavigationServer3D.map_set_cell_height<class_NavigationServer3D_method_map_set_cell_height>`.
  5207. .. rst-class:: classref-item-separator
  5208. ----
  5209. .. _class_ProjectSettings_property_navigation/3d/default_cell_size:
  5210. .. rst-class:: classref-property
  5211. :ref:`float<class_float>` **navigation/3d/default_cell_size** = ``0.25`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/default_cell_size>`
  5212. Default cell size for 3D navigation maps. See :ref:`NavigationServer3D.map_set_cell_size<class_NavigationServer3D_method_map_set_cell_size>`.
  5213. .. rst-class:: classref-item-separator
  5214. ----
  5215. .. _class_ProjectSettings_property_navigation/3d/default_edge_connection_margin:
  5216. .. rst-class:: classref-property
  5217. :ref:`float<class_float>` **navigation/3d/default_edge_connection_margin** = ``0.25`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/default_edge_connection_margin>`
  5218. Default edge connection margin for 3D navigation maps. See :ref:`NavigationServer3D.map_set_edge_connection_margin<class_NavigationServer3D_method_map_set_edge_connection_margin>`.
  5219. .. rst-class:: classref-item-separator
  5220. ----
  5221. .. _class_ProjectSettings_property_navigation/3d/default_link_connection_radius:
  5222. .. rst-class:: classref-property
  5223. :ref:`float<class_float>` **navigation/3d/default_link_connection_radius** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/default_link_connection_radius>`
  5224. Default link connection radius for 3D navigation maps. See :ref:`NavigationServer3D.map_set_link_connection_radius<class_NavigationServer3D_method_map_set_link_connection_radius>`.
  5225. .. rst-class:: classref-item-separator
  5226. ----
  5227. .. _class_ProjectSettings_property_navigation/3d/default_up:
  5228. .. rst-class:: classref-property
  5229. :ref:`Vector3<class_Vector3>` **navigation/3d/default_up** = ``Vector3(0, 1, 0)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/default_up>`
  5230. Default up orientation for 3D navigation maps. See :ref:`NavigationServer3D.map_set_up<class_NavigationServer3D_method_map_set_up>`.
  5231. .. rst-class:: classref-item-separator
  5232. ----
  5233. .. _class_ProjectSettings_property_navigation/3d/merge_rasterizer_cell_scale:
  5234. .. rst-class:: classref-property
  5235. :ref:`float<class_float>` **navigation/3d/merge_rasterizer_cell_scale** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/merge_rasterizer_cell_scale>`
  5236. Default merge rasterizer cell scale for 3D navigation maps. See :ref:`NavigationServer3D.map_set_merge_rasterizer_cell_scale<class_NavigationServer3D_method_map_set_merge_rasterizer_cell_scale>`.
  5237. .. rst-class:: classref-item-separator
  5238. ----
  5239. .. _class_ProjectSettings_property_navigation/3d/use_edge_connections:
  5240. .. rst-class:: classref-property
  5241. :ref:`bool<class_bool>` **navigation/3d/use_edge_connections** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/3d/use_edge_connections>`
  5242. If enabled 3D navigation regions will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. This setting only affects World3D default navigation maps.
  5243. .. rst-class:: classref-item-separator
  5244. ----
  5245. .. _class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_high_priority_threads:
  5246. .. rst-class:: classref-property
  5247. :ref:`bool<class_bool>` **navigation/avoidance/thread_model/avoidance_use_high_priority_threads** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_high_priority_threads>`
  5248. If enabled and avoidance calculations use multiple threads the threads run with high priority.
  5249. .. rst-class:: classref-item-separator
  5250. ----
  5251. .. _class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_multiple_threads:
  5252. .. rst-class:: classref-property
  5253. :ref:`bool<class_bool>` **navigation/avoidance/thread_model/avoidance_use_multiple_threads** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_multiple_threads>`
  5254. If enabled the avoidance calculations use multiple threads.
  5255. .. rst-class:: classref-item-separator
  5256. ----
  5257. .. _class_ProjectSettings_property_navigation/baking/thread_model/baking_use_high_priority_threads:
  5258. .. rst-class:: classref-property
  5259. :ref:`bool<class_bool>` **navigation/baking/thread_model/baking_use_high_priority_threads** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/baking/thread_model/baking_use_high_priority_threads>`
  5260. If enabled and async navmesh baking uses multiple threads the threads run with high priority.
  5261. .. rst-class:: classref-item-separator
  5262. ----
  5263. .. _class_ProjectSettings_property_navigation/baking/thread_model/baking_use_multiple_threads:
  5264. .. rst-class:: classref-property
  5265. :ref:`bool<class_bool>` **navigation/baking/thread_model/baking_use_multiple_threads** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/baking/thread_model/baking_use_multiple_threads>`
  5266. If enabled the async navmesh baking uses multiple threads.
  5267. .. rst-class:: classref-item-separator
  5268. ----
  5269. .. _class_ProjectSettings_property_navigation/baking/use_crash_prevention_checks:
  5270. .. rst-class:: classref-property
  5271. :ref:`bool<class_bool>` **navigation/baking/use_crash_prevention_checks** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_navigation/baking/use_crash_prevention_checks>`
  5272. If enabled, and baking would potentially lead to an engine crash, the baking will be interrupted and an error message with explanation will be raised.
  5273. .. rst-class:: classref-item-separator
  5274. ----
  5275. .. _class_ProjectSettings_property_network/limits/debugger/max_chars_per_second:
  5276. .. rst-class:: classref-property
  5277. :ref:`int<class_int>` **network/limits/debugger/max_chars_per_second** = ``32768`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/debugger/max_chars_per_second>`
  5278. Maximum number of characters allowed to send as output from the debugger. Over this value, content is dropped. This helps not to stall the debugger connection.
  5279. .. rst-class:: classref-item-separator
  5280. ----
  5281. .. _class_ProjectSettings_property_network/limits/debugger/max_errors_per_second:
  5282. .. rst-class:: classref-property
  5283. :ref:`int<class_int>` **network/limits/debugger/max_errors_per_second** = ``400`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/debugger/max_errors_per_second>`
  5284. Maximum number of errors allowed to be sent from the debugger. Over this value, content is dropped. This helps not to stall the debugger connection.
  5285. .. rst-class:: classref-item-separator
  5286. ----
  5287. .. _class_ProjectSettings_property_network/limits/debugger/max_queued_messages:
  5288. .. rst-class:: classref-property
  5289. :ref:`int<class_int>` **network/limits/debugger/max_queued_messages** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/debugger/max_queued_messages>`
  5290. Maximum number of messages in the debugger queue. Over this value, content is dropped. This helps to limit the debugger memory usage.
  5291. .. rst-class:: classref-item-separator
  5292. ----
  5293. .. _class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second:
  5294. .. rst-class:: classref-property
  5295. :ref:`int<class_int>` **network/limits/debugger/max_warnings_per_second** = ``400`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second>`
  5296. Maximum number of warnings allowed to be sent from the debugger. Over this value, content is dropped. This helps not to stall the debugger connection.
  5297. .. rst-class:: classref-item-separator
  5298. ----
  5299. .. _class_ProjectSettings_property_network/limits/packet_peer_stream/max_buffer_po2:
  5300. .. rst-class:: classref-property
  5301. :ref:`int<class_int>` **network/limits/packet_peer_stream/max_buffer_po2** = ``16`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/packet_peer_stream/max_buffer_po2>`
  5302. Default size of packet peer stream for deserializing Godot data (in bytes, specified as a power of two). The default value ``16`` is equal to 65,536 bytes. Over this size, data is dropped.
  5303. .. rst-class:: classref-item-separator
  5304. ----
  5305. .. _class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds:
  5306. .. rst-class:: classref-property
  5307. :ref:`int<class_int>` **network/limits/tcp/connect_timeout_seconds** = ``30`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds>`
  5308. Timeout (in seconds) for connection attempts using TCP.
  5309. .. rst-class:: classref-item-separator
  5310. ----
  5311. .. _class_ProjectSettings_property_network/limits/webrtc/max_channel_in_buffer_kb:
  5312. .. rst-class:: classref-property
  5313. :ref:`int<class_int>` **network/limits/webrtc/max_channel_in_buffer_kb** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/limits/webrtc/max_channel_in_buffer_kb>`
  5314. Maximum size (in kiB) for the :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` input buffer.
  5315. .. rst-class:: classref-item-separator
  5316. ----
  5317. .. _class_ProjectSettings_property_network/tls/certificate_bundle_override:
  5318. .. rst-class:: classref-property
  5319. :ref:`String<class_String>` **network/tls/certificate_bundle_override** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_network/tls/certificate_bundle_override>`
  5320. The CA certificates bundle to use for TLS connections. If this is set to a non-empty value, this will *override* Godot's default `Mozilla certificate bundle <https://github.com/godotengine/godot/blob/master/thirdparty/certs/ca-certificates.crt>`__. If left empty, the default certificate bundle will be used.
  5321. If in doubt, leave this setting empty.
  5322. .. rst-class:: classref-item-separator
  5323. ----
  5324. .. _class_ProjectSettings_property_physics/2d/default_angular_damp:
  5325. .. rst-class:: classref-property
  5326. :ref:`float<class_float>` **physics/2d/default_angular_damp** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/default_angular_damp>`
  5327. The default rotational motion damping in 2D. Damping is used to gradually slow down physical objects over time. RigidBodies will fall back to this value when combining their own damping values and no area damping value is present.
  5328. Suggested values are in the range ``0`` to ``30``. At value ``0`` objects will keep moving with the same velocity. Greater values will stop the object faster. A value equal to or greater than the physics tick rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`) will bring the object to a stop in one iteration.
  5329. \ **Note:** Godot damping calculations are velocity-dependent, meaning bodies moving faster will take a longer time to come to rest. They do not simulate inertia, friction, or air resistance. Therefore heavier or larger bodies will lose speed at the same proportional rate as lighter or smaller bodies.
  5330. During each physics tick, Godot will multiply the linear velocity of RigidBodies by ``1.0 - combined_damp / physics_ticks_per_second``. By default, bodies combine damp factors: ``combined_damp`` is the sum of the damp value of the body and this value or the area's value the body is in. See :ref:`DampMode<enum_RigidBody2D_DampMode>`.
  5331. \ **Warning:** Godot's damping calculations are simulation tick rate dependent. Changing :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` may significantly change the outcomes and feel of your simulation. This is true for the entire range of damping values greater than 0. To get back to a similar feel, you also need to change your damp values. This needed change is not proportional and differs from case to case.
  5332. .. rst-class:: classref-item-separator
  5333. ----
  5334. .. _class_ProjectSettings_property_physics/2d/default_gravity:
  5335. .. rst-class:: classref-property
  5336. :ref:`float<class_float>` **physics/2d/default_gravity** = ``980.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/default_gravity>`
  5337. The default gravity strength in 2D (in pixels per second squared).
  5338. \ **Note:** This property is only read when the project starts. To change the default gravity at runtime, use the following code sample:
  5339. .. tabs::
  5340. .. code-tab:: gdscript
  5341. # Set the default gravity strength to 980.
  5342. PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY, 980)
  5343. .. code-tab:: csharp
  5344. // Set the default gravity strength to 980.
  5345. PhysicsServer2D.AreaSetParam(GetViewport().FindWorld2D().Space, PhysicsServer2D.AreaParameter.Gravity, 980);
  5346. .. rst-class:: classref-item-separator
  5347. ----
  5348. .. _class_ProjectSettings_property_physics/2d/default_gravity_vector:
  5349. .. rst-class:: classref-property
  5350. :ref:`Vector2<class_Vector2>` **physics/2d/default_gravity_vector** = ``Vector2(0, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/default_gravity_vector>`
  5351. The default gravity direction in 2D.
  5352. \ **Note:** This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample:
  5353. .. tabs::
  5354. .. code-tab:: gdscript
  5355. # Set the default gravity direction to `Vector2(0, 1)`.
  5356. PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY_VECTOR, Vector2.DOWN)
  5357. .. code-tab:: csharp
  5358. // Set the default gravity direction to `Vector2(0, 1)`.
  5359. PhysicsServer2D.AreaSetParam(GetViewport().FindWorld2D().Space, PhysicsServer2D.AreaParameter.GravityVector, Vector2.Down)
  5360. .. rst-class:: classref-item-separator
  5361. ----
  5362. .. _class_ProjectSettings_property_physics/2d/default_linear_damp:
  5363. .. rst-class:: classref-property
  5364. :ref:`float<class_float>` **physics/2d/default_linear_damp** = ``0.1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/default_linear_damp>`
  5365. The default linear motion damping in 2D. Damping is used to gradually slow down physical objects over time. RigidBodies will fall back to this value when combining their own damping values and no area damping value is present.
  5366. Suggested values are in the range ``0`` to ``30``. At value ``0`` objects will keep moving with the same velocity. Greater values will stop the object faster. A value equal to or greater than the physics tick rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`) will bring the object to a stop in one iteration.
  5367. \ **Note:** Godot damping calculations are velocity-dependent, meaning bodies moving faster will take a longer time to come to rest. They do not simulate inertia, friction, or air resistance. Therefore heavier or larger bodies will lose speed at the same proportional rate as lighter or smaller bodies.
  5368. During each physics tick, Godot will multiply the linear velocity of RigidBodies by ``1.0 - combined_damp / physics_ticks_per_second``, where ``combined_damp`` is the sum of the linear damp of the body and this value, or the area's value the body is in, assuming the body defaults to combine damp values. See :ref:`DampMode<enum_RigidBody2D_DampMode>`.
  5369. \ **Warning:** Godot's damping calculations are simulation tick rate dependent. Changing :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` may significantly change the outcomes and feel of your simulation. This is true for the entire range of damping values greater than 0. To get back to a similar feel, you also need to change your damp values. This needed change is not proportional and differs from case to case.
  5370. .. rst-class:: classref-item-separator
  5371. ----
  5372. .. _class_ProjectSettings_property_physics/2d/physics_engine:
  5373. .. rst-class:: classref-property
  5374. :ref:`String<class_String>` **physics/2d/physics_engine** = ``"DEFAULT"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/physics_engine>`
  5375. Sets which physics engine to use for 2D physics.
  5376. "DEFAULT" and "GodotPhysics2D" are the same, as there is currently no alternative 2D physics server implemented.
  5377. .. rst-class:: classref-item-separator
  5378. ----
  5379. .. _class_ProjectSettings_property_physics/2d/run_on_separate_thread:
  5380. .. rst-class:: classref-property
  5381. :ref:`bool<class_bool>` **physics/2d/run_on_separate_thread** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/run_on_separate_thread>`
  5382. If ``true``, the 2D physics server runs on a separate thread, making better use of multi-core CPUs. If ``false``, the 2D physics server runs on the main thread. Running the physics server on a separate thread can increase performance, but restricts API access to only physics process.
  5383. .. rst-class:: classref-item-separator
  5384. ----
  5385. .. _class_ProjectSettings_property_physics/2d/sleep_threshold_angular:
  5386. .. rst-class:: classref-property
  5387. :ref:`float<class_float>` **physics/2d/sleep_threshold_angular** = ``0.139626`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/sleep_threshold_angular>`
  5388. Threshold angular velocity under which a 2D physics body will be considered inactive. See :ref:`PhysicsServer2D.SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD<class_PhysicsServer2D_constant_SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD>`.
  5389. .. rst-class:: classref-item-separator
  5390. ----
  5391. .. _class_ProjectSettings_property_physics/2d/sleep_threshold_linear:
  5392. .. rst-class:: classref-property
  5393. :ref:`float<class_float>` **physics/2d/sleep_threshold_linear** = ``2.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/sleep_threshold_linear>`
  5394. Threshold linear velocity under which a 2D physics body will be considered inactive. See :ref:`PhysicsServer2D.SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD<class_PhysicsServer2D_constant_SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD>`.
  5395. .. rst-class:: classref-item-separator
  5396. ----
  5397. .. _class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration:
  5398. .. rst-class:: classref-property
  5399. :ref:`float<class_float>` **physics/2d/solver/contact_max_allowed_penetration** = ``0.3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration>`
  5400. Maximum distance a shape can penetrate another shape before it is considered a collision. See :ref:`PhysicsServer2D.SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION<class_PhysicsServer2D_constant_SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION>`.
  5401. .. rst-class:: classref-item-separator
  5402. ----
  5403. .. _class_ProjectSettings_property_physics/2d/solver/contact_max_separation:
  5404. .. rst-class:: classref-property
  5405. :ref:`float<class_float>` **physics/2d/solver/contact_max_separation** = ``1.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/solver/contact_max_separation>`
  5406. Maximum distance a shape can be from another before they are considered separated and the contact is discarded. See :ref:`PhysicsServer2D.SPACE_PARAM_CONTACT_MAX_SEPARATION<class_PhysicsServer2D_constant_SPACE_PARAM_CONTACT_MAX_SEPARATION>`.
  5407. .. rst-class:: classref-item-separator
  5408. ----
  5409. .. _class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius:
  5410. .. rst-class:: classref-property
  5411. :ref:`float<class_float>` **physics/2d/solver/contact_recycle_radius** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius>`
  5412. Maximum distance a pair of bodies has to move before their collision status has to be recalculated. See :ref:`PhysicsServer2D.SPACE_PARAM_CONTACT_RECYCLE_RADIUS<class_PhysicsServer2D_constant_SPACE_PARAM_CONTACT_RECYCLE_RADIUS>`.
  5413. .. rst-class:: classref-item-separator
  5414. ----
  5415. .. _class_ProjectSettings_property_physics/2d/solver/default_constraint_bias:
  5416. .. rst-class:: classref-property
  5417. :ref:`float<class_float>` **physics/2d/solver/default_constraint_bias** = ``0.2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/solver/default_constraint_bias>`
  5418. Default solver bias for all physics constraints. Defines how much bodies react to enforce constraints. See :ref:`PhysicsServer2D.SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS<class_PhysicsServer2D_constant_SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS>`.
  5419. Individual constraints can have a specific bias value (see :ref:`Joint2D.bias<class_Joint2D_property_bias>`).
  5420. .. rst-class:: classref-item-separator
  5421. ----
  5422. .. _class_ProjectSettings_property_physics/2d/solver/default_contact_bias:
  5423. .. rst-class:: classref-property
  5424. :ref:`float<class_float>` **physics/2d/solver/default_contact_bias** = ``0.8`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/solver/default_contact_bias>`
  5425. Default solver bias for all physics contacts. Defines how much bodies react to enforce contact separation. See :ref:`PhysicsServer2D.SPACE_PARAM_CONTACT_DEFAULT_BIAS<class_PhysicsServer2D_constant_SPACE_PARAM_CONTACT_DEFAULT_BIAS>`.
  5426. Individual shapes can have a specific bias value (see :ref:`Shape2D.custom_solver_bias<class_Shape2D_property_custom_solver_bias>`).
  5427. .. rst-class:: classref-item-separator
  5428. ----
  5429. .. _class_ProjectSettings_property_physics/2d/solver/solver_iterations:
  5430. .. rst-class:: classref-property
  5431. :ref:`int<class_int>` **physics/2d/solver/solver_iterations** = ``16`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/solver/solver_iterations>`
  5432. Number of solver iterations for all contacts and constraints. The greater the number of iterations, the more accurate the collisions will be. However, a greater number of iterations requires more CPU power, which can decrease performance. See :ref:`PhysicsServer2D.SPACE_PARAM_SOLVER_ITERATIONS<class_PhysicsServer2D_constant_SPACE_PARAM_SOLVER_ITERATIONS>`.
  5433. .. rst-class:: classref-item-separator
  5434. ----
  5435. .. _class_ProjectSettings_property_physics/2d/time_before_sleep:
  5436. .. rst-class:: classref-property
  5437. :ref:`float<class_float>` **physics/2d/time_before_sleep** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/2d/time_before_sleep>`
  5438. Time (in seconds) of inactivity before which a 2D physics body will put to sleep. See :ref:`PhysicsServer2D.SPACE_PARAM_BODY_TIME_TO_SLEEP<class_PhysicsServer2D_constant_SPACE_PARAM_BODY_TIME_TO_SLEEP>`.
  5439. .. rst-class:: classref-item-separator
  5440. ----
  5441. .. _class_ProjectSettings_property_physics/3d/default_angular_damp:
  5442. .. rst-class:: classref-property
  5443. :ref:`float<class_float>` **physics/3d/default_angular_damp** = ``0.1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/default_angular_damp>`
  5444. The default rotational motion damping in 3D. Damping is used to gradually slow down physical objects over time. RigidBodies will fall back to this value when combining their own damping values and no area damping value is present.
  5445. Suggested values are in the range ``0`` to ``30``. At value ``0`` objects will keep moving with the same velocity. Greater values will stop the object faster. A value equal to or greater than the physics tick rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`) will bring the object to a stop in one iteration.
  5446. \ **Note:** Godot damping calculations are velocity-dependent, meaning bodies moving faster will take a longer time to come to rest. They do not simulate inertia, friction, or air resistance. Therefore heavier or larger bodies will lose speed at the same proportional rate as lighter or smaller bodies.
  5447. During each physics tick, Godot will multiply the angular velocity of RigidBodies by ``1.0 - combined_damp / physics_ticks_per_second``. By default, bodies combine damp factors: ``combined_damp`` is the sum of the damp value of the body and this value or the area's value the body is in. See :ref:`DampMode<enum_RigidBody3D_DampMode>`.
  5448. \ **Warning:** Godot's damping calculations are simulation tick rate dependent. Changing :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` may significantly change the outcomes and feel of your simulation. This is true for the entire range of damping values greater than 0. To get back to a similar feel, you also need to change your damp values. This needed change is not proportional and differs from case to case.
  5449. .. rst-class:: classref-item-separator
  5450. ----
  5451. .. _class_ProjectSettings_property_physics/3d/default_gravity:
  5452. .. rst-class:: classref-property
  5453. :ref:`float<class_float>` **physics/3d/default_gravity** = ``9.8`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/default_gravity>`
  5454. The default gravity strength in 3D (in meters per second squared).
  5455. \ **Note:** This property is only read when the project starts. To change the default gravity at runtime, use the following code sample:
  5456. .. tabs::
  5457. .. code-tab:: gdscript
  5458. # Set the default gravity strength to 9.8.
  5459. PhysicsServer3D.area_set_param(get_viewport().find_world_3d().space, PhysicsServer3D.AREA_PARAM_GRAVITY, 9.8)
  5460. .. code-tab:: csharp
  5461. // Set the default gravity strength to 9.8.
  5462. PhysicsServer3D.AreaSetParam(GetViewport().FindWorld3D().Space, PhysicsServer3D.AreaParameter.Gravity, 9.8);
  5463. .. rst-class:: classref-item-separator
  5464. ----
  5465. .. _class_ProjectSettings_property_physics/3d/default_gravity_vector:
  5466. .. rst-class:: classref-property
  5467. :ref:`Vector3<class_Vector3>` **physics/3d/default_gravity_vector** = ``Vector3(0, -1, 0)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/default_gravity_vector>`
  5468. The default gravity direction in 3D.
  5469. \ **Note:** This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample:
  5470. .. tabs::
  5471. .. code-tab:: gdscript
  5472. # Set the default gravity direction to `Vector3(0, -1, 0)`.
  5473. PhysicsServer3D.area_set_param(get_viewport().find_world_3d().space, PhysicsServer3D.AREA_PARAM_GRAVITY_VECTOR, Vector3.DOWN)
  5474. .. code-tab:: csharp
  5475. // Set the default gravity direction to `Vector3(0, -1, 0)`.
  5476. PhysicsServer3D.AreaSetParam(GetViewport().FindWorld3D().Space, PhysicsServer3D.AreaParameter.GravityVector, Vector3.Down)
  5477. .. rst-class:: classref-item-separator
  5478. ----
  5479. .. _class_ProjectSettings_property_physics/3d/default_linear_damp:
  5480. .. rst-class:: classref-property
  5481. :ref:`float<class_float>` **physics/3d/default_linear_damp** = ``0.1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/default_linear_damp>`
  5482. The default linear motion damping in 3D. Damping is used to gradually slow down physical objects over time. RigidBodies will fall back to this value when combining their own damping values and no area damping value is present.
  5483. Suggested values are in the range ``0`` to ``30``. At value ``0`` objects will keep moving with the same velocity. Greater values will stop the object faster. A value equal to or greater than the physics tick rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`) will bring the object to a stop in one iteration.
  5484. \ **Note:** Godot damping calculations are velocity-dependent, meaning bodies moving faster will take a longer time to come to rest. They do not simulate inertia, friction, or air resistance. Therefore heavier or larger bodies will lose speed at the same proportional rate as lighter or smaller bodies.
  5485. During each physics tick, Godot will multiply the linear velocity of RigidBodies by ``1.0 - combined_damp / physics_ticks_per_second``. By default, bodies combine damp factors: ``combined_damp`` is the sum of the damp value of the body and this value or the area's value the body is in. See :ref:`DampMode<enum_RigidBody3D_DampMode>`.
  5486. \ **Warning:** Godot's damping calculations are simulation tick rate dependent. Changing :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` may significantly change the outcomes and feel of your simulation. This is true for the entire range of damping values greater than 0. To get back to a similar feel, you also need to change your damp values. This needed change is not proportional and differs from case to case.
  5487. .. rst-class:: classref-item-separator
  5488. ----
  5489. .. _class_ProjectSettings_property_physics/3d/physics_engine:
  5490. .. rst-class:: classref-property
  5491. :ref:`String<class_String>` **physics/3d/physics_engine** = ``"DEFAULT"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/physics_engine>`
  5492. Sets which physics engine to use for 3D physics.
  5493. "DEFAULT" and "GodotPhysics3D" are the same, as there is currently no alternative 3D physics server implemented.
  5494. .. rst-class:: classref-item-separator
  5495. ----
  5496. .. _class_ProjectSettings_property_physics/3d/run_on_separate_thread:
  5497. .. rst-class:: classref-property
  5498. :ref:`bool<class_bool>` **physics/3d/run_on_separate_thread** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/run_on_separate_thread>`
  5499. If ``true``, the 3D physics server runs on a separate thread, making better use of multi-core CPUs. If ``false``, the 3D physics server runs on the main thread. Running the physics server on a separate thread can increase performance, but restricts API access to only physics process.
  5500. .. rst-class:: classref-item-separator
  5501. ----
  5502. .. _class_ProjectSettings_property_physics/3d/sleep_threshold_angular:
  5503. .. rst-class:: classref-property
  5504. :ref:`float<class_float>` **physics/3d/sleep_threshold_angular** = ``0.139626`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/sleep_threshold_angular>`
  5505. Threshold angular velocity under which a 3D physics body will be considered inactive. See :ref:`PhysicsServer3D.SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD<class_PhysicsServer3D_constant_SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD>`.
  5506. .. rst-class:: classref-item-separator
  5507. ----
  5508. .. _class_ProjectSettings_property_physics/3d/sleep_threshold_linear:
  5509. .. rst-class:: classref-property
  5510. :ref:`float<class_float>` **physics/3d/sleep_threshold_linear** = ``0.1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/sleep_threshold_linear>`
  5511. Threshold linear velocity under which a 3D physics body will be considered inactive. See :ref:`PhysicsServer3D.SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD<class_PhysicsServer3D_constant_SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD>`.
  5512. .. rst-class:: classref-item-separator
  5513. ----
  5514. .. _class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration:
  5515. .. rst-class:: classref-property
  5516. :ref:`float<class_float>` **physics/3d/solver/contact_max_allowed_penetration** = ``0.01`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration>`
  5517. Maximum distance a shape can penetrate another shape before it is considered a collision. See :ref:`PhysicsServer3D.SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION<class_PhysicsServer3D_constant_SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION>`.
  5518. .. rst-class:: classref-item-separator
  5519. ----
  5520. .. _class_ProjectSettings_property_physics/3d/solver/contact_max_separation:
  5521. .. rst-class:: classref-property
  5522. :ref:`float<class_float>` **physics/3d/solver/contact_max_separation** = ``0.05`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/solver/contact_max_separation>`
  5523. Maximum distance a shape can be from another before they are considered separated and the contact is discarded. See :ref:`PhysicsServer3D.SPACE_PARAM_CONTACT_MAX_SEPARATION<class_PhysicsServer3D_constant_SPACE_PARAM_CONTACT_MAX_SEPARATION>`.
  5524. .. rst-class:: classref-item-separator
  5525. ----
  5526. .. _class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius:
  5527. .. rst-class:: classref-property
  5528. :ref:`float<class_float>` **physics/3d/solver/contact_recycle_radius** = ``0.01`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius>`
  5529. Maximum distance a pair of bodies has to move before their collision status has to be recalculated. See :ref:`PhysicsServer3D.SPACE_PARAM_CONTACT_RECYCLE_RADIUS<class_PhysicsServer3D_constant_SPACE_PARAM_CONTACT_RECYCLE_RADIUS>`.
  5530. .. rst-class:: classref-item-separator
  5531. ----
  5532. .. _class_ProjectSettings_property_physics/3d/solver/default_contact_bias:
  5533. .. rst-class:: classref-property
  5534. :ref:`float<class_float>` **physics/3d/solver/default_contact_bias** = ``0.8`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/solver/default_contact_bias>`
  5535. Default solver bias for all physics contacts. Defines how much bodies react to enforce contact separation. See :ref:`PhysicsServer3D.SPACE_PARAM_CONTACT_DEFAULT_BIAS<class_PhysicsServer3D_constant_SPACE_PARAM_CONTACT_DEFAULT_BIAS>`.
  5536. Individual shapes can have a specific bias value (see :ref:`Shape3D.custom_solver_bias<class_Shape3D_property_custom_solver_bias>`).
  5537. .. rst-class:: classref-item-separator
  5538. ----
  5539. .. _class_ProjectSettings_property_physics/3d/solver/solver_iterations:
  5540. .. rst-class:: classref-property
  5541. :ref:`int<class_int>` **physics/3d/solver/solver_iterations** = ``16`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/solver/solver_iterations>`
  5542. Number of solver iterations for all contacts and constraints. The greater the number of iterations, the more accurate the collisions will be. However, a greater number of iterations requires more CPU power, which can decrease performance. See :ref:`PhysicsServer3D.SPACE_PARAM_SOLVER_ITERATIONS<class_PhysicsServer3D_constant_SPACE_PARAM_SOLVER_ITERATIONS>`.
  5543. .. rst-class:: classref-item-separator
  5544. ----
  5545. .. _class_ProjectSettings_property_physics/3d/time_before_sleep:
  5546. .. rst-class:: classref-property
  5547. :ref:`float<class_float>` **physics/3d/time_before_sleep** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/3d/time_before_sleep>`
  5548. Time (in seconds) of inactivity before which a 3D physics body will put to sleep. See :ref:`PhysicsServer3D.SPACE_PARAM_BODY_TIME_TO_SLEEP<class_PhysicsServer3D_constant_SPACE_PARAM_BODY_TIME_TO_SLEEP>`.
  5549. .. rst-class:: classref-item-separator
  5550. ----
  5551. .. _class_ProjectSettings_property_physics/common/enable_object_picking:
  5552. .. rst-class:: classref-property
  5553. :ref:`bool<class_bool>` **physics/common/enable_object_picking** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/common/enable_object_picking>`
  5554. Enables :ref:`Viewport.physics_object_picking<class_Viewport_property_physics_object_picking>` on the root viewport.
  5555. .. rst-class:: classref-item-separator
  5556. ----
  5557. .. _class_ProjectSettings_property_physics/common/max_physics_steps_per_frame:
  5558. .. rst-class:: classref-property
  5559. :ref:`int<class_int>` **physics/common/max_physics_steps_per_frame** = ``8`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>`
  5560. Controls the maximum number of physics steps that can be simulated each rendered frame. The default value is tuned to avoid "spiral of death" situations where expensive physics simulations trigger more expensive simulations indefinitely. However, the game will appear to slow down if the rendering FPS is less than ``1 / max_physics_steps_per_frame`` of :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`. This occurs even if ``delta`` is consistently used in physics calculations. To avoid this, increase :ref:`physics/common/max_physics_steps_per_frame<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>` if you have increased :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` significantly above its default value.
  5561. \ **Note:** This property is only read when the project starts. To change the maximum number of simulated physics steps per frame at runtime, set :ref:`Engine.max_physics_steps_per_frame<class_Engine_property_max_physics_steps_per_frame>` instead.
  5562. .. rst-class:: classref-item-separator
  5563. ----
  5564. .. _class_ProjectSettings_property_physics/common/physics_interpolation:
  5565. .. rst-class:: classref-property
  5566. :ref:`bool<class_bool>` **physics/common/physics_interpolation** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/common/physics_interpolation>`
  5567. If ``true``, the renderer will interpolate the transforms of physics objects between the last two transforms, so that smooth motion is seen even when physics ticks do not coincide with rendered frames. See also :ref:`Node.physics_interpolation_mode<class_Node_property_physics_interpolation_mode>` and :ref:`Node.reset_physics_interpolation<class_Node_method_reset_physics_interpolation>`.
  5568. \ **Note:** If ``true``, the physics jitter fix should be disabled by setting :ref:`physics/common/physics_jitter_fix<class_ProjectSettings_property_physics/common/physics_jitter_fix>` to ``0.0``.
  5569. \ **Note:** This property is only read when the project starts. To toggle physics interpolation at runtime, set :ref:`SceneTree.physics_interpolation<class_SceneTree_property_physics_interpolation>` instead.
  5570. \ **Note:** This feature is currently only implemented in the 2D renderer.
  5571. .. rst-class:: classref-item-separator
  5572. ----
  5573. .. _class_ProjectSettings_property_physics/common/physics_jitter_fix:
  5574. .. rst-class:: classref-property
  5575. :ref:`float<class_float>` **physics/common/physics_jitter_fix** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/common/physics_jitter_fix>`
  5576. Controls how much physics ticks are synchronized with real time. For 0 or less, the ticks are synchronized. Such values are recommended for network games, where clock synchronization matters. Higher values cause higher deviation of in-game clock and real clock, but allows smoothing out framerate jitters. The default value of 0.5 should be good enough for most; values above 2 could cause the game to react to dropped frames with a noticeable delay and are not recommended.
  5577. \ **Note:** When using a physics interpolation solution (such as enabling :ref:`physics/common/physics_interpolation<class_ProjectSettings_property_physics/common/physics_interpolation>` or using a custom solution), the physics jitter fix should be disabled by setting :ref:`physics/common/physics_jitter_fix<class_ProjectSettings_property_physics/common/physics_jitter_fix>` to ``0.0``.
  5578. \ **Note:** This property is only read when the project starts. To change the physics jitter fix at runtime, set :ref:`Engine.physics_jitter_fix<class_Engine_property_physics_jitter_fix>` instead.
  5579. .. rst-class:: classref-item-separator
  5580. ----
  5581. .. _class_ProjectSettings_property_physics/common/physics_ticks_per_second:
  5582. .. rst-class:: classref-property
  5583. :ref:`int<class_int>` **physics/common/physics_ticks_per_second** = ``60`` :ref:`๐Ÿ”—<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`
  5584. The number of fixed iterations per second. This controls how often physics simulation and :ref:`Node._physics_process<class_Node_private_method__physics_process>` methods are run. See also :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>`.
  5585. \ **Note:** This property is only read when the project starts. To change the physics FPS at runtime, set :ref:`Engine.physics_ticks_per_second<class_Engine_property_physics_ticks_per_second>` instead.
  5586. \ **Note:** Only :ref:`physics/common/max_physics_steps_per_frame<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>` physics ticks may be simulated per rendered frame at most. If more physics ticks have to be simulated per rendered frame to keep up with rendering, the project will appear to slow down (even if ``delta`` is used consistently in physics calculations). Therefore, it is recommended to also increase :ref:`physics/common/max_physics_steps_per_frame<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>` if increasing :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` significantly above its default value.
  5587. .. rst-class:: classref-item-separator
  5588. ----
  5589. .. _class_ProjectSettings_property_rendering/2d/sdf/oversize:
  5590. .. rst-class:: classref-property
  5591. :ref:`int<class_int>` **rendering/2d/sdf/oversize** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/2d/sdf/oversize>`
  5592. Controls how much of the original viewport size should be covered by the 2D signed distance field. This SDF can be sampled in :ref:`CanvasItem<class_CanvasItem>` shaders and is used for :ref:`GPUParticles2D<class_GPUParticles2D>` collision. Higher values allow portions of occluders located outside the viewport to still be taken into account in the generated signed distance field, at the cost of performance. If you notice particles falling through :ref:`LightOccluder2D<class_LightOccluder2D>`\ s as the occluders leave the viewport, increase this setting.
  5593. The percentage specified is added on each axis and on both sides. For example, with the default setting of 120%, the signed distance field will cover 20% of the viewport's size outside the viewport on each side (top, right, bottom, left).
  5594. \ **Note:** This property is only read when the project starts. To change the 2D SDF oversizing percentage at runtime, use :ref:`RenderingServer.viewport_set_sdf_oversize_and_scale<class_RenderingServer_method_viewport_set_sdf_oversize_and_scale>` instead.
  5595. .. rst-class:: classref-item-separator
  5596. ----
  5597. .. _class_ProjectSettings_property_rendering/2d/sdf/scale:
  5598. .. rst-class:: classref-property
  5599. :ref:`int<class_int>` **rendering/2d/sdf/scale** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/2d/sdf/scale>`
  5600. The resolution scale to use for the 2D signed distance field. Higher values lead to a more precise and more stable signed distance field as the camera moves, at the cost of performance. The default value (50%) renders at half the resolution of the viewport size on each axis, which means the SDF is generated with 25% of the viewport's pixel count.
  5601. \ **Note:** This property is only read when the project starts. To change the 2D SDF resolution scale at runtime, use :ref:`RenderingServer.viewport_set_sdf_oversize_and_scale<class_RenderingServer_method_viewport_set_sdf_oversize_and_scale>` instead.
  5602. .. rst-class:: classref-item-separator
  5603. ----
  5604. .. _class_ProjectSettings_property_rendering/2d/shadow_atlas/size:
  5605. .. rst-class:: classref-property
  5606. :ref:`int<class_int>` **rendering/2d/shadow_atlas/size** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/2d/shadow_atlas/size>`
  5607. The size of the 2D shadow atlas in pixels. Higher values result in more precise :ref:`Light2D<class_Light2D>` shadows, at the cost of performance and video memory usage. The specified value is rounded up to the nearest power of 2.
  5608. \ **Note:** This property is only read when the project starts. To change the 2D shadow atlas size at runtime, use :ref:`RenderingServer.canvas_set_shadow_texture_size<class_RenderingServer_method_canvas_set_shadow_texture_size>` instead.
  5609. .. rst-class:: classref-item-separator
  5610. ----
  5611. .. _class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel:
  5612. .. rst-class:: classref-property
  5613. :ref:`bool<class_bool>` **rendering/2d/snap/snap_2d_transforms_to_pixel** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel>`
  5614. If ``true``, :ref:`CanvasItem<class_CanvasItem>` nodes will internally snap to full pixels. Useful for low-resolution pixel art games. Their position can still be sub-pixel, but the decimals will not have effect as the position is rounded. This can lead to a crisper appearance at the cost of less smooth movement, especially when :ref:`Camera2D<class_Camera2D>` smoothing is enabled.
  5615. \ **Note:** This property is only read when the project starts. To toggle 2D transform snapping at runtime, use :ref:`RenderingServer.viewport_set_snap_2d_transforms_to_pixel<class_RenderingServer_method_viewport_set_snap_2d_transforms_to_pixel>` on the root :ref:`Viewport<class_Viewport>` instead.
  5616. \ **Note:** :ref:`Control<class_Control>` nodes are snapped to the nearest pixel by default. This is controlled by :ref:`gui/common/snap_controls_to_pixels<class_ProjectSettings_property_gui/common/snap_controls_to_pixels>`.
  5617. \ **Note:** It is not recommended to use this setting together with :ref:`rendering/2d/snap/snap_2d_vertices_to_pixel<class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel>`, as movement may appear even less smooth. Prefer only enabling this setting instead.
  5618. .. rst-class:: classref-item-separator
  5619. ----
  5620. .. _class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel:
  5621. .. rst-class:: classref-property
  5622. :ref:`bool<class_bool>` **rendering/2d/snap/snap_2d_vertices_to_pixel** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel>`
  5623. If ``true``, vertices of :ref:`CanvasItem<class_CanvasItem>` nodes will snap to full pixels. Useful for low-resolution pixel art games. Only affects the final vertex positions, not the transforms. This can lead to a crisper appearance at the cost of less smooth movement, especially when :ref:`Camera2D<class_Camera2D>` smoothing is enabled.
  5624. \ **Note:** This property is only read when the project starts. To toggle 2D vertex snapping at runtime, use :ref:`RenderingServer.viewport_set_snap_2d_vertices_to_pixel<class_RenderingServer_method_viewport_set_snap_2d_vertices_to_pixel>` on the root :ref:`Viewport<class_Viewport>` instead.
  5625. \ **Note:** :ref:`Control<class_Control>` nodes are snapped to the nearest pixel by default. This is controlled by :ref:`gui/common/snap_controls_to_pixels<class_ProjectSettings_property_gui/common/snap_controls_to_pixels>`.
  5626. \ **Note:** It is not recommended to use this setting together with :ref:`rendering/2d/snap/snap_2d_transforms_to_pixel<class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel>`, as movement may appear even less smooth. Prefer only enabling that setting instead.
  5627. .. rst-class:: classref-item-separator
  5628. ----
  5629. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d:
  5630. .. rst-class:: classref-property
  5631. :ref:`int<class_int>` **rendering/anti_aliasing/quality/msaa_2d** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d>`
  5632. Sets the number of MSAA samples to use for 2D/Canvas rendering (as a power of two). MSAA is used to reduce aliasing around the edges of polygons. A higher MSAA value results in smoother edges but can be significantly slower on some hardware, especially integrated graphics due to their limited memory bandwidth. This has no effect on shader-induced aliasing or texture aliasing.
  5633. \ **Note:** MSAA is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5634. .. rst-class:: classref-item-separator
  5635. ----
  5636. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d:
  5637. .. rst-class:: classref-property
  5638. :ref:`int<class_int>` **rendering/anti_aliasing/quality/msaa_3d** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d>`
  5639. Sets the number of MSAA samples to use for 3D rendering (as a power of two). MSAA is used to reduce aliasing around the edges of polygons. A higher MSAA value results in smoother edges but can be significantly slower on some hardware, especially integrated graphics due to their limited memory bandwidth. See also :ref:`rendering/scaling_3d/mode<class_ProjectSettings_property_rendering/scaling_3d/mode>` for supersampling, which provides higher quality but is much more expensive. This has no effect on shader-induced aliasing or texture aliasing.
  5640. \ **Note:** MSAA is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5641. .. rst-class:: classref-item-separator
  5642. ----
  5643. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa:
  5644. .. rst-class:: classref-property
  5645. :ref:`int<class_int>` **rendering/anti_aliasing/quality/screen_space_aa** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa>`
  5646. Sets the screen-space antialiasing mode for the default screen :ref:`Viewport<class_Viewport>`. Screen-space antialiasing works by selectively blurring edges in a post-process shader. It differs from MSAA which takes multiple coverage samples while rendering objects. Screen-space AA methods are typically faster than MSAA and will smooth out specular aliasing, but tend to make scenes appear blurry. The blurriness is partially counteracted by automatically using a negative mipmap LOD bias (see :ref:`rendering/textures/default_filters/texture_mipmap_bias<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>`).
  5647. Another way to combat specular aliasing is to enable :ref:`rendering/anti_aliasing/screen_space_roughness_limiter/enabled<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/enabled>`.
  5648. \ **Note:** Screen-space antialiasing is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5649. .. rst-class:: classref-item-separator
  5650. ----
  5651. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding:
  5652. .. rst-class:: classref-property
  5653. :ref:`bool<class_bool>` **rendering/anti_aliasing/quality/use_debanding** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding>`
  5654. If ``true``, uses a fast post-processing filter to make banding significantly less visible in 3D. 2D rendering is *not* affected by debanding unless the :ref:`Environment.background_mode<class_Environment_property_background_mode>` is :ref:`Environment.BG_CANVAS<class_Environment_constant_BG_CANVAS>`.
  5655. In some cases, debanding may introduce a slightly noticeable dithering pattern. It's recommended to enable debanding only when actually needed since the dithering pattern will make lossless-compressed screenshots larger.
  5656. \ **Note:** This property is only read when the project starts. To set debanding at run-time, set :ref:`Viewport.use_debanding<class_Viewport_property_use_debanding>` on the root :ref:`Viewport<class_Viewport>` instead.
  5657. .. rst-class:: classref-item-separator
  5658. ----
  5659. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa:
  5660. .. rst-class:: classref-property
  5661. :ref:`bool<class_bool>` **rendering/anti_aliasing/quality/use_taa** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>`
  5662. Enables Temporal Anti-Aliasing for the default screen :ref:`Viewport<class_Viewport>`. TAA works by jittering the camera and accumulating the images of the last rendered frames, motion vector rendering is used to account for camera and object motion. Enabling TAA can make the image blurrier, which is partially counteracted by automatically using a negative mipmap LOD bias (see :ref:`rendering/textures/default_filters/texture_mipmap_bias<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>`).
  5663. \ **Note:** The implementation is not complete yet. Some visual instances such as particles and skinned meshes may show ghosting artifacts in motion.
  5664. \ **Note:** TAA is only supported in the Forward+ rendering method, not Mobile or Compatibility.
  5665. .. rst-class:: classref-item-separator
  5666. ----
  5667. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/amount:
  5668. .. rst-class:: classref-property
  5669. :ref:`float<class_float>` **rendering/anti_aliasing/screen_space_roughness_limiter/amount** = ``0.25`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/amount>`
  5670. **Note:** This property is only read when the project starts. To control the screen-space roughness limiter at runtime, call :ref:`RenderingServer.screen_space_roughness_limiter_set_active<class_RenderingServer_method_screen_space_roughness_limiter_set_active>` instead.
  5671. .. rst-class:: classref-item-separator
  5672. ----
  5673. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/enabled:
  5674. .. rst-class:: classref-property
  5675. :ref:`bool<class_bool>` **rendering/anti_aliasing/screen_space_roughness_limiter/enabled** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/enabled>`
  5676. If ``true``, enables a spatial filter to limit roughness in areas with high-frequency detail. This can help reduce specular aliasing to an extent, though not as much as enabling :ref:`rendering/anti_aliasing/quality/use_taa<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>`. This filter has a small performance cost, so consider disabling it if it doesn't benefit your scene noticeably.
  5677. \ **Note:** The screen-space roughness limiter is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5678. \ **Note:** This property is only read when the project starts. To control the screen-space roughness limiter at runtime, call :ref:`RenderingServer.screen_space_roughness_limiter_set_active<class_RenderingServer_method_screen_space_roughness_limiter_set_active>` instead.
  5679. .. rst-class:: classref-item-separator
  5680. ----
  5681. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/limit:
  5682. .. rst-class:: classref-property
  5683. :ref:`float<class_float>` **rendering/anti_aliasing/screen_space_roughness_limiter/limit** = ``0.18`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/limit>`
  5684. **Note:** This property is only read when the project starts. To control the screen-space roughness limiter at runtime, call :ref:`RenderingServer.screen_space_roughness_limiter_set_active<class_RenderingServer_method_screen_space_roughness_limiter_set_active>` instead.
  5685. .. rst-class:: classref-item-separator
  5686. ----
  5687. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_quality:
  5688. .. rst-class:: classref-property
  5689. :ref:`int<class_int>` **rendering/camera/depth_of_field/depth_of_field_bokeh_quality** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_quality>`
  5690. Sets the quality of the depth of field effect. Higher quality takes more samples, which is slower but looks smoother.
  5691. .. rst-class:: classref-item-separator
  5692. ----
  5693. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_shape:
  5694. .. rst-class:: classref-property
  5695. :ref:`int<class_int>` **rendering/camera/depth_of_field/depth_of_field_bokeh_shape** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_shape>`
  5696. Sets the depth of field shape. Can be Box, Hexagon, or Circle. Box is the fastest. Circle is the most realistic, but also the most expensive to compute.
  5697. .. rst-class:: classref-item-separator
  5698. ----
  5699. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_use_jitter:
  5700. .. rst-class:: classref-property
  5701. :ref:`bool<class_bool>` **rendering/camera/depth_of_field/depth_of_field_use_jitter** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_use_jitter>`
  5702. If ``true``, jitters DOF samples to make effect slightly blurrier and hide lines created from low sample rates. This can result in a slightly grainy appearance when used with a low number of samples.
  5703. .. rst-class:: classref-item-separator
  5704. ----
  5705. .. _class_ProjectSettings_property_rendering/driver/depth_prepass/disable_for_vendors:
  5706. .. rst-class:: classref-property
  5707. :ref:`String<class_String>` **rendering/driver/depth_prepass/disable_for_vendors** = ``"PowerVR,Mali,Adreno,Apple"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/driver/depth_prepass/disable_for_vendors>`
  5708. Disables :ref:`rendering/driver/depth_prepass/enable<class_ProjectSettings_property_rendering/driver/depth_prepass/enable>` conditionally for certain vendors. By default, disables the depth prepass for mobile devices as mobile devices do not benefit from the depth prepass due to their unique architecture.
  5709. .. rst-class:: classref-item-separator
  5710. ----
  5711. .. _class_ProjectSettings_property_rendering/driver/depth_prepass/enable:
  5712. .. rst-class:: classref-property
  5713. :ref:`bool<class_bool>` **rendering/driver/depth_prepass/enable** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/driver/depth_prepass/enable>`
  5714. If ``true``, performs a previous depth pass before rendering 3D materials. This increases performance significantly in scenes with high overdraw, when complex materials and lighting are used. However, in scenes with few occluded surfaces, the depth prepass may reduce performance. If your game is viewed from a fixed angle that makes it easy to avoid overdraw (such as top-down or side-scrolling perspective), consider disabling the depth prepass to improve performance. This setting can be changed at run-time to optimize performance depending on the scene currently being viewed.
  5715. \ **Note:** Depth prepass is only supported when using the Forward+ or Compatibility rendering method. When using the Mobile rendering method, there is no depth prepass performed.
  5716. .. rst-class:: classref-item-separator
  5717. ----
  5718. .. _class_ProjectSettings_property_rendering/driver/threads/thread_model:
  5719. .. rst-class:: classref-property
  5720. :ref:`int<class_int>` **rendering/driver/threads/thread_model** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/driver/threads/thread_model>`
  5721. **Experimental:** This setting has several known bugs which can lead to crashing, especially when using particles or resizing the window. Not recommended for use in production at this stage.
  5722. The thread model to use for rendering. Rendering on a thread may improve performance, but synchronizing to the main thread can cause a bit more jitter.
  5723. .. rst-class:: classref-item-separator
  5724. ----
  5725. .. _class_ProjectSettings_property_rendering/environment/defaults/default_clear_color:
  5726. .. rst-class:: classref-property
  5727. :ref:`Color<class_Color>` **rendering/environment/defaults/default_clear_color** = ``Color(0.3, 0.3, 0.3, 1)`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/defaults/default_clear_color>`
  5728. Default background clear color. Overridable per :ref:`Viewport<class_Viewport>` using its :ref:`Environment<class_Environment>`. See :ref:`Environment.background_mode<class_Environment_property_background_mode>` and :ref:`Environment.background_color<class_Environment_property_background_color>` in particular. To change this default color programmatically, use :ref:`RenderingServer.set_default_clear_color<class_RenderingServer_method_set_default_clear_color>`.
  5729. .. rst-class:: classref-item-separator
  5730. ----
  5731. .. _class_ProjectSettings_property_rendering/environment/defaults/default_environment:
  5732. .. rst-class:: classref-property
  5733. :ref:`String<class_String>` **rendering/environment/defaults/default_environment** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/defaults/default_environment>`
  5734. :ref:`Environment<class_Environment>` that will be used as a fallback environment in case a scene does not specify its own environment. The default environment is loaded in at scene load time regardless of whether you have set an environment or not. If you do not rely on the fallback environment, you do not need to set this property.
  5735. .. rst-class:: classref-item-separator
  5736. ----
  5737. .. _class_ProjectSettings_property_rendering/environment/glow/upscale_mode:
  5738. .. rst-class:: classref-property
  5739. :ref:`int<class_int>` **rendering/environment/glow/upscale_mode** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/glow/upscale_mode>`
  5740. Sets how the glow effect is upscaled before being copied onto the screen. Linear is faster, but looks blocky. Bicubic is slower but looks smooth.
  5741. .. rst-class:: classref-item-separator
  5742. ----
  5743. .. _class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile:
  5744. .. rst-class:: classref-property
  5745. :ref:`int<class_int>` **rendering/environment/glow/upscale_mode.mobile** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile>`
  5746. Lower-end override for :ref:`rendering/environment/glow/upscale_mode<class_ProjectSettings_property_rendering/environment/glow/upscale_mode>` on mobile devices, due to performance concerns or driver support.
  5747. .. rst-class:: classref-item-separator
  5748. ----
  5749. .. _class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality:
  5750. .. rst-class:: classref-property
  5751. :ref:`int<class_int>` **rendering/environment/screen_space_reflection/roughness_quality** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality>`
  5752. Sets the quality for rough screen-space reflections. Turning off will make all screen space reflections sharp, while higher values make rough reflections look better.
  5753. .. rst-class:: classref-item-separator
  5754. ----
  5755. .. _class_ProjectSettings_property_rendering/environment/ssao/adaptive_target:
  5756. .. rst-class:: classref-property
  5757. :ref:`float<class_float>` **rendering/environment/ssao/adaptive_target** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssao/adaptive_target>`
  5758. Quality target to use when :ref:`rendering/environment/ssao/quality<class_ProjectSettings_property_rendering/environment/ssao/quality>` is set to ``Ultra``. A value of ``0.0`` provides a quality and speed similar to ``Medium`` while a value of ``1.0`` provides much higher quality than any of the other settings at the cost of performance.
  5759. .. rst-class:: classref-item-separator
  5760. ----
  5761. .. _class_ProjectSettings_property_rendering/environment/ssao/blur_passes:
  5762. .. rst-class:: classref-property
  5763. :ref:`int<class_int>` **rendering/environment/ssao/blur_passes** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssao/blur_passes>`
  5764. Number of blur passes to use when computing screen-space ambient occlusion. A higher number will result in a smoother look, but will be slower to compute and will have less high-frequency detail.
  5765. .. rst-class:: classref-item-separator
  5766. ----
  5767. .. _class_ProjectSettings_property_rendering/environment/ssao/fadeout_from:
  5768. .. rst-class:: classref-property
  5769. :ref:`float<class_float>` **rendering/environment/ssao/fadeout_from** = ``50.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssao/fadeout_from>`
  5770. Distance at which the screen-space ambient occlusion effect starts to fade out. Use this hide ambient occlusion at great distances.
  5771. .. rst-class:: classref-item-separator
  5772. ----
  5773. .. _class_ProjectSettings_property_rendering/environment/ssao/fadeout_to:
  5774. .. rst-class:: classref-property
  5775. :ref:`float<class_float>` **rendering/environment/ssao/fadeout_to** = ``300.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssao/fadeout_to>`
  5776. Distance at which the screen-space ambient occlusion is fully faded out. Use this hide ambient occlusion at great distances.
  5777. .. rst-class:: classref-item-separator
  5778. ----
  5779. .. _class_ProjectSettings_property_rendering/environment/ssao/half_size:
  5780. .. rst-class:: classref-property
  5781. :ref:`bool<class_bool>` **rendering/environment/ssao/half_size** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssao/half_size>`
  5782. If ``true``, screen-space ambient occlusion will be rendered at half size and then upscaled before being added to the scene. This is significantly faster but may miss small details. If ``false``, screen-space ambient occlusion will be rendered at full size.
  5783. .. rst-class:: classref-item-separator
  5784. ----
  5785. .. _class_ProjectSettings_property_rendering/environment/ssao/quality:
  5786. .. rst-class:: classref-property
  5787. :ref:`int<class_int>` **rendering/environment/ssao/quality** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssao/quality>`
  5788. Sets the quality of the screen-space ambient occlusion effect. Higher values take more samples and so will result in better quality, at the cost of performance. Setting to ``Ultra`` will use the :ref:`rendering/environment/ssao/adaptive_target<class_ProjectSettings_property_rendering/environment/ssao/adaptive_target>` setting.
  5789. .. rst-class:: classref-item-separator
  5790. ----
  5791. .. _class_ProjectSettings_property_rendering/environment/ssil/adaptive_target:
  5792. .. rst-class:: classref-property
  5793. :ref:`float<class_float>` **rendering/environment/ssil/adaptive_target** = ``0.5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssil/adaptive_target>`
  5794. Quality target to use when :ref:`rendering/environment/ssil/quality<class_ProjectSettings_property_rendering/environment/ssil/quality>` is set to ``Ultra``. A value of ``0.0`` provides a quality and speed similar to ``Medium`` while a value of ``1.0`` provides much higher quality than any of the other settings at the cost of performance. When using the adaptive target, the performance cost scales with the complexity of the scene.
  5795. .. rst-class:: classref-item-separator
  5796. ----
  5797. .. _class_ProjectSettings_property_rendering/environment/ssil/blur_passes:
  5798. .. rst-class:: classref-property
  5799. :ref:`int<class_int>` **rendering/environment/ssil/blur_passes** = ``4`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssil/blur_passes>`
  5800. Number of blur passes to use when computing screen-space indirect lighting. A higher number will result in a smoother look, but will be slower to compute and will have less high-frequency detail.
  5801. .. rst-class:: classref-item-separator
  5802. ----
  5803. .. _class_ProjectSettings_property_rendering/environment/ssil/fadeout_from:
  5804. .. rst-class:: classref-property
  5805. :ref:`float<class_float>` **rendering/environment/ssil/fadeout_from** = ``50.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssil/fadeout_from>`
  5806. Distance at which the screen-space indirect lighting effect starts to fade out. Use this hide screen-space indirect lighting at great distances.
  5807. .. rst-class:: classref-item-separator
  5808. ----
  5809. .. _class_ProjectSettings_property_rendering/environment/ssil/fadeout_to:
  5810. .. rst-class:: classref-property
  5811. :ref:`float<class_float>` **rendering/environment/ssil/fadeout_to** = ``300.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssil/fadeout_to>`
  5812. Distance at which the screen-space indirect lighting is fully faded out. Use this hide screen-space indirect lighting at great distances.
  5813. .. rst-class:: classref-item-separator
  5814. ----
  5815. .. _class_ProjectSettings_property_rendering/environment/ssil/half_size:
  5816. .. rst-class:: classref-property
  5817. :ref:`bool<class_bool>` **rendering/environment/ssil/half_size** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssil/half_size>`
  5818. If ``true``, screen-space indirect lighting will be rendered at half size and then upscaled before being added to the scene. This is significantly faster but may miss small details and may result in some objects appearing to glow at their edges.
  5819. .. rst-class:: classref-item-separator
  5820. ----
  5821. .. _class_ProjectSettings_property_rendering/environment/ssil/quality:
  5822. .. rst-class:: classref-property
  5823. :ref:`int<class_int>` **rendering/environment/ssil/quality** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/ssil/quality>`
  5824. Sets the quality of the screen-space indirect lighting effect. Higher values take more samples and so will result in better quality, at the cost of performance. Setting to ``Ultra`` will use the :ref:`rendering/environment/ssil/adaptive_target<class_ProjectSettings_property_rendering/environment/ssil/adaptive_target>` setting.
  5825. .. rst-class:: classref-item-separator
  5826. ----
  5827. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale:
  5828. .. rst-class:: classref-property
  5829. :ref:`float<class_float>` **rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale** = ``0.01`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale>`
  5830. Scales the depth over which the subsurface scattering effect is applied. A high value may allow light to scatter into a part of the mesh or another mesh that is close in screen space but far in depth. See also :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_scale<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale>`.
  5831. \ **Note:** This property is only read when the project starts. To set the subsurface scattering depth scale at runtime, call :ref:`RenderingServer.sub_surface_scattering_set_scale<class_RenderingServer_method_sub_surface_scattering_set_scale>` instead.
  5832. .. rst-class:: classref-item-separator
  5833. ----
  5834. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality:
  5835. .. rst-class:: classref-property
  5836. :ref:`int<class_int>` **rendering/environment/subsurface_scattering/subsurface_scattering_quality** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality>`
  5837. Sets the quality of the subsurface scattering effect. Higher values are slower but look nicer. This affects the rendering of materials that have :ref:`BaseMaterial3D.subsurf_scatter_enabled<class_BaseMaterial3D_property_subsurf_scatter_enabled>` set to ``true``, along with :ref:`ShaderMaterial<class_ShaderMaterial>`\ s that set ``SSS_STRENGTH``.
  5838. \ **Note:** This property is only read when the project starts. To set the subsurface scattering quality at runtime, call :ref:`RenderingServer.sub_surface_scattering_set_quality<class_RenderingServer_method_sub_surface_scattering_set_quality>` instead.
  5839. .. rst-class:: classref-item-separator
  5840. ----
  5841. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale:
  5842. .. rst-class:: classref-property
  5843. :ref:`float<class_float>` **rendering/environment/subsurface_scattering/subsurface_scattering_scale** = ``0.05`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale>`
  5844. Scales the distance over which samples are taken for subsurface scattering effect. Changing this does not impact performance, but higher values will result in significant artifacts as the samples will become obviously spread out. A lower value results in a smaller spread of scattered light. See also :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale>`.
  5845. \ **Note:** This property is only read when the project starts. To set the subsurface scattering scale at runtime, call :ref:`RenderingServer.sub_surface_scattering_set_scale<class_RenderingServer_method_sub_surface_scattering_set_scale>` instead.
  5846. .. rst-class:: classref-item-separator
  5847. ----
  5848. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter:
  5849. .. rst-class:: classref-property
  5850. :ref:`int<class_int>` **rendering/environment/volumetric_fog/use_filter** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter>`
  5851. Enables filtering of the volumetric fog effect prior to integration. This substantially blurs the fog which reduces fine details but also smooths out harsh edges and aliasing artifacts. Disable when more detail is required.
  5852. .. rst-class:: classref-item-separator
  5853. ----
  5854. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth:
  5855. .. rst-class:: classref-property
  5856. :ref:`int<class_int>` **rendering/environment/volumetric_fog/volume_depth** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth>`
  5857. Number of slices to use along the depth of the froxel buffer for volumetric fog. A lower number will be more efficient but may result in artifacts appearing during camera movement. See also :ref:`Environment.volumetric_fog_length<class_Environment_property_volumetric_fog_length>`.
  5858. .. rst-class:: classref-item-separator
  5859. ----
  5860. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size:
  5861. .. rst-class:: classref-property
  5862. :ref:`int<class_int>` **rendering/environment/volumetric_fog/volume_size** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size>`
  5863. Base size used to determine size of froxel buffer in the camera X-axis and Y-axis. The final size is scaled by the aspect ratio of the screen, so actual values may differ from what is set. Set a larger size for more detailed fog, set a smaller size for better performance.
  5864. .. rst-class:: classref-item-separator
  5865. ----
  5866. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver:
  5867. .. rst-class:: classref-property
  5868. :ref:`String<class_String>` **rendering/gl_compatibility/driver** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver>`
  5869. Sets the driver to be used by the renderer when using the Compatibility renderer. This property can not be edited directly, instead, set the driver using the platform-specific overrides.
  5870. .. rst-class:: classref-item-separator
  5871. ----
  5872. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.android:
  5873. .. rst-class:: classref-property
  5874. :ref:`String<class_String>` **rendering/gl_compatibility/driver.android** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver.android>`
  5875. Android override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5876. .. rst-class:: classref-item-separator
  5877. ----
  5878. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.ios:
  5879. .. rst-class:: classref-property
  5880. :ref:`String<class_String>` **rendering/gl_compatibility/driver.ios** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver.ios>`
  5881. iOS override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5882. .. rst-class:: classref-item-separator
  5883. ----
  5884. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd:
  5885. .. rst-class:: classref-property
  5886. :ref:`String<class_String>` **rendering/gl_compatibility/driver.linuxbsd** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd>`
  5887. LinuxBSD override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5888. .. rst-class:: classref-item-separator
  5889. ----
  5890. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.macos:
  5891. .. rst-class:: classref-property
  5892. :ref:`String<class_String>` **rendering/gl_compatibility/driver.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver.macos>`
  5893. macOS override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5894. .. rst-class:: classref-item-separator
  5895. ----
  5896. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.web:
  5897. .. rst-class:: classref-property
  5898. :ref:`String<class_String>` **rendering/gl_compatibility/driver.web** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver.web>`
  5899. Web override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5900. .. rst-class:: classref-item-separator
  5901. ----
  5902. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.windows:
  5903. .. rst-class:: classref-property
  5904. :ref:`String<class_String>` **rendering/gl_compatibility/driver.windows** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/driver.windows>`
  5905. Windows override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5906. .. rst-class:: classref-item-separator
  5907. ----
  5908. .. _class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_angle:
  5909. .. rst-class:: classref-property
  5910. :ref:`bool<class_bool>` **rendering/gl_compatibility/fallback_to_angle** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_angle>`
  5911. If ``true``, the compatibility renderer will fall back to ANGLE if native OpenGL is not supported or the device is listed in :ref:`rendering/gl_compatibility/force_angle_on_devices<class_ProjectSettings_property_rendering/gl_compatibility/force_angle_on_devices>`.
  5912. \ **Note:** This setting is implemented only on Windows.
  5913. .. rst-class:: classref-item-separator
  5914. ----
  5915. .. _class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_gles:
  5916. .. rst-class:: classref-property
  5917. :ref:`bool<class_bool>` **rendering/gl_compatibility/fallback_to_gles** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_gles>`
  5918. If ``true``, the compatibility renderer will fall back to OpenGLES if desktop OpenGL is not supported.
  5919. \ **Note:** This setting is implemented only on Linux/X11.
  5920. .. rst-class:: classref-item-separator
  5921. ----
  5922. .. _class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_native:
  5923. .. rst-class:: classref-property
  5924. :ref:`bool<class_bool>` **rendering/gl_compatibility/fallback_to_native** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/fallback_to_native>`
  5925. If ``true``, the compatibility renderer will fall back to native OpenGL if ANGLE over Metal is not supported.
  5926. \ **Note:** This setting is implemented only on macOS.
  5927. .. rst-class:: classref-item-separator
  5928. ----
  5929. .. _class_ProjectSettings_property_rendering/gl_compatibility/force_angle_on_devices:
  5930. .. rst-class:: classref-property
  5931. :ref:`Array<class_Array>` **rendering/gl_compatibility/force_angle_on_devices** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/force_angle_on_devices>`
  5932. An :ref:`Array<class_Array>` of devices which should always use the ANGLE renderer.
  5933. Each entry is a :ref:`Dictionary<class_Dictionary>` with the following keys: ``vendor`` and ``name``. ``name`` can be set to ``*`` to add all devices with the specified ``vendor``.
  5934. \ **Note:** This setting is implemented only on Windows.
  5935. .. rst-class:: classref-item-separator
  5936. ----
  5937. .. _class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size:
  5938. .. rst-class:: classref-property
  5939. :ref:`int<class_int>` **rendering/gl_compatibility/item_buffer_size** = ``16384`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size>`
  5940. Maximum number of canvas items commands that can be drawn in a single viewport update. If more render commands are issued they will be ignored. Decreasing this limit may improve performance on bandwidth limited devices. Increase this limit if you find that not all objects are being drawn in a frame.
  5941. .. rst-class:: classref-item-separator
  5942. ----
  5943. .. _class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization:
  5944. .. rst-class:: classref-property
  5945. :ref:`bool<class_bool>` **rendering/gl_compatibility/nvidia_disable_threaded_optimization** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization>`
  5946. If ``true``, disables the threaded optimization feature from the NVIDIA drivers, which are known to cause stuttering in most OpenGL applications.
  5947. \ **Note:** This setting only works on Windows, as threaded optimization is disabled by default on other platforms.
  5948. .. rst-class:: classref-item-separator
  5949. ----
  5950. .. _class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution:
  5951. .. rst-class:: classref-property
  5952. :ref:`bool<class_bool>` **rendering/global_illumination/gi/use_half_resolution** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution>`
  5953. If ``true``, renders :ref:`VoxelGI<class_VoxelGI>` and SDFGI (:ref:`Environment.sdfgi_enabled<class_Environment_property_sdfgi_enabled>`) buffers at halved resolution (e.g. 960ร—540 when the viewport size is 1920ร—1080). This improves performance significantly when VoxelGI or SDFGI is enabled, at the cost of artifacts that may be visible on polygon edges. The loss in quality becomes less noticeable as the viewport resolution increases. :ref:`LightmapGI<class_LightmapGI>` rendering is not affected by this setting.
  5954. \ **Note:** This property is only read when the project starts. To set half-resolution GI at run-time, call :ref:`RenderingServer.gi_set_use_half_resolution<class_RenderingServer_method_gi_set_use_half_resolution>` instead.
  5955. .. rst-class:: classref-item-separator
  5956. ----
  5957. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge:
  5958. .. rst-class:: classref-property
  5959. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/frames_to_converge** = ``5`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge>`
  5960. The number of frames to use for converging signed distance field global illumination. Higher values lead to a less noisy result, at the cost of taking a longer time to fully converge. This means the scene's global illumination will be too dark for a longer period of time, especially when the camera moves fast. The actual convergence speed depends on rendered framerate. For example, with the default setting of 30 frames, rendering at 60 FPS will make SDFGI fully converge after 0.5 seconds. See also :ref:`rendering/global_illumination/sdfgi/frames_to_update_lights<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights>` and :ref:`rendering/global_illumination/sdfgi/probe_ray_count<class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count>`.
  5961. \ **Note:** This property is only read when the project starts. To control SDFGI convergence speed at runtime, call :ref:`RenderingServer.environment_set_sdfgi_frames_to_converge<class_RenderingServer_method_environment_set_sdfgi_frames_to_converge>` instead.
  5962. .. rst-class:: classref-item-separator
  5963. ----
  5964. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights:
  5965. .. rst-class:: classref-property
  5966. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/frames_to_update_lights** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights>`
  5967. The number of frames over which dynamic lights should be updated in signed distance field global illumination. Higher values take more time to update indirect lighting coming from dynamic lights, but result in better performance when many dynamic lights are present. See also :ref:`rendering/global_illumination/sdfgi/frames_to_converge<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge>` and :ref:`rendering/global_illumination/sdfgi/probe_ray_count<class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count>`.
  5968. \ **Note:** This only affects :ref:`Light3D<class_Light3D>` nodes whose :ref:`Light3D.light_bake_mode<class_Light3D_property_light_bake_mode>` is :ref:`Light3D.BAKE_DYNAMIC<class_Light3D_constant_BAKE_DYNAMIC>` (which is the default). Consider making non-moving lights use the :ref:`Light3D.BAKE_STATIC<class_Light3D_constant_BAKE_STATIC>` bake mode to improve performance.
  5969. \ **Note:** This property is only read when the project starts. To control SDFGI light update speed at runtime, call :ref:`RenderingServer.environment_set_sdfgi_frames_to_update_light<class_RenderingServer_method_environment_set_sdfgi_frames_to_update_light>` instead.
  5970. .. rst-class:: classref-item-separator
  5971. ----
  5972. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count:
  5973. .. rst-class:: classref-property
  5974. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/probe_ray_count** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count>`
  5975. The number of rays to throw per frame when computing signed distance field global illumination. Higher values lead to a less noisy result, at the cost of performance. See also :ref:`rendering/global_illumination/sdfgi/frames_to_converge<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge>` and :ref:`rendering/global_illumination/sdfgi/frames_to_update_lights<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights>`.
  5976. \ **Note:** This property is only read when the project starts. To control SDFGI quality at runtime, call :ref:`RenderingServer.environment_set_sdfgi_ray_count<class_RenderingServer_method_environment_set_sdfgi_ray_count>` instead.
  5977. .. rst-class:: classref-item-separator
  5978. ----
  5979. .. _class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality:
  5980. .. rst-class:: classref-property
  5981. :ref:`int<class_int>` **rendering/global_illumination/voxel_gi/quality** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality>`
  5982. The VoxelGI quality to use. High quality leads to more precise lighting and better reflections, but is slower to render. This setting does not affect the baked data and doesn't require baking the :ref:`VoxelGI<class_VoxelGI>` again to apply.
  5983. \ **Note:** This property is only read when the project starts. To control VoxelGI quality at runtime, call :ref:`RenderingServer.voxel_gi_set_quality<class_RenderingServer_method_voxel_gi_set_quality>` instead.
  5984. .. rst-class:: classref-item-separator
  5985. ----
  5986. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_pass:
  5987. .. rst-class:: classref-property
  5988. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/max_rays_per_pass** = ``32`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_pass>`
  5989. The maximum number of rays that can be thrown per pass when baking lightmaps with :ref:`LightmapGI<class_LightmapGI>`. Depending on the scene, adjusting this value may result in higher GPU utilization when baking lightmaps, leading to faster bake times.
  5990. .. rst-class:: classref-item-separator
  5991. ----
  5992. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_probe_pass:
  5993. .. rst-class:: classref-property
  5994. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/max_rays_per_probe_pass** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_probe_pass>`
  5995. The maximum number of rays that can be thrown per pass when baking dynamic object lighting in :ref:`LightmapProbe<class_LightmapProbe>`\ s with :ref:`LightmapGI<class_LightmapGI>`. Depending on the scene, adjusting this value may result in higher GPU utilization when baking lightmaps, leading to faster bake times.
  5996. .. rst-class:: classref-item-separator
  5997. ----
  5998. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size:
  5999. .. rst-class:: classref-property
  6000. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/region_size** = ``512`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size>`
  6001. The region size to use when baking lightmaps with :ref:`LightmapGI<class_LightmapGI>`.
  6002. .. rst-class:: classref-item-separator
  6003. ----
  6004. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_probe_ray_count:
  6005. .. rst-class:: classref-property
  6006. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/high_quality_probe_ray_count** = ``512`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_probe_ray_count>`
  6007. The number of rays to use for baking dynamic object lighting in :ref:`LightmapProbe<class_LightmapProbe>`\ s when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_HIGH<class_LightmapGI_constant_BAKE_QUALITY_HIGH>`.
  6008. .. rst-class:: classref-item-separator
  6009. ----
  6010. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_ray_count:
  6011. .. rst-class:: classref-property
  6012. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/high_quality_ray_count** = ``512`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_ray_count>`
  6013. The number of rays to use for baking lightmaps with :ref:`LightmapGI<class_LightmapGI>` when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_HIGH<class_LightmapGI_constant_BAKE_QUALITY_HIGH>`.
  6014. .. rst-class:: classref-item-separator
  6015. ----
  6016. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_probe_ray_count:
  6017. .. rst-class:: classref-property
  6018. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/low_quality_probe_ray_count** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_probe_ray_count>`
  6019. The number of rays to use for baking dynamic object lighting in :ref:`LightmapProbe<class_LightmapProbe>`\ s when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_LOW<class_LightmapGI_constant_BAKE_QUALITY_LOW>`.
  6020. .. rst-class:: classref-item-separator
  6021. ----
  6022. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_ray_count:
  6023. .. rst-class:: classref-property
  6024. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/low_quality_ray_count** = ``32`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_ray_count>`
  6025. The number of rays to use for baking lightmaps with :ref:`LightmapGI<class_LightmapGI>` when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_LOW<class_LightmapGI_constant_BAKE_QUALITY_LOW>`.
  6026. .. rst-class:: classref-item-separator
  6027. ----
  6028. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_probe_ray_count:
  6029. .. rst-class:: classref-property
  6030. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/medium_quality_probe_ray_count** = ``256`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_probe_ray_count>`
  6031. The number of rays to use for baking dynamic object lighting in :ref:`LightmapProbe<class_LightmapProbe>`\ s when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_MEDIUM<class_LightmapGI_constant_BAKE_QUALITY_MEDIUM>`.
  6032. .. rst-class:: classref-item-separator
  6033. ----
  6034. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_ray_count:
  6035. .. rst-class:: classref-property
  6036. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/medium_quality_ray_count** = ``128`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_ray_count>`
  6037. The number of rays to use for baking lightmaps with :ref:`LightmapGI<class_LightmapGI>` when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_MEDIUM<class_LightmapGI_constant_BAKE_QUALITY_MEDIUM>`.
  6038. .. rst-class:: classref-item-separator
  6039. ----
  6040. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count:
  6041. .. rst-class:: classref-property
  6042. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count>`
  6043. The number of rays to use for baking dynamic object lighting in :ref:`LightmapProbe<class_LightmapProbe>`\ s when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_ULTRA<class_LightmapGI_constant_BAKE_QUALITY_ULTRA>`.
  6044. .. rst-class:: classref-item-separator
  6045. ----
  6046. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_ray_count:
  6047. .. rst-class:: classref-property
  6048. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/ultra_quality_ray_count** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_ray_count>`
  6049. The number of rays to use for baking lightmaps with :ref:`LightmapGI<class_LightmapGI>` when :ref:`LightmapGI.quality<class_LightmapGI_property_quality>` is :ref:`LightmapGI.BAKE_QUALITY_ULTRA<class_LightmapGI_constant_BAKE_QUALITY_ULTRA>`.
  6050. .. rst-class:: classref-item-separator
  6051. ----
  6052. .. _class_ProjectSettings_property_rendering/lightmapping/denoising/denoiser:
  6053. .. rst-class:: classref-property
  6054. :ref:`int<class_int>` **rendering/lightmapping/denoising/denoiser** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/denoising/denoiser>`
  6055. Denoiser tool used for denoising lightmaps.
  6056. Using `OpenImageDenoise <https://www.openimagedenoise.org/>`__ (OIDN) requires configuring a path to an OIDN executable in the editor settings at :ref:`EditorSettings.filesystem/tools/oidn/oidn_denoise_path<class_EditorSettings_property_filesystem/tools/oidn/oidn_denoise_path>`. OIDN can be downloaded from `OpenImageDenoise's downloads page <https://www.openimagedenoise.org/downloads.html>`__.
  6057. OIDN will use GPU acceleration when available. Unlike JNLM which uses compute shaders for acceleration, OIDN uses vendor-specific acceleration methods. For GPU acceleration to be available, the following libraries must be installed on the system depending on your GPU:
  6058. - NVIDIA GPUs: CUDA libraries
  6059. - AMD GPUs: HIP libraries
  6060. - Intel GPUs: SYCL libraries
  6061. If no GPU acceleration is configured on the system, multi-threaded CPU-based denoising will be performed instead. This CPU-based denoising is significantly slower than the JNLM denoiser in most cases.
  6062. .. rst-class:: classref-item-separator
  6063. ----
  6064. .. _class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size:
  6065. .. rst-class:: classref-property
  6066. :ref:`float<class_float>` **rendering/lightmapping/primitive_meshes/texel_size** = ``0.2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size>`
  6067. The texel_size that is used to calculate the :ref:`Mesh.lightmap_size_hint<class_Mesh_property_lightmap_size_hint>` on :ref:`PrimitiveMesh<class_PrimitiveMesh>` resources if :ref:`PrimitiveMesh.add_uv2<class_PrimitiveMesh_property_add_uv2>` is enabled.
  6068. .. rst-class:: classref-item-separator
  6069. ----
  6070. .. _class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed:
  6071. .. rst-class:: classref-property
  6072. :ref:`float<class_float>` **rendering/lightmapping/probe_capture/update_speed** = ``15`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed>`
  6073. The framerate-independent update speed when representing dynamic object lighting from :ref:`LightmapProbe<class_LightmapProbe>`\ s. Higher values make dynamic object lighting update faster. Higher values can prevent fast-moving objects from having "outdated" indirect lighting displayed on them, at the cost of possible flickering when an object moves from a bright area to a shaded area.
  6074. .. rst-class:: classref-item-separator
  6075. ----
  6076. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/16_bits:
  6077. .. rst-class:: classref-property
  6078. :ref:`bool<class_bool>` **rendering/lights_and_shadows/directional_shadow/16_bits** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/16_bits>`
  6079. Use 16 bits for the directional shadow depth map. Enabling this results in shadows having less precision and may result in shadow acne, but can lead to performance improvements on some devices.
  6080. .. rst-class:: classref-item-separator
  6081. ----
  6082. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size:
  6083. .. rst-class:: classref-property
  6084. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/size** = ``4096`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size>`
  6085. The directional shadow's size in pixels. Higher values will result in sharper shadows, at the cost of performance. The value is rounded up to the nearest power of 2.
  6086. .. rst-class:: classref-item-separator
  6087. ----
  6088. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size.mobile:
  6089. .. rst-class:: classref-property
  6090. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/size.mobile** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size.mobile>`
  6091. Lower-end override for :ref:`rendering/lights_and_shadows/directional_shadow/size<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size>` on mobile devices, due to performance concerns or driver support.
  6092. .. rst-class:: classref-item-separator
  6093. ----
  6094. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality:
  6095. .. rst-class:: classref-property
  6096. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality>`
  6097. Quality setting for shadows cast by :ref:`DirectionalLight3D<class_DirectionalLight3D>`\ s. Higher quality settings use more samples when reading from shadow maps and are thus slower. Low quality settings may result in shadows looking grainy.
  6098. \ **Note:** The Soft Very Low setting will automatically multiply *constant* shadow blur by 0.75x to reduce the amount of noise visible. This automatic blur change only affects the constant blur factor defined in :ref:`Light3D.shadow_blur<class_Light3D_property_shadow_blur>`, not the variable blur performed by :ref:`DirectionalLight3D<class_DirectionalLight3D>`\ s' :ref:`Light3D.light_angular_distance<class_Light3D_property_light_angular_distance>`.
  6099. \ **Note:** The Soft High and Soft Ultra settings will automatically multiply *constant* shadow blur by 1.5ร— and 2ร— respectively to make better use of the increased sample count. This increased blur also improves stability of dynamic object shadows.
  6100. .. rst-class:: classref-item-separator
  6101. ----
  6102. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile:
  6103. .. rst-class:: classref-property
  6104. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile>`
  6105. Lower-end override for :ref:`rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality>` on mobile devices, due to performance concerns or driver support.
  6106. .. rst-class:: classref-item-separator
  6107. ----
  6108. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_16_bits:
  6109. .. rst-class:: classref-property
  6110. :ref:`bool<class_bool>` **rendering/lights_and_shadows/positional_shadow/atlas_16_bits** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_16_bits>`
  6111. Use 16 bits for the omni/spot shadow depth map. Enabling this results in shadows having less precision and may result in shadow acne, but can lead to performance improvements on some devices.
  6112. .. rst-class:: classref-item-separator
  6113. ----
  6114. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv:
  6115. .. rst-class:: classref-property
  6116. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv>`
  6117. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  6118. .. rst-class:: classref-item-separator
  6119. ----
  6120. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv:
  6121. .. rst-class:: classref-property
  6122. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv>`
  6123. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  6124. .. rst-class:: classref-item-separator
  6125. ----
  6126. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv:
  6127. .. rst-class:: classref-property
  6128. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv>`
  6129. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  6130. .. rst-class:: classref-item-separator
  6131. ----
  6132. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv:
  6133. .. rst-class:: classref-property
  6134. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv** = ``4`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv>`
  6135. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  6136. .. rst-class:: classref-item-separator
  6137. ----
  6138. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size:
  6139. .. rst-class:: classref-property
  6140. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_size** = ``4096`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size>`
  6141. Size for shadow atlas (used for OmniLights and SpotLights). See documentation.
  6142. .. rst-class:: classref-item-separator
  6143. ----
  6144. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size.mobile:
  6145. .. rst-class:: classref-property
  6146. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_size.mobile** = ``2048`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size.mobile>`
  6147. Lower-end override for :ref:`rendering/lights_and_shadows/positional_shadow/atlas_size<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size>` on mobile devices, due to performance concerns or driver support.
  6148. .. rst-class:: classref-item-separator
  6149. ----
  6150. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality:
  6151. .. rst-class:: classref-property
  6152. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality>`
  6153. Quality setting for shadows cast by :ref:`OmniLight3D<class_OmniLight3D>`\ s and :ref:`SpotLight3D<class_SpotLight3D>`\ s. Higher quality settings use more samples when reading from shadow maps and are thus slower. Low quality settings may result in shadows looking grainy.
  6154. \ **Note:** The Soft Very Low setting will automatically multiply *constant* shadow blur by 0.75x to reduce the amount of noise visible. This automatic blur change only affects the constant blur factor defined in :ref:`Light3D.shadow_blur<class_Light3D_property_shadow_blur>`, not the variable blur performed by :ref:`DirectionalLight3D<class_DirectionalLight3D>`\ s' :ref:`Light3D.light_angular_distance<class_Light3D_property_light_angular_distance>`.
  6155. \ **Note:** The Soft High and Soft Ultra settings will automatically multiply shadow blur by 1.5ร— and 2ร— respectively to make better use of the increased sample count. This increased blur also improves stability of dynamic object shadows.
  6156. .. rst-class:: classref-item-separator
  6157. ----
  6158. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile:
  6159. .. rst-class:: classref-property
  6160. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile>`
  6161. Lower-end override for :ref:`rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality<class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality>` on mobile devices, due to performance concerns or driver support.
  6162. .. rst-class:: classref-item-separator
  6163. ----
  6164. .. _class_ProjectSettings_property_rendering/lights_and_shadows/tighter_shadow_caster_culling:
  6165. .. rst-class:: classref-property
  6166. :ref:`bool<class_bool>` **rendering/lights_and_shadows/tighter_shadow_caster_culling** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/tighter_shadow_caster_culling>`
  6167. If ``true``, items that cannot cast shadows into the view frustum will not be rendered into shadow maps.
  6168. This can increase performance.
  6169. .. rst-class:: classref-item-separator
  6170. ----
  6171. .. _class_ProjectSettings_property_rendering/lights_and_shadows/use_physical_light_units:
  6172. .. rst-class:: classref-property
  6173. :ref:`bool<class_bool>` **rendering/lights_and_shadows/use_physical_light_units** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/lights_and_shadows/use_physical_light_units>`
  6174. Enables the use of physically based units for light sources. Physically based units tend to be much larger than the arbitrary units used by Godot, but they can be used to match lighting within Godot to real-world lighting. Due to the large dynamic range of lighting conditions present in nature, Godot bakes exposure into the various lighting quantities before rendering. Most light sources bake exposure automatically at run time based on the active :ref:`CameraAttributes<class_CameraAttributes>` resource, but :ref:`LightmapGI<class_LightmapGI>` and :ref:`VoxelGI<class_VoxelGI>` require a :ref:`CameraAttributes<class_CameraAttributes>` resource to be set at bake time to reduce the dynamic range. At run time, Godot will automatically reconcile the baked exposure with the active exposure to ensure lighting remains consistent.
  6175. .. rst-class:: classref-item-separator
  6176. ----
  6177. .. _class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements:
  6178. .. rst-class:: classref-property
  6179. :ref:`float<class_float>` **rendering/limits/cluster_builder/max_clustered_elements** = ``512`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>`
  6180. The maximum number of clustered elements (:ref:`OmniLight3D<class_OmniLight3D>` + :ref:`SpotLight3D<class_SpotLight3D>` + :ref:`Decal<class_Decal>` + :ref:`ReflectionProbe<class_ReflectionProbe>`) that can be rendered at once in the camera view. If there are more clustered elements present in the camera view, some of them will not be rendered (leading to pop-in during camera movement). Enabling distance fade on lights and decals (:ref:`Light3D.distance_fade_enabled<class_Light3D_property_distance_fade_enabled>`, :ref:`Decal.distance_fade_enabled<class_Decal_property_distance_fade_enabled>`) can help avoid reaching this limit.
  6181. Decreasing this value may improve GPU performance on certain setups, even if the maximum number of clustered elements is never reached in the project.
  6182. \ **Note:** This setting is only effective when using the Forward+ rendering method, not Mobile and Compatibility.
  6183. .. rst-class:: classref-item-separator
  6184. ----
  6185. .. _class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size:
  6186. .. rst-class:: classref-property
  6187. :ref:`int<class_int>` **rendering/limits/global_shader_variables/buffer_size** = ``65536`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size>`
  6188. The maximum number of uniforms that can be used by the global shader uniform buffer. Each item takes up one slot. In other words, a single uniform float and a uniform vec4 will take the same amount of space in the buffer.
  6189. \ **Note:** When using the Compatibility backend, most mobile devices (and all web exports) will be limited to a maximum size of 1024 due to hardware constraints.
  6190. .. rst-class:: classref-item-separator
  6191. ----
  6192. .. _class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object:
  6193. .. rst-class:: classref-property
  6194. :ref:`int<class_int>` **rendering/limits/opengl/max_lights_per_object** = ``8`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object>`
  6195. Max number of omnilights and spotlights renderable per object. At the default value of 8, this means that each surface can be affected by up to 8 omnilights and 8 spotlights. This is further limited by hardware support and :ref:`rendering/limits/opengl/max_renderable_lights<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights>`. Setting this low will slightly reduce memory usage, may decrease shader compile times, and may result in faster rendering on low-end, mobile, or web devices.
  6196. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  6197. .. rst-class:: classref-item-separator
  6198. ----
  6199. .. _class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements:
  6200. .. rst-class:: classref-property
  6201. :ref:`int<class_int>` **rendering/limits/opengl/max_renderable_elements** = ``65536`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements>`
  6202. Max number of elements renderable in a frame. If more elements than this are visible per frame, they will not be drawn. Keep in mind elements refer to mesh surfaces and not meshes themselves. Setting this low will slightly reduce memory usage and may decrease shader compile times, particularly on web. For most uses, the default value is suitable, but consider lowering as much as possible on web export.
  6203. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  6204. .. rst-class:: classref-item-separator
  6205. ----
  6206. .. _class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights:
  6207. .. rst-class:: classref-property
  6208. :ref:`int<class_int>` **rendering/limits/opengl/max_renderable_lights** = ``32`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights>`
  6209. Max number of positional lights renderable in a frame. If more lights than this number are used, they will be ignored. Setting this low will slightly reduce memory usage and may decrease shader compile times, particularly on web. For most uses, the default value is suitable, but consider lowering as much as possible on web export.
  6210. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  6211. .. rst-class:: classref-item-separator
  6212. ----
  6213. .. _class_ProjectSettings_property_rendering/limits/spatial_indexer/threaded_cull_minimum_instances:
  6214. .. rst-class:: classref-property
  6215. :ref:`int<class_int>` **rendering/limits/spatial_indexer/threaded_cull_minimum_instances** = ``1000`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/spatial_indexer/threaded_cull_minimum_instances>`
  6216. The minimum number of instances that must be present in a scene to enable culling computations on multiple threads. If a scene has fewer instances than this number, culling is done on a single thread.
  6217. .. rst-class:: classref-item-separator
  6218. ----
  6219. .. _class_ProjectSettings_property_rendering/limits/spatial_indexer/update_iterations_per_frame:
  6220. .. rst-class:: classref-property
  6221. :ref:`int<class_int>` **rendering/limits/spatial_indexer/update_iterations_per_frame** = ``10`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/spatial_indexer/update_iterations_per_frame>`
  6222. .. container:: contribute
  6223. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6224. .. rst-class:: classref-item-separator
  6225. ----
  6226. .. _class_ProjectSettings_property_rendering/limits/time/time_rollover_secs:
  6227. .. rst-class:: classref-property
  6228. :ref:`float<class_float>` **rendering/limits/time/time_rollover_secs** = ``3600`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/limits/time/time_rollover_secs>`
  6229. .. container:: contribute
  6230. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6231. .. rst-class:: classref-item-separator
  6232. ----
  6233. .. _class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels:
  6234. .. rst-class:: classref-property
  6235. :ref:`float<class_float>` **rendering/mesh_lod/lod_change/threshold_pixels** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels>`
  6236. The automatic LOD bias to use for meshes rendered within the :ref:`ReflectionProbe<class_ReflectionProbe>`. Higher values will use less detailed versions of meshes that have LOD variations generated. If set to ``0.0``, automatic LOD is disabled. Increase :ref:`rendering/mesh_lod/lod_change/threshold_pixels<class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels>` to improve performance at the cost of geometry detail.
  6237. \ **Note:** :ref:`rendering/mesh_lod/lod_change/threshold_pixels<class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels>` does not affect :ref:`GeometryInstance3D<class_GeometryInstance3D>` visibility ranges (also known as "manual" LOD or hierarchical LOD).
  6238. \ **Note:** This property is only read when the project starts. To adjust the automatic LOD threshold at runtime, set :ref:`Viewport.mesh_lod_threshold<class_Viewport_property_mesh_lod_threshold>` on the root :ref:`Viewport<class_Viewport>`.
  6239. .. rst-class:: classref-item-separator
  6240. ----
  6241. .. _class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality:
  6242. .. rst-class:: classref-property
  6243. :ref:`int<class_int>` **rendering/occlusion_culling/bvh_build_quality** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality>`
  6244. The `Bounding Volume Hierarchy <https://en.wikipedia.org/wiki/Bounding_volume_hierarchy>`__ quality to use when rendering the occlusion culling buffer. Higher values will result in more accurate occlusion culling, at the cost of higher CPU usage. See also :ref:`rendering/occlusion_culling/occlusion_rays_per_thread<class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread>`.
  6245. \ **Note:** This property is only read when the project starts. To adjust the BVH build quality at runtime, use :ref:`RenderingServer.viewport_set_occlusion_culling_build_quality<class_RenderingServer_method_viewport_set_occlusion_culling_build_quality>`.
  6246. .. rst-class:: classref-item-separator
  6247. ----
  6248. .. _class_ProjectSettings_property_rendering/occlusion_culling/jitter_projection:
  6249. .. rst-class:: classref-property
  6250. :ref:`bool<class_bool>` **rendering/occlusion_culling/jitter_projection** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/occlusion_culling/jitter_projection>`
  6251. If ``true``, the projection used for rendering the occlusion buffer will be jittered. This can help prevent objects being incorrectly culled when visible through small gaps.
  6252. .. rst-class:: classref-item-separator
  6253. ----
  6254. .. _class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread:
  6255. .. rst-class:: classref-property
  6256. :ref:`int<class_int>` **rendering/occlusion_culling/occlusion_rays_per_thread** = ``512`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread>`
  6257. The number of occlusion rays traced per CPU thread. Higher values will result in more accurate occlusion culling, at the cost of higher CPU usage. The occlusion culling buffer's pixel count is roughly equal to ``occlusion_rays_per_thread * number_of_logical_cpu_cores``, so it will depend on the system's CPU. Therefore, CPUs with fewer cores will use a lower resolution to attempt keeping performance costs even across devices. See also :ref:`rendering/occlusion_culling/bvh_build_quality<class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality>`.
  6258. \ **Note:** This property is only read when the project starts. To adjust the number of occlusion rays traced per thread at runtime, use :ref:`RenderingServer.viewport_set_occlusion_rays_per_thread<class_RenderingServer_method_viewport_set_occlusion_rays_per_thread>`.
  6259. .. rst-class:: classref-item-separator
  6260. ----
  6261. .. _class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling:
  6262. .. rst-class:: classref-property
  6263. :ref:`bool<class_bool>` **rendering/occlusion_culling/use_occlusion_culling** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling>`
  6264. If ``true``, :ref:`OccluderInstance3D<class_OccluderInstance3D>` nodes will be usable for occlusion culling in 3D in the root viewport. In custom viewports, :ref:`Viewport.use_occlusion_culling<class_Viewport_property_use_occlusion_culling>` must be set to ``true`` instead.
  6265. \ **Note:** Enabling occlusion culling has a cost on the CPU. Only enable occlusion culling if you actually plan to use it. Large open scenes with few or no objects blocking the view will generally not benefit much from occlusion culling. Large open scenes generally benefit more from mesh LOD and visibility ranges (:ref:`GeometryInstance3D.visibility_range_begin<class_GeometryInstance3D_property_visibility_range_begin>` and :ref:`GeometryInstance3D.visibility_range_end<class_GeometryInstance3D_property_visibility_range_end>`) compared to occlusion culling.
  6266. \ **Note:** Due to memory constraints, occlusion culling is not supported by default in Web export templates. It can be enabled by compiling custom Web export templates with ``module_raycast_enabled=yes``.
  6267. .. rst-class:: classref-item-separator
  6268. ----
  6269. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count:
  6270. .. rst-class:: classref-property
  6271. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_count** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count>`
  6272. Number of cubemaps to store in the reflection atlas. The number of :ref:`ReflectionProbe<class_ReflectionProbe>`\ s in a scene will be limited by this amount. A higher number requires more VRAM.
  6273. .. rst-class:: classref-item-separator
  6274. ----
  6275. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size:
  6276. .. rst-class:: classref-property
  6277. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_size** = ``256`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size>`
  6278. Size of cubemap faces for :ref:`ReflectionProbe<class_ReflectionProbe>`\ s. A higher number requires more VRAM and may make reflection probe updating slower.
  6279. .. rst-class:: classref-item-separator
  6280. ----
  6281. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile:
  6282. .. rst-class:: classref-property
  6283. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_size.mobile** = ``128`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile>`
  6284. Lower-end override for :ref:`rendering/reflections/reflection_atlas/reflection_size<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size>` on mobile devices, due to performance concerns or driver support.
  6285. .. rst-class:: classref-item-separator
  6286. ----
  6287. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/fast_filter_high_quality:
  6288. .. rst-class:: classref-property
  6289. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/fast_filter_high_quality** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/sky_reflections/fast_filter_high_quality>`
  6290. Use a higher quality variant of the fast filtering algorithm. Significantly slower than using default quality, but results in smoother reflections. Should only be used when the scene is especially detailed.
  6291. .. rst-class:: classref-item-separator
  6292. ----
  6293. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples:
  6294. .. rst-class:: classref-property
  6295. :ref:`int<class_int>` **rendering/reflections/sky_reflections/ggx_samples** = ``32`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples>`
  6296. Sets the number of samples to take when using importance sampling for :ref:`Sky<class_Sky>`\ s and :ref:`ReflectionProbe<class_ReflectionProbe>`\ s. A higher value will result in smoother, higher quality reflections, but increases time to calculate radiance maps. In general, fewer samples are needed for simpler, low dynamic range environments while more samples are needed for HDR environments and environments with a high level of detail.
  6297. .. rst-class:: classref-item-separator
  6298. ----
  6299. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile:
  6300. .. rst-class:: classref-property
  6301. :ref:`int<class_int>` **rendering/reflections/sky_reflections/ggx_samples.mobile** = ``16`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile>`
  6302. Lower-end override for :ref:`rendering/reflections/sky_reflections/ggx_samples<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples>` on mobile devices, due to performance concerns or driver support.
  6303. .. rst-class:: classref-item-separator
  6304. ----
  6305. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers:
  6306. .. rst-class:: classref-property
  6307. :ref:`int<class_int>` **rendering/reflections/sky_reflections/roughness_layers** = ``8`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers>`
  6308. Limits the number of layers to use in radiance maps when using importance sampling. A lower number will be slightly faster and take up less VRAM.
  6309. .. rst-class:: classref-item-separator
  6310. ----
  6311. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections:
  6312. .. rst-class:: classref-property
  6313. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/texture_array_reflections** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections>`
  6314. If ``true``, uses texture arrays instead of mipmaps for reflection probes and panorama backgrounds (sky). This reduces jitter noise and upscaling artifacts on reflections, but is significantly slower to compute and uses :ref:`rendering/reflections/sky_reflections/roughness_layers<class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers>` times more memory.
  6315. .. rst-class:: classref-item-separator
  6316. ----
  6317. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections.mobile:
  6318. .. rst-class:: classref-property
  6319. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/texture_array_reflections.mobile** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections.mobile>`
  6320. Lower-end override for :ref:`rendering/reflections/sky_reflections/texture_array_reflections<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections>` on mobile devices, due to performance concerns or driver support.
  6321. .. rst-class:: classref-item-separator
  6322. ----
  6323. .. _class_ProjectSettings_property_rendering/renderer/rendering_method:
  6324. .. rst-class:: classref-property
  6325. :ref:`String<class_String>` **rendering/renderer/rendering_method** = ``"forward_plus"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/renderer/rendering_method>`
  6326. Sets the renderer that will be used by the project. Options are:
  6327. \ **Forward Plus**: High-end renderer designed for Desktop devices. Has a higher base overhead, but scales well with complex scenes. Not suitable for older devices or mobile.
  6328. \ **Mobile**: Modern renderer designed for mobile devices. Has a lower base overhead than Forward Plus, but does not scale as well to large scenes with many elements.
  6329. \ **GL Compatibility**: Low-end renderer designed for older devices. Based on the limitations of the OpenGL 3.3/ OpenGL ES 3.0 / WebGL 2 APIs.
  6330. .. rst-class:: classref-item-separator
  6331. ----
  6332. .. _class_ProjectSettings_property_rendering/renderer/rendering_method.mobile:
  6333. .. rst-class:: classref-property
  6334. :ref:`String<class_String>` **rendering/renderer/rendering_method.mobile** = ``"mobile"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/renderer/rendering_method.mobile>`
  6335. Override for :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` on mobile devices.
  6336. .. rst-class:: classref-item-separator
  6337. ----
  6338. .. _class_ProjectSettings_property_rendering/renderer/rendering_method.web:
  6339. .. rst-class:: classref-property
  6340. :ref:`String<class_String>` **rendering/renderer/rendering_method.web** = ``"gl_compatibility"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/renderer/rendering_method.web>`
  6341. Override for :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` on web.
  6342. .. rst-class:: classref-item-separator
  6343. ----
  6344. .. _class_ProjectSettings_property_rendering/rendering_device/d3d12/agility_sdk_version:
  6345. .. rst-class:: classref-property
  6346. :ref:`int<class_int>` **rendering/rendering_device/d3d12/agility_sdk_version** = ``613`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/d3d12/agility_sdk_version>`
  6347. Version code of the `Direct3D 12 Agility SDK <https://devblogs.microsoft.com/directx/directx12agility/>`__ to use (``D3D12SDKVersion``). This must match the *minor* version that is installed next to the editor binary and in the export templates directory for the current editor version. For example, if you have ``1.613.3`` installed, you need to input ``613`` here.
  6348. .. rst-class:: classref-item-separator
  6349. ----
  6350. .. _class_ProjectSettings_property_rendering/rendering_device/d3d12/max_misc_descriptors_per_frame:
  6351. .. rst-class:: classref-property
  6352. :ref:`int<class_int>` **rendering/rendering_device/d3d12/max_misc_descriptors_per_frame** = ``512`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/d3d12/max_misc_descriptors_per_frame>`
  6353. The number of entries in the miscellaneous descriptors heap the Direct3D 12 rendering driver uses each frame, used for various operations like clearing a texture.
  6354. Depending on the complexity of scenes, this value may be lowered or may need to be raised.
  6355. .. rst-class:: classref-item-separator
  6356. ----
  6357. .. _class_ProjectSettings_property_rendering/rendering_device/d3d12/max_resource_descriptors_per_frame:
  6358. .. rst-class:: classref-property
  6359. :ref:`int<class_int>` **rendering/rendering_device/d3d12/max_resource_descriptors_per_frame** = ``16384`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/d3d12/max_resource_descriptors_per_frame>`
  6360. The number of entries in the resource descriptors heap the Direct3D 12 rendering driver uses each frame, used for most rendering operations.
  6361. Depending on the complexity of scenes, this value may be lowered or may need to be raised.
  6362. .. rst-class:: classref-item-separator
  6363. ----
  6364. .. _class_ProjectSettings_property_rendering/rendering_device/d3d12/max_sampler_descriptors_per_frame:
  6365. .. rst-class:: classref-property
  6366. :ref:`int<class_int>` **rendering/rendering_device/d3d12/max_sampler_descriptors_per_frame** = ``1024`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/d3d12/max_sampler_descriptors_per_frame>`
  6367. The number of entries in the sampler descriptors heap the Direct3D 12 rendering driver uses each frame, used for most rendering operations.
  6368. Depending on the complexity of scenes, this value may be lowered or may need to be raised.
  6369. .. rst-class:: classref-item-separator
  6370. ----
  6371. .. _class_ProjectSettings_property_rendering/rendering_device/driver:
  6372. .. rst-class:: classref-property
  6373. :ref:`String<class_String>` **rendering/rendering_device/driver** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/driver>`
  6374. Sets the driver to be used by the renderer when using a RenderingDevice-based renderer like the clustered renderer or the mobile renderer. This property can not be edited directly, instead, set the driver using the platform-specific overrides.
  6375. .. rst-class:: classref-item-separator
  6376. ----
  6377. .. _class_ProjectSettings_property_rendering/rendering_device/driver.android:
  6378. .. rst-class:: classref-property
  6379. :ref:`String<class_String>` **rendering/rendering_device/driver.android** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/driver.android>`
  6380. Android override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  6381. .. rst-class:: classref-item-separator
  6382. ----
  6383. .. _class_ProjectSettings_property_rendering/rendering_device/driver.ios:
  6384. .. rst-class:: classref-property
  6385. :ref:`String<class_String>` **rendering/rendering_device/driver.ios** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/driver.ios>`
  6386. iOS override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  6387. .. rst-class:: classref-item-separator
  6388. ----
  6389. .. _class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd:
  6390. .. rst-class:: classref-property
  6391. :ref:`String<class_String>` **rendering/rendering_device/driver.linuxbsd** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd>`
  6392. LinuxBSD override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  6393. .. rst-class:: classref-item-separator
  6394. ----
  6395. .. _class_ProjectSettings_property_rendering/rendering_device/driver.macos:
  6396. .. rst-class:: classref-property
  6397. :ref:`String<class_String>` **rendering/rendering_device/driver.macos** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/driver.macos>`
  6398. macOS override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  6399. .. rst-class:: classref-item-separator
  6400. ----
  6401. .. _class_ProjectSettings_property_rendering/rendering_device/driver.windows:
  6402. .. rst-class:: classref-property
  6403. :ref:`String<class_String>` **rendering/rendering_device/driver.windows** :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/driver.windows>`
  6404. Windows override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  6405. .. rst-class:: classref-item-separator
  6406. ----
  6407. .. _class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/enable:
  6408. .. rst-class:: classref-property
  6409. :ref:`bool<class_bool>` **rendering/rendering_device/pipeline_cache/enable** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/enable>`
  6410. Enable the pipeline cache that is saved to disk if the graphics API supports it.
  6411. \ **Note:** This property is unable to control the pipeline caching the GPU driver itself does. Only turn this off along with deleting the contents of the driver's cache if you wish to simulate the experience a user will get when starting the game for the first time.
  6412. .. rst-class:: classref-item-separator
  6413. ----
  6414. .. _class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/save_chunk_size_mb:
  6415. .. rst-class:: classref-property
  6416. :ref:`float<class_float>` **rendering/rendering_device/pipeline_cache/save_chunk_size_mb** = ``3.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/save_chunk_size_mb>`
  6417. Determines at which interval pipeline cache is saved to disk. The lower the value, the more often it is saved.
  6418. .. rst-class:: classref-item-separator
  6419. ----
  6420. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/block_size_kb:
  6421. .. rst-class:: classref-property
  6422. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/block_size_kb** = ``256`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/staging_buffer/block_size_kb>`
  6423. .. container:: contribute
  6424. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6425. .. rst-class:: classref-item-separator
  6426. ----
  6427. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/max_size_mb:
  6428. .. rst-class:: classref-property
  6429. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/max_size_mb** = ``128`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/staging_buffer/max_size_mb>`
  6430. .. container:: contribute
  6431. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6432. .. rst-class:: classref-item-separator
  6433. ----
  6434. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/texture_upload_region_size_px:
  6435. .. rst-class:: classref-property
  6436. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/texture_upload_region_size_px** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/staging_buffer/texture_upload_region_size_px>`
  6437. .. container:: contribute
  6438. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6439. .. rst-class:: classref-item-separator
  6440. ----
  6441. .. _class_ProjectSettings_property_rendering/rendering_device/vsync/frame_queue_size:
  6442. .. rst-class:: classref-property
  6443. :ref:`int<class_int>` **rendering/rendering_device/vsync/frame_queue_size** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/vsync/frame_queue_size>`
  6444. The number of frames to track on the CPU side before stalling to wait for the GPU.
  6445. Try the `V-Sync Simulator <https://darksylinc.github.io/vsync_simulator/>`__, an interactive interface that simulates presentation to better understand how it is affected by different variables under various conditions.
  6446. \ **Note:** This property is only read when the project starts. There is currently no way to change this value at run-time.
  6447. .. rst-class:: classref-item-separator
  6448. ----
  6449. .. _class_ProjectSettings_property_rendering/rendering_device/vsync/swapchain_image_count:
  6450. .. rst-class:: classref-property
  6451. :ref:`int<class_int>` **rendering/rendering_device/vsync/swapchain_image_count** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/vsync/swapchain_image_count>`
  6452. The number of images the swapchain will consist of (back buffers + front buffer).
  6453. \ ``2`` corresponds to double-buffering and ``3`` to triple-buffering.
  6454. Double-buffering may give you the lowest lag/latency but if V-Sync is on and the system can't render at 60 fps, the framerate will go down in multiples of it (e.g. 30 fps, 15, 7.5, etc.). Triple buffering gives you higher framerate (specially if the system can't reach a constant 60 fps) at the cost of up to 1 frame of latency, with :ref:`DisplayServer.VSYNC_ENABLED<class_DisplayServer_constant_VSYNC_ENABLED>` (FIFO).
  6455. Use double-buffering with :ref:`DisplayServer.VSYNC_ENABLED<class_DisplayServer_constant_VSYNC_ENABLED>`. Triple-buffering is a must if you plan on using :ref:`DisplayServer.VSYNC_MAILBOX<class_DisplayServer_constant_VSYNC_MAILBOX>` mode.
  6456. Try the `V-Sync Simulator <https://darksylinc.github.io/vsync_simulator/>`__, an interactive interface that simulates presentation to better understand how it is affected by different variables under various conditions.
  6457. \ **Note:** This property is only read when the project starts. There is currently no way to change this value at run-time.
  6458. \ **Note:** Some platforms may restrict the actual value.
  6459. .. rst-class:: classref-item-separator
  6460. ----
  6461. .. _class_ProjectSettings_property_rendering/rendering_device/vulkan/max_descriptors_per_pool:
  6462. .. rst-class:: classref-property
  6463. :ref:`int<class_int>` **rendering/rendering_device/vulkan/max_descriptors_per_pool** = ``64`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/rendering_device/vulkan/max_descriptors_per_pool>`
  6464. .. container:: contribute
  6465. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6466. .. rst-class:: classref-item-separator
  6467. ----
  6468. .. _class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness:
  6469. .. rst-class:: classref-property
  6470. :ref:`float<class_float>` **rendering/scaling_3d/fsr_sharpness** = ``0.2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness>`
  6471. Determines how sharp the upscaled image will be when using the FSR upscaling mode. Sharpness halves with every whole number. Values go from 0.0 (sharpest) to 2.0. Values above 2.0 won't make a visible difference.
  6472. .. rst-class:: classref-item-separator
  6473. ----
  6474. .. _class_ProjectSettings_property_rendering/scaling_3d/mode:
  6475. .. rst-class:: classref-property
  6476. :ref:`int<class_int>` **rendering/scaling_3d/mode** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/scaling_3d/mode>`
  6477. Sets the scaling 3D mode. Bilinear scaling renders at different resolution to either undersample or supersample the viewport. FidelityFX Super Resolution 1.0, abbreviated to FSR, is an upscaling technology that produces high quality images at fast framerates by using a spatially-aware upscaling algorithm. FSR is slightly more expensive than bilinear, but it produces significantly higher image quality. On particularly low-end GPUs, the added cost of FSR may not be worth it (compared to using bilinear scaling with a slightly higher resolution scale to match performance).
  6478. \ **Note:** FSR is only effective when using the Forward+ rendering method, not Mobile or Compatibility. If using an incompatible rendering method, FSR will fall back to bilinear scaling.
  6479. .. rst-class:: classref-item-separator
  6480. ----
  6481. .. _class_ProjectSettings_property_rendering/scaling_3d/scale:
  6482. .. rst-class:: classref-property
  6483. :ref:`float<class_float>` **rendering/scaling_3d/scale** = ``1.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/scaling_3d/scale>`
  6484. Scales the 3D render buffer based on the viewport size uses an image filter specified in :ref:`rendering/scaling_3d/mode<class_ProjectSettings_property_rendering/scaling_3d/mode>` to scale the output image to the full viewport size. Values lower than ``1.0`` can be used to speed up 3D rendering at the cost of quality (undersampling). Values greater than ``1.0`` are only valid for bilinear mode and can be used to improve 3D rendering quality at a high performance cost (supersampling). See also :ref:`rendering/anti_aliasing/quality/msaa_3d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d>` for multi-sample antialiasing, which is significantly cheaper but only smooths the edges of polygons.
  6485. .. rst-class:: classref-item-separator
  6486. ----
  6487. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress:
  6488. .. rst-class:: classref-property
  6489. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/compress** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress>`
  6490. .. container:: contribute
  6491. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6492. .. rst-class:: classref-item-separator
  6493. ----
  6494. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled:
  6495. .. rst-class:: classref-property
  6496. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/enabled** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled>`
  6497. Enable the shader cache, which stores compiled shaders to disk to prevent stuttering from shader compilation the next time the shader is needed.
  6498. .. rst-class:: classref-item-separator
  6499. ----
  6500. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug:
  6501. .. rst-class:: classref-property
  6502. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/strip_debug** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug>`
  6503. .. container:: contribute
  6504. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6505. .. rst-class:: classref-item-separator
  6506. ----
  6507. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug.release:
  6508. .. rst-class:: classref-property
  6509. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/strip_debug.release** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug.release>`
  6510. .. container:: contribute
  6511. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6512. .. rst-class:: classref-item-separator
  6513. ----
  6514. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/use_zstd_compression:
  6515. .. rst-class:: classref-property
  6516. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/use_zstd_compression** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/use_zstd_compression>`
  6517. .. container:: contribute
  6518. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6519. .. rst-class:: classref-item-separator
  6520. ----
  6521. .. _class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley:
  6522. .. rst-class:: classref-property
  6523. :ref:`bool<class_bool>` **rendering/shading/overrides/force_lambert_over_burley** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley>`
  6524. If ``true``, uses faster but lower-quality Lambert material lighting model instead of Burley.
  6525. .. rst-class:: classref-item-separator
  6526. ----
  6527. .. _class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley.mobile:
  6528. .. rst-class:: classref-property
  6529. :ref:`bool<class_bool>` **rendering/shading/overrides/force_lambert_over_burley.mobile** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley.mobile>`
  6530. Lower-end override for :ref:`rendering/shading/overrides/force_lambert_over_burley<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley>` on mobile devices, due to performance concerns or driver support.
  6531. .. rst-class:: classref-item-separator
  6532. ----
  6533. .. _class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading:
  6534. .. rst-class:: classref-property
  6535. :ref:`bool<class_bool>` **rendering/shading/overrides/force_vertex_shading** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading>`
  6536. If ``true``, forces vertex shading for all rendering. This can increase performance a lot, but also reduces quality immensely. Can be used to optimize performance on low-end mobile devices.
  6537. \ **Note:** This setting currently has no effect, as vertex shading is not implemented yet.
  6538. .. rst-class:: classref-item-separator
  6539. ----
  6540. .. _class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile:
  6541. .. rst-class:: classref-property
  6542. :ref:`bool<class_bool>` **rendering/shading/overrides/force_vertex_shading.mobile** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile>`
  6543. Lower-end override for :ref:`rendering/shading/overrides/force_vertex_shading<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading>` on mobile devices, due to performance concerns or driver support.
  6544. \ **Note:** This setting currently has no effect, as vertex shading is not implemented yet.
  6545. .. rst-class:: classref-item-separator
  6546. ----
  6547. .. _class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter:
  6548. .. rst-class:: classref-property
  6549. :ref:`int<class_int>` **rendering/textures/canvas_textures/default_texture_filter** = ``1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter>`
  6550. The default texture filtering mode to use on :ref:`CanvasItem<class_CanvasItem>`\ s.
  6551. \ **Note:** For pixel art aesthetics, see also :ref:`rendering/2d/snap/snap_2d_vertices_to_pixel<class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel>` and :ref:`rendering/2d/snap/snap_2d_transforms_to_pixel<class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel>`.
  6552. .. rst-class:: classref-item-separator
  6553. ----
  6554. .. _class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat:
  6555. .. rst-class:: classref-property
  6556. :ref:`int<class_int>` **rendering/textures/canvas_textures/default_texture_repeat** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat>`
  6557. The default texture repeating mode to use on :ref:`CanvasItem<class_CanvasItem>`\ s.
  6558. .. rst-class:: classref-item-separator
  6559. ----
  6560. .. _class_ProjectSettings_property_rendering/textures/decals/filter:
  6561. .. rst-class:: classref-property
  6562. :ref:`int<class_int>` **rendering/textures/decals/filter** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/decals/filter>`
  6563. The filtering quality to use for :ref:`Decal<class_Decal>` nodes. When using one of the anisotropic filtering modes, the anisotropic filtering level is controlled by :ref:`rendering/textures/default_filters/anisotropic_filtering_level<class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level>`.
  6564. .. rst-class:: classref-item-separator
  6565. ----
  6566. .. _class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level:
  6567. .. rst-class:: classref-property
  6568. :ref:`int<class_int>` **rendering/textures/default_filters/anisotropic_filtering_level** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level>`
  6569. Sets the maximum number of samples to take when using anisotropic filtering on textures (as a power of two). A higher sample count will result in sharper textures at oblique angles, but is more expensive to compute. A value of ``0`` forcibly disables anisotropic filtering, even on materials where it is enabled.
  6570. The anisotropic filtering level also affects decals and light projectors if they are configured to use anisotropic filtering. See :ref:`rendering/textures/decals/filter<class_ProjectSettings_property_rendering/textures/decals/filter>` and :ref:`rendering/textures/light_projectors/filter<class_ProjectSettings_property_rendering/textures/light_projectors/filter>`.
  6571. \ **Note:** For performance reasons, anisotropic filtering *is not enabled by default* on 2D and 3D materials. For this setting to have an effect in 3D, set :ref:`BaseMaterial3D.texture_filter<class_BaseMaterial3D_property_texture_filter>` to :ref:`BaseMaterial3D.TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC<class_BaseMaterial3D_constant_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC>` or :ref:`BaseMaterial3D.TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC<class_BaseMaterial3D_constant_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC>` on materials. For this setting to have an effect in 2D, set :ref:`CanvasItem.texture_filter<class_CanvasItem_property_texture_filter>` to :ref:`CanvasItem.TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC<class_CanvasItem_constant_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC>` or :ref:`CanvasItem.TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC<class_CanvasItem_constant_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC>` on the :ref:`CanvasItem<class_CanvasItem>` node displaying the texture (or in :ref:`CanvasTexture<class_CanvasTexture>`). However, anisotropic filtering is rarely useful in 2D, so only enable it for textures in 2D if it makes a meaningful visual difference.
  6572. \ **Note:** This property is only read when the project starts. There is currently no way to change this setting at run-time.
  6573. .. rst-class:: classref-item-separator
  6574. ----
  6575. .. _class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias:
  6576. .. rst-class:: classref-property
  6577. :ref:`float<class_float>` **rendering/textures/default_filters/texture_mipmap_bias** = ``0.0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>`
  6578. Affects the final texture sharpness by reading from a lower or higher mipmap (also called "texture LOD bias"). Negative values make mipmapped textures sharper but grainier when viewed at a distance, while positive values make mipmapped textures blurrier (even when up close).
  6579. Enabling temporal antialiasing (:ref:`rendering/anti_aliasing/quality/use_taa<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>`) will automatically apply a ``-0.5`` offset to this value, while enabling FXAA (:ref:`rendering/anti_aliasing/quality/screen_space_aa<class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa>`) will automatically apply a ``-0.25`` offset to this value. If both TAA and FXAA are enabled at the same time, an offset of ``-0.75`` is applied to this value.
  6580. \ **Note:** If :ref:`rendering/scaling_3d/scale<class_ProjectSettings_property_rendering/scaling_3d/scale>` is lower than ``1.0`` (exclusive), :ref:`rendering/textures/default_filters/texture_mipmap_bias<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>` is used to adjust the automatic mipmap bias which is calculated internally based on the scale factor. The formula for this is ``log2(scaling_3d_scale) + mipmap_bias``.
  6581. .. rst-class:: classref-item-separator
  6582. ----
  6583. .. _class_ProjectSettings_property_rendering/textures/default_filters/use_nearest_mipmap_filter:
  6584. .. rst-class:: classref-property
  6585. :ref:`bool<class_bool>` **rendering/textures/default_filters/use_nearest_mipmap_filter** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/default_filters/use_nearest_mipmap_filter>`
  6586. If ``true``, uses nearest-neighbor mipmap filtering when using mipmaps (also called "bilinear filtering"), which will result in visible seams appearing between mipmap stages. This may increase performance in mobile as less memory bandwidth is used. If ``false``, linear mipmap filtering (also called "trilinear filtering") is used.
  6587. \ **Note:** This property is only read when the project starts. There is currently no way to change this setting at run-time.
  6588. .. rst-class:: classref-item-separator
  6589. ----
  6590. .. _class_ProjectSettings_property_rendering/textures/light_projectors/filter:
  6591. .. rst-class:: classref-property
  6592. :ref:`int<class_int>` **rendering/textures/light_projectors/filter** = ``3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/light_projectors/filter>`
  6593. The filtering quality to use for :ref:`OmniLight3D<class_OmniLight3D>` and :ref:`SpotLight3D<class_SpotLight3D>` projectors. When using one of the anisotropic filtering modes, the anisotropic filtering level is controlled by :ref:`rendering/textures/default_filters/anisotropic_filtering_level<class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level>`.
  6594. .. rst-class:: classref-item-separator
  6595. ----
  6596. .. _class_ProjectSettings_property_rendering/textures/lossless_compression/force_png:
  6597. .. rst-class:: classref-property
  6598. :ref:`bool<class_bool>` **rendering/textures/lossless_compression/force_png** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/lossless_compression/force_png>`
  6599. If ``true``, the texture importer will import lossless textures using the PNG format. Otherwise, it will default to using WebP.
  6600. .. rst-class:: classref-item-separator
  6601. ----
  6602. .. _class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc:
  6603. .. rst-class:: classref-property
  6604. :ref:`bool<class_bool>` **rendering/textures/vram_compression/import_etc2_astc** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc>`
  6605. If ``true``, the texture importer will import VRAM-compressed textures using the Ericsson Texture Compression 2 algorithm for lower quality textures and normal maps and Adaptable Scalable Texture Compression algorithm for high quality textures (in 4ร—4 block size).
  6606. \ **Note:** This setting is an override. The texture importer will always import the format the host platform needs, even if this is set to ``false``.
  6607. \ **Note:** Changing this setting does *not* impact textures that were already imported before. To make this setting apply to textures that were already imported, exit the editor, remove the ``.godot/imported/`` folder located inside the project folder then restart the editor (see :ref:`application/config/use_hidden_project_data_directory<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>`).
  6608. .. rst-class:: classref-item-separator
  6609. ----
  6610. .. _class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc:
  6611. .. rst-class:: classref-property
  6612. :ref:`bool<class_bool>` **rendering/textures/vram_compression/import_s3tc_bptc** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc>`
  6613. If ``true``, the texture importer will import VRAM-compressed textures using the S3 Texture Compression algorithm (DXT1-5) for lower quality textures and the BPTC algorithm (BC6H and BC7) for high quality textures. This algorithm is only supported on PC desktop platforms and consoles.
  6614. \ **Note:** This setting is an override. The texture importer will always import the format the host platform needs, even if this is set to ``false``.
  6615. \ **Note:** Changing this setting does *not* impact textures that were already imported before. To make this setting apply to textures that were already imported, exit the editor, remove the ``.godot/imported/`` folder located inside the project folder then restart the editor (see :ref:`application/config/use_hidden_project_data_directory<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>`).
  6616. .. rst-class:: classref-item-separator
  6617. ----
  6618. .. _class_ProjectSettings_property_rendering/textures/webp_compression/compression_method:
  6619. .. rst-class:: classref-property
  6620. :ref:`int<class_int>` **rendering/textures/webp_compression/compression_method** = ``2`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/webp_compression/compression_method>`
  6621. The default compression method for WebP. Affects both lossy and lossless WebP. A higher value results in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression method. Supported values are 0 to 6. Note that compression methods above 4 are very slow and offer very little savings.
  6622. .. rst-class:: classref-item-separator
  6623. ----
  6624. .. _class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor:
  6625. .. rst-class:: classref-property
  6626. :ref:`float<class_float>` **rendering/textures/webp_compression/lossless_compression_factor** = ``25`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor>`
  6627. The default compression factor for lossless WebP. Decompression speed is mostly unaffected by the compression factor. Supported values are 0 to 100.
  6628. .. rst-class:: classref-item-separator
  6629. ----
  6630. .. _class_ProjectSettings_property_rendering/viewport/hdr_2d:
  6631. .. rst-class:: classref-property
  6632. :ref:`bool<class_bool>` **rendering/viewport/hdr_2d** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/viewport/hdr_2d>`
  6633. If ``true``, enables :ref:`Viewport.use_hdr_2d<class_Viewport_property_use_hdr_2d>` on the root viewport. This allows 2D rendering to take advantage of effects requiring high dynamic range (e.g. 2D glow).
  6634. .. rst-class:: classref-item-separator
  6635. ----
  6636. .. _class_ProjectSettings_property_rendering/viewport/transparent_background:
  6637. .. rst-class:: classref-property
  6638. :ref:`bool<class_bool>` **rendering/viewport/transparent_background** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/viewport/transparent_background>`
  6639. If ``true``, enables :ref:`Viewport.transparent_bg<class_Viewport_property_transparent_bg>` on the root viewport. This allows per-pixel transparency to be effective after also enabling :ref:`display/window/size/transparent<class_ProjectSettings_property_display/window/size/transparent>` and :ref:`display/window/per_pixel_transparency/allowed<class_ProjectSettings_property_display/window/per_pixel_transparency/allowed>`.
  6640. .. rst-class:: classref-item-separator
  6641. ----
  6642. .. _class_ProjectSettings_property_rendering/vrs/mode:
  6643. .. rst-class:: classref-property
  6644. :ref:`int<class_int>` **rendering/vrs/mode** = ``0`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/vrs/mode>`
  6645. Set the default Variable Rate Shading (VRS) mode for the main viewport. See :ref:`Viewport.vrs_mode<class_Viewport_property_vrs_mode>` to change this at runtime, and :ref:`VRSMode<enum_Viewport_VRSMode>` for possible values.
  6646. .. rst-class:: classref-item-separator
  6647. ----
  6648. .. _class_ProjectSettings_property_rendering/vrs/texture:
  6649. .. rst-class:: classref-property
  6650. :ref:`String<class_String>` **rendering/vrs/texture** = ``""`` :ref:`๐Ÿ”—<class_ProjectSettings_property_rendering/vrs/texture>`
  6651. If :ref:`rendering/vrs/mode<class_ProjectSettings_property_rendering/vrs/mode>` is set to **Texture**, this is the path to default texture loaded as the VRS image.
  6652. The texture *must* use a lossless compression format so that colors can be matched precisely. The following VRS densities are mapped to various colors, with brighter colors representing a lower level of shading precision:
  6653. .. code:: text
  6654. - 1ร—1 = rgb(0, 0, 0) - #000000
  6655. - 1ร—2 = rgb(0, 85, 0) - #005500
  6656. - 2ร—1 = rgb(85, 0, 0) - #550000
  6657. - 2ร—2 = rgb(85, 85, 0) - #555500
  6658. - 2ร—4 = rgb(85, 170, 0) - #55aa00
  6659. - 4ร—2 = rgb(170, 85, 0) - #aa5500
  6660. - 4ร—4 = rgb(170, 170, 0) - #aaaa00
  6661. - 4ร—8 = rgb(170, 255, 0) - #aaff00 - Not supported on most hardware
  6662. - 8ร—4 = rgb(255, 170, 0) - #ffaa00 - Not supported on most hardware
  6663. - 8ร—8 = rgb(255, 255, 0) - #ffff00 - Not supported on most hardware
  6664. .. rst-class:: classref-item-separator
  6665. ----
  6666. .. _class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio:
  6667. .. rst-class:: classref-property
  6668. :ref:`float<class_float>` **threading/worker_pool/low_priority_thread_ratio** = ``0.3`` :ref:`๐Ÿ”—<class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio>`
  6669. The ratio of :ref:`WorkerThreadPool<class_WorkerThreadPool>`'s threads that will be reserved for low-priority tasks. For example, if 10 threads are available and this value is set to ``0.3``, 3 of the worker threads will be reserved for low-priority tasks. The actual value won't exceed the number of CPU cores minus one, and if possible, at least one worker thread will be dedicated to low-priority tasks.
  6670. .. rst-class:: classref-item-separator
  6671. ----
  6672. .. _class_ProjectSettings_property_threading/worker_pool/max_threads:
  6673. .. rst-class:: classref-property
  6674. :ref:`int<class_int>` **threading/worker_pool/max_threads** = ``-1`` :ref:`๐Ÿ”—<class_ProjectSettings_property_threading/worker_pool/max_threads>`
  6675. Maximum number of threads to be used by :ref:`WorkerThreadPool<class_WorkerThreadPool>`. Value of ``-1`` means no limit.
  6676. .. rst-class:: classref-item-separator
  6677. ----
  6678. .. _class_ProjectSettings_property_xr/openxr/default_action_map:
  6679. .. rst-class:: classref-property
  6680. :ref:`String<class_String>` **xr/openxr/default_action_map** = ``"res://openxr_action_map.tres"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/default_action_map>`
  6681. Action map configuration to load by default.
  6682. .. rst-class:: classref-item-separator
  6683. ----
  6684. .. _class_ProjectSettings_property_xr/openxr/enabled:
  6685. .. rst-class:: classref-property
  6686. :ref:`bool<class_bool>` **xr/openxr/enabled** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/enabled>`
  6687. If ``true``, Godot will setup and initialize OpenXR on startup.
  6688. .. rst-class:: classref-item-separator
  6689. ----
  6690. .. _class_ProjectSettings_property_xr/openxr/environment_blend_mode:
  6691. .. rst-class:: classref-property
  6692. :ref:`int<class_int>` **xr/openxr/environment_blend_mode** = ``"0"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/environment_blend_mode>`
  6693. Specify how OpenXR should blend in the environment. This is specific to certain AR and passthrough devices where camera images are blended in by the XR compositor.
  6694. .. rst-class:: classref-item-separator
  6695. ----
  6696. .. _class_ProjectSettings_property_xr/openxr/extensions/eye_gaze_interaction:
  6697. .. rst-class:: classref-property
  6698. :ref:`bool<class_bool>` **xr/openxr/extensions/eye_gaze_interaction** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/extensions/eye_gaze_interaction>`
  6699. Specify whether to enable eye tracking for this project. Depending on the platform, additional export configuration may be needed.
  6700. .. rst-class:: classref-item-separator
  6701. ----
  6702. .. _class_ProjectSettings_property_xr/openxr/extensions/hand_interaction_profile:
  6703. .. rst-class:: classref-property
  6704. :ref:`bool<class_bool>` **xr/openxr/extensions/hand_interaction_profile** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/extensions/hand_interaction_profile>`
  6705. If true the hand interaction profile extension will be activated if supported by the platform.
  6706. .. rst-class:: classref-item-separator
  6707. ----
  6708. .. _class_ProjectSettings_property_xr/openxr/extensions/hand_tracking:
  6709. .. rst-class:: classref-property
  6710. :ref:`bool<class_bool>` **xr/openxr/extensions/hand_tracking** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/extensions/hand_tracking>`
  6711. If true we enable the hand tracking extension if available.
  6712. .. rst-class:: classref-item-separator
  6713. ----
  6714. .. _class_ProjectSettings_property_xr/openxr/form_factor:
  6715. .. rst-class:: classref-property
  6716. :ref:`int<class_int>` **xr/openxr/form_factor** = ``"0"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/form_factor>`
  6717. Specify whether OpenXR should be configured for an HMD or a hand held device.
  6718. .. rst-class:: classref-item-separator
  6719. ----
  6720. .. _class_ProjectSettings_property_xr/openxr/foveation_dynamic:
  6721. .. rst-class:: classref-property
  6722. :ref:`bool<class_bool>` **xr/openxr/foveation_dynamic** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/foveation_dynamic>`
  6723. If true and foveation is supported, will automatically adjust foveation level based on framerate up to the level set on :ref:`xr/openxr/foveation_level<class_ProjectSettings_property_xr/openxr/foveation_level>`.
  6724. \ **Note:** Only works on compatibility renderer.
  6725. .. rst-class:: classref-item-separator
  6726. ----
  6727. .. _class_ProjectSettings_property_xr/openxr/foveation_level:
  6728. .. rst-class:: classref-property
  6729. :ref:`int<class_int>` **xr/openxr/foveation_level** = ``"0"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/foveation_level>`
  6730. Applied foveation level if supported: 0 = off, 1 = low, 2 = medium, 3 = high.
  6731. \ **Note:** Only works on compatibility renderer.
  6732. .. rst-class:: classref-item-separator
  6733. ----
  6734. .. _class_ProjectSettings_property_xr/openxr/reference_space:
  6735. .. rst-class:: classref-property
  6736. :ref:`int<class_int>` **xr/openxr/reference_space** = ``"1"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/reference_space>`
  6737. Specify the default reference space.
  6738. .. rst-class:: classref-item-separator
  6739. ----
  6740. .. _class_ProjectSettings_property_xr/openxr/startup_alert:
  6741. .. rst-class:: classref-property
  6742. :ref:`bool<class_bool>` **xr/openxr/startup_alert** = ``true`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/startup_alert>`
  6743. If ``true``, Godot will display an alert modal when OpenXR initialization fails on startup.
  6744. .. rst-class:: classref-item-separator
  6745. ----
  6746. .. _class_ProjectSettings_property_xr/openxr/submit_depth_buffer:
  6747. .. rst-class:: classref-property
  6748. :ref:`bool<class_bool>` **xr/openxr/submit_depth_buffer** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/submit_depth_buffer>`
  6749. If ``true``, OpenXR will manage the depth buffer and use the depth buffer for advanced reprojection provided this is supported by the XR runtime. Note that some rendering features in Godot can't be used with this feature.
  6750. .. rst-class:: classref-item-separator
  6751. ----
  6752. .. _class_ProjectSettings_property_xr/openxr/view_configuration:
  6753. .. rst-class:: classref-property
  6754. :ref:`int<class_int>` **xr/openxr/view_configuration** = ``"1"`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/openxr/view_configuration>`
  6755. Specify the view configuration with which to configure OpenXR setting up either Mono or Stereo rendering.
  6756. .. rst-class:: classref-item-separator
  6757. ----
  6758. .. _class_ProjectSettings_property_xr/shaders/enabled:
  6759. .. rst-class:: classref-property
  6760. :ref:`bool<class_bool>` **xr/shaders/enabled** = ``false`` :ref:`๐Ÿ”—<class_ProjectSettings_property_xr/shaders/enabled>`
  6761. If ``true``, Godot will compile shaders required for XR.
  6762. .. rst-class:: classref-section-separator
  6763. ----
  6764. .. rst-class:: classref-descriptions-group
  6765. Method Descriptions
  6766. -------------------
  6767. .. _class_ProjectSettings_method_add_property_info:
  6768. .. rst-class:: classref-method
  6769. |void| **add_property_info**\ (\ hint\: :ref:`Dictionary<class_Dictionary>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_add_property_info>`
  6770. Adds a custom property info to a property. The dictionary must contain:
  6771. - ``"name"``: :ref:`String<class_String>` (the property's name)
  6772. - ``"type"``: :ref:`int<class_int>` (see :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>`)
  6773. - optionally ``"hint"``: :ref:`int<class_int>` (see :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>`) and ``"hint_string"``: :ref:`String<class_String>`\
  6774. \ **Example:**\
  6775. .. tabs::
  6776. .. code-tab:: gdscript
  6777. ProjectSettings.set("category/property_name", 0)
  6778. var property_info = {
  6779. "name": "category/property_name",
  6780. "type": TYPE_INT,
  6781. "hint": PROPERTY_HINT_ENUM,
  6782. "hint_string": "one,two,three"
  6783. }
  6784. ProjectSettings.add_property_info(property_info)
  6785. .. code-tab:: csharp
  6786. ProjectSettings.Singleton.Set("category/property_name", 0);
  6787. var propertyInfo = new Godot.Collections.Dictionary
  6788. {
  6789. {"name", "category/propertyName"},
  6790. {"type", (int)Variant.Type.Int},
  6791. {"hint", (int)PropertyHint.Enum},
  6792. {"hint_string", "one,two,three"},
  6793. };
  6794. ProjectSettings.AddPropertyInfo(propertyInfo);
  6795. .. rst-class:: classref-item-separator
  6796. ----
  6797. .. _class_ProjectSettings_method_clear:
  6798. .. rst-class:: classref-method
  6799. |void| **clear**\ (\ name\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_clear>`
  6800. Clears the whole configuration (not recommended, may break things).
  6801. .. rst-class:: classref-item-separator
  6802. ----
  6803. .. _class_ProjectSettings_method_get_global_class_list:
  6804. .. rst-class:: classref-method
  6805. :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] **get_global_class_list**\ (\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_get_global_class_list>`
  6806. Returns an :ref:`Array<class_Array>` of registered global classes. Each global class is represented as a :ref:`Dictionary<class_Dictionary>` that contains the following entries:
  6807. - ``base`` is a name of the base class;
  6808. - ``class`` is a name of the registered global class;
  6809. - ``icon`` is a path to a custom icon of the global class, if it has any;
  6810. - ``language`` is a name of a programming language in which the global class is written;
  6811. - ``path`` is a path to a file containing the global class.
  6812. \ **Note:** Both the script and the icon paths are local to the project filesystem, i.e. they start with ``res://``.
  6813. .. rst-class:: classref-item-separator
  6814. ----
  6815. .. _class_ProjectSettings_method_get_order:
  6816. .. rst-class:: classref-method
  6817. :ref:`int<class_int>` **get_order**\ (\ name\: :ref:`String<class_String>`\ ) |const| :ref:`๐Ÿ”—<class_ProjectSettings_method_get_order>`
  6818. Returns the order of a configuration value (influences when saved to the config file).
  6819. .. rst-class:: classref-item-separator
  6820. ----
  6821. .. _class_ProjectSettings_method_get_setting:
  6822. .. rst-class:: classref-method
  6823. :ref:`Variant<class_Variant>` **get_setting**\ (\ name\: :ref:`String<class_String>`, default_value\: :ref:`Variant<class_Variant>` = null\ ) |const| :ref:`๐Ÿ”—<class_ProjectSettings_method_get_setting>`
  6824. Returns the value of the setting identified by ``name``. If the setting doesn't exist and ``default_value`` is specified, the value of ``default_value`` is returned. Otherwise, ``null`` is returned.
  6825. \ **Example:**\
  6826. .. tabs::
  6827. .. code-tab:: gdscript
  6828. print(ProjectSettings.get_setting("application/config/name"))
  6829. print(ProjectSettings.get_setting("application/config/custom_description", "No description specified."))
  6830. .. code-tab:: csharp
  6831. GD.Print(ProjectSettings.GetSetting("application/config/name"));
  6832. GD.Print(ProjectSettings.GetSetting("application/config/custom_description", "No description specified."));
  6833. \ **Note:** This method doesn't take potential feature overrides into account automatically. Use :ref:`get_setting_with_override<class_ProjectSettings_method_get_setting_with_override>` to handle seamlessly.
  6834. .. rst-class:: classref-item-separator
  6835. ----
  6836. .. _class_ProjectSettings_method_get_setting_with_override:
  6837. .. rst-class:: classref-method
  6838. :ref:`Variant<class_Variant>` **get_setting_with_override**\ (\ name\: :ref:`StringName<class_StringName>`\ ) |const| :ref:`๐Ÿ”—<class_ProjectSettings_method_get_setting_with_override>`
  6839. Similar to :ref:`get_setting<class_ProjectSettings_method_get_setting>`, but applies feature tag overrides if any exists and is valid.
  6840. \ **Example:**\
  6841. If the following setting override exists "application/config/name.windows", and the following code is executed:
  6842. .. tabs::
  6843. .. code-tab:: gdscript
  6844. print(ProjectSettings.get_setting_with_override("application/config/name"))
  6845. .. code-tab:: csharp
  6846. GD.Print(ProjectSettings.GetSettingWithOverride("application/config/name"));
  6847. Then the overridden setting will be returned instead if the project is running on the *Windows* operating system.
  6848. .. rst-class:: classref-item-separator
  6849. ----
  6850. .. _class_ProjectSettings_method_globalize_path:
  6851. .. rst-class:: classref-method
  6852. :ref:`String<class_String>` **globalize_path**\ (\ path\: :ref:`String<class_String>`\ ) |const| :ref:`๐Ÿ”—<class_ProjectSettings_method_globalize_path>`
  6853. Returns the absolute, native OS path corresponding to the localized ``path`` (starting with ``res://`` or ``user://``). The returned path will vary depending on the operating system and user preferences. See :doc:`File paths in Godot projects <../tutorials/io/data_paths>` to see what those paths convert to. See also :ref:`localize_path<class_ProjectSettings_method_localize_path>`.
  6854. \ **Note:** :ref:`globalize_path<class_ProjectSettings_method_globalize_path>` with ``res://`` will not work in an exported project. Instead, prepend the executable's base directory to the path when running from an exported project:
  6855. ::
  6856. var path = ""
  6857. if OS.has_feature("editor"):
  6858. # Running from an editor binary.
  6859. # `path` will contain the absolute path to `hello.txt` located in the project root.
  6860. path = ProjectSettings.globalize_path("res://hello.txt")
  6861. else:
  6862. # Running from an exported project.
  6863. # `path` will contain the absolute path to `hello.txt` next to the executable.
  6864. # This is *not* identical to using `ProjectSettings.globalize_path()` with a `res://` path,
  6865. # but is close enough in spirit.
  6866. path = OS.get_executable_path().get_base_dir().path_join("hello.txt")
  6867. .. rst-class:: classref-item-separator
  6868. ----
  6869. .. _class_ProjectSettings_method_has_setting:
  6870. .. rst-class:: classref-method
  6871. :ref:`bool<class_bool>` **has_setting**\ (\ name\: :ref:`String<class_String>`\ ) |const| :ref:`๐Ÿ”—<class_ProjectSettings_method_has_setting>`
  6872. Returns ``true`` if a configuration value is present.
  6873. .. rst-class:: classref-item-separator
  6874. ----
  6875. .. _class_ProjectSettings_method_load_resource_pack:
  6876. .. rst-class:: classref-method
  6877. :ref:`bool<class_bool>` **load_resource_pack**\ (\ pack\: :ref:`String<class_String>`, replace_files\: :ref:`bool<class_bool>` = true, offset\: :ref:`int<class_int>` = 0\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_load_resource_pack>`
  6878. Loads the contents of the .pck or .zip file specified by ``pack`` into the resource filesystem (``res://``). Returns ``true`` on success.
  6879. \ **Note:** If a file from ``pack`` shares the same path as a file already in the resource filesystem, any attempts to load that file will use the file from ``pack`` unless ``replace_files`` is set to ``false``.
  6880. \ **Note:** The optional ``offset`` parameter can be used to specify the offset in bytes to the start of the resource pack. This is only supported for .pck files.
  6881. .. rst-class:: classref-item-separator
  6882. ----
  6883. .. _class_ProjectSettings_method_localize_path:
  6884. .. rst-class:: classref-method
  6885. :ref:`String<class_String>` **localize_path**\ (\ path\: :ref:`String<class_String>`\ ) |const| :ref:`๐Ÿ”—<class_ProjectSettings_method_localize_path>`
  6886. Returns the localized path (starting with ``res://``) corresponding to the absolute, native OS ``path``. See also :ref:`globalize_path<class_ProjectSettings_method_globalize_path>`.
  6887. .. rst-class:: classref-item-separator
  6888. ----
  6889. .. _class_ProjectSettings_method_save:
  6890. .. rst-class:: classref-method
  6891. :ref:`Error<enum_@GlobalScope_Error>` **save**\ (\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_save>`
  6892. Saves the configuration to the ``project.godot`` file.
  6893. \ **Note:** This method is intended to be used by editor plugins, as modified **ProjectSettings** can't be loaded back in the running app. If you want to change project settings in exported projects, use :ref:`save_custom<class_ProjectSettings_method_save_custom>` to save ``override.cfg`` file.
  6894. .. rst-class:: classref-item-separator
  6895. ----
  6896. .. _class_ProjectSettings_method_save_custom:
  6897. .. rst-class:: classref-method
  6898. :ref:`Error<enum_@GlobalScope_Error>` **save_custom**\ (\ file\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_save_custom>`
  6899. Saves the configuration to a custom file. The file extension must be ``.godot`` (to save in text-based :ref:`ConfigFile<class_ConfigFile>` format) or ``.binary`` (to save in binary format). You can also save ``override.cfg`` file, which is also text, but can be used in exported projects unlike other formats.
  6900. .. rst-class:: classref-item-separator
  6901. ----
  6902. .. _class_ProjectSettings_method_set_as_basic:
  6903. .. rst-class:: classref-method
  6904. |void| **set_as_basic**\ (\ name\: :ref:`String<class_String>`, basic\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_set_as_basic>`
  6905. Defines if the specified setting is considered basic or advanced. Basic settings will always be shown in the project settings. Advanced settings will only be shown if the user enables the "Advanced Settings" option.
  6906. .. rst-class:: classref-item-separator
  6907. ----
  6908. .. _class_ProjectSettings_method_set_as_internal:
  6909. .. rst-class:: classref-method
  6910. |void| **set_as_internal**\ (\ name\: :ref:`String<class_String>`, internal\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_set_as_internal>`
  6911. Defines if the specified setting is considered internal. An internal setting won't show up in the Project Settings dialog. This is mostly useful for addons that need to store their own internal settings without exposing them directly to the user.
  6912. .. rst-class:: classref-item-separator
  6913. ----
  6914. .. _class_ProjectSettings_method_set_initial_value:
  6915. .. rst-class:: classref-method
  6916. |void| **set_initial_value**\ (\ name\: :ref:`String<class_String>`, value\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_set_initial_value>`
  6917. Sets the specified setting's initial value. This is the value the setting reverts to.
  6918. .. rst-class:: classref-item-separator
  6919. ----
  6920. .. _class_ProjectSettings_method_set_order:
  6921. .. rst-class:: classref-method
  6922. |void| **set_order**\ (\ name\: :ref:`String<class_String>`, position\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_set_order>`
  6923. Sets the order of a configuration value (influences when saved to the config file).
  6924. .. rst-class:: classref-item-separator
  6925. ----
  6926. .. _class_ProjectSettings_method_set_restart_if_changed:
  6927. .. rst-class:: classref-method
  6928. |void| **set_restart_if_changed**\ (\ name\: :ref:`String<class_String>`, restart\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_set_restart_if_changed>`
  6929. Sets whether a setting requires restarting the editor to properly take effect.
  6930. \ **Note:** This is just a hint to display to the user that the editor must be restarted for changes to take effect. Enabling :ref:`set_restart_if_changed<class_ProjectSettings_method_set_restart_if_changed>` does *not* delay the setting being set when changed.
  6931. .. rst-class:: classref-item-separator
  6932. ----
  6933. .. _class_ProjectSettings_method_set_setting:
  6934. .. rst-class:: classref-method
  6935. |void| **set_setting**\ (\ name\: :ref:`String<class_String>`, value\: :ref:`Variant<class_Variant>`\ ) :ref:`๐Ÿ”—<class_ProjectSettings_method_set_setting>`
  6936. Sets the value of a setting.
  6937. \ **Example:**\
  6938. .. tabs::
  6939. .. code-tab:: gdscript
  6940. ProjectSettings.set_setting("application/config/name", "Example")
  6941. .. code-tab:: csharp
  6942. ProjectSettings.SetSetting("application/config/name", "Example");
  6943. This can also be used to erase custom project settings. To do this change the setting value to ``null``.
  6944. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  6945. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  6946. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  6947. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  6948. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  6949. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  6950. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  6951. .. |void| replace:: :abbr:`void (No return value.)`