class_projectsettings.rst 888 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432
  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/675>`__
  22. - `3D Platformer Demo <https://godotengine.org/asset-library/asset/125>`__
  23. - `OS Test Demo <https://godotengine.org/asset-library/asset/677>`__
  24. .. rst-class:: classref-reftable-group
  25. Properties
  26. ----------
  27. .. table::
  28. :widths: auto
  29. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  30. | :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)`` |
  31. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`application/boot_splash/fullsize<class_ProjectSettings_property_application/boot_splash/fullsize>` | ``true`` |
  33. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  34. | :ref:`String<class_String>` | :ref:`application/boot_splash/image<class_ProjectSettings_property_application/boot_splash/image>` | ``""`` |
  35. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`application/boot_splash/minimum_display_time<class_ProjectSettings_property_application/boot_splash/minimum_display_time>` | ``0`` |
  37. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  38. | :ref:`bool<class_bool>` | :ref:`application/boot_splash/show_image<class_ProjectSettings_property_application/boot_splash/show_image>` | ``true`` |
  39. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  40. | :ref:`bool<class_bool>` | :ref:`application/boot_splash/use_filter<class_ProjectSettings_property_application/boot_splash/use_filter>` | ``true`` |
  41. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  42. | :ref:`bool<class_bool>` | :ref:`application/config/auto_accept_quit<class_ProjectSettings_property_application/config/auto_accept_quit>` | ``true`` |
  43. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  44. | :ref:`String<class_String>` | :ref:`application/config/custom_user_dir_name<class_ProjectSettings_property_application/config/custom_user_dir_name>` | ``""`` |
  45. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  46. | :ref:`String<class_String>` | :ref:`application/config/description<class_ProjectSettings_property_application/config/description>` | ``""`` |
  47. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  48. | :ref:`String<class_String>` | :ref:`application/config/icon<class_ProjectSettings_property_application/config/icon>` | ``""`` |
  49. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  50. | :ref:`String<class_String>` | :ref:`application/config/macos_native_icon<class_ProjectSettings_property_application/config/macos_native_icon>` | ``""`` |
  51. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  52. | :ref:`String<class_String>` | :ref:`application/config/name<class_ProjectSettings_property_application/config/name>` | ``""`` |
  53. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  54. | :ref:`Dictionary<class_Dictionary>` | :ref:`application/config/name_localized<class_ProjectSettings_property_application/config/name_localized>` | ``{}`` |
  55. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  56. | :ref:`String<class_String>` | :ref:`application/config/project_settings_override<class_ProjectSettings_property_application/config/project_settings_override>` | ``""`` |
  57. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  58. | :ref:`bool<class_bool>` | :ref:`application/config/quit_on_go_back<class_ProjectSettings_property_application/config/quit_on_go_back>` | ``true`` |
  59. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  60. | :ref:`bool<class_bool>` | :ref:`application/config/use_custom_user_dir<class_ProjectSettings_property_application/config/use_custom_user_dir>` | ``false`` |
  61. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  62. | :ref:`bool<class_bool>` | :ref:`application/config/use_hidden_project_data_directory<class_ProjectSettings_property_application/config/use_hidden_project_data_directory>` | ``true`` |
  63. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  64. | :ref:`String<class_String>` | :ref:`application/config/version<class_ProjectSettings_property_application/config/version>` | ``""`` |
  65. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  66. | :ref:`String<class_String>` | :ref:`application/config/windows_native_icon<class_ProjectSettings_property_application/config/windows_native_icon>` | ``""`` |
  67. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  68. | :ref:`bool<class_bool>` | :ref:`application/run/delta_smoothing<class_ProjectSettings_property_application/run/delta_smoothing>` | ``true`` |
  69. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  70. | :ref:`bool<class_bool>` | :ref:`application/run/disable_stderr<class_ProjectSettings_property_application/run/disable_stderr>` | ``false`` |
  71. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  72. | :ref:`bool<class_bool>` | :ref:`application/run/disable_stdout<class_ProjectSettings_property_application/run/disable_stdout>` | ``false`` |
  73. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  74. | :ref:`bool<class_bool>` | :ref:`application/run/flush_stdout_on_print<class_ProjectSettings_property_application/run/flush_stdout_on_print>` | ``false`` |
  75. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  76. | :ref:`bool<class_bool>` | :ref:`application/run/flush_stdout_on_print.debug<class_ProjectSettings_property_application/run/flush_stdout_on_print.debug>` | ``true`` |
  77. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  78. | :ref:`int<class_int>` | :ref:`application/run/frame_delay_msec<class_ProjectSettings_property_application/run/frame_delay_msec>` | ``0`` |
  79. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`application/run/low_processor_mode<class_ProjectSettings_property_application/run/low_processor_mode>` | ``false`` |
  81. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  82. | :ref:`int<class_int>` | :ref:`application/run/low_processor_mode_sleep_usec<class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec>` | ``6900`` |
  83. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  84. | :ref:`String<class_String>` | :ref:`application/run/main_loop_type<class_ProjectSettings_property_application/run/main_loop_type>` | ``"SceneTree"`` |
  85. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  86. | :ref:`String<class_String>` | :ref:`application/run/main_scene<class_ProjectSettings_property_application/run/main_scene>` | ``""`` |
  87. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  88. | :ref:`int<class_int>` | :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>` | ``0`` |
  89. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  90. | :ref:`float<class_float>` | :ref:`audio/buses/channel_disable_threshold_db<class_ProjectSettings_property_audio/buses/channel_disable_threshold_db>` | ``-60.0`` |
  91. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  92. | :ref:`float<class_float>` | :ref:`audio/buses/channel_disable_time<class_ProjectSettings_property_audio/buses/channel_disable_time>` | ``2.0`` |
  93. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  94. | :ref:`String<class_String>` | :ref:`audio/buses/default_bus_layout<class_ProjectSettings_property_audio/buses/default_bus_layout>` | ``"res://default_bus_layout.tres"`` |
  95. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  96. | :ref:`String<class_String>` | :ref:`audio/driver/driver<class_ProjectSettings_property_audio/driver/driver>` | |
  97. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  98. | :ref:`bool<class_bool>` | :ref:`audio/driver/enable_input<class_ProjectSettings_property_audio/driver/enable_input>` | ``false`` |
  99. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  100. | :ref:`int<class_int>` | :ref:`audio/driver/mix_rate<class_ProjectSettings_property_audio/driver/mix_rate>` | ``44100`` |
  101. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  102. | :ref:`int<class_int>` | :ref:`audio/driver/mix_rate.web<class_ProjectSettings_property_audio/driver/mix_rate.web>` | ``0`` |
  103. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  104. | :ref:`int<class_int>` | :ref:`audio/driver/output_latency<class_ProjectSettings_property_audio/driver/output_latency>` | ``15`` |
  105. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  106. | :ref:`int<class_int>` | :ref:`audio/driver/output_latency.web<class_ProjectSettings_property_audio/driver/output_latency.web>` | ``50`` |
  107. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  108. | :ref:`float<class_float>` | :ref:`audio/general/2d_panning_strength<class_ProjectSettings_property_audio/general/2d_panning_strength>` | ``0.5`` |
  109. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  110. | :ref:`float<class_float>` | :ref:`audio/general/3d_panning_strength<class_ProjectSettings_property_audio/general/3d_panning_strength>` | ``0.5`` |
  111. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  112. | :ref:`bool<class_bool>` | :ref:`audio/general/text_to_speech<class_ProjectSettings_property_audio/general/text_to_speech>` | ``false`` |
  113. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  114. | :ref:`int<class_int>` | :ref:`audio/video/video_delay_compensation_ms<class_ProjectSettings_property_audio/video/video_delay_compensation_ms>` | ``0`` |
  115. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  116. | :ref:`int<class_int>` | :ref:`compression/formats/gzip/compression_level<class_ProjectSettings_property_compression/formats/gzip/compression_level>` | ``-1`` |
  117. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  118. | :ref:`int<class_int>` | :ref:`compression/formats/zlib/compression_level<class_ProjectSettings_property_compression/formats/zlib/compression_level>` | ``-1`` |
  119. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  120. | :ref:`int<class_int>` | :ref:`compression/formats/zstd/compression_level<class_ProjectSettings_property_compression/formats/zstd/compression_level>` | ``3`` |
  121. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  122. | :ref:`bool<class_bool>` | :ref:`compression/formats/zstd/long_distance_matching<class_ProjectSettings_property_compression/formats/zstd/long_distance_matching>` | ``false`` |
  123. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  124. | :ref:`int<class_int>` | :ref:`compression/formats/zstd/window_log_size<class_ProjectSettings_property_compression/formats/zstd/window_log_size>` | ``27`` |
  125. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  126. | :ref:`bool<class_bool>` | :ref:`debug/file_logging/enable_file_logging<class_ProjectSettings_property_debug/file_logging/enable_file_logging>` | ``false`` |
  127. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  128. | :ref:`bool<class_bool>` | :ref:`debug/file_logging/enable_file_logging.pc<class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc>` | ``true`` |
  129. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  130. | :ref:`String<class_String>` | :ref:`debug/file_logging/log_path<class_ProjectSettings_property_debug/file_logging/log_path>` | ``"user://logs/godot.log"`` |
  131. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  132. | :ref:`int<class_int>` | :ref:`debug/file_logging/max_log_files<class_ProjectSettings_property_debug/file_logging/max_log_files>` | ``5`` |
  133. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  134. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/assert_always_false<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false>` | ``1`` |
  135. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  136. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/assert_always_true<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true>` | ``1`` |
  137. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  138. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_identifier<class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier>` | ``1`` |
  139. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  140. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_local_declaration<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration>` | ``1`` |
  141. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  142. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_local_usage<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage>` | ``1`` |
  143. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  144. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/constant_used_as_function<class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function>` | ``1`` |
  145. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  146. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/deprecated_keyword<class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword>` | ``1`` |
  147. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  148. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/empty_file<class_ProjectSettings_property_debug/gdscript/warnings/empty_file>` | ``1`` |
  149. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  150. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/enable<class_ProjectSettings_property_debug/gdscript/warnings/enable>` | ``true`` |
  151. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  152. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/exclude_addons<class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons>` | ``true`` |
  153. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  154. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/function_used_as_property<class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property>` | ``1`` |
  155. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  156. | :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`` |
  157. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  158. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/incompatible_ternary<class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary>` | ``1`` |
  159. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  160. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/inference_on_variant<class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant>` | ``2`` |
  161. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  162. | :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`` |
  163. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  164. | :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`` |
  165. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  166. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/integer_division<class_ProjectSettings_property_debug/gdscript/warnings/integer_division>` | ``1`` |
  167. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  168. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/narrowing_conversion<class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion>` | ``1`` |
  169. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  170. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/native_method_override<class_ProjectSettings_property_debug/gdscript/warnings/native_method_override>` | ``2`` |
  171. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  172. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/onready_with_export<class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export>` | ``2`` |
  173. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  174. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/property_used_as_function<class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function>` | ``1`` |
  175. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  176. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/redundant_await<class_ProjectSettings_property_debug/gdscript/warnings/redundant_await>` | ``1`` |
  177. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  178. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/redundant_static_unload<class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload>` | ``1`` |
  179. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  180. | :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`` |
  181. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  182. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/return_value_discarded<class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded>` | ``0`` |
  183. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  184. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_global_identifier<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier>` | ``1`` |
  185. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  186. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_variable<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable>` | ``1`` |
  187. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  188. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_variable_base_class<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class>` | ``1`` |
  189. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  190. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/standalone_expression<class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression>` | ``1`` |
  191. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  192. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/standalone_ternary<class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary>` | ``1`` |
  193. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  194. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/static_called_on_instance<class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance>` | ``1`` |
  195. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  196. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unassigned_variable<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable>` | ``1`` |
  197. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  198. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unassigned_variable_op_assign<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign>` | ``1`` |
  199. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  200. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unreachable_code<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code>` | ``1`` |
  201. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  202. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unreachable_pattern<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern>` | ``1`` |
  203. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  204. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_call_argument<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument>` | ``0`` |
  205. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  206. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_cast<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast>` | ``0`` |
  207. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  208. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_method_access<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access>` | ``0`` |
  209. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  210. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_property_access<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access>` | ``0`` |
  211. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  212. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_void_return<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return>` | ``1`` |
  213. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  214. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/untyped_declaration<class_ProjectSettings_property_debug/gdscript/warnings/untyped_declaration>` | ``0`` |
  215. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  216. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_local_constant<class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant>` | ``1`` |
  217. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  218. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_parameter<class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter>` | ``1`` |
  219. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  220. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_private_class_variable<class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable>` | ``1`` |
  221. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  222. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_signal<class_ProjectSettings_property_debug/gdscript/warnings/unused_signal>` | ``1`` |
  223. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  224. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_variable<class_ProjectSettings_property_debug/gdscript/warnings/unused_variable>` | ``1`` |
  225. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  226. | :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."`` |
  227. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  228. | :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"`` |
  229. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  230. | :ref:`int<class_int>` | :ref:`debug/settings/gdscript/max_call_stack<class_ProjectSettings_property_debug/settings/gdscript/max_call_stack>` | ``1024`` |
  231. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  232. | :ref:`int<class_int>` | :ref:`debug/settings/profiler/max_functions<class_ProjectSettings_property_debug/settings/profiler/max_functions>` | ``16384`` |
  233. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  234. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/print_fps<class_ProjectSettings_property_debug/settings/stdout/print_fps>` | ``false`` |
  235. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  236. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/print_gpu_profile<class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile>` | ``false`` |
  237. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  238. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/verbose_stdout<class_ProjectSettings_property_debug/settings/stdout/verbose_stdout>` | ``false`` |
  239. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  240. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/device_limit_exceeded<class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded>` | ``true`` |
  241. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  242. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/enable<class_ProjectSettings_property_debug/shader_language/warnings/enable>` | ``true`` |
  243. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  244. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/float_comparison<class_ProjectSettings_property_debug/shader_language/warnings/float_comparison>` | ``true`` |
  245. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  246. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/formatting_error<class_ProjectSettings_property_debug/shader_language/warnings/formatting_error>` | ``true`` |
  247. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  248. | :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`` |
  249. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  250. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_constant<class_ProjectSettings_property_debug/shader_language/warnings/unused_constant>` | ``true`` |
  251. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  252. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_function<class_ProjectSettings_property_debug/shader_language/warnings/unused_function>` | ``true`` |
  253. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  254. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_local_variable<class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable>` | ``true`` |
  255. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  256. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_struct<class_ProjectSettings_property_debug/shader_language/warnings/unused_struct>` | ``true`` |
  257. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  258. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_uniform<class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform>` | ``true`` |
  259. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  260. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_varying<class_ProjectSettings_property_debug/shader_language/warnings/unused_varying>` | ``true`` |
  261. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  262. | :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)`` |
  263. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  264. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_agents_radius<class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius>` | ``true`` |
  265. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  266. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_obstacles_radius<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius>` | ``true`` |
  267. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  268. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_obstacles_static<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static>` | ``true`` |
  269. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  270. | :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)`` |
  271. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  272. | :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)`` |
  273. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  274. | :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)`` |
  275. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  276. | :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)`` |
  277. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  278. | :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)`` |
  279. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  280. | :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)`` |
  281. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  282. | :ref:`bool<class_bool>` | :ref:`debug/shapes/collision/draw_2d_outlines<class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines>` | ``true`` |
  283. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  284. | :ref:`int<class_int>` | :ref:`debug/shapes/collision/max_contacts_displayed<class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed>` | ``10000`` |
  285. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  286. | :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)`` |
  287. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  288. | :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)`` |
  289. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  290. | :ref:`float<class_float>` | :ref:`debug/shapes/navigation/agent_path_point_size<class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size>` | ``4.0`` |
  291. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  292. | :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)`` |
  293. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  294. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_agent_paths<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths>` | ``true`` |
  295. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  296. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_agent_paths_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray>` | ``true`` |
  297. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  298. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_connections<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections>` | ``true`` |
  299. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  300. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_connections_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray>` | ``true`` |
  301. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  302. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_lines<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines>` | ``true`` |
  303. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  304. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_lines_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray>` | ``true`` |
  305. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  306. | :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`` |
  307. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  308. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_link_connections<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections>` | ``true`` |
  309. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  310. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_link_connections_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray>` | ``true`` |
  311. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  312. | :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)`` |
  313. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  314. | :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)`` |
  315. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  316. | :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)`` |
  317. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  318. | :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)`` |
  319. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  320. | :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)`` |
  321. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  322. | :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)`` |
  323. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  324. | :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)`` |
  325. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  326. | :ref:`float<class_float>` | :ref:`debug/shapes/paths/geometry_width<class_ProjectSettings_property_debug/shapes/paths/geometry_width>` | ``2.0`` |
  327. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  328. | :ref:`String<class_String>` | :ref:`display/mouse_cursor/custom_image<class_ProjectSettings_property_display/mouse_cursor/custom_image>` | ``""`` |
  329. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  330. | :ref:`Vector2<class_Vector2>` | :ref:`display/mouse_cursor/custom_image_hotspot<class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot>` | ``Vector2(0, 0)`` |
  331. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  332. | :ref:`Vector2<class_Vector2>` | :ref:`display/mouse_cursor/tooltip_position_offset<class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset>` | ``Vector2(10, 10)`` |
  333. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  334. | :ref:`bool<class_bool>` | :ref:`display/window/dpi/allow_hidpi<class_ProjectSettings_property_display/window/dpi/allow_hidpi>` | ``true`` |
  335. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  336. | :ref:`bool<class_bool>` | :ref:`display/window/energy_saving/keep_screen_on<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on>` | ``true`` |
  337. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  338. | :ref:`bool<class_bool>` | :ref:`display/window/energy_saving/keep_screen_on.editor<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on.editor>` | ``false`` |
  339. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  340. | :ref:`int<class_int>` | :ref:`display/window/handheld/orientation<class_ProjectSettings_property_display/window/handheld/orientation>` | ``0`` |
  341. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  342. | :ref:`bool<class_bool>` | :ref:`display/window/ios/allow_high_refresh_rate<class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate>` | ``true`` |
  343. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  344. | :ref:`bool<class_bool>` | :ref:`display/window/ios/hide_home_indicator<class_ProjectSettings_property_display/window/ios/hide_home_indicator>` | ``true`` |
  345. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  346. | :ref:`bool<class_bool>` | :ref:`display/window/ios/hide_status_bar<class_ProjectSettings_property_display/window/ios/hide_status_bar>` | ``true`` |
  347. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  348. | :ref:`bool<class_bool>` | :ref:`display/window/ios/suppress_ui_gesture<class_ProjectSettings_property_display/window/ios/suppress_ui_gesture>` | ``true`` |
  349. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  350. | :ref:`bool<class_bool>` | :ref:`display/window/per_pixel_transparency/allowed<class_ProjectSettings_property_display/window/per_pixel_transparency/allowed>` | ``false`` |
  351. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  352. | :ref:`bool<class_bool>` | :ref:`display/window/size/always_on_top<class_ProjectSettings_property_display/window/size/always_on_top>` | ``false`` |
  353. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  354. | :ref:`bool<class_bool>` | :ref:`display/window/size/borderless<class_ProjectSettings_property_display/window/size/borderless>` | ``false`` |
  355. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  356. | :ref:`bool<class_bool>` | :ref:`display/window/size/extend_to_title<class_ProjectSettings_property_display/window/size/extend_to_title>` | ``false`` |
  357. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  358. | :ref:`Vector2i<class_Vector2i>` | :ref:`display/window/size/initial_position<class_ProjectSettings_property_display/window/size/initial_position>` | ``Vector2i(0, 0)`` |
  359. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  360. | :ref:`int<class_int>` | :ref:`display/window/size/initial_position_type<class_ProjectSettings_property_display/window/size/initial_position_type>` | ``1`` |
  361. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  362. | :ref:`int<class_int>` | :ref:`display/window/size/initial_screen<class_ProjectSettings_property_display/window/size/initial_screen>` | ``0`` |
  363. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  364. | :ref:`int<class_int>` | :ref:`display/window/size/mode<class_ProjectSettings_property_display/window/size/mode>` | ``0`` |
  365. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  366. | :ref:`bool<class_bool>` | :ref:`display/window/size/no_focus<class_ProjectSettings_property_display/window/size/no_focus>` | ``false`` |
  367. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  368. | :ref:`bool<class_bool>` | :ref:`display/window/size/resizable<class_ProjectSettings_property_display/window/size/resizable>` | ``true`` |
  369. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  370. | :ref:`bool<class_bool>` | :ref:`display/window/size/transparent<class_ProjectSettings_property_display/window/size/transparent>` | ``false`` |
  371. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  372. | :ref:`int<class_int>` | :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>` | ``648`` |
  373. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  374. | :ref:`int<class_int>` | :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` | ``1152`` |
  375. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  376. | :ref:`int<class_int>` | :ref:`display/window/size/window_height_override<class_ProjectSettings_property_display/window/size/window_height_override>` | ``0`` |
  377. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  378. | :ref:`int<class_int>` | :ref:`display/window/size/window_width_override<class_ProjectSettings_property_display/window/size/window_width_override>` | ``0`` |
  379. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  380. | :ref:`String<class_String>` | :ref:`display/window/stretch/aspect<class_ProjectSettings_property_display/window/stretch/aspect>` | ``"keep"`` |
  381. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  382. | :ref:`String<class_String>` | :ref:`display/window/stretch/mode<class_ProjectSettings_property_display/window/stretch/mode>` | ``"disabled"`` |
  383. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  384. | :ref:`float<class_float>` | :ref:`display/window/stretch/scale<class_ProjectSettings_property_display/window/stretch/scale>` | ``1.0`` |
  385. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  386. | :ref:`String<class_String>` | :ref:`display/window/stretch/scale_mode<class_ProjectSettings_property_display/window/stretch/scale_mode>` | ``"fractional"`` |
  387. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  388. | :ref:`bool<class_bool>` | :ref:`display/window/subwindows/embed_subwindows<class_ProjectSettings_property_display/window/subwindows/embed_subwindows>` | ``true`` |
  389. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  390. | :ref:`int<class_int>` | :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` | ``1`` |
  391. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  392. | :ref:`String<class_String>` | :ref:`dotnet/project/assembly_name<class_ProjectSettings_property_dotnet/project/assembly_name>` | ``""`` |
  393. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  394. | :ref:`int<class_int>` | :ref:`dotnet/project/assembly_reload_attempts<class_ProjectSettings_property_dotnet/project/assembly_reload_attempts>` | ``3`` |
  395. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  396. | :ref:`String<class_String>` | :ref:`dotnet/project/solution_directory<class_ProjectSettings_property_dotnet/project/solution_directory>` | ``""`` |
  397. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  398. | :ref:`bool<class_bool>` | :ref:`editor/export/convert_text_resources_to_binary<class_ProjectSettings_property_editor/export/convert_text_resources_to_binary>` | ``true`` |
  399. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  400. | :ref:`bool<class_bool>` | :ref:`editor/import/reimport_missing_imported_files<class_ProjectSettings_property_editor/import/reimport_missing_imported_files>` | ``true`` |
  401. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  402. | :ref:`bool<class_bool>` | :ref:`editor/import/use_multiple_threads<class_ProjectSettings_property_editor/import/use_multiple_threads>` | ``true`` |
  403. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  404. | :ref:`bool<class_bool>` | :ref:`editor/movie_writer/disable_vsync<class_ProjectSettings_property_editor/movie_writer/disable_vsync>` | ``false`` |
  405. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  406. | :ref:`int<class_int>` | :ref:`editor/movie_writer/fps<class_ProjectSettings_property_editor/movie_writer/fps>` | ``60`` |
  407. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  408. | :ref:`int<class_int>` | :ref:`editor/movie_writer/mix_rate<class_ProjectSettings_property_editor/movie_writer/mix_rate>` | ``48000`` |
  409. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  410. | :ref:`float<class_float>` | :ref:`editor/movie_writer/mjpeg_quality<class_ProjectSettings_property_editor/movie_writer/mjpeg_quality>` | ``0.75`` |
  411. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  412. | :ref:`String<class_String>` | :ref:`editor/movie_writer/movie_file<class_ProjectSettings_property_editor/movie_writer/movie_file>` | ``""`` |
  413. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  414. | :ref:`int<class_int>` | :ref:`editor/movie_writer/speaker_mode<class_ProjectSettings_property_editor/movie_writer/speaker_mode>` | ``0`` |
  415. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  416. | :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}"`` |
  417. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  418. | :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}"`` |
  419. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  420. | :ref:`int<class_int>` | :ref:`editor/naming/node_name_casing<class_ProjectSettings_property_editor/naming/node_name_casing>` | ``0`` |
  421. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  422. | :ref:`int<class_int>` | :ref:`editor/naming/node_name_num_separator<class_ProjectSettings_property_editor/naming/node_name_num_separator>` | ``0`` |
  423. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  424. | :ref:`int<class_int>` | :ref:`editor/naming/scene_name_casing<class_ProjectSettings_property_editor/naming/scene_name_casing>` | ``2`` |
  425. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  426. | :ref:`String<class_String>` | :ref:`editor/run/main_run_args<class_ProjectSettings_property_editor/run/main_run_args>` | ``""`` |
  427. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  428. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`editor/script/search_in_file_extensions<class_ProjectSettings_property_editor/script/search_in_file_extensions>` | ``PackedStringArray("gd", "gdshader")`` |
  429. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  430. | :ref:`String<class_String>` | :ref:`editor/script/templates_search_path<class_ProjectSettings_property_editor/script/templates_search_path>` | ``"res://script_templates"`` |
  431. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  432. | :ref:`bool<class_bool>` | :ref:`editor/version_control/autoload_on_startup<class_ProjectSettings_property_editor/version_control/autoload_on_startup>` | ``false`` |
  433. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  434. | :ref:`String<class_String>` | :ref:`editor/version_control/plugin_name<class_ProjectSettings_property_editor/version_control/plugin_name>` | ``""`` |
  435. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  436. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>` | ``true`` |
  437. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  438. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled.android<class_ProjectSettings_property_filesystem/import/blender/enabled.android>` | ``false`` |
  439. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  440. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled.web<class_ProjectSettings_property_filesystem/import/blender/enabled.web>` | ``false`` |
  441. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  442. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx/enabled<class_ProjectSettings_property_filesystem/import/fbx/enabled>` | ``true`` |
  443. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  444. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx/enabled.android<class_ProjectSettings_property_filesystem/import/fbx/enabled.android>` | ``false`` |
  445. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  446. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx/enabled.web<class_ProjectSettings_property_filesystem/import/fbx/enabled.web>` | ``false`` |
  447. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  448. | :ref:`int<class_int>` | :ref:`gui/common/default_scroll_deadzone<class_ProjectSettings_property_gui/common/default_scroll_deadzone>` | ``0`` |
  449. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  450. | :ref:`bool<class_bool>` | :ref:`gui/common/snap_controls_to_pixels<class_ProjectSettings_property_gui/common/snap_controls_to_pixels>` | ``true`` |
  451. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  452. | :ref:`bool<class_bool>` | :ref:`gui/common/swap_cancel_ok<class_ProjectSettings_property_gui/common/swap_cancel_ok>` | |
  453. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  454. | :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`` |
  455. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  456. | :ref:`bool<class_bool>` | :ref:`gui/fonts/dynamic_fonts/use_oversampling<class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling>` | ``true`` |
  457. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  458. | :ref:`String<class_String>` | :ref:`gui/theme/custom<class_ProjectSettings_property_gui/theme/custom>` | ``""`` |
  459. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  460. | :ref:`String<class_String>` | :ref:`gui/theme/custom_font<class_ProjectSettings_property_gui/theme/custom_font>` | ``""`` |
  461. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  462. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_antialiasing<class_ProjectSettings_property_gui/theme/default_font_antialiasing>` | ``1`` |
  463. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  464. | :ref:`bool<class_bool>` | :ref:`gui/theme/default_font_generate_mipmaps<class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps>` | ``false`` |
  465. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  466. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_hinting<class_ProjectSettings_property_gui/theme/default_font_hinting>` | ``1`` |
  467. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  468. | :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`` |
  469. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  470. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_subpixel_positioning<class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning>` | ``1`` |
  471. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  472. | :ref:`float<class_float>` | :ref:`gui/theme/default_theme_scale<class_ProjectSettings_property_gui/theme/default_theme_scale>` | ``1.0`` |
  473. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  474. | :ref:`int<class_int>` | :ref:`gui/theme/lcd_subpixel_layout<class_ProjectSettings_property_gui/theme/lcd_subpixel_layout>` | ``1`` |
  475. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  476. | :ref:`float<class_float>` | :ref:`gui/timers/button_shortcut_feedback_highlight_time<class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time>` | ``0.2`` |
  477. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  478. | :ref:`int<class_int>` | :ref:`gui/timers/incremental_search_max_interval_msec<class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec>` | ``2000`` |
  479. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  480. | :ref:`float<class_float>` | :ref:`gui/timers/text_edit_idle_detect_sec<class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec>` | ``3`` |
  481. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  482. | :ref:`float<class_float>` | :ref:`gui/timers/tooltip_delay_sec<class_ProjectSettings_property_gui/timers/tooltip_delay_sec>` | ``0.5`` |
  483. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  484. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_accept<class_ProjectSettings_property_input/ui_accept>` | |
  485. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  486. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_cancel<class_ProjectSettings_property_input/ui_cancel>` | |
  487. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  488. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_copy<class_ProjectSettings_property_input/ui_copy>` | |
  489. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  490. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_cut<class_ProjectSettings_property_input/ui_cut>` | |
  491. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  492. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_down<class_ProjectSettings_property_input/ui_down>` | |
  493. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  494. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_end<class_ProjectSettings_property_input/ui_end>` | |
  495. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  496. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_refresh<class_ProjectSettings_property_input/ui_filedialog_refresh>` | |
  497. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  498. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_show_hidden<class_ProjectSettings_property_input/ui_filedialog_show_hidden>` | |
  499. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  500. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_up_one_level<class_ProjectSettings_property_input/ui_filedialog_up_one_level>` | |
  501. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  502. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_focus_next<class_ProjectSettings_property_input/ui_focus_next>` | |
  503. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  504. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_focus_prev<class_ProjectSettings_property_input/ui_focus_prev>` | |
  505. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  506. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_graph_delete<class_ProjectSettings_property_input/ui_graph_delete>` | |
  507. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  508. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_graph_duplicate<class_ProjectSettings_property_input/ui_graph_duplicate>` | |
  509. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  510. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_home<class_ProjectSettings_property_input/ui_home>` | |
  511. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  512. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_left<class_ProjectSettings_property_input/ui_left>` | |
  513. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  514. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_menu<class_ProjectSettings_property_input/ui_menu>` | |
  515. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  516. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_page_down<class_ProjectSettings_property_input/ui_page_down>` | |
  517. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  518. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_page_up<class_ProjectSettings_property_input/ui_page_up>` | |
  519. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  520. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_paste<class_ProjectSettings_property_input/ui_paste>` | |
  521. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  522. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_redo<class_ProjectSettings_property_input/ui_redo>` | |
  523. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  524. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_right<class_ProjectSettings_property_input/ui_right>` | |
  525. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  526. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_select<class_ProjectSettings_property_input/ui_select>` | |
  527. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  528. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_swap_input_direction<class_ProjectSettings_property_input/ui_swap_input_direction>` | |
  529. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  530. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_add_selection_for_next_occurrence<class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence>` | |
  531. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  532. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace<class_ProjectSettings_property_input/ui_text_backspace>` | |
  533. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  534. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_all_to_left<class_ProjectSettings_property_input/ui_text_backspace_all_to_left>` | |
  535. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  536. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_all_to_left.macos<class_ProjectSettings_property_input/ui_text_backspace_all_to_left.macos>` | |
  537. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  538. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_word<class_ProjectSettings_property_input/ui_text_backspace_word>` | |
  539. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  540. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_word.macos<class_ProjectSettings_property_input/ui_text_backspace_word.macos>` | |
  541. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  542. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_above<class_ProjectSettings_property_input/ui_text_caret_add_above>` | |
  543. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  544. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_above.macos<class_ProjectSettings_property_input/ui_text_caret_add_above.macos>` | |
  545. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  546. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_below<class_ProjectSettings_property_input/ui_text_caret_add_below>` | |
  547. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  548. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_below.macos<class_ProjectSettings_property_input/ui_text_caret_add_below.macos>` | |
  549. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  550. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_end<class_ProjectSettings_property_input/ui_text_caret_document_end>` | |
  551. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  552. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_end.macos<class_ProjectSettings_property_input/ui_text_caret_document_end.macos>` | |
  553. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  554. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_start<class_ProjectSettings_property_input/ui_text_caret_document_start>` | |
  555. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  556. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_start.macos<class_ProjectSettings_property_input/ui_text_caret_document_start.macos>` | |
  557. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  558. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_down<class_ProjectSettings_property_input/ui_text_caret_down>` | |
  559. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  560. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_left<class_ProjectSettings_property_input/ui_text_caret_left>` | |
  561. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  562. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_end<class_ProjectSettings_property_input/ui_text_caret_line_end>` | |
  563. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  564. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_end.macos<class_ProjectSettings_property_input/ui_text_caret_line_end.macos>` | |
  565. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  566. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_start<class_ProjectSettings_property_input/ui_text_caret_line_start>` | |
  567. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  568. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_start.macos<class_ProjectSettings_property_input/ui_text_caret_line_start.macos>` | |
  569. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  570. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_page_down<class_ProjectSettings_property_input/ui_text_caret_page_down>` | |
  571. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  572. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_page_up<class_ProjectSettings_property_input/ui_text_caret_page_up>` | |
  573. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  574. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_right<class_ProjectSettings_property_input/ui_text_caret_right>` | |
  575. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  576. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_up<class_ProjectSettings_property_input/ui_text_caret_up>` | |
  577. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  578. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_left<class_ProjectSettings_property_input/ui_text_caret_word_left>` | |
  579. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  580. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_left.macos<class_ProjectSettings_property_input/ui_text_caret_word_left.macos>` | |
  581. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  582. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_right<class_ProjectSettings_property_input/ui_text_caret_word_right>` | |
  583. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  584. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_right.macos<class_ProjectSettings_property_input/ui_text_caret_word_right.macos>` | |
  585. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  586. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_clear_carets_and_selection<class_ProjectSettings_property_input/ui_text_clear_carets_and_selection>` | |
  587. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  588. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_accept<class_ProjectSettings_property_input/ui_text_completion_accept>` | |
  589. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  590. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_query<class_ProjectSettings_property_input/ui_text_completion_query>` | |
  591. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  592. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_replace<class_ProjectSettings_property_input/ui_text_completion_replace>` | |
  593. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  594. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_dedent<class_ProjectSettings_property_input/ui_text_dedent>` | |
  595. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  596. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete<class_ProjectSettings_property_input/ui_text_delete>` | |
  597. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  598. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_all_to_right<class_ProjectSettings_property_input/ui_text_delete_all_to_right>` | |
  599. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  600. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_all_to_right.macos<class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos>` | |
  601. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  602. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_word<class_ProjectSettings_property_input/ui_text_delete_word>` | |
  603. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  604. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_word.macos<class_ProjectSettings_property_input/ui_text_delete_word.macos>` | |
  605. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  606. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_indent<class_ProjectSettings_property_input/ui_text_indent>` | |
  607. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  608. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline<class_ProjectSettings_property_input/ui_text_newline>` | |
  609. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  610. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline_above<class_ProjectSettings_property_input/ui_text_newline_above>` | |
  611. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  612. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline_blank<class_ProjectSettings_property_input/ui_text_newline_blank>` | |
  613. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  614. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_down<class_ProjectSettings_property_input/ui_text_scroll_down>` | |
  615. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  616. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_down.macos<class_ProjectSettings_property_input/ui_text_scroll_down.macos>` | |
  617. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  618. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_up<class_ProjectSettings_property_input/ui_text_scroll_up>` | |
  619. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  620. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_up.macos<class_ProjectSettings_property_input/ui_text_scroll_up.macos>` | |
  621. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  622. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_all<class_ProjectSettings_property_input/ui_text_select_all>` | |
  623. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  624. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_word_under_caret<class_ProjectSettings_property_input/ui_text_select_word_under_caret>` | |
  625. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  626. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_word_under_caret.macos<class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos>` | |
  627. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  628. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_submit<class_ProjectSettings_property_input/ui_text_submit>` | |
  629. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  630. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_toggle_insert_mode<class_ProjectSettings_property_input/ui_text_toggle_insert_mode>` | |
  631. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  632. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_undo<class_ProjectSettings_property_input/ui_undo>` | |
  633. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  634. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_up<class_ProjectSettings_property_input/ui_up>` | |
  635. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  636. | :ref:`bool<class_bool>` | :ref:`input_devices/buffering/agile_event_flushing<class_ProjectSettings_property_input_devices/buffering/agile_event_flushing>` | ``false`` |
  637. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  638. | :ref:`bool<class_bool>` | :ref:`input_devices/compatibility/legacy_just_pressed_behavior<class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior>` | ``false`` |
  639. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  640. | :ref:`String<class_String>` | :ref:`input_devices/pen_tablet/driver<class_ProjectSettings_property_input_devices/pen_tablet/driver>` | |
  641. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  642. | :ref:`String<class_String>` | :ref:`input_devices/pen_tablet/driver.windows<class_ProjectSettings_property_input_devices/pen_tablet/driver.windows>` | |
  643. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  644. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/emulate_mouse_from_touch<class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch>` | ``true`` |
  645. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  646. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/emulate_touch_from_mouse<class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse>` | ``false`` |
  647. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  648. | :ref:`String<class_String>` | :ref:`internationalization/locale/fallback<class_ProjectSettings_property_internationalization/locale/fallback>` | ``"en"`` |
  649. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  650. | :ref:`bool<class_bool>` | :ref:`internationalization/locale/include_text_server_data<class_ProjectSettings_property_internationalization/locale/include_text_server_data>` | ``false`` |
  651. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  652. | :ref:`String<class_String>` | :ref:`internationalization/locale/test<class_ProjectSettings_property_internationalization/locale/test>` | ``""`` |
  653. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  654. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/double_vowels<class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels>` | ``false`` |
  655. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  656. | :ref:`float<class_float>` | :ref:`internationalization/pseudolocalization/expansion_ratio<class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio>` | ``0.0`` |
  657. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  658. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/fake_bidi<class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi>` | ``false`` |
  659. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  660. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/override<class_ProjectSettings_property_internationalization/pseudolocalization/override>` | ``false`` |
  661. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  662. | :ref:`String<class_String>` | :ref:`internationalization/pseudolocalization/prefix<class_ProjectSettings_property_internationalization/pseudolocalization/prefix>` | ``"["`` |
  663. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  664. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/replace_with_accents<class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents>` | ``true`` |
  665. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  666. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/skip_placeholders<class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders>` | ``true`` |
  667. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  668. | :ref:`String<class_String>` | :ref:`internationalization/pseudolocalization/suffix<class_ProjectSettings_property_internationalization/pseudolocalization/suffix>` | ``"]"`` |
  669. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  670. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/use_pseudolocalization<class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization>` | ``false`` |
  671. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  672. | :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`` |
  673. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  674. | :ref:`int<class_int>` | :ref:`internationalization/rendering/root_node_layout_direction<class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction>` | ``0`` |
  675. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  676. | :ref:`String<class_String>` | :ref:`internationalization/rendering/text_driver<class_ProjectSettings_property_internationalization/rendering/text_driver>` | ``""`` |
  677. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  678. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_1<class_ProjectSettings_property_layer_names/2d_navigation/layer_1>` | ``""`` |
  679. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  680. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_2<class_ProjectSettings_property_layer_names/2d_navigation/layer_2>` | ``""`` |
  681. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  682. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_3<class_ProjectSettings_property_layer_names/2d_navigation/layer_3>` | ``""`` |
  683. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  684. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_4<class_ProjectSettings_property_layer_names/2d_navigation/layer_4>` | ``""`` |
  685. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  686. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_5<class_ProjectSettings_property_layer_names/2d_navigation/layer_5>` | ``""`` |
  687. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  688. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_6<class_ProjectSettings_property_layer_names/2d_navigation/layer_6>` | ``""`` |
  689. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  690. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_7<class_ProjectSettings_property_layer_names/2d_navigation/layer_7>` | ``""`` |
  691. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  692. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_8<class_ProjectSettings_property_layer_names/2d_navigation/layer_8>` | ``""`` |
  693. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  694. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_9<class_ProjectSettings_property_layer_names/2d_navigation/layer_9>` | ``""`` |
  695. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  696. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_10<class_ProjectSettings_property_layer_names/2d_navigation/layer_10>` | ``""`` |
  697. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  698. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_11<class_ProjectSettings_property_layer_names/2d_navigation/layer_11>` | ``""`` |
  699. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  700. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_12<class_ProjectSettings_property_layer_names/2d_navigation/layer_12>` | ``""`` |
  701. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  702. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_13<class_ProjectSettings_property_layer_names/2d_navigation/layer_13>` | ``""`` |
  703. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  704. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_14<class_ProjectSettings_property_layer_names/2d_navigation/layer_14>` | ``""`` |
  705. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  706. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_15<class_ProjectSettings_property_layer_names/2d_navigation/layer_15>` | ``""`` |
  707. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  708. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_16<class_ProjectSettings_property_layer_names/2d_navigation/layer_16>` | ``""`` |
  709. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  710. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_17<class_ProjectSettings_property_layer_names/2d_navigation/layer_17>` | ``""`` |
  711. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  712. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_18<class_ProjectSettings_property_layer_names/2d_navigation/layer_18>` | ``""`` |
  713. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  714. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_19<class_ProjectSettings_property_layer_names/2d_navigation/layer_19>` | ``""`` |
  715. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  716. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_20<class_ProjectSettings_property_layer_names/2d_navigation/layer_20>` | ``""`` |
  717. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  718. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_21<class_ProjectSettings_property_layer_names/2d_navigation/layer_21>` | ``""`` |
  719. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  720. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_22<class_ProjectSettings_property_layer_names/2d_navigation/layer_22>` | ``""`` |
  721. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  722. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_23<class_ProjectSettings_property_layer_names/2d_navigation/layer_23>` | ``""`` |
  723. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  724. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_24<class_ProjectSettings_property_layer_names/2d_navigation/layer_24>` | ``""`` |
  725. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  726. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_25<class_ProjectSettings_property_layer_names/2d_navigation/layer_25>` | ``""`` |
  727. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  728. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_26<class_ProjectSettings_property_layer_names/2d_navigation/layer_26>` | ``""`` |
  729. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  730. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_27<class_ProjectSettings_property_layer_names/2d_navigation/layer_27>` | ``""`` |
  731. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  732. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_28<class_ProjectSettings_property_layer_names/2d_navigation/layer_28>` | ``""`` |
  733. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  734. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_29<class_ProjectSettings_property_layer_names/2d_navigation/layer_29>` | ``""`` |
  735. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  736. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_30<class_ProjectSettings_property_layer_names/2d_navigation/layer_30>` | ``""`` |
  737. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  738. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_31<class_ProjectSettings_property_layer_names/2d_navigation/layer_31>` | ``""`` |
  739. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  740. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_32<class_ProjectSettings_property_layer_names/2d_navigation/layer_32>` | ``""`` |
  741. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  742. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_1<class_ProjectSettings_property_layer_names/2d_physics/layer_1>` | ``""`` |
  743. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  744. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_2<class_ProjectSettings_property_layer_names/2d_physics/layer_2>` | ``""`` |
  745. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  746. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_3<class_ProjectSettings_property_layer_names/2d_physics/layer_3>` | ``""`` |
  747. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  748. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_4<class_ProjectSettings_property_layer_names/2d_physics/layer_4>` | ``""`` |
  749. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  750. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_5<class_ProjectSettings_property_layer_names/2d_physics/layer_5>` | ``""`` |
  751. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  752. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_6<class_ProjectSettings_property_layer_names/2d_physics/layer_6>` | ``""`` |
  753. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  754. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_7<class_ProjectSettings_property_layer_names/2d_physics/layer_7>` | ``""`` |
  755. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  756. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_8<class_ProjectSettings_property_layer_names/2d_physics/layer_8>` | ``""`` |
  757. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  758. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_9<class_ProjectSettings_property_layer_names/2d_physics/layer_9>` | ``""`` |
  759. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  760. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_10<class_ProjectSettings_property_layer_names/2d_physics/layer_10>` | ``""`` |
  761. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  762. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_11<class_ProjectSettings_property_layer_names/2d_physics/layer_11>` | ``""`` |
  763. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  764. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_12<class_ProjectSettings_property_layer_names/2d_physics/layer_12>` | ``""`` |
  765. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  766. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_13<class_ProjectSettings_property_layer_names/2d_physics/layer_13>` | ``""`` |
  767. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  768. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_14<class_ProjectSettings_property_layer_names/2d_physics/layer_14>` | ``""`` |
  769. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  770. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_15<class_ProjectSettings_property_layer_names/2d_physics/layer_15>` | ``""`` |
  771. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  772. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_16<class_ProjectSettings_property_layer_names/2d_physics/layer_16>` | ``""`` |
  773. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  774. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_17<class_ProjectSettings_property_layer_names/2d_physics/layer_17>` | ``""`` |
  775. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  776. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_18<class_ProjectSettings_property_layer_names/2d_physics/layer_18>` | ``""`` |
  777. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  778. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_19<class_ProjectSettings_property_layer_names/2d_physics/layer_19>` | ``""`` |
  779. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  780. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_20<class_ProjectSettings_property_layer_names/2d_physics/layer_20>` | ``""`` |
  781. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  782. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_21<class_ProjectSettings_property_layer_names/2d_physics/layer_21>` | ``""`` |
  783. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  784. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_22<class_ProjectSettings_property_layer_names/2d_physics/layer_22>` | ``""`` |
  785. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  786. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_23<class_ProjectSettings_property_layer_names/2d_physics/layer_23>` | ``""`` |
  787. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  788. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_24<class_ProjectSettings_property_layer_names/2d_physics/layer_24>` | ``""`` |
  789. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  790. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_25<class_ProjectSettings_property_layer_names/2d_physics/layer_25>` | ``""`` |
  791. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  792. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_26<class_ProjectSettings_property_layer_names/2d_physics/layer_26>` | ``""`` |
  793. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  794. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_27<class_ProjectSettings_property_layer_names/2d_physics/layer_27>` | ``""`` |
  795. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  796. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_28<class_ProjectSettings_property_layer_names/2d_physics/layer_28>` | ``""`` |
  797. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  798. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_29<class_ProjectSettings_property_layer_names/2d_physics/layer_29>` | ``""`` |
  799. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  800. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_30<class_ProjectSettings_property_layer_names/2d_physics/layer_30>` | ``""`` |
  801. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  802. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_31<class_ProjectSettings_property_layer_names/2d_physics/layer_31>` | ``""`` |
  803. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  804. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_32<class_ProjectSettings_property_layer_names/2d_physics/layer_32>` | ``""`` |
  805. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  806. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_1<class_ProjectSettings_property_layer_names/2d_render/layer_1>` | ``""`` |
  807. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  808. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_2<class_ProjectSettings_property_layer_names/2d_render/layer_2>` | ``""`` |
  809. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  810. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_3<class_ProjectSettings_property_layer_names/2d_render/layer_3>` | ``""`` |
  811. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  812. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_4<class_ProjectSettings_property_layer_names/2d_render/layer_4>` | ``""`` |
  813. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  814. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_5<class_ProjectSettings_property_layer_names/2d_render/layer_5>` | ``""`` |
  815. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  816. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_6<class_ProjectSettings_property_layer_names/2d_render/layer_6>` | ``""`` |
  817. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  818. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_7<class_ProjectSettings_property_layer_names/2d_render/layer_7>` | ``""`` |
  819. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  820. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_8<class_ProjectSettings_property_layer_names/2d_render/layer_8>` | ``""`` |
  821. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  822. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_9<class_ProjectSettings_property_layer_names/2d_render/layer_9>` | ``""`` |
  823. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  824. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_10<class_ProjectSettings_property_layer_names/2d_render/layer_10>` | ``""`` |
  825. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  826. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_11<class_ProjectSettings_property_layer_names/2d_render/layer_11>` | ``""`` |
  827. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  828. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_12<class_ProjectSettings_property_layer_names/2d_render/layer_12>` | ``""`` |
  829. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  830. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_13<class_ProjectSettings_property_layer_names/2d_render/layer_13>` | ``""`` |
  831. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  832. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_14<class_ProjectSettings_property_layer_names/2d_render/layer_14>` | ``""`` |
  833. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  834. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_15<class_ProjectSettings_property_layer_names/2d_render/layer_15>` | ``""`` |
  835. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  836. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_16<class_ProjectSettings_property_layer_names/2d_render/layer_16>` | ``""`` |
  837. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  838. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_17<class_ProjectSettings_property_layer_names/2d_render/layer_17>` | ``""`` |
  839. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  840. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_18<class_ProjectSettings_property_layer_names/2d_render/layer_18>` | ``""`` |
  841. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  842. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_19<class_ProjectSettings_property_layer_names/2d_render/layer_19>` | ``""`` |
  843. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  844. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_20<class_ProjectSettings_property_layer_names/2d_render/layer_20>` | ``""`` |
  845. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  846. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_1<class_ProjectSettings_property_layer_names/3d_navigation/layer_1>` | ``""`` |
  847. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  848. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_2<class_ProjectSettings_property_layer_names/3d_navigation/layer_2>` | ``""`` |
  849. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  850. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_3<class_ProjectSettings_property_layer_names/3d_navigation/layer_3>` | ``""`` |
  851. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  852. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_4<class_ProjectSettings_property_layer_names/3d_navigation/layer_4>` | ``""`` |
  853. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  854. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_5<class_ProjectSettings_property_layer_names/3d_navigation/layer_5>` | ``""`` |
  855. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  856. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_6<class_ProjectSettings_property_layer_names/3d_navigation/layer_6>` | ``""`` |
  857. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  858. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_7<class_ProjectSettings_property_layer_names/3d_navigation/layer_7>` | ``""`` |
  859. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  860. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_8<class_ProjectSettings_property_layer_names/3d_navigation/layer_8>` | ``""`` |
  861. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  862. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_9<class_ProjectSettings_property_layer_names/3d_navigation/layer_9>` | ``""`` |
  863. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  864. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_10<class_ProjectSettings_property_layer_names/3d_navigation/layer_10>` | ``""`` |
  865. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  866. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_11<class_ProjectSettings_property_layer_names/3d_navigation/layer_11>` | ``""`` |
  867. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  868. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_12<class_ProjectSettings_property_layer_names/3d_navigation/layer_12>` | ``""`` |
  869. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  870. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_13<class_ProjectSettings_property_layer_names/3d_navigation/layer_13>` | ``""`` |
  871. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  872. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_14<class_ProjectSettings_property_layer_names/3d_navigation/layer_14>` | ``""`` |
  873. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  874. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_15<class_ProjectSettings_property_layer_names/3d_navigation/layer_15>` | ``""`` |
  875. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  876. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_16<class_ProjectSettings_property_layer_names/3d_navigation/layer_16>` | ``""`` |
  877. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  878. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_17<class_ProjectSettings_property_layer_names/3d_navigation/layer_17>` | ``""`` |
  879. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  880. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_18<class_ProjectSettings_property_layer_names/3d_navigation/layer_18>` | ``""`` |
  881. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  882. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_19<class_ProjectSettings_property_layer_names/3d_navigation/layer_19>` | ``""`` |
  883. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  884. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_20<class_ProjectSettings_property_layer_names/3d_navigation/layer_20>` | ``""`` |
  885. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  886. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_21<class_ProjectSettings_property_layer_names/3d_navigation/layer_21>` | ``""`` |
  887. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  888. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_22<class_ProjectSettings_property_layer_names/3d_navigation/layer_22>` | ``""`` |
  889. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  890. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_23<class_ProjectSettings_property_layer_names/3d_navigation/layer_23>` | ``""`` |
  891. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  892. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_24<class_ProjectSettings_property_layer_names/3d_navigation/layer_24>` | ``""`` |
  893. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  894. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_25<class_ProjectSettings_property_layer_names/3d_navigation/layer_25>` | ``""`` |
  895. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  896. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_26<class_ProjectSettings_property_layer_names/3d_navigation/layer_26>` | ``""`` |
  897. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  898. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_27<class_ProjectSettings_property_layer_names/3d_navigation/layer_27>` | ``""`` |
  899. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  900. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_28<class_ProjectSettings_property_layer_names/3d_navigation/layer_28>` | ``""`` |
  901. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  902. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_29<class_ProjectSettings_property_layer_names/3d_navigation/layer_29>` | ``""`` |
  903. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  904. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_30<class_ProjectSettings_property_layer_names/3d_navigation/layer_30>` | ``""`` |
  905. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  906. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_31<class_ProjectSettings_property_layer_names/3d_navigation/layer_31>` | ``""`` |
  907. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  908. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_32<class_ProjectSettings_property_layer_names/3d_navigation/layer_32>` | ``""`` |
  909. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  910. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_1<class_ProjectSettings_property_layer_names/3d_physics/layer_1>` | ``""`` |
  911. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  912. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_2<class_ProjectSettings_property_layer_names/3d_physics/layer_2>` | ``""`` |
  913. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  914. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_3<class_ProjectSettings_property_layer_names/3d_physics/layer_3>` | ``""`` |
  915. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  916. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_4<class_ProjectSettings_property_layer_names/3d_physics/layer_4>` | ``""`` |
  917. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  918. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_5<class_ProjectSettings_property_layer_names/3d_physics/layer_5>` | ``""`` |
  919. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  920. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_6<class_ProjectSettings_property_layer_names/3d_physics/layer_6>` | ``""`` |
  921. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  922. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_7<class_ProjectSettings_property_layer_names/3d_physics/layer_7>` | ``""`` |
  923. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  924. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_8<class_ProjectSettings_property_layer_names/3d_physics/layer_8>` | ``""`` |
  925. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  926. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_9<class_ProjectSettings_property_layer_names/3d_physics/layer_9>` | ``""`` |
  927. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  928. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_10<class_ProjectSettings_property_layer_names/3d_physics/layer_10>` | ``""`` |
  929. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  930. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_11<class_ProjectSettings_property_layer_names/3d_physics/layer_11>` | ``""`` |
  931. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  932. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_12<class_ProjectSettings_property_layer_names/3d_physics/layer_12>` | ``""`` |
  933. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  934. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_13<class_ProjectSettings_property_layer_names/3d_physics/layer_13>` | ``""`` |
  935. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  936. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_14<class_ProjectSettings_property_layer_names/3d_physics/layer_14>` | ``""`` |
  937. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  938. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_15<class_ProjectSettings_property_layer_names/3d_physics/layer_15>` | ``""`` |
  939. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  940. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_16<class_ProjectSettings_property_layer_names/3d_physics/layer_16>` | ``""`` |
  941. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  942. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_17<class_ProjectSettings_property_layer_names/3d_physics/layer_17>` | ``""`` |
  943. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  944. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_18<class_ProjectSettings_property_layer_names/3d_physics/layer_18>` | ``""`` |
  945. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  946. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_19<class_ProjectSettings_property_layer_names/3d_physics/layer_19>` | ``""`` |
  947. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  948. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_20<class_ProjectSettings_property_layer_names/3d_physics/layer_20>` | ``""`` |
  949. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  950. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_21<class_ProjectSettings_property_layer_names/3d_physics/layer_21>` | ``""`` |
  951. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  952. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_22<class_ProjectSettings_property_layer_names/3d_physics/layer_22>` | ``""`` |
  953. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  954. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_23<class_ProjectSettings_property_layer_names/3d_physics/layer_23>` | ``""`` |
  955. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  956. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_24<class_ProjectSettings_property_layer_names/3d_physics/layer_24>` | ``""`` |
  957. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  958. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_25<class_ProjectSettings_property_layer_names/3d_physics/layer_25>` | ``""`` |
  959. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  960. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_26<class_ProjectSettings_property_layer_names/3d_physics/layer_26>` | ``""`` |
  961. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  962. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_27<class_ProjectSettings_property_layer_names/3d_physics/layer_27>` | ``""`` |
  963. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  964. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_28<class_ProjectSettings_property_layer_names/3d_physics/layer_28>` | ``""`` |
  965. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  966. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_29<class_ProjectSettings_property_layer_names/3d_physics/layer_29>` | ``""`` |
  967. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  968. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_30<class_ProjectSettings_property_layer_names/3d_physics/layer_30>` | ``""`` |
  969. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  970. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_31<class_ProjectSettings_property_layer_names/3d_physics/layer_31>` | ``""`` |
  971. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  972. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_32<class_ProjectSettings_property_layer_names/3d_physics/layer_32>` | ``""`` |
  973. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  974. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_1<class_ProjectSettings_property_layer_names/3d_render/layer_1>` | ``""`` |
  975. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  976. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_2<class_ProjectSettings_property_layer_names/3d_render/layer_2>` | ``""`` |
  977. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  978. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_3<class_ProjectSettings_property_layer_names/3d_render/layer_3>` | ``""`` |
  979. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  980. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_4<class_ProjectSettings_property_layer_names/3d_render/layer_4>` | ``""`` |
  981. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  982. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_5<class_ProjectSettings_property_layer_names/3d_render/layer_5>` | ``""`` |
  983. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  984. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_6<class_ProjectSettings_property_layer_names/3d_render/layer_6>` | ``""`` |
  985. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  986. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_7<class_ProjectSettings_property_layer_names/3d_render/layer_7>` | ``""`` |
  987. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  988. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_8<class_ProjectSettings_property_layer_names/3d_render/layer_8>` | ``""`` |
  989. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  990. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_9<class_ProjectSettings_property_layer_names/3d_render/layer_9>` | ``""`` |
  991. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  992. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_10<class_ProjectSettings_property_layer_names/3d_render/layer_10>` | ``""`` |
  993. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  994. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_11<class_ProjectSettings_property_layer_names/3d_render/layer_11>` | ``""`` |
  995. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  996. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_12<class_ProjectSettings_property_layer_names/3d_render/layer_12>` | ``""`` |
  997. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  998. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_13<class_ProjectSettings_property_layer_names/3d_render/layer_13>` | ``""`` |
  999. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1000. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_14<class_ProjectSettings_property_layer_names/3d_render/layer_14>` | ``""`` |
  1001. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1002. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_15<class_ProjectSettings_property_layer_names/3d_render/layer_15>` | ``""`` |
  1003. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1004. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_16<class_ProjectSettings_property_layer_names/3d_render/layer_16>` | ``""`` |
  1005. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1006. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_17<class_ProjectSettings_property_layer_names/3d_render/layer_17>` | ``""`` |
  1007. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1008. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_18<class_ProjectSettings_property_layer_names/3d_render/layer_18>` | ``""`` |
  1009. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1010. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_19<class_ProjectSettings_property_layer_names/3d_render/layer_19>` | ``""`` |
  1011. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1012. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_20<class_ProjectSettings_property_layer_names/3d_render/layer_20>` | ``""`` |
  1013. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1014. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_1<class_ProjectSettings_property_layer_names/avoidance/layer_1>` | ``""`` |
  1015. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1016. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_2<class_ProjectSettings_property_layer_names/avoidance/layer_2>` | ``""`` |
  1017. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1018. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_3<class_ProjectSettings_property_layer_names/avoidance/layer_3>` | ``""`` |
  1019. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1020. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_4<class_ProjectSettings_property_layer_names/avoidance/layer_4>` | ``""`` |
  1021. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1022. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_5<class_ProjectSettings_property_layer_names/avoidance/layer_5>` | ``""`` |
  1023. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1024. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_6<class_ProjectSettings_property_layer_names/avoidance/layer_6>` | ``""`` |
  1025. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1026. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_7<class_ProjectSettings_property_layer_names/avoidance/layer_7>` | ``""`` |
  1027. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1028. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_8<class_ProjectSettings_property_layer_names/avoidance/layer_8>` | ``""`` |
  1029. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1030. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_9<class_ProjectSettings_property_layer_names/avoidance/layer_9>` | ``""`` |
  1031. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1032. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_10<class_ProjectSettings_property_layer_names/avoidance/layer_10>` | ``""`` |
  1033. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1034. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_11<class_ProjectSettings_property_layer_names/avoidance/layer_11>` | ``""`` |
  1035. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1036. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_12<class_ProjectSettings_property_layer_names/avoidance/layer_12>` | ``""`` |
  1037. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1038. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_13<class_ProjectSettings_property_layer_names/avoidance/layer_13>` | ``""`` |
  1039. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1040. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_14<class_ProjectSettings_property_layer_names/avoidance/layer_14>` | ``""`` |
  1041. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1042. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_15<class_ProjectSettings_property_layer_names/avoidance/layer_15>` | ``""`` |
  1043. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1044. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_16<class_ProjectSettings_property_layer_names/avoidance/layer_16>` | ``""`` |
  1045. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1046. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_17<class_ProjectSettings_property_layer_names/avoidance/layer_17>` | ``""`` |
  1047. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1048. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_18<class_ProjectSettings_property_layer_names/avoidance/layer_18>` | ``""`` |
  1049. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1050. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_19<class_ProjectSettings_property_layer_names/avoidance/layer_19>` | ``""`` |
  1051. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1052. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_20<class_ProjectSettings_property_layer_names/avoidance/layer_20>` | ``""`` |
  1053. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1054. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_21<class_ProjectSettings_property_layer_names/avoidance/layer_21>` | ``""`` |
  1055. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1056. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_22<class_ProjectSettings_property_layer_names/avoidance/layer_22>` | ``""`` |
  1057. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1058. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_23<class_ProjectSettings_property_layer_names/avoidance/layer_23>` | ``""`` |
  1059. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1060. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_24<class_ProjectSettings_property_layer_names/avoidance/layer_24>` | ``""`` |
  1061. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1062. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_25<class_ProjectSettings_property_layer_names/avoidance/layer_25>` | ``""`` |
  1063. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1064. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_26<class_ProjectSettings_property_layer_names/avoidance/layer_26>` | ``""`` |
  1065. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1066. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_27<class_ProjectSettings_property_layer_names/avoidance/layer_27>` | ``""`` |
  1067. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1068. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_28<class_ProjectSettings_property_layer_names/avoidance/layer_28>` | ``""`` |
  1069. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1070. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_29<class_ProjectSettings_property_layer_names/avoidance/layer_29>` | ``""`` |
  1071. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1072. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_30<class_ProjectSettings_property_layer_names/avoidance/layer_30>` | ``""`` |
  1073. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1074. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_31<class_ProjectSettings_property_layer_names/avoidance/layer_31>` | ``""`` |
  1075. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1076. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_32<class_ProjectSettings_property_layer_names/avoidance/layer_32>` | ``""`` |
  1077. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1078. | :ref:`int<class_int>` | :ref:`memory/limits/message_queue/max_size_mb<class_ProjectSettings_property_memory/limits/message_queue/max_size_mb>` | ``32`` |
  1079. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1080. | :ref:`int<class_int>` | :ref:`memory/limits/multithreaded_server/rid_pool_prealloc<class_ProjectSettings_property_memory/limits/multithreaded_server/rid_pool_prealloc>` | ``60`` |
  1081. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1082. | :ref:`float<class_float>` | :ref:`navigation/2d/default_cell_size<class_ProjectSettings_property_navigation/2d/default_cell_size>` | ``1.0`` |
  1083. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1084. | :ref:`float<class_float>` | :ref:`navigation/2d/default_edge_connection_margin<class_ProjectSettings_property_navigation/2d/default_edge_connection_margin>` | ``1.0`` |
  1085. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1086. | :ref:`float<class_float>` | :ref:`navigation/2d/default_link_connection_radius<class_ProjectSettings_property_navigation/2d/default_link_connection_radius>` | ``4.0`` |
  1087. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1088. | :ref:`bool<class_bool>` | :ref:`navigation/2d/use_edge_connections<class_ProjectSettings_property_navigation/2d/use_edge_connections>` | ``true`` |
  1089. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1090. | :ref:`float<class_float>` | :ref:`navigation/3d/default_cell_height<class_ProjectSettings_property_navigation/3d/default_cell_height>` | ``0.25`` |
  1091. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1092. | :ref:`float<class_float>` | :ref:`navigation/3d/default_cell_size<class_ProjectSettings_property_navigation/3d/default_cell_size>` | ``0.25`` |
  1093. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1094. | :ref:`float<class_float>` | :ref:`navigation/3d/default_edge_connection_margin<class_ProjectSettings_property_navigation/3d/default_edge_connection_margin>` | ``0.25`` |
  1095. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1096. | :ref:`float<class_float>` | :ref:`navigation/3d/default_link_connection_radius<class_ProjectSettings_property_navigation/3d/default_link_connection_radius>` | ``1.0`` |
  1097. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1098. | :ref:`Vector3<class_Vector3>` | :ref:`navigation/3d/default_up<class_ProjectSettings_property_navigation/3d/default_up>` | ``Vector3(0, 1, 0)`` |
  1099. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1100. | :ref:`bool<class_bool>` | :ref:`navigation/3d/use_edge_connections<class_ProjectSettings_property_navigation/3d/use_edge_connections>` | ``true`` |
  1101. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1102. | :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`` |
  1103. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1104. | :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`` |
  1105. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1106. | :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`` |
  1107. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1108. | :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`` |
  1109. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1110. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_chars_per_second<class_ProjectSettings_property_network/limits/debugger/max_chars_per_second>` | ``32768`` |
  1111. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1112. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_errors_per_second<class_ProjectSettings_property_network/limits/debugger/max_errors_per_second>` | ``400`` |
  1113. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1114. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_queued_messages<class_ProjectSettings_property_network/limits/debugger/max_queued_messages>` | ``2048`` |
  1115. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1116. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_warnings_per_second<class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second>` | ``400`` |
  1117. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1118. | :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`` |
  1119. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1120. | :ref:`int<class_int>` | :ref:`network/limits/tcp/connect_timeout_seconds<class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds>` | ``30`` |
  1121. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1122. | :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`` |
  1123. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1124. | :ref:`String<class_String>` | :ref:`network/tls/certificate_bundle_override<class_ProjectSettings_property_network/tls/certificate_bundle_override>` | ``""`` |
  1125. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1126. | :ref:`float<class_float>` | :ref:`physics/2d/default_angular_damp<class_ProjectSettings_property_physics/2d/default_angular_damp>` | ``1.0`` |
  1127. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1128. | :ref:`float<class_float>` | :ref:`physics/2d/default_gravity<class_ProjectSettings_property_physics/2d/default_gravity>` | ``980.0`` |
  1129. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1130. | :ref:`Vector2<class_Vector2>` | :ref:`physics/2d/default_gravity_vector<class_ProjectSettings_property_physics/2d/default_gravity_vector>` | ``Vector2(0, 1)`` |
  1131. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1132. | :ref:`float<class_float>` | :ref:`physics/2d/default_linear_damp<class_ProjectSettings_property_physics/2d/default_linear_damp>` | ``0.1`` |
  1133. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1134. | :ref:`String<class_String>` | :ref:`physics/2d/physics_engine<class_ProjectSettings_property_physics/2d/physics_engine>` | ``"DEFAULT"`` |
  1135. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1136. | :ref:`bool<class_bool>` | :ref:`physics/2d/run_on_separate_thread<class_ProjectSettings_property_physics/2d/run_on_separate_thread>` | ``false`` |
  1137. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1138. | :ref:`float<class_float>` | :ref:`physics/2d/sleep_threshold_angular<class_ProjectSettings_property_physics/2d/sleep_threshold_angular>` | ``0.139626`` |
  1139. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1140. | :ref:`float<class_float>` | :ref:`physics/2d/sleep_threshold_linear<class_ProjectSettings_property_physics/2d/sleep_threshold_linear>` | ``2.0`` |
  1141. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1142. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_max_allowed_penetration<class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration>` | ``0.3`` |
  1143. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1144. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_max_separation<class_ProjectSettings_property_physics/2d/solver/contact_max_separation>` | ``1.5`` |
  1145. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1146. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_recycle_radius<class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius>` | ``1.0`` |
  1147. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1148. | :ref:`float<class_float>` | :ref:`physics/2d/solver/default_constraint_bias<class_ProjectSettings_property_physics/2d/solver/default_constraint_bias>` | ``0.2`` |
  1149. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1150. | :ref:`float<class_float>` | :ref:`physics/2d/solver/default_contact_bias<class_ProjectSettings_property_physics/2d/solver/default_contact_bias>` | ``0.8`` |
  1151. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1152. | :ref:`int<class_int>` | :ref:`physics/2d/solver/solver_iterations<class_ProjectSettings_property_physics/2d/solver/solver_iterations>` | ``16`` |
  1153. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1154. | :ref:`float<class_float>` | :ref:`physics/2d/time_before_sleep<class_ProjectSettings_property_physics/2d/time_before_sleep>` | ``0.5`` |
  1155. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1156. | :ref:`float<class_float>` | :ref:`physics/3d/default_angular_damp<class_ProjectSettings_property_physics/3d/default_angular_damp>` | ``0.1`` |
  1157. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1158. | :ref:`float<class_float>` | :ref:`physics/3d/default_gravity<class_ProjectSettings_property_physics/3d/default_gravity>` | ``9.8`` |
  1159. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1160. | :ref:`Vector3<class_Vector3>` | :ref:`physics/3d/default_gravity_vector<class_ProjectSettings_property_physics/3d/default_gravity_vector>` | ``Vector3(0, -1, 0)`` |
  1161. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1162. | :ref:`float<class_float>` | :ref:`physics/3d/default_linear_damp<class_ProjectSettings_property_physics/3d/default_linear_damp>` | ``0.1`` |
  1163. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1164. | :ref:`String<class_String>` | :ref:`physics/3d/physics_engine<class_ProjectSettings_property_physics/3d/physics_engine>` | ``"DEFAULT"`` |
  1165. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1166. | :ref:`bool<class_bool>` | :ref:`physics/3d/run_on_separate_thread<class_ProjectSettings_property_physics/3d/run_on_separate_thread>` | ``false`` |
  1167. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1168. | :ref:`float<class_float>` | :ref:`physics/3d/sleep_threshold_angular<class_ProjectSettings_property_physics/3d/sleep_threshold_angular>` | ``0.139626`` |
  1169. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1170. | :ref:`float<class_float>` | :ref:`physics/3d/sleep_threshold_linear<class_ProjectSettings_property_physics/3d/sleep_threshold_linear>` | ``0.1`` |
  1171. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1172. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_max_allowed_penetration<class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration>` | ``0.01`` |
  1173. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1174. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_max_separation<class_ProjectSettings_property_physics/3d/solver/contact_max_separation>` | ``0.05`` |
  1175. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1176. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_recycle_radius<class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius>` | ``0.01`` |
  1177. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1178. | :ref:`float<class_float>` | :ref:`physics/3d/solver/default_contact_bias<class_ProjectSettings_property_physics/3d/solver/default_contact_bias>` | ``0.8`` |
  1179. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1180. | :ref:`int<class_int>` | :ref:`physics/3d/solver/solver_iterations<class_ProjectSettings_property_physics/3d/solver/solver_iterations>` | ``16`` |
  1181. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1182. | :ref:`float<class_float>` | :ref:`physics/3d/time_before_sleep<class_ProjectSettings_property_physics/3d/time_before_sleep>` | ``0.5`` |
  1183. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1184. | :ref:`bool<class_bool>` | :ref:`physics/common/enable_object_picking<class_ProjectSettings_property_physics/common/enable_object_picking>` | ``true`` |
  1185. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1186. | :ref:`int<class_int>` | :ref:`physics/common/max_physics_steps_per_frame<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>` | ``8`` |
  1187. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1188. | :ref:`float<class_float>` | :ref:`physics/common/physics_jitter_fix<class_ProjectSettings_property_physics/common/physics_jitter_fix>` | ``0.5`` |
  1189. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1190. | :ref:`int<class_int>` | :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` | ``60`` |
  1191. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1192. | :ref:`int<class_int>` | :ref:`rendering/2d/sdf/oversize<class_ProjectSettings_property_rendering/2d/sdf/oversize>` | ``1`` |
  1193. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1194. | :ref:`int<class_int>` | :ref:`rendering/2d/sdf/scale<class_ProjectSettings_property_rendering/2d/sdf/scale>` | ``1`` |
  1195. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1196. | :ref:`int<class_int>` | :ref:`rendering/2d/shadow_atlas/size<class_ProjectSettings_property_rendering/2d/shadow_atlas/size>` | ``2048`` |
  1197. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1198. | :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`` |
  1199. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1200. | :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`` |
  1201. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1202. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/msaa_2d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d>` | ``0`` |
  1203. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1204. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/msaa_3d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d>` | ``0`` |
  1205. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1206. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/screen_space_aa<class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa>` | ``0`` |
  1207. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1208. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/quality/use_debanding<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding>` | ``false`` |
  1209. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1210. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/quality/use_taa<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>` | ``false`` |
  1211. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1212. | :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`` |
  1213. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1214. | :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`` |
  1215. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1216. | :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`` |
  1217. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1218. | :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`` |
  1219. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1220. | :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`` |
  1221. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1222. | :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`` |
  1223. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1224. | :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"`` |
  1225. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1226. | :ref:`bool<class_bool>` | :ref:`rendering/driver/depth_prepass/enable<class_ProjectSettings_property_rendering/driver/depth_prepass/enable>` | ``true`` |
  1227. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1228. | :ref:`int<class_int>` | :ref:`rendering/driver/threads/thread_model<class_ProjectSettings_property_rendering/driver/threads/thread_model>` | ``1`` |
  1229. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1230. | :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)`` |
  1231. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1232. | :ref:`String<class_String>` | :ref:`rendering/environment/defaults/default_environment<class_ProjectSettings_property_rendering/environment/defaults/default_environment>` | ``""`` |
  1233. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1234. | :ref:`int<class_int>` | :ref:`rendering/environment/glow/upscale_mode<class_ProjectSettings_property_rendering/environment/glow/upscale_mode>` | ``1`` |
  1235. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1236. | :ref:`int<class_int>` | :ref:`rendering/environment/glow/upscale_mode.mobile<class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile>` | ``0`` |
  1237. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1238. | :ref:`int<class_int>` | :ref:`rendering/environment/screen_space_reflection/roughness_quality<class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality>` | ``1`` |
  1239. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1240. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/adaptive_target<class_ProjectSettings_property_rendering/environment/ssao/adaptive_target>` | ``0.5`` |
  1241. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1242. | :ref:`int<class_int>` | :ref:`rendering/environment/ssao/blur_passes<class_ProjectSettings_property_rendering/environment/ssao/blur_passes>` | ``2`` |
  1243. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1244. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/fadeout_from<class_ProjectSettings_property_rendering/environment/ssao/fadeout_from>` | ``50.0`` |
  1245. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1246. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/fadeout_to<class_ProjectSettings_property_rendering/environment/ssao/fadeout_to>` | ``300.0`` |
  1247. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1248. | :ref:`bool<class_bool>` | :ref:`rendering/environment/ssao/half_size<class_ProjectSettings_property_rendering/environment/ssao/half_size>` | ``true`` |
  1249. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1250. | :ref:`int<class_int>` | :ref:`rendering/environment/ssao/quality<class_ProjectSettings_property_rendering/environment/ssao/quality>` | ``2`` |
  1251. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1252. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/adaptive_target<class_ProjectSettings_property_rendering/environment/ssil/adaptive_target>` | ``0.5`` |
  1253. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1254. | :ref:`int<class_int>` | :ref:`rendering/environment/ssil/blur_passes<class_ProjectSettings_property_rendering/environment/ssil/blur_passes>` | ``4`` |
  1255. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1256. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/fadeout_from<class_ProjectSettings_property_rendering/environment/ssil/fadeout_from>` | ``50.0`` |
  1257. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1258. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/fadeout_to<class_ProjectSettings_property_rendering/environment/ssil/fadeout_to>` | ``300.0`` |
  1259. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1260. | :ref:`bool<class_bool>` | :ref:`rendering/environment/ssil/half_size<class_ProjectSettings_property_rendering/environment/ssil/half_size>` | ``true`` |
  1261. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1262. | :ref:`int<class_int>` | :ref:`rendering/environment/ssil/quality<class_ProjectSettings_property_rendering/environment/ssil/quality>` | ``2`` |
  1263. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1264. | :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`` |
  1265. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1266. | :ref:`int<class_int>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_quality<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality>` | ``1`` |
  1267. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1268. | :ref:`float<class_float>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_scale<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale>` | ``0.05`` |
  1269. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1270. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/use_filter<class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter>` | ``1`` |
  1271. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1272. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/volume_depth<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth>` | ``64`` |
  1273. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1274. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/volume_size<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size>` | ``64`` |
  1275. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1276. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>` | ``"opengl3"`` |
  1277. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1278. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.android<class_ProjectSettings_property_rendering/gl_compatibility/driver.android>` | ``"opengl3"`` |
  1279. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1280. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.ios<class_ProjectSettings_property_rendering/gl_compatibility/driver.ios>` | ``"opengl3"`` |
  1281. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1282. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.linuxbsd<class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd>` | ``"opengl3"`` |
  1283. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1284. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.macos<class_ProjectSettings_property_rendering/gl_compatibility/driver.macos>` | ``"opengl3"`` |
  1285. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1286. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.web<class_ProjectSettings_property_rendering/gl_compatibility/driver.web>` | ``"opengl3"`` |
  1287. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1288. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.windows<class_ProjectSettings_property_rendering/gl_compatibility/driver.windows>` | ``"opengl3"`` |
  1289. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1290. | :ref:`int<class_int>` | :ref:`rendering/gl_compatibility/item_buffer_size<class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size>` | ``16384`` |
  1291. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1292. | :ref:`bool<class_bool>` | :ref:`rendering/gl_compatibility/nvidia_disable_threaded_optimization<class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization>` | ``true`` |
  1293. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1294. | :ref:`bool<class_bool>` | :ref:`rendering/global_illumination/gi/use_half_resolution<class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution>` | ``false`` |
  1295. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1296. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/frames_to_converge<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge>` | ``5`` |
  1297. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1298. | :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`` |
  1299. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1300. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/probe_ray_count<class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count>` | ``1`` |
  1301. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1302. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/voxel_gi/quality<class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality>` | ``0`` |
  1303. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1304. | :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`` |
  1305. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1306. | :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`` |
  1307. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1308. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_performance/region_size<class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size>` | ``512`` |
  1309. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1310. | :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`` |
  1311. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1312. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/high_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_ray_count>` | ``256`` |
  1313. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1314. | :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`` |
  1315. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1316. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/low_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_ray_count>` | ``16`` |
  1317. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1318. | :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`` |
  1319. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1320. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/medium_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_ray_count>` | ``64`` |
  1321. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1322. | :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`` |
  1323. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1324. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_quality/ultra_quality_ray_count<class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_ray_count>` | ``1024`` |
  1325. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1326. | :ref:`float<class_float>` | :ref:`rendering/lightmapping/primitive_meshes/texel_size<class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size>` | ``0.2`` |
  1327. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1328. | :ref:`float<class_float>` | :ref:`rendering/lightmapping/probe_capture/update_speed<class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed>` | ``15`` |
  1329. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1330. | :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`` |
  1331. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1332. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/directional_shadow/size<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size>` | ``4096`` |
  1333. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1334. | :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`` |
  1335. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1336. | :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`` |
  1337. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1338. | :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`` |
  1339. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1340. | :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`` |
  1341. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1342. | :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`` |
  1343. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1344. | :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`` |
  1345. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1346. | :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`` |
  1347. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1348. | :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`` |
  1349. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1350. | :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`` |
  1351. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1352. | :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`` |
  1353. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1354. | :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`` |
  1355. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1356. | :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`` |
  1357. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1358. | :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`` |
  1359. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1360. | :ref:`float<class_float>` | :ref:`rendering/limits/cluster_builder/max_clustered_elements<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>` | ``512`` |
  1361. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1362. | :ref:`int<class_int>` | :ref:`rendering/limits/forward_renderer/threaded_render_minimum_instances<class_ProjectSettings_property_rendering/limits/forward_renderer/threaded_render_minimum_instances>` | ``500`` |
  1363. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1364. | :ref:`int<class_int>` | :ref:`rendering/limits/global_shader_variables/buffer_size<class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size>` | ``65536`` |
  1365. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1366. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_lights_per_object<class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object>` | ``8`` |
  1367. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1368. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_renderable_elements<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements>` | ``65536`` |
  1369. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1370. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_renderable_lights<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights>` | ``32`` |
  1371. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1372. | :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`` |
  1373. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1374. | :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`` |
  1375. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1376. | :ref:`float<class_float>` | :ref:`rendering/limits/time/time_rollover_secs<class_ProjectSettings_property_rendering/limits/time/time_rollover_secs>` | ``3600`` |
  1377. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1378. | :ref:`float<class_float>` | :ref:`rendering/mesh_lod/lod_change/threshold_pixels<class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels>` | ``1.0`` |
  1379. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1380. | :ref:`int<class_int>` | :ref:`rendering/occlusion_culling/bvh_build_quality<class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality>` | ``2`` |
  1381. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1382. | :ref:`int<class_int>` | :ref:`rendering/occlusion_culling/occlusion_rays_per_thread<class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread>` | ``512`` |
  1383. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1384. | :ref:`bool<class_bool>` | :ref:`rendering/occlusion_culling/use_occlusion_culling<class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling>` | ``false`` |
  1385. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1386. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_count<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count>` | ``64`` |
  1387. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1388. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_size<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size>` | ``256`` |
  1389. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1390. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_size.mobile<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile>` | ``128`` |
  1391. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1392. | :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`` |
  1393. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1394. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/ggx_samples<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples>` | ``32`` |
  1395. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1396. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/ggx_samples.mobile<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile>` | ``16`` |
  1397. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1398. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/roughness_layers<class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers>` | ``8`` |
  1399. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1400. | :ref:`bool<class_bool>` | :ref:`rendering/reflections/sky_reflections/texture_array_reflections<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections>` | ``true`` |
  1401. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1402. | :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`` |
  1403. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1404. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` | ``"forward_plus"`` |
  1405. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1406. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method.mobile<class_ProjectSettings_property_rendering/renderer/rendering_method.mobile>` | ``"mobile"`` |
  1407. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1408. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method.web<class_ProjectSettings_property_rendering/renderer/rendering_method.web>` | ``"gl_compatibility"`` |
  1409. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1410. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>` | ``"vulkan"`` |
  1411. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1412. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.android<class_ProjectSettings_property_rendering/rendering_device/driver.android>` | ``"vulkan"`` |
  1413. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1414. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.ios<class_ProjectSettings_property_rendering/rendering_device/driver.ios>` | ``"vulkan"`` |
  1415. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1416. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.linuxbsd<class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd>` | ``"vulkan"`` |
  1417. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1418. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.macos<class_ProjectSettings_property_rendering/rendering_device/driver.macos>` | ``"vulkan"`` |
  1419. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1420. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.windows<class_ProjectSettings_property_rendering/rendering_device/driver.windows>` | ``"vulkan"`` |
  1421. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1422. | :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`` |
  1423. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1424. | :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`` |
  1425. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1426. | :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`` |
  1427. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1428. | :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`` |
  1429. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1430. | :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`` |
  1431. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1432. | :ref:`float<class_float>` | :ref:`rendering/scaling_3d/fsr_sharpness<class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness>` | ``0.2`` |
  1433. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1434. | :ref:`int<class_int>` | :ref:`rendering/scaling_3d/mode<class_ProjectSettings_property_rendering/scaling_3d/mode>` | ``0`` |
  1435. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1436. | :ref:`float<class_float>` | :ref:`rendering/scaling_3d/scale<class_ProjectSettings_property_rendering/scaling_3d/scale>` | ``1.0`` |
  1437. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1438. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/compress<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress>` | ``true`` |
  1439. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1440. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/enabled<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled>` | ``true`` |
  1441. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1442. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/strip_debug<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug>` | ``false`` |
  1443. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1444. | :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`` |
  1445. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1446. | :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`` |
  1447. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1448. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_lambert_over_burley<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley>` | ``false`` |
  1449. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1450. | :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`` |
  1451. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1452. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_vertex_shading<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading>` | ``false`` |
  1453. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1454. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_vertex_shading.mobile<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile>` | ``true`` |
  1455. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1456. | :ref:`int<class_int>` | :ref:`rendering/textures/canvas_textures/default_texture_filter<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter>` | ``1`` |
  1457. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1458. | :ref:`int<class_int>` | :ref:`rendering/textures/canvas_textures/default_texture_repeat<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat>` | ``0`` |
  1459. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1460. | :ref:`int<class_int>` | :ref:`rendering/textures/decals/filter<class_ProjectSettings_property_rendering/textures/decals/filter>` | ``3`` |
  1461. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1462. | :ref:`int<class_int>` | :ref:`rendering/textures/default_filters/anisotropic_filtering_level<class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level>` | ``2`` |
  1463. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1464. | :ref:`float<class_float>` | :ref:`rendering/textures/default_filters/texture_mipmap_bias<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>` | ``0.0`` |
  1465. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1466. | :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`` |
  1467. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1468. | :ref:`int<class_int>` | :ref:`rendering/textures/light_projectors/filter<class_ProjectSettings_property_rendering/textures/light_projectors/filter>` | ``3`` |
  1469. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1470. | :ref:`bool<class_bool>` | :ref:`rendering/textures/lossless_compression/force_png<class_ProjectSettings_property_rendering/textures/lossless_compression/force_png>` | ``false`` |
  1471. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1472. | :ref:`bool<class_bool>` | :ref:`rendering/textures/vram_compression/import_etc2_astc<class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc>` | ``false`` |
  1473. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1474. | :ref:`bool<class_bool>` | :ref:`rendering/textures/vram_compression/import_s3tc_bptc<class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc>` | ``false`` |
  1475. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1476. | :ref:`int<class_int>` | :ref:`rendering/textures/webp_compression/compression_method<class_ProjectSettings_property_rendering/textures/webp_compression/compression_method>` | ``2`` |
  1477. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1478. | :ref:`float<class_float>` | :ref:`rendering/textures/webp_compression/lossless_compression_factor<class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor>` | ``25`` |
  1479. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1480. | :ref:`bool<class_bool>` | :ref:`rendering/viewport/hdr_2d<class_ProjectSettings_property_rendering/viewport/hdr_2d>` | ``false`` |
  1481. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1482. | :ref:`bool<class_bool>` | :ref:`rendering/viewport/transparent_background<class_ProjectSettings_property_rendering/viewport/transparent_background>` | ``false`` |
  1483. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1484. | :ref:`int<class_int>` | :ref:`rendering/vrs/mode<class_ProjectSettings_property_rendering/vrs/mode>` | ``0`` |
  1485. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1486. | :ref:`String<class_String>` | :ref:`rendering/vrs/texture<class_ProjectSettings_property_rendering/vrs/texture>` | ``""`` |
  1487. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1488. | :ref:`float<class_float>` | :ref:`threading/worker_pool/low_priority_thread_ratio<class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio>` | ``0.3`` |
  1489. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1490. | :ref:`int<class_int>` | :ref:`threading/worker_pool/max_threads<class_ProjectSettings_property_threading/worker_pool/max_threads>` | ``-1`` |
  1491. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1492. | :ref:`bool<class_bool>` | :ref:`threading/worker_pool/use_system_threads_for_low_priority_tasks<class_ProjectSettings_property_threading/worker_pool/use_system_threads_for_low_priority_tasks>` | ``true`` |
  1493. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1494. | :ref:`String<class_String>` | :ref:`xr/openxr/default_action_map<class_ProjectSettings_property_xr/openxr/default_action_map>` | ``"res://openxr_action_map.tres"`` |
  1495. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1496. | :ref:`bool<class_bool>` | :ref:`xr/openxr/enabled<class_ProjectSettings_property_xr/openxr/enabled>` | ``false`` |
  1497. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1498. | :ref:`int<class_int>` | :ref:`xr/openxr/environment_blend_mode<class_ProjectSettings_property_xr/openxr/environment_blend_mode>` | ``"0"`` |
  1499. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1500. | :ref:`int<class_int>` | :ref:`xr/openxr/form_factor<class_ProjectSettings_property_xr/openxr/form_factor>` | ``"0"`` |
  1501. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1502. | :ref:`int<class_int>` | :ref:`xr/openxr/reference_space<class_ProjectSettings_property_xr/openxr/reference_space>` | ``"1"`` |
  1503. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1504. | :ref:`bool<class_bool>` | :ref:`xr/openxr/startup_alert<class_ProjectSettings_property_xr/openxr/startup_alert>` | ``true`` |
  1505. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1506. | :ref:`bool<class_bool>` | :ref:`xr/openxr/submit_depth_buffer<class_ProjectSettings_property_xr/openxr/submit_depth_buffer>` | ``false`` |
  1507. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1508. | :ref:`int<class_int>` | :ref:`xr/openxr/view_configuration<class_ProjectSettings_property_xr/openxr/view_configuration>` | ``"1"`` |
  1509. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1510. | :ref:`bool<class_bool>` | :ref:`xr/shaders/enabled<class_ProjectSettings_property_xr/shaders/enabled>` | ``false`` |
  1511. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1512. .. rst-class:: classref-reftable-group
  1513. Methods
  1514. -------
  1515. .. table::
  1516. :widths: auto
  1517. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1518. | void | :ref:`add_property_info<class_ProjectSettings_method_add_property_info>` **(** :ref:`Dictionary<class_Dictionary>` hint **)** |
  1519. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1520. | void | :ref:`clear<class_ProjectSettings_method_clear>` **(** :ref:`String<class_String>` name **)** |
  1521. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1522. | :ref:`Dictionary[]<class_Dictionary>` | :ref:`get_global_class_list<class_ProjectSettings_method_get_global_class_list>` **(** **)** |
  1523. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1524. | :ref:`int<class_int>` | :ref:`get_order<class_ProjectSettings_method_get_order>` **(** :ref:`String<class_String>` name **)** |const| |
  1525. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1526. | :ref:`Variant<class_Variant>` | :ref:`get_setting<class_ProjectSettings_method_get_setting>` **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` default_value=null **)** |const| |
  1527. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1528. | :ref:`Variant<class_Variant>` | :ref:`get_setting_with_override<class_ProjectSettings_method_get_setting_with_override>` **(** :ref:`StringName<class_StringName>` name **)** |const| |
  1529. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1530. | :ref:`String<class_String>` | :ref:`globalize_path<class_ProjectSettings_method_globalize_path>` **(** :ref:`String<class_String>` path **)** |const| |
  1531. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1532. | :ref:`bool<class_bool>` | :ref:`has_setting<class_ProjectSettings_method_has_setting>` **(** :ref:`String<class_String>` name **)** |const| |
  1533. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1534. | :ref:`bool<class_bool>` | :ref:`load_resource_pack<class_ProjectSettings_method_load_resource_pack>` **(** :ref:`String<class_String>` pack, :ref:`bool<class_bool>` replace_files=true, :ref:`int<class_int>` offset=0 **)** |
  1535. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1536. | :ref:`String<class_String>` | :ref:`localize_path<class_ProjectSettings_method_localize_path>` **(** :ref:`String<class_String>` path **)** |const| |
  1537. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1538. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save<class_ProjectSettings_method_save>` **(** **)** |
  1539. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1540. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save_custom<class_ProjectSettings_method_save_custom>` **(** :ref:`String<class_String>` file **)** |
  1541. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1542. | void | :ref:`set_as_basic<class_ProjectSettings_method_set_as_basic>` **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` basic **)** |
  1543. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1544. | void | :ref:`set_as_internal<class_ProjectSettings_method_set_as_internal>` **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` internal **)** |
  1545. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1546. | void | :ref:`set_initial_value<class_ProjectSettings_method_set_initial_value>` **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)** |
  1547. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1548. | void | :ref:`set_order<class_ProjectSettings_method_set_order>` **(** :ref:`String<class_String>` name, :ref:`int<class_int>` position **)** |
  1549. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1550. | void | :ref:`set_restart_if_changed<class_ProjectSettings_method_set_restart_if_changed>` **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` restart **)** |
  1551. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1552. | void | :ref:`set_setting<class_ProjectSettings_method_set_setting>` **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)** |
  1553. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1554. .. rst-class:: classref-section-separator
  1555. ----
  1556. .. rst-class:: classref-descriptions-group
  1557. Signals
  1558. -------
  1559. .. _class_ProjectSettings_signal_settings_changed:
  1560. .. rst-class:: classref-signal
  1561. **settings_changed** **(** **)**
  1562. Emitted when any setting is changed, up to once per process frame.
  1563. .. rst-class:: classref-section-separator
  1564. ----
  1565. .. rst-class:: classref-descriptions-group
  1566. Property Descriptions
  1567. ---------------------
  1568. .. _class_ProjectSettings_property_application/boot_splash/bg_color:
  1569. .. rst-class:: classref-property
  1570. :ref:`Color<class_Color>` **application/boot_splash/bg_color** = ``Color(0.14, 0.14, 0.14, 1)``
  1571. Background color for the boot splash.
  1572. .. rst-class:: classref-item-separator
  1573. ----
  1574. .. _class_ProjectSettings_property_application/boot_splash/fullsize:
  1575. .. rst-class:: classref-property
  1576. :ref:`bool<class_bool>` **application/boot_splash/fullsize** = ``true``
  1577. 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.
  1578. .. rst-class:: classref-item-separator
  1579. ----
  1580. .. _class_ProjectSettings_property_application/boot_splash/image:
  1581. .. rst-class:: classref-property
  1582. :ref:`String<class_String>` **application/boot_splash/image** = ``""``
  1583. Path to an image used as the boot splash. If left empty, the default Godot Engine splash will be displayed instead.
  1584. \ **Note:** Only effective if :ref:`application/boot_splash/show_image<class_ProjectSettings_property_application/boot_splash/show_image>` is ``true``.
  1585. \ **Note:** The only supported format is PNG. Using another image format will result in an error.
  1586. .. rst-class:: classref-item-separator
  1587. ----
  1588. .. _class_ProjectSettings_property_application/boot_splash/minimum_display_time:
  1589. .. rst-class:: classref-property
  1590. :ref:`int<class_int>` **application/boot_splash/minimum_display_time** = ``0``
  1591. Minimum boot splash display time (in milliseconds). It is not recommended to set too high values for this setting.
  1592. .. rst-class:: classref-item-separator
  1593. ----
  1594. .. _class_ProjectSettings_property_application/boot_splash/show_image:
  1595. .. rst-class:: classref-property
  1596. :ref:`bool<class_bool>` **application/boot_splash/show_image** = ``true``
  1597. 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>`.
  1598. .. rst-class:: classref-item-separator
  1599. ----
  1600. .. _class_ProjectSettings_property_application/boot_splash/use_filter:
  1601. .. rst-class:: classref-property
  1602. :ref:`bool<class_bool>` **application/boot_splash/use_filter** = ``true``
  1603. If ``true``, applies linear filtering when scaling the image (recommended for high-resolution artwork). If ``false``, uses nearest-neighbor interpolation (recommended for pixel art).
  1604. .. rst-class:: classref-item-separator
  1605. ----
  1606. .. _class_ProjectSettings_property_application/config/auto_accept_quit:
  1607. .. rst-class:: classref-property
  1608. :ref:`bool<class_bool>` **application/config/auto_accept_quit** = ``true``
  1609. If ``true``, the application automatically accepts quitting requests.
  1610. .. rst-class:: classref-item-separator
  1611. ----
  1612. .. _class_ProjectSettings_property_application/config/custom_user_dir_name:
  1613. .. rst-class:: classref-property
  1614. :ref:`String<class_String>` **application/config/custom_user_dir_name** = ``""``
  1615. 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>`).
  1616. 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.
  1617. .. rst-class:: classref-item-separator
  1618. ----
  1619. .. _class_ProjectSettings_property_application/config/description:
  1620. .. rst-class:: classref-property
  1621. :ref:`String<class_String>` **application/config/description** = ``""``
  1622. The project's description, displayed as a tooltip in the Project Manager when hovering the project.
  1623. .. rst-class:: classref-item-separator
  1624. ----
  1625. .. _class_ProjectSettings_property_application/config/icon:
  1626. .. rst-class:: classref-property
  1627. :ref:`String<class_String>` **application/config/icon** = ``""``
  1628. Icon used for the project, set when project loads. Exporters will also use this icon as a fallback if necessary.
  1629. .. rst-class:: classref-item-separator
  1630. ----
  1631. .. _class_ProjectSettings_property_application/config/macos_native_icon:
  1632. .. rst-class:: classref-property
  1633. :ref:`String<class_String>` **application/config/macos_native_icon** = ``""``
  1634. 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>`.
  1635. .. rst-class:: classref-item-separator
  1636. ----
  1637. .. _class_ProjectSettings_property_application/config/name:
  1638. .. rst-class:: classref-property
  1639. :ref:`String<class_String>` **application/config/name** = ``""``
  1640. 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.
  1641. \ **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.
  1642. .. rst-class:: classref-item-separator
  1643. ----
  1644. .. _class_ProjectSettings_property_application/config/name_localized:
  1645. .. rst-class:: classref-property
  1646. :ref:`Dictionary<class_Dictionary>` **application/config/name_localized** = ``{}``
  1647. Translations of the project's name. This setting is used by OS tools to translate application name on Android, iOS and macOS.
  1648. .. rst-class:: classref-item-separator
  1649. ----
  1650. .. _class_ProjectSettings_property_application/config/project_settings_override:
  1651. .. rst-class:: classref-property
  1652. :ref:`String<class_String>` **application/config/project_settings_override** = ``""``
  1653. 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.
  1654. \ **Note:** Regardless of this setting's value, ``res://override.cfg`` will still be read to override the project settings.
  1655. .. rst-class:: classref-item-separator
  1656. ----
  1657. .. _class_ProjectSettings_property_application/config/quit_on_go_back:
  1658. .. rst-class:: classref-property
  1659. :ref:`bool<class_bool>` **application/config/quit_on_go_back** = ``true``
  1660. If ``true``, the application quits automatically when navigating back (e.g. using the system "Back" button on Android).
  1661. .. rst-class:: classref-item-separator
  1662. ----
  1663. .. _class_ProjectSettings_property_application/config/use_custom_user_dir:
  1664. .. rst-class:: classref-property
  1665. :ref:`bool<class_bool>` **application/config/use_custom_user_dir** = ``false``
  1666. 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>``.
  1667. 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.
  1668. .. rst-class:: classref-item-separator
  1669. ----
  1670. .. _class_ProjectSettings_property_application/config/use_hidden_project_data_directory:
  1671. .. rst-class:: classref-property
  1672. :ref:`bool<class_bool>` **application/config/use_hidden_project_data_directory** = ``true``
  1673. If ``true``, the project will use a hidden directory (``.godot``) for storing project-specific data (metadata, shader cache, etc.).
  1674. If ``false``, a non-hidden directory (``godot``) will be used instead.
  1675. \ **Note:** Restart the application after changing this setting.
  1676. \ **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.
  1677. .. rst-class:: classref-item-separator
  1678. ----
  1679. .. _class_ProjectSettings_property_application/config/version:
  1680. .. rst-class:: classref-property
  1681. :ref:`String<class_String>` **application/config/version** = ``""``
  1682. 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.
  1683. .. rst-class:: classref-item-separator
  1684. ----
  1685. .. _class_ProjectSettings_property_application/config/windows_native_icon:
  1686. .. rst-class:: classref-property
  1687. :ref:`String<class_String>` **application/config/windows_native_icon** = ``""``
  1688. 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>`.
  1689. .. rst-class:: classref-item-separator
  1690. ----
  1691. .. _class_ProjectSettings_property_application/run/delta_smoothing:
  1692. .. rst-class:: classref-property
  1693. :ref:`bool<class_bool>` **application/run/delta_smoothing** = ``true``
  1694. 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.
  1695. \ **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.
  1696. 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.
  1697. .. rst-class:: classref-item-separator
  1698. ----
  1699. .. _class_ProjectSettings_property_application/run/disable_stderr:
  1700. .. rst-class:: classref-property
  1701. :ref:`bool<class_bool>` **application/run/disable_stderr** = ``false``
  1702. 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>`.
  1703. Changes to this setting will only be applied upon restarting the application.
  1704. .. rst-class:: classref-item-separator
  1705. ----
  1706. .. _class_ProjectSettings_property_application/run/disable_stdout:
  1707. .. rst-class:: classref-property
  1708. :ref:`bool<class_bool>` **application/run/disable_stdout** = ``false``
  1709. 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>`.
  1710. Changes to this setting will only be applied upon restarting the application.
  1711. .. rst-class:: classref-item-separator
  1712. ----
  1713. .. _class_ProjectSettings_property_application/run/flush_stdout_on_print:
  1714. .. rst-class:: classref-property
  1715. :ref:`bool<class_bool>` **application/run/flush_stdout_on_print** = ``false``
  1716. If ``true``, flushes the standard output stream every time a line is printed. This affects both terminal logging and file logging.
  1717. 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").
  1718. \ **Note:** Regardless of this setting, the standard error stream (``stderr``) is always flushed when a line is printed to it.
  1719. Changes to this setting will only be applied upon restarting the application.
  1720. .. rst-class:: classref-item-separator
  1721. ----
  1722. .. _class_ProjectSettings_property_application/run/flush_stdout_on_print.debug:
  1723. .. rst-class:: classref-property
  1724. :ref:`bool<class_bool>` **application/run/flush_stdout_on_print.debug** = ``true``
  1725. 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.
  1726. Changes to this setting will only be applied upon restarting the application.
  1727. .. rst-class:: classref-item-separator
  1728. ----
  1729. .. _class_ProjectSettings_property_application/run/frame_delay_msec:
  1730. .. rst-class:: classref-property
  1731. :ref:`int<class_int>` **application/run/frame_delay_msec** = ``0``
  1732. Forces a delay between frames in the main loop (in milliseconds). This may be useful if you plan to disable vertical synchronization.
  1733. .. rst-class:: classref-item-separator
  1734. ----
  1735. .. _class_ProjectSettings_property_application/run/low_processor_mode:
  1736. .. rst-class:: classref-property
  1737. :ref:`bool<class_bool>` **application/run/low_processor_mode** = ``false``
  1738. If ``true``, enables low-processor usage mode. This setting only works on desktop platforms. The screen is not redrawn if nothing changes visually. This is meant for writing applications and editors, but is pretty useless (and can hurt performance) in most games.
  1739. .. rst-class:: classref-item-separator
  1740. ----
  1741. .. _class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec:
  1742. .. rst-class:: classref-property
  1743. :ref:`int<class_int>` **application/run/low_processor_mode_sleep_usec** = ``6900``
  1744. Amount of sleeping between frames when the low-processor usage mode is enabled (in microseconds). Higher values will result in lower CPU usage.
  1745. .. rst-class:: classref-item-separator
  1746. ----
  1747. .. _class_ProjectSettings_property_application/run/main_loop_type:
  1748. .. rst-class:: classref-property
  1749. :ref:`String<class_String>` **application/run/main_loop_type** = ``"SceneTree"``
  1750. The name of the type implementing the engine's main loop.
  1751. .. rst-class:: classref-item-separator
  1752. ----
  1753. .. _class_ProjectSettings_property_application/run/main_scene:
  1754. .. rst-class:: classref-property
  1755. :ref:`String<class_String>` **application/run/main_scene** = ``""``
  1756. Path to the main scene file that will be loaded when the project runs.
  1757. .. rst-class:: classref-item-separator
  1758. ----
  1759. .. _class_ProjectSettings_property_application/run/max_fps:
  1760. .. rst-class:: classref-property
  1761. :ref:`int<class_int>` **application/run/max_fps** = ``0``
  1762. 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.
  1763. Limiting the FPS can be useful to reduce system power consumption, which reduces heat and noise emissions (and improves battery life on mobile devices).
  1764. 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.
  1765. 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 a 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/>`__.
  1766. 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.
  1767. See also :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`.
  1768. This setting can be overridden using the ``--max-fps <fps;>`` command line argument (including with a value of ``0`` for unlimited framerate).
  1769. \ **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.
  1770. .. rst-class:: classref-item-separator
  1771. ----
  1772. .. _class_ProjectSettings_property_audio/buses/channel_disable_threshold_db:
  1773. .. rst-class:: classref-property
  1774. :ref:`float<class_float>` **audio/buses/channel_disable_threshold_db** = ``-60.0``
  1775. 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.
  1776. .. rst-class:: classref-item-separator
  1777. ----
  1778. .. _class_ProjectSettings_property_audio/buses/channel_disable_time:
  1779. .. rst-class:: classref-property
  1780. :ref:`float<class_float>` **audio/buses/channel_disable_time** = ``2.0``
  1781. 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.
  1782. .. rst-class:: classref-item-separator
  1783. ----
  1784. .. _class_ProjectSettings_property_audio/buses/default_bus_layout:
  1785. .. rst-class:: classref-property
  1786. :ref:`String<class_String>` **audio/buses/default_bus_layout** = ``"res://default_bus_layout.tres"``
  1787. Default :ref:`AudioBusLayout<class_AudioBusLayout>` resource file to use in the project, unless overridden by the scene.
  1788. .. rst-class:: classref-item-separator
  1789. ----
  1790. .. _class_ProjectSettings_property_audio/driver/driver:
  1791. .. rst-class:: classref-property
  1792. :ref:`String<class_String>` **audio/driver/driver**
  1793. 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.
  1794. 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.
  1795. \ **Note:** The driver in use can be overridden at runtime via the ``--audio-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  1796. .. rst-class:: classref-item-separator
  1797. ----
  1798. .. _class_ProjectSettings_property_audio/driver/enable_input:
  1799. .. rst-class:: classref-property
  1800. :ref:`bool<class_bool>` **audio/driver/enable_input** = ``false``
  1801. If ``true``, microphone input will be allowed. This requires appropriate permissions to be set when exporting to Android or iOS.
  1802. \ **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.
  1803. .. rst-class:: classref-item-separator
  1804. ----
  1805. .. _class_ProjectSettings_property_audio/driver/mix_rate:
  1806. .. rst-class:: classref-property
  1807. :ref:`int<class_int>` **audio/driver/mix_rate** = ``44100``
  1808. 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.
  1809. .. rst-class:: classref-item-separator
  1810. ----
  1811. .. _class_ProjectSettings_property_audio/driver/mix_rate.web:
  1812. .. rst-class:: classref-property
  1813. :ref:`int<class_int>` **audio/driver/mix_rate.web** = ``0``
  1814. 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).
  1815. .. rst-class:: classref-item-separator
  1816. ----
  1817. .. _class_ProjectSettings_property_audio/driver/output_latency:
  1818. .. rst-class:: classref-property
  1819. :ref:`int<class_int>` **audio/driver/output_latency** = ``15``
  1820. 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 cracking on slower hardware.
  1821. 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.
  1822. Audio output latency can be overridden using the ``--audio-output-latency <ms>`` command line argument.
  1823. \ **Note:** This setting is ignored on Android, and on all versions of Windows prior to Windows 10.
  1824. .. rst-class:: classref-item-separator
  1825. ----
  1826. .. _class_ProjectSettings_property_audio/driver/output_latency.web:
  1827. .. rst-class:: classref-property
  1828. :ref:`int<class_int>` **audio/driver/output_latency.web** = ``50``
  1829. 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.
  1830. .. rst-class:: classref-item-separator
  1831. ----
  1832. .. _class_ProjectSettings_property_audio/general/2d_panning_strength:
  1833. .. rst-class:: classref-property
  1834. :ref:`float<class_float>` **audio/general/2d_panning_strength** = ``0.5``
  1835. 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.
  1836. 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.
  1837. .. rst-class:: classref-item-separator
  1838. ----
  1839. .. _class_ProjectSettings_property_audio/general/3d_panning_strength:
  1840. .. rst-class:: classref-property
  1841. :ref:`float<class_float>` **audio/general/3d_panning_strength** = ``0.5``
  1842. 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.
  1843. 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.
  1844. .. rst-class:: classref-item-separator
  1845. ----
  1846. .. _class_ProjectSettings_property_audio/general/text_to_speech:
  1847. .. rst-class:: classref-property
  1848. :ref:`bool<class_bool>` **audio/general/text_to_speech** = ``false``
  1849. 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>`.
  1850. \ **Note:** Enabling TTS can cause addition idle CPU usage and interfere with the sleep mode, so consider disabling it if TTS is not used.
  1851. .. rst-class:: classref-item-separator
  1852. ----
  1853. .. _class_ProjectSettings_property_audio/video/video_delay_compensation_ms:
  1854. .. rst-class:: classref-property
  1855. :ref:`int<class_int>` **audio/video/video_delay_compensation_ms** = ``0``
  1856. Setting to hardcode audio delay when playing video. Best to leave this untouched unless you know what you are doing.
  1857. .. rst-class:: classref-item-separator
  1858. ----
  1859. .. _class_ProjectSettings_property_compression/formats/gzip/compression_level:
  1860. .. rst-class:: classref-property
  1861. :ref:`int<class_int>` **compression/formats/gzip/compression_level** = ``-1``
  1862. 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.
  1863. .. rst-class:: classref-item-separator
  1864. ----
  1865. .. _class_ProjectSettings_property_compression/formats/zlib/compression_level:
  1866. .. rst-class:: classref-property
  1867. :ref:`int<class_int>` **compression/formats/zlib/compression_level** = ``-1``
  1868. 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.
  1869. .. rst-class:: classref-item-separator
  1870. ----
  1871. .. _class_ProjectSettings_property_compression/formats/zstd/compression_level:
  1872. .. rst-class:: classref-property
  1873. :ref:`int<class_int>` **compression/formats/zstd/compression_level** = ``3``
  1874. 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.
  1875. .. rst-class:: classref-item-separator
  1876. ----
  1877. .. _class_ProjectSettings_property_compression/formats/zstd/long_distance_matching:
  1878. .. rst-class:: classref-property
  1879. :ref:`bool<class_bool>` **compression/formats/zstd/long_distance_matching** = ``false``
  1880. Enables `long-distance matching <https://github.com/facebook/zstd/releases/tag/v1.3.2>`__ in Zstandard.
  1881. .. rst-class:: classref-item-separator
  1882. ----
  1883. .. _class_ProjectSettings_property_compression/formats/zstd/window_log_size:
  1884. .. rst-class:: classref-property
  1885. :ref:`int<class_int>` **compression/formats/zstd/window_log_size** = ``27``
  1886. 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.
  1887. .. rst-class:: classref-item-separator
  1888. ----
  1889. .. _class_ProjectSettings_property_debug/file_logging/enable_file_logging:
  1890. .. rst-class:: classref-property
  1891. :ref:`bool<class_bool>` **debug/file_logging/enable_file_logging** = ``false``
  1892. If ``true``, logs all output to files.
  1893. .. rst-class:: classref-item-separator
  1894. ----
  1895. .. _class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc:
  1896. .. rst-class:: classref-property
  1897. :ref:`bool<class_bool>` **debug/file_logging/enable_file_logging.pc** = ``true``
  1898. 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.
  1899. .. rst-class:: classref-item-separator
  1900. ----
  1901. .. _class_ProjectSettings_property_debug/file_logging/log_path:
  1902. .. rst-class:: classref-property
  1903. :ref:`String<class_String>` **debug/file_logging/log_path** = ``"user://logs/godot.log"``
  1904. Path at which to store log files for the project. Using a path under ``user://`` is recommended.
  1905. .. rst-class:: classref-item-separator
  1906. ----
  1907. .. _class_ProjectSettings_property_debug/file_logging/max_log_files:
  1908. .. rst-class:: classref-property
  1909. :ref:`int<class_int>` **debug/file_logging/max_log_files** = ``5``
  1910. Specifies the maximum number of log files allowed (used for rotation).
  1911. .. rst-class:: classref-item-separator
  1912. ----
  1913. .. _class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false:
  1914. .. rst-class:: classref-property
  1915. :ref:`int<class_int>` **debug/gdscript/warnings/assert_always_false** = ``1``
  1916. When set to ``warn`` or ``error``, produces a warning or an error respectively when an ``assert`` call always evaluates to false.
  1917. .. rst-class:: classref-item-separator
  1918. ----
  1919. .. _class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true:
  1920. .. rst-class:: classref-property
  1921. :ref:`int<class_int>` **debug/gdscript/warnings/assert_always_true** = ``1``
  1922. When set to ``warn`` or ``error``, produces a warning or an error respectively when an ``assert`` call always evaluates to true.
  1923. .. rst-class:: classref-item-separator
  1924. ----
  1925. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier:
  1926. .. rst-class:: classref-property
  1927. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_identifier** = ``1``
  1928. 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.
  1929. .. rst-class:: classref-item-separator
  1930. ----
  1931. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration:
  1932. .. rst-class:: classref-property
  1933. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_local_declaration** = ``1``
  1934. 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.
  1935. .. rst-class:: classref-item-separator
  1936. ----
  1937. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage:
  1938. .. rst-class:: classref-property
  1939. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_local_usage** = ``1``
  1940. 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.
  1941. .. rst-class:: classref-item-separator
  1942. ----
  1943. .. _class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function:
  1944. .. rst-class:: classref-property
  1945. :ref:`int<class_int>` **debug/gdscript/warnings/constant_used_as_function** = ``1``
  1946. When set to ``warn`` or ``error``, produces a warning or an error respectively when a constant is used as a function.
  1947. .. rst-class:: classref-item-separator
  1948. ----
  1949. .. _class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword:
  1950. .. rst-class:: classref-property
  1951. :ref:`int<class_int>` **debug/gdscript/warnings/deprecated_keyword** = ``1``
  1952. When set to ``warn`` or ``error``, produces a warning or an error respectively when deprecated keywords are used.
  1953. .. rst-class:: classref-item-separator
  1954. ----
  1955. .. _class_ProjectSettings_property_debug/gdscript/warnings/empty_file:
  1956. .. rst-class:: classref-property
  1957. :ref:`int<class_int>` **debug/gdscript/warnings/empty_file** = ``1``
  1958. When set to ``warn`` or ``error``, produces a warning or an error respectively when an empty file is parsed.
  1959. .. rst-class:: classref-item-separator
  1960. ----
  1961. .. _class_ProjectSettings_property_debug/gdscript/warnings/enable:
  1962. .. rst-class:: classref-property
  1963. :ref:`bool<class_bool>` **debug/gdscript/warnings/enable** = ``true``
  1964. If ``true``, enables specific GDScript warnings (see ``debug/gdscript/warnings/*`` settings). If ``false``, disables all GDScript warnings.
  1965. .. rst-class:: classref-item-separator
  1966. ----
  1967. .. _class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons:
  1968. .. rst-class:: classref-property
  1969. :ref:`bool<class_bool>` **debug/gdscript/warnings/exclude_addons** = ``true``
  1970. If ``true``, scripts in the ``res://addons`` folder will not generate warnings.
  1971. .. rst-class:: classref-item-separator
  1972. ----
  1973. .. _class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property:
  1974. .. rst-class:: classref-property
  1975. :ref:`int<class_int>` **debug/gdscript/warnings/function_used_as_property** = ``1``
  1976. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a function as if it is a property.
  1977. .. rst-class:: classref-item-separator
  1978. ----
  1979. .. _class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready:
  1980. .. rst-class:: classref-property
  1981. :ref:`int<class_int>` **debug/gdscript/warnings/get_node_default_without_onready** = ``2``
  1982. 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.
  1983. .. rst-class:: classref-item-separator
  1984. ----
  1985. .. _class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary:
  1986. .. rst-class:: classref-property
  1987. :ref:`int<class_int>` **debug/gdscript/warnings/incompatible_ternary** = ``1``
  1988. When set to ``warn`` or ``error``, produces a warning or an error respectively when a ternary operator may emit values with incompatible types.
  1989. .. rst-class:: classref-item-separator
  1990. ----
  1991. .. _class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant:
  1992. .. rst-class:: classref-property
  1993. :ref:`int<class_int>` **debug/gdscript/warnings/inference_on_variant** = ``2``
  1994. 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.
  1995. .. rst-class:: classref-item-separator
  1996. ----
  1997. .. _class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast:
  1998. .. rst-class:: classref-property
  1999. :ref:`int<class_int>` **debug/gdscript/warnings/int_as_enum_without_cast** = ``1``
  2000. 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.
  2001. .. rst-class:: classref-item-separator
  2002. ----
  2003. .. _class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match:
  2004. .. rst-class:: classref-property
  2005. :ref:`int<class_int>` **debug/gdscript/warnings/int_as_enum_without_match** = ``1``
  2006. 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.
  2007. .. rst-class:: classref-item-separator
  2008. ----
  2009. .. _class_ProjectSettings_property_debug/gdscript/warnings/integer_division:
  2010. .. rst-class:: classref-property
  2011. :ref:`int<class_int>` **debug/gdscript/warnings/integer_division** = ``1``
  2012. 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).
  2013. .. rst-class:: classref-item-separator
  2014. ----
  2015. .. _class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion:
  2016. .. rst-class:: classref-property
  2017. :ref:`int<class_int>` **debug/gdscript/warnings/narrowing_conversion** = ``1``
  2018. 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).
  2019. .. rst-class:: classref-item-separator
  2020. ----
  2021. .. _class_ProjectSettings_property_debug/gdscript/warnings/native_method_override:
  2022. .. rst-class:: classref-property
  2023. :ref:`int<class_int>` **debug/gdscript/warnings/native_method_override** = ``2``
  2024. 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.
  2025. .. rst-class:: classref-item-separator
  2026. ----
  2027. .. _class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export:
  2028. .. rst-class:: classref-property
  2029. :ref:`int<class_int>` **debug/gdscript/warnings/onready_with_export** = ``2``
  2030. 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.
  2031. .. rst-class:: classref-item-separator
  2032. ----
  2033. .. _class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function:
  2034. .. rst-class:: classref-property
  2035. :ref:`int<class_int>` **debug/gdscript/warnings/property_used_as_function** = ``1``
  2036. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a property as if it is a function.
  2037. .. rst-class:: classref-item-separator
  2038. ----
  2039. .. _class_ProjectSettings_property_debug/gdscript/warnings/redundant_await:
  2040. .. rst-class:: classref-property
  2041. :ref:`int<class_int>` **debug/gdscript/warnings/redundant_await** = ``1``
  2042. 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.
  2043. .. rst-class:: classref-item-separator
  2044. ----
  2045. .. _class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload:
  2046. .. rst-class:: classref-property
  2047. :ref:`int<class_int>` **debug/gdscript/warnings/redundant_static_unload** = ``1``
  2048. 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.
  2049. .. rst-class:: classref-item-separator
  2050. ----
  2051. .. _class_ProjectSettings_property_debug/gdscript/warnings/renamed_in_godot_4_hint:
  2052. .. rst-class:: classref-property
  2053. :ref:`bool<class_bool>` **debug/gdscript/warnings/renamed_in_godot_4_hint** = ``1``
  2054. When enabled, using a property, enum, or function that was renamed since Godot 3 will produce a hint if an error occurs.
  2055. .. rst-class:: classref-item-separator
  2056. ----
  2057. .. _class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded:
  2058. .. rst-class:: classref-property
  2059. :ref:`int<class_int>` **debug/gdscript/warnings/return_value_discarded** = ``0``
  2060. 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). Such return values are sometimes used to denote possible errors using the :ref:`Error<enum_@GlobalScope_Error>` enum.
  2061. .. rst-class:: classref-item-separator
  2062. ----
  2063. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier:
  2064. .. rst-class:: classref-property
  2065. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_global_identifier** = ``1``
  2066. 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.
  2067. .. rst-class:: classref-item-separator
  2068. ----
  2069. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable:
  2070. .. rst-class:: classref-property
  2071. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_variable** = ``1``
  2072. 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.
  2073. .. rst-class:: classref-item-separator
  2074. ----
  2075. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class:
  2076. .. rst-class:: classref-property
  2077. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_variable_base_class** = ``1``
  2078. 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.
  2079. .. rst-class:: classref-item-separator
  2080. ----
  2081. .. _class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression:
  2082. .. rst-class:: classref-property
  2083. :ref:`int<class_int>` **debug/gdscript/warnings/standalone_expression** = ``1``
  2084. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling an expression that has no effect on the surrounding code, such as writing ``2 + 2`` as a statement.
  2085. .. rst-class:: classref-item-separator
  2086. ----
  2087. .. _class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary:
  2088. .. rst-class:: classref-property
  2089. :ref:`int<class_int>` **debug/gdscript/warnings/standalone_ternary** = ``1``
  2090. When set to ``warn`` or ``error``, produces a warning or an error respectively when calling a ternary expression that has no effect on the surrounding code, such as writing ``42 if active else 0`` as a statement.
  2091. .. rst-class:: classref-item-separator
  2092. ----
  2093. .. _class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance:
  2094. .. rst-class:: classref-property
  2095. :ref:`int<class_int>` **debug/gdscript/warnings/static_called_on_instance** = ``1``
  2096. 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.
  2097. .. rst-class:: classref-item-separator
  2098. ----
  2099. .. _class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable:
  2100. .. rst-class:: classref-property
  2101. :ref:`int<class_int>` **debug/gdscript/warnings/unassigned_variable** = ``1``
  2102. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a variable that wasn't previously assigned.
  2103. .. rst-class:: classref-item-separator
  2104. ----
  2105. .. _class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign:
  2106. .. rst-class:: classref-property
  2107. :ref:`int<class_int>` **debug/gdscript/warnings/unassigned_variable_op_assign** = ``1``
  2108. 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.
  2109. .. rst-class:: classref-item-separator
  2110. ----
  2111. .. _class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code:
  2112. .. rst-class:: classref-property
  2113. :ref:`int<class_int>` **debug/gdscript/warnings/unreachable_code** = ``1``
  2114. 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).
  2115. .. rst-class:: classref-item-separator
  2116. ----
  2117. .. _class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern:
  2118. .. rst-class:: classref-property
  2119. :ref:`int<class_int>` **debug/gdscript/warnings/unreachable_pattern** = ``1``
  2120. When set to ``warn`` or ``error``, produces a warning or an error respectively when an unreachable ``match`` pattern is detected.
  2121. .. rst-class:: classref-item-separator
  2122. ----
  2123. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument:
  2124. .. rst-class:: classref-property
  2125. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_call_argument** = ``0``
  2126. 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.
  2127. .. rst-class:: classref-item-separator
  2128. ----
  2129. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast:
  2130. .. rst-class:: classref-property
  2131. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_cast** = ``0``
  2132. When set to ``warn`` or ``error``, produces a warning or an error respectively when performing an unsafe cast.
  2133. .. rst-class:: classref-item-separator
  2134. ----
  2135. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access:
  2136. .. rst-class:: classref-property
  2137. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_method_access** = ``0``
  2138. 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.
  2139. .. rst-class:: classref-item-separator
  2140. ----
  2141. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access:
  2142. .. rst-class:: classref-property
  2143. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_property_access** = ``0``
  2144. 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.
  2145. .. rst-class:: classref-item-separator
  2146. ----
  2147. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return:
  2148. .. rst-class:: classref-property
  2149. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_void_return** = ``1``
  2150. 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``.
  2151. .. rst-class:: classref-item-separator
  2152. ----
  2153. .. _class_ProjectSettings_property_debug/gdscript/warnings/untyped_declaration:
  2154. .. rst-class:: classref-property
  2155. :ref:`int<class_int>` **debug/gdscript/warnings/untyped_declaration** = ``0``
  2156. 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.
  2157. .. rst-class:: classref-item-separator
  2158. ----
  2159. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant:
  2160. .. rst-class:: classref-property
  2161. :ref:`int<class_int>` **debug/gdscript/warnings/unused_local_constant** = ``1``
  2162. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local constant is never used.
  2163. .. rst-class:: classref-item-separator
  2164. ----
  2165. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter:
  2166. .. rst-class:: classref-property
  2167. :ref:`int<class_int>` **debug/gdscript/warnings/unused_parameter** = ``1``
  2168. When set to ``warn`` or ``error``, produces a warning or an error respectively when a function parameter is never used.
  2169. .. rst-class:: classref-item-separator
  2170. ----
  2171. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable:
  2172. .. rst-class:: classref-property
  2173. :ref:`int<class_int>` **debug/gdscript/warnings/unused_private_class_variable** = ``1``
  2174. When set to ``warn`` or ``error``, produces a warning or an error respectively when a private member variable is never used.
  2175. .. rst-class:: classref-item-separator
  2176. ----
  2177. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_signal:
  2178. .. rst-class:: classref-property
  2179. :ref:`int<class_int>` **debug/gdscript/warnings/unused_signal** = ``1``
  2180. When set to ``warn`` or ``error``, produces a warning or an error respectively when a signal is declared but never emitted.
  2181. .. rst-class:: classref-item-separator
  2182. ----
  2183. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_variable:
  2184. .. rst-class:: classref-property
  2185. :ref:`int<class_int>` **debug/gdscript/warnings/unused_variable** = ``1``
  2186. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local variable is unused.
  2187. .. rst-class:: classref-item-separator
  2188. ----
  2189. .. _class_ProjectSettings_property_debug/settings/crash_handler/message:
  2190. .. rst-class:: classref-property
  2191. :ref:`String<class_String>` **debug/settings/crash_handler/message** = ``"Please include this when reporting the bug to the project developer."``
  2192. 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.
  2193. .. rst-class:: classref-item-separator
  2194. ----
  2195. .. _class_ProjectSettings_property_debug/settings/crash_handler/message.editor:
  2196. .. rst-class:: classref-property
  2197. :ref:`String<class_String>` **debug/settings/crash_handler/message.editor** = ``"Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"``
  2198. 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.
  2199. .. rst-class:: classref-item-separator
  2200. ----
  2201. .. _class_ProjectSettings_property_debug/settings/gdscript/max_call_stack:
  2202. .. rst-class:: classref-property
  2203. :ref:`int<class_int>` **debug/settings/gdscript/max_call_stack** = ``1024``
  2204. Maximum call stack allowed for debugging GDScript.
  2205. .. rst-class:: classref-item-separator
  2206. ----
  2207. .. _class_ProjectSettings_property_debug/settings/profiler/max_functions:
  2208. .. rst-class:: classref-property
  2209. :ref:`int<class_int>` **debug/settings/profiler/max_functions** = ``16384``
  2210. Maximum number of functions per frame allowed when profiling.
  2211. .. rst-class:: classref-item-separator
  2212. ----
  2213. .. _class_ProjectSettings_property_debug/settings/stdout/print_fps:
  2214. .. rst-class:: classref-property
  2215. :ref:`bool<class_bool>` **debug/settings/stdout/print_fps** = ``false``
  2216. Print frames per second to standard output every second.
  2217. .. rst-class:: classref-item-separator
  2218. ----
  2219. .. _class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile:
  2220. .. rst-class:: classref-property
  2221. :ref:`bool<class_bool>` **debug/settings/stdout/print_gpu_profile** = ``false``
  2222. 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.
  2223. .. rst-class:: classref-item-separator
  2224. ----
  2225. .. _class_ProjectSettings_property_debug/settings/stdout/verbose_stdout:
  2226. .. rst-class:: classref-property
  2227. :ref:`bool<class_bool>` **debug/settings/stdout/verbose_stdout** = ``false``
  2228. 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>`.
  2229. .. rst-class:: classref-item-separator
  2230. ----
  2231. .. _class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded:
  2232. .. rst-class:: classref-property
  2233. :ref:`bool<class_bool>` **debug/shader_language/warnings/device_limit_exceeded** = ``true``
  2234. 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.
  2235. .. rst-class:: classref-item-separator
  2236. ----
  2237. .. _class_ProjectSettings_property_debug/shader_language/warnings/enable:
  2238. .. rst-class:: classref-property
  2239. :ref:`bool<class_bool>` **debug/shader_language/warnings/enable** = ``true``
  2240. If ``true``, enables specific shader warnings (see ``debug/shader_language/warnings/*`` settings). If ``false``, disables all shader warnings.
  2241. .. rst-class:: classref-item-separator
  2242. ----
  2243. .. _class_ProjectSettings_property_debug/shader_language/warnings/float_comparison:
  2244. .. rst-class:: classref-property
  2245. :ref:`bool<class_bool>` **debug/shader_language/warnings/float_comparison** = ``true``
  2246. When set to ``true``, produces a warning when two floating point numbers are compared directly with the ``==`` operator or the ``!=`` operator.
  2247. .. rst-class:: classref-item-separator
  2248. ----
  2249. .. _class_ProjectSettings_property_debug/shader_language/warnings/formatting_error:
  2250. .. rst-class:: classref-property
  2251. :ref:`bool<class_bool>` **debug/shader_language/warnings/formatting_error** = ``true``
  2252. 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.
  2253. .. rst-class:: classref-item-separator
  2254. ----
  2255. .. _class_ProjectSettings_property_debug/shader_language/warnings/treat_warnings_as_errors:
  2256. .. rst-class:: classref-property
  2257. :ref:`bool<class_bool>` **debug/shader_language/warnings/treat_warnings_as_errors** = ``false``
  2258. When set to ``true``, warnings are treated as errors.
  2259. .. rst-class:: classref-item-separator
  2260. ----
  2261. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_constant:
  2262. .. rst-class:: classref-property
  2263. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_constant** = ``true``
  2264. When set to ``true``, produces a warning when a constant is never used.
  2265. .. rst-class:: classref-item-separator
  2266. ----
  2267. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_function:
  2268. .. rst-class:: classref-property
  2269. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_function** = ``true``
  2270. When set to ``true``, produces a warning when a function is never used.
  2271. .. rst-class:: classref-item-separator
  2272. ----
  2273. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable:
  2274. .. rst-class:: classref-property
  2275. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_local_variable** = ``true``
  2276. When set to ``true``, produces a warning when a local variable is never used.
  2277. .. rst-class:: classref-item-separator
  2278. ----
  2279. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_struct:
  2280. .. rst-class:: classref-property
  2281. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_struct** = ``true``
  2282. When set to ``true``, produces a warning when a struct is never used.
  2283. .. rst-class:: classref-item-separator
  2284. ----
  2285. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform:
  2286. .. rst-class:: classref-property
  2287. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_uniform** = ``true``
  2288. When set to ``true``, produces a warning when a uniform is never used.
  2289. .. rst-class:: classref-item-separator
  2290. ----
  2291. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_varying:
  2292. .. rst-class:: classref-property
  2293. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_varying** = ``true``
  2294. When set to ``true``, produces a warning when a varying is never used.
  2295. .. rst-class:: classref-item-separator
  2296. ----
  2297. .. _class_ProjectSettings_property_debug/shapes/avoidance/agents_radius_color:
  2298. .. rst-class:: classref-property
  2299. :ref:`Color<class_Color>` **debug/shapes/avoidance/agents_radius_color** = ``Color(1, 1, 0, 0.25)``
  2300. Color of the avoidance agents radius, visible when "Visible Avoidance" is enabled in the Debug menu.
  2301. .. rst-class:: classref-item-separator
  2302. ----
  2303. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius:
  2304. .. rst-class:: classref-property
  2305. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_agents_radius** = ``true``
  2306. If enabled, displays avoidance agents radius when "Visible Avoidance" is enabled in the Debug menu.
  2307. .. rst-class:: classref-item-separator
  2308. ----
  2309. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius:
  2310. .. rst-class:: classref-property
  2311. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_obstacles_radius** = ``true``
  2312. If enabled, displays avoidance obstacles radius when "Visible Avoidance" is enabled in the Debug menu.
  2313. .. rst-class:: classref-item-separator
  2314. ----
  2315. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static:
  2316. .. rst-class:: classref-property
  2317. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_obstacles_static** = ``true``
  2318. If enabled, displays static avoidance obstacles when "Visible Avoidance" is enabled in the Debug menu.
  2319. .. rst-class:: classref-item-separator
  2320. ----
  2321. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_radius_color:
  2322. .. rst-class:: classref-property
  2323. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_radius_color** = ``Color(1, 0.5, 0, 0.25)``
  2324. Color of the avoidance obstacles radius, visible when "Visible Avoidance" is enabled in the Debug menu.
  2325. .. rst-class:: classref-item-separator
  2326. ----
  2327. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushin_color:
  2328. .. rst-class:: classref-property
  2329. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_edge_pushin_color** = ``Color(1, 0, 0, 1)``
  2330. 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.
  2331. .. rst-class:: classref-item-separator
  2332. ----
  2333. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushout_color:
  2334. .. rst-class:: classref-property
  2335. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_edge_pushout_color** = ``Color(1, 1, 0, 1)``
  2336. 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.
  2337. .. rst-class:: classref-item-separator
  2338. ----
  2339. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushin_color:
  2340. .. rst-class:: classref-property
  2341. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_face_pushin_color** = ``Color(1, 0, 0, 0)``
  2342. 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.
  2343. .. rst-class:: classref-item-separator
  2344. ----
  2345. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushout_color:
  2346. .. rst-class:: classref-property
  2347. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_face_pushout_color** = ``Color(1, 1, 0, 0.5)``
  2348. 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.
  2349. .. rst-class:: classref-item-separator
  2350. ----
  2351. .. _class_ProjectSettings_property_debug/shapes/collision/contact_color:
  2352. .. rst-class:: classref-property
  2353. :ref:`Color<class_Color>` **debug/shapes/collision/contact_color** = ``Color(1, 0.2, 0.1, 0.8)``
  2354. Color of the contact points between collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu.
  2355. .. rst-class:: classref-item-separator
  2356. ----
  2357. .. _class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines:
  2358. .. rst-class:: classref-property
  2359. :ref:`bool<class_bool>` **debug/shapes/collision/draw_2d_outlines** = ``true``
  2360. Sets whether 2D physics will display collision outlines in game when "Visible Collision Shapes" is enabled in the Debug menu.
  2361. .. rst-class:: classref-item-separator
  2362. ----
  2363. .. _class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed:
  2364. .. rst-class:: classref-property
  2365. :ref:`int<class_int>` **debug/shapes/collision/max_contacts_displayed** = ``10000``
  2366. Maximum number of contact points between collision shapes to display when "Visible Collision Shapes" is enabled in the Debug menu.
  2367. .. rst-class:: classref-item-separator
  2368. ----
  2369. .. _class_ProjectSettings_property_debug/shapes/collision/shape_color:
  2370. .. rst-class:: classref-property
  2371. :ref:`Color<class_Color>` **debug/shapes/collision/shape_color** = ``Color(0, 0.6, 0.7, 0.42)``
  2372. Color of the collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu.
  2373. .. rst-class:: classref-item-separator
  2374. ----
  2375. .. _class_ProjectSettings_property_debug/shapes/navigation/agent_path_color:
  2376. .. rst-class:: classref-property
  2377. :ref:`Color<class_Color>` **debug/shapes/navigation/agent_path_color** = ``Color(1, 0, 0, 1)``
  2378. Color to display enabled navigation agent paths when an agent has debug enabled.
  2379. .. rst-class:: classref-item-separator
  2380. ----
  2381. .. _class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size:
  2382. .. rst-class:: classref-property
  2383. :ref:`float<class_float>` **debug/shapes/navigation/agent_path_point_size** = ``4.0``
  2384. Rasterized size (pixel) used to render navigation agent path points when an agent has debug enabled.
  2385. .. rst-class:: classref-item-separator
  2386. ----
  2387. .. _class_ProjectSettings_property_debug/shapes/navigation/edge_connection_color:
  2388. .. rst-class:: classref-property
  2389. :ref:`Color<class_Color>` **debug/shapes/navigation/edge_connection_color** = ``Color(1, 0, 1, 1)``
  2390. Color to display edge connections between navigation regions, visible when "Visible Navigation" is enabled in the Debug menu.
  2391. .. rst-class:: classref-item-separator
  2392. ----
  2393. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths:
  2394. .. rst-class:: classref-property
  2395. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_agent_paths** = ``true``
  2396. If enabled, displays navigation agent paths when an agent has debug enabled.
  2397. .. rst-class:: classref-item-separator
  2398. ----
  2399. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray:
  2400. .. rst-class:: classref-property
  2401. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_agent_paths_xray** = ``true``
  2402. If enabled, displays navigation agent paths through geometry when an agent has debug enabled.
  2403. .. rst-class:: classref-item-separator
  2404. ----
  2405. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections:
  2406. .. rst-class:: classref-property
  2407. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_connections** = ``true``
  2408. If enabled, displays edge connections between navigation regions when "Visible Navigation" is enabled in the Debug menu.
  2409. .. rst-class:: classref-item-separator
  2410. ----
  2411. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray:
  2412. .. rst-class:: classref-property
  2413. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_connections_xray** = ``true``
  2414. If enabled, displays edge connections between navigation regions through geometry when "Visible Navigation" is enabled in the Debug menu.
  2415. .. rst-class:: classref-item-separator
  2416. ----
  2417. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines:
  2418. .. rst-class:: classref-property
  2419. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_lines** = ``true``
  2420. If enabled, displays navigation mesh polygon edges when "Visible Navigation" is enabled in the Debug menu.
  2421. .. rst-class:: classref-item-separator
  2422. ----
  2423. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray:
  2424. .. rst-class:: classref-property
  2425. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_lines_xray** = ``true``
  2426. If enabled, displays navigation mesh polygon edges through geometry when "Visible Navigation" is enabled in the Debug menu.
  2427. .. rst-class:: classref-item-separator
  2428. ----
  2429. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_geometry_face_random_color:
  2430. .. rst-class:: classref-property
  2431. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_geometry_face_random_color** = ``true``
  2432. If enabled, colorizes each navigation mesh polygon face with a random color when "Visible Navigation" is enabled in the Debug menu.
  2433. .. rst-class:: classref-item-separator
  2434. ----
  2435. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections:
  2436. .. rst-class:: classref-property
  2437. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_link_connections** = ``true``
  2438. If enabled, displays navigation link connections when "Visible Navigation" is enabled in the Debug menu.
  2439. .. rst-class:: classref-item-separator
  2440. ----
  2441. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray:
  2442. .. rst-class:: classref-property
  2443. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_link_connections_xray** = ``true``
  2444. If enabled, displays navigation link connections through geometry when "Visible Navigation" is enabled in the Debug menu.
  2445. .. rst-class:: classref-item-separator
  2446. ----
  2447. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_color:
  2448. .. rst-class:: classref-property
  2449. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_edge_color** = ``Color(0.5, 1, 1, 1)``
  2450. Color to display enabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu.
  2451. .. rst-class:: classref-item-separator
  2452. ----
  2453. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_disabled_color:
  2454. .. rst-class:: classref-property
  2455. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_edge_disabled_color** = ``Color(0.5, 0.5, 0.5, 1)``
  2456. Color to display disabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu.
  2457. .. rst-class:: classref-item-separator
  2458. ----
  2459. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_face_color:
  2460. .. rst-class:: classref-property
  2461. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_face_color** = ``Color(0.5, 1, 1, 0.4)``
  2462. Color to display enabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu.
  2463. .. rst-class:: classref-item-separator
  2464. ----
  2465. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_face_disabled_color:
  2466. .. rst-class:: classref-property
  2467. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_face_disabled_color** = ``Color(0.5, 0.5, 0.5, 0.4)``
  2468. Color to display disabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu.
  2469. .. rst-class:: classref-item-separator
  2470. ----
  2471. .. _class_ProjectSettings_property_debug/shapes/navigation/link_connection_color:
  2472. .. rst-class:: classref-property
  2473. :ref:`Color<class_Color>` **debug/shapes/navigation/link_connection_color** = ``Color(1, 0.5, 1, 1)``
  2474. Color to use to display navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu.
  2475. .. rst-class:: classref-item-separator
  2476. ----
  2477. .. _class_ProjectSettings_property_debug/shapes/navigation/link_connection_disabled_color:
  2478. .. rst-class:: classref-property
  2479. :ref:`Color<class_Color>` **debug/shapes/navigation/link_connection_disabled_color** = ``Color(0.5, 0.5, 0.5, 1)``
  2480. Color to use to display disabled navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu.
  2481. .. rst-class:: classref-item-separator
  2482. ----
  2483. .. _class_ProjectSettings_property_debug/shapes/paths/geometry_color:
  2484. .. rst-class:: classref-property
  2485. :ref:`Color<class_Color>` **debug/shapes/paths/geometry_color** = ``Color(0.1, 1, 0.7, 0.4)``
  2486. Color of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu.
  2487. .. rst-class:: classref-item-separator
  2488. ----
  2489. .. _class_ProjectSettings_property_debug/shapes/paths/geometry_width:
  2490. .. rst-class:: classref-property
  2491. :ref:`float<class_float>` **debug/shapes/paths/geometry_width** = ``2.0``
  2492. Line width of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu.
  2493. .. rst-class:: classref-item-separator
  2494. ----
  2495. .. _class_ProjectSettings_property_display/mouse_cursor/custom_image:
  2496. .. rst-class:: classref-property
  2497. :ref:`String<class_String>` **display/mouse_cursor/custom_image** = ``""``
  2498. Custom image for the mouse cursor (limited to 256×256).
  2499. .. rst-class:: classref-item-separator
  2500. ----
  2501. .. _class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot:
  2502. .. rst-class:: classref-property
  2503. :ref:`Vector2<class_Vector2>` **display/mouse_cursor/custom_image_hotspot** = ``Vector2(0, 0)``
  2504. Hotspot for the custom mouse cursor image.
  2505. .. rst-class:: classref-item-separator
  2506. ----
  2507. .. _class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset:
  2508. .. rst-class:: classref-property
  2509. :ref:`Vector2<class_Vector2>` **display/mouse_cursor/tooltip_position_offset** = ``Vector2(10, 10)``
  2510. Position offset for tooltips, relative to the mouse cursor's hotspot.
  2511. .. rst-class:: classref-item-separator
  2512. ----
  2513. .. _class_ProjectSettings_property_display/window/dpi/allow_hidpi:
  2514. .. rst-class:: classref-property
  2515. :ref:`bool<class_bool>` **display/window/dpi/allow_hidpi** = ``true``
  2516. 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.
  2517. \ **Note:** This setting has no effect on Linux as DPI-awareness fallbacks are not supported there.
  2518. .. rst-class:: classref-item-separator
  2519. ----
  2520. .. _class_ProjectSettings_property_display/window/energy_saving/keep_screen_on:
  2521. .. rst-class:: classref-property
  2522. :ref:`bool<class_bool>` **display/window/energy_saving/keep_screen_on** = ``true``
  2523. If ``true``, keeps the screen on (even in case of inactivity), so the screensaver does not take over. Works on desktop and mobile platforms.
  2524. .. rst-class:: classref-item-separator
  2525. ----
  2526. .. _class_ProjectSettings_property_display/window/energy_saving/keep_screen_on.editor:
  2527. .. rst-class:: classref-property
  2528. :ref:`bool<class_bool>` **display/window/energy_saving/keep_screen_on.editor** = ``false``
  2529. 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 exported projects in debug or release mode.
  2530. .. rst-class:: classref-item-separator
  2531. ----
  2532. .. _class_ProjectSettings_property_display/window/handheld/orientation:
  2533. .. rst-class:: classref-property
  2534. :ref:`int<class_int>` **display/window/handheld/orientation** = ``0``
  2535. The default screen orientation to use on mobile devices. See :ref:`ScreenOrientation<enum_DisplayServer_ScreenOrientation>` for possible values.
  2536. \ **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.
  2537. .. rst-class:: classref-item-separator
  2538. ----
  2539. .. _class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate:
  2540. .. rst-class:: classref-property
  2541. :ref:`bool<class_bool>` **display/window/ios/allow_high_refresh_rate** = ``true``
  2542. If ``true``, iOS devices that support high refresh rate/"ProMotion" will be allowed to render at up to 120 frames per second.
  2543. .. rst-class:: classref-item-separator
  2544. ----
  2545. .. _class_ProjectSettings_property_display/window/ios/hide_home_indicator:
  2546. .. rst-class:: classref-property
  2547. :ref:`bool<class_bool>` **display/window/ios/hide_home_indicator** = ``true``
  2548. If ``true``, the home indicator is hidden automatically. This only affects iOS devices without a physical home button.
  2549. .. rst-class:: classref-item-separator
  2550. ----
  2551. .. _class_ProjectSettings_property_display/window/ios/hide_status_bar:
  2552. .. rst-class:: classref-property
  2553. :ref:`bool<class_bool>` **display/window/ios/hide_status_bar** = ``true``
  2554. If ``true``, the status bar is hidden while the app is running.
  2555. .. rst-class:: classref-item-separator
  2556. ----
  2557. .. _class_ProjectSettings_property_display/window/ios/suppress_ui_gesture:
  2558. .. rst-class:: classref-property
  2559. :ref:`bool<class_bool>` **display/window/ios/suppress_ui_gesture** = ``true``
  2560. If ``true``, it will require two swipes to access iOS UI that uses gestures.
  2561. \ **Note:** This setting has no effect on the home indicator if ``hide_home_indicator`` is ``true``.
  2562. .. rst-class:: classref-item-separator
  2563. ----
  2564. .. _class_ProjectSettings_property_display/window/per_pixel_transparency/allowed:
  2565. .. rst-class:: classref-property
  2566. :ref:`bool<class_bool>` **display/window/per_pixel_transparency/allowed** = ``false``
  2567. 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>`.
  2568. .. rst-class:: classref-item-separator
  2569. ----
  2570. .. _class_ProjectSettings_property_display/window/size/always_on_top:
  2571. .. rst-class:: classref-property
  2572. :ref:`bool<class_bool>` **display/window/size/always_on_top** = ``false``
  2573. Forces the main window to be always on top.
  2574. \ **Note:** This setting is ignored on iOS, Android, and Web.
  2575. .. rst-class:: classref-item-separator
  2576. ----
  2577. .. _class_ProjectSettings_property_display/window/size/borderless:
  2578. .. rst-class:: classref-property
  2579. :ref:`bool<class_bool>` **display/window/size/borderless** = ``false``
  2580. Forces the main window to be borderless.
  2581. \ **Note:** This setting is ignored on iOS, Android, and Web.
  2582. .. rst-class:: classref-item-separator
  2583. ----
  2584. .. _class_ProjectSettings_property_display/window/size/extend_to_title:
  2585. .. rst-class:: classref-property
  2586. :ref:`bool<class_bool>` **display/window/size/extend_to_title** = ``false``
  2587. 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.
  2588. \ **Note:** This setting is implemented only on macOS.
  2589. .. rst-class:: classref-item-separator
  2590. ----
  2591. .. _class_ProjectSettings_property_display/window/size/initial_position:
  2592. .. rst-class:: classref-property
  2593. :ref:`Vector2i<class_Vector2i>` **display/window/size/initial_position** = ``Vector2i(0, 0)``
  2594. 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``).
  2595. .. rst-class:: classref-item-separator
  2596. ----
  2597. .. _class_ProjectSettings_property_display/window/size/initial_position_type:
  2598. .. rst-class:: classref-property
  2599. :ref:`int<class_int>` **display/window/size/initial_position_type** = ``1``
  2600. Main window initial position.
  2601. \ ``0`` - "Absolute", :ref:`display/window/size/initial_position<class_ProjectSettings_property_display/window/size/initial_position>` is used to set window position.
  2602. \ ``1`` - "Primary Screen Center".
  2603. \ ``2`` - "Other Screen Center", :ref:`display/window/size/initial_screen<class_ProjectSettings_property_display/window/size/initial_screen>` is used to set the screen.
  2604. .. rst-class:: classref-item-separator
  2605. ----
  2606. .. _class_ProjectSettings_property_display/window/size/initial_screen:
  2607. .. rst-class:: classref-property
  2608. :ref:`int<class_int>` **display/window/size/initial_screen** = ``0``
  2609. 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``).
  2610. .. rst-class:: classref-item-separator
  2611. ----
  2612. .. _class_ProjectSettings_property_display/window/size/mode:
  2613. .. rst-class:: classref-property
  2614. :ref:`int<class_int>` **display/window/size/mode** = ``0``
  2615. Main window mode. See :ref:`WindowMode<enum_DisplayServer_WindowMode>` for possible values and how each mode behaves.
  2616. .. rst-class:: classref-item-separator
  2617. ----
  2618. .. _class_ProjectSettings_property_display/window/size/no_focus:
  2619. .. rst-class:: classref-property
  2620. :ref:`bool<class_bool>` **display/window/size/no_focus** = ``false``
  2621. Main window can't be focused. No-focus window will ignore all input, except mouse clicks.
  2622. .. rst-class:: classref-item-separator
  2623. ----
  2624. .. _class_ProjectSettings_property_display/window/size/resizable:
  2625. .. rst-class:: classref-property
  2626. :ref:`bool<class_bool>` **display/window/size/resizable** = ``true``
  2627. Allows the window to be resizable by default.
  2628. \ **Note:** This setting is ignored on iOS.
  2629. .. rst-class:: classref-item-separator
  2630. ----
  2631. .. _class_ProjectSettings_property_display/window/size/transparent:
  2632. .. rst-class:: classref-property
  2633. :ref:`bool<class_bool>` **display/window/size/transparent** = ``false``
  2634. 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>`.
  2635. \ **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)``.
  2636. \ **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``.
  2637. .. rst-class:: classref-item-separator
  2638. ----
  2639. .. _class_ProjectSettings_property_display/window/size/viewport_height:
  2640. .. rst-class:: classref-property
  2641. :ref:`int<class_int>` **display/window/size/viewport_height** = ``648``
  2642. 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>`.
  2643. .. rst-class:: classref-item-separator
  2644. ----
  2645. .. _class_ProjectSettings_property_display/window/size/viewport_width:
  2646. .. rst-class:: classref-property
  2647. :ref:`int<class_int>` **display/window/size/viewport_width** = ``1152``
  2648. 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>`.
  2649. .. rst-class:: classref-item-separator
  2650. ----
  2651. .. _class_ProjectSettings_property_display/window/size/window_height_override:
  2652. .. rst-class:: classref-property
  2653. :ref:`int<class_int>` **display/window/size/window_height_override** = ``0``
  2654. 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>`.
  2655. \ **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.
  2656. .. rst-class:: classref-item-separator
  2657. ----
  2658. .. _class_ProjectSettings_property_display/window/size/window_width_override:
  2659. .. rst-class:: classref-property
  2660. :ref:`int<class_int>` **display/window/size/window_width_override** = ``0``
  2661. 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>`.
  2662. \ **Note:** By default, or when set to ``0``, the initial window width is the viewport :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>`. This setting is ignored on iOS, Android, and Web.
  2663. .. rst-class:: classref-item-separator
  2664. ----
  2665. .. _class_ProjectSettings_property_display/window/stretch/aspect:
  2666. .. rst-class:: classref-property
  2667. :ref:`String<class_String>` **display/window/stretch/aspect** = ``"keep"``
  2668. .. container:: contribute
  2669. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2670. .. rst-class:: classref-item-separator
  2671. ----
  2672. .. _class_ProjectSettings_property_display/window/stretch/mode:
  2673. .. rst-class:: classref-property
  2674. :ref:`String<class_String>` **display/window/stretch/mode** = ``"disabled"``
  2675. Defines how the base size is stretched to fit the resolution of the window or screen.
  2676. \ **"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.
  2677. \ **"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).
  2678. \ **"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.
  2679. .. rst-class:: classref-item-separator
  2680. ----
  2681. .. _class_ProjectSettings_property_display/window/stretch/scale:
  2682. .. rst-class:: classref-property
  2683. :ref:`float<class_float>` **display/window/stretch/scale** = ``1.0``
  2684. 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.
  2685. .. rst-class:: classref-item-separator
  2686. ----
  2687. .. _class_ProjectSettings_property_display/window/stretch/scale_mode:
  2688. .. rst-class:: classref-property
  2689. :ref:`String<class_String>` **display/window/stretch/scale_mode** = ``"fractional"``
  2690. 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>`.
  2691. .. rst-class:: classref-item-separator
  2692. ----
  2693. .. _class_ProjectSettings_property_display/window/subwindows/embed_subwindows:
  2694. .. rst-class:: classref-property
  2695. :ref:`bool<class_bool>` **display/window/subwindows/embed_subwindows** = ``true``
  2696. If ``true`` subwindows are embedded in the main window.
  2697. .. rst-class:: classref-item-separator
  2698. ----
  2699. .. _class_ProjectSettings_property_display/window/vsync/vsync_mode:
  2700. .. rst-class:: classref-property
  2701. :ref:`int<class_int>` **display/window/vsync/vsync_mode** = ``1``
  2702. Sets the V-Sync mode for the main game window.
  2703. See :ref:`VSyncMode<enum_DisplayServer_VSyncMode>` for possible values and how they affect the behavior of your application.
  2704. Depending on the platform and used renderer, the engine will fall back to **Enabled** if the desired mode is not supported.
  2705. \ **Note:** V-Sync modes other than **Enabled** are only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  2706. \ **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.
  2707. .. rst-class:: classref-item-separator
  2708. ----
  2709. .. _class_ProjectSettings_property_dotnet/project/assembly_name:
  2710. .. rst-class:: classref-property
  2711. :ref:`String<class_String>` **dotnet/project/assembly_name** = ``""``
  2712. 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.
  2713. .. rst-class:: classref-item-separator
  2714. ----
  2715. .. _class_ProjectSettings_property_dotnet/project/assembly_reload_attempts:
  2716. .. rst-class:: classref-property
  2717. :ref:`int<class_int>` **dotnet/project/assembly_reload_attempts** = ``3``
  2718. 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.
  2719. .. rst-class:: classref-item-separator
  2720. ----
  2721. .. _class_ProjectSettings_property_dotnet/project/solution_directory:
  2722. .. rst-class:: classref-property
  2723. :ref:`String<class_String>` **dotnet/project/solution_directory** = ``""``
  2724. 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.
  2725. 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.
  2726. .. rst-class:: classref-item-separator
  2727. ----
  2728. .. _class_ProjectSettings_property_editor/export/convert_text_resources_to_binary:
  2729. .. rst-class:: classref-property
  2730. :ref:`bool<class_bool>` **editor/export/convert_text_resources_to_binary** = ``true``
  2731. If ``true``, text resources are converted to a binary format on export. This decreases file sizes and speeds up loading slightly.
  2732. \ **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``.
  2733. .. rst-class:: classref-item-separator
  2734. ----
  2735. .. _class_ProjectSettings_property_editor/import/reimport_missing_imported_files:
  2736. .. rst-class:: classref-property
  2737. :ref:`bool<class_bool>` **editor/import/reimport_missing_imported_files** = ``true``
  2738. .. container:: contribute
  2739. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2740. .. rst-class:: classref-item-separator
  2741. ----
  2742. .. _class_ProjectSettings_property_editor/import/use_multiple_threads:
  2743. .. rst-class:: classref-property
  2744. :ref:`bool<class_bool>` **editor/import/use_multiple_threads** = ``true``
  2745. If ``true`` importing of resources is run on multiple threads.
  2746. .. rst-class:: classref-item-separator
  2747. ----
  2748. .. _class_ProjectSettings_property_editor/movie_writer/disable_vsync:
  2749. .. rst-class:: classref-property
  2750. :ref:`bool<class_bool>` **editor/movie_writer/disable_vsync** = ``false``
  2751. 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.
  2752. \ **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.
  2753. .. rst-class:: classref-item-separator
  2754. ----
  2755. .. _class_ProjectSettings_property_editor/movie_writer/fps:
  2756. .. rst-class:: classref-property
  2757. :ref:`int<class_int>` **editor/movie_writer/fps** = ``60``
  2758. 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.
  2759. This can be specified manually on the command line using the ``--fixed-fps <fps>`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  2760. .. rst-class:: classref-item-separator
  2761. ----
  2762. .. _class_ProjectSettings_property_editor/movie_writer/mix_rate:
  2763. .. rst-class:: classref-property
  2764. :ref:`int<class_int>` **editor/movie_writer/mix_rate** = ``48000``
  2765. 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.
  2766. .. rst-class:: classref-item-separator
  2767. ----
  2768. .. _class_ProjectSettings_property_editor/movie_writer/mjpeg_quality:
  2769. .. rst-class:: classref-property
  2770. :ref:`float<class_float>` **editor/movie_writer/mjpeg_quality** = ``0.75``
  2771. 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.
  2772. \ **Note:** This does not affect the audio quality or writing PNG image sequences.
  2773. .. rst-class:: classref-item-separator
  2774. ----
  2775. .. _class_ProjectSettings_property_editor/movie_writer/movie_file:
  2776. .. rst-class:: classref-property
  2777. :ref:`String<class_String>` **editor/movie_writer/movie_file** = ``""``
  2778. The output path for the movie. The file extension determines the :ref:`MovieWriter<class_MovieWriter>` that will be used.
  2779. Godot has 2 built-in :ref:`MovieWriter<class_MovieWriter>`\ s:
  2780. - 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.
  2781. - 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.
  2782. 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.
  2783. 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``.
  2784. .. rst-class:: classref-item-separator
  2785. ----
  2786. .. _class_ProjectSettings_property_editor/movie_writer/speaker_mode:
  2787. .. rst-class:: classref-property
  2788. :ref:`int<class_int>` **editor/movie_writer/speaker_mode** = ``0``
  2789. The speaker mode to use in the recorded audio when writing a movie. See :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` for possible values.
  2790. .. rst-class:: classref-item-separator
  2791. ----
  2792. .. _class_ProjectSettings_property_editor/naming/default_signal_callback_name:
  2793. .. rst-class:: classref-property
  2794. :ref:`String<class_String>` **editor/naming/default_signal_callback_name** = ``"_on_{node_name}_{signal_name}"``
  2795. 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}``.
  2796. .. rst-class:: classref-item-separator
  2797. ----
  2798. .. _class_ProjectSettings_property_editor/naming/default_signal_callback_to_self_name:
  2799. .. rst-class:: classref-property
  2800. :ref:`String<class_String>` **editor/naming/default_signal_callback_to_self_name** = ``"_on_{signal_name}"``
  2801. 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}``.
  2802. .. rst-class:: classref-item-separator
  2803. ----
  2804. .. _class_ProjectSettings_property_editor/naming/node_name_casing:
  2805. .. rst-class:: classref-property
  2806. :ref:`int<class_int>` **editor/naming/node_name_casing** = ``0``
  2807. When creating node names automatically, set the type of casing in this project. This is mostly an editor setting.
  2808. .. rst-class:: classref-item-separator
  2809. ----
  2810. .. _class_ProjectSettings_property_editor/naming/node_name_num_separator:
  2811. .. rst-class:: classref-property
  2812. :ref:`int<class_int>` **editor/naming/node_name_num_separator** = ``0``
  2813. What to use to separate node name from number. This is mostly an editor setting.
  2814. .. rst-class:: classref-item-separator
  2815. ----
  2816. .. _class_ProjectSettings_property_editor/naming/scene_name_casing:
  2817. .. rst-class:: classref-property
  2818. :ref:`int<class_int>` **editor/naming/scene_name_casing** = ``2``
  2819. When generating file names from scene root node, set the type of casing in this project. This is mostly an editor setting.
  2820. .. rst-class:: classref-item-separator
  2821. ----
  2822. .. _class_ProjectSettings_property_editor/run/main_run_args:
  2823. .. rst-class:: classref-property
  2824. :ref:`String<class_String>` **editor/run/main_run_args** = ``""``
  2825. The command-line arguments to append to Godot's own command line when running the project. This doesn't affect the editor itself.
  2826. 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.
  2827. For example, this can be used to force the project to run on the dedicated GPU in a NVIDIA Optimus system on Linux:
  2828. ::
  2829. prime-run %command%
  2830. .. rst-class:: classref-item-separator
  2831. ----
  2832. .. _class_ProjectSettings_property_editor/script/search_in_file_extensions:
  2833. .. rst-class:: classref-property
  2834. :ref:`PackedStringArray<class_PackedStringArray>` **editor/script/search_in_file_extensions** = ``PackedStringArray("gd", "gdshader")``
  2835. 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.
  2836. .. rst-class:: classref-item-separator
  2837. ----
  2838. .. _class_ProjectSettings_property_editor/script/templates_search_path:
  2839. .. rst-class:: classref-property
  2840. :ref:`String<class_String>` **editor/script/templates_search_path** = ``"res://script_templates"``
  2841. 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.
  2842. .. rst-class:: classref-item-separator
  2843. ----
  2844. .. _class_ProjectSettings_property_editor/version_control/autoload_on_startup:
  2845. .. rst-class:: classref-property
  2846. :ref:`bool<class_bool>` **editor/version_control/autoload_on_startup** = ``false``
  2847. .. container:: contribute
  2848. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2849. .. rst-class:: classref-item-separator
  2850. ----
  2851. .. _class_ProjectSettings_property_editor/version_control/plugin_name:
  2852. .. rst-class:: classref-property
  2853. :ref:`String<class_String>` **editor/version_control/plugin_name** = ``""``
  2854. .. container:: contribute
  2855. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2856. .. rst-class:: classref-item-separator
  2857. ----
  2858. .. _class_ProjectSettings_property_filesystem/import/blender/enabled:
  2859. .. rst-class:: classref-property
  2860. :ref:`bool<class_bool>` **filesystem/import/blender/enabled** = ``true``
  2861. If ``true``, Blender 3D scene files with the ``.blend`` extension will be imported by converting them to glTF 2.0.
  2862. This requires configuring a path to a Blender executable in the editor settings at ``filesystem/import/blender/blender3_path``. Blender 3.0 or later is required.
  2863. .. rst-class:: classref-item-separator
  2864. ----
  2865. .. _class_ProjectSettings_property_filesystem/import/blender/enabled.android:
  2866. .. rst-class:: classref-property
  2867. :ref:`bool<class_bool>` **filesystem/import/blender/enabled.android** = ``false``
  2868. 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.
  2869. .. rst-class:: classref-item-separator
  2870. ----
  2871. .. _class_ProjectSettings_property_filesystem/import/blender/enabled.web:
  2872. .. rst-class:: classref-property
  2873. :ref:`bool<class_bool>` **filesystem/import/blender/enabled.web** = ``false``
  2874. 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.
  2875. .. rst-class:: classref-item-separator
  2876. ----
  2877. .. _class_ProjectSettings_property_filesystem/import/fbx/enabled:
  2878. .. rst-class:: classref-property
  2879. :ref:`bool<class_bool>` **filesystem/import/fbx/enabled** = ``true``
  2880. If ``true``, Autodesk FBX 3D scene files with the ``.fbx`` extension will be imported by converting them to glTF 2.0.
  2881. This requires configuring a path to a FBX2glTF executable in the editor settings at ``filesystem/import/fbx/fbx2gltf_path``.
  2882. .. rst-class:: classref-item-separator
  2883. ----
  2884. .. _class_ProjectSettings_property_filesystem/import/fbx/enabled.android:
  2885. .. rst-class:: classref-property
  2886. :ref:`bool<class_bool>` **filesystem/import/fbx/enabled.android** = ``false``
  2887. Override for :ref:`filesystem/import/fbx/enabled<class_ProjectSettings_property_filesystem/import/fbx/enabled>` on Android where FBX2glTF can't easily be accessed from Godot.
  2888. .. rst-class:: classref-item-separator
  2889. ----
  2890. .. _class_ProjectSettings_property_filesystem/import/fbx/enabled.web:
  2891. .. rst-class:: classref-property
  2892. :ref:`bool<class_bool>` **filesystem/import/fbx/enabled.web** = ``false``
  2893. Override for :ref:`filesystem/import/fbx/enabled<class_ProjectSettings_property_filesystem/import/fbx/enabled>` on the Web where FBX2glTF can't easily be accessed from Godot.
  2894. .. rst-class:: classref-item-separator
  2895. ----
  2896. .. _class_ProjectSettings_property_gui/common/default_scroll_deadzone:
  2897. .. rst-class:: classref-property
  2898. :ref:`int<class_int>` **gui/common/default_scroll_deadzone** = ``0``
  2899. 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.
  2900. .. rst-class:: classref-item-separator
  2901. ----
  2902. .. _class_ProjectSettings_property_gui/common/snap_controls_to_pixels:
  2903. .. rst-class:: classref-property
  2904. :ref:`bool<class_bool>` **gui/common/snap_controls_to_pixels** = ``true``
  2905. 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.
  2906. .. rst-class:: classref-item-separator
  2907. ----
  2908. .. _class_ProjectSettings_property_gui/common/swap_cancel_ok:
  2909. .. rst-class:: classref-property
  2910. :ref:`bool<class_bool>` **gui/common/swap_cancel_ok**
  2911. 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.
  2912. \ **Note:** This doesn't affect native dialogs such as the ones spawned by :ref:`DisplayServer.dialog_show<class_DisplayServer_method_dialog_show>`.
  2913. .. rst-class:: classref-item-separator
  2914. ----
  2915. .. _class_ProjectSettings_property_gui/common/text_edit_undo_stack_max_size:
  2916. .. rst-class:: classref-property
  2917. :ref:`int<class_int>` **gui/common/text_edit_undo_stack_max_size** = ``1024``
  2918. Maximum undo/redo history size for :ref:`TextEdit<class_TextEdit>` fields.
  2919. .. rst-class:: classref-item-separator
  2920. ----
  2921. .. _class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling:
  2922. .. rst-class:: classref-property
  2923. :ref:`bool<class_bool>` **gui/fonts/dynamic_fonts/use_oversampling** = ``true``
  2924. .. container:: contribute
  2925. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2926. .. rst-class:: classref-item-separator
  2927. ----
  2928. .. _class_ProjectSettings_property_gui/theme/custom:
  2929. .. rst-class:: classref-property
  2930. :ref:`String<class_String>` **gui/theme/custom** = ``""``
  2931. Path to a custom :ref:`Theme<class_Theme>` resource file to use for the project (``.theme`` or generic ``.tres``/``.res`` extension).
  2932. .. rst-class:: classref-item-separator
  2933. ----
  2934. .. _class_ProjectSettings_property_gui/theme/custom_font:
  2935. .. rst-class:: classref-property
  2936. :ref:`String<class_String>` **gui/theme/custom_font** = ``""``
  2937. Path to a custom :ref:`Font<class_Font>` resource to use as default for all GUI elements of the project.
  2938. .. rst-class:: classref-item-separator
  2939. ----
  2940. .. _class_ProjectSettings_property_gui/theme/default_font_antialiasing:
  2941. .. rst-class:: classref-property
  2942. :ref:`int<class_int>` **gui/theme/default_font_antialiasing** = ``1``
  2943. Font anti-aliasing mode for the default project font. See :ref:`FontFile.antialiasing<class_FontFile_property_antialiasing>`.
  2944. \ **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>`).
  2945. .. rst-class:: classref-item-separator
  2946. ----
  2947. .. _class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps:
  2948. .. rst-class:: classref-property
  2949. :ref:`bool<class_bool>` **gui/theme/default_font_generate_mipmaps** = ``false``
  2950. 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).
  2951. 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.
  2952. \ **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>`).
  2953. .. rst-class:: classref-item-separator
  2954. ----
  2955. .. _class_ProjectSettings_property_gui/theme/default_font_hinting:
  2956. .. rst-class:: classref-property
  2957. :ref:`int<class_int>` **gui/theme/default_font_hinting** = ``1``
  2958. Font hinting mode for the default project font. See :ref:`FontFile.hinting<class_FontFile_property_hinting>`.
  2959. \ **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>`).
  2960. .. rst-class:: classref-item-separator
  2961. ----
  2962. .. _class_ProjectSettings_property_gui/theme/default_font_multichannel_signed_distance_field:
  2963. .. rst-class:: classref-property
  2964. :ref:`bool<class_bool>` **gui/theme/default_font_multichannel_signed_distance_field** = ``false``
  2965. 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).
  2966. 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.
  2967. \ **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>`).
  2968. .. rst-class:: classref-item-separator
  2969. ----
  2970. .. _class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning:
  2971. .. rst-class:: classref-property
  2972. :ref:`int<class_int>` **gui/theme/default_font_subpixel_positioning** = ``1``
  2973. Font glyph subpixel positioning mode for the default project font. See :ref:`FontFile.subpixel_positioning<class_FontFile_property_subpixel_positioning>`.
  2974. \ **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>`).
  2975. .. rst-class:: classref-item-separator
  2976. ----
  2977. .. _class_ProjectSettings_property_gui/theme/default_theme_scale:
  2978. .. rst-class:: classref-property
  2979. :ref:`float<class_float>` **gui/theme/default_theme_scale** = ``1.0``
  2980. The default scale factor for :ref:`Control<class_Control>`\ s, when not overridden by a :ref:`Theme<class_Theme>`.
  2981. \ **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.
  2982. .. rst-class:: classref-item-separator
  2983. ----
  2984. .. _class_ProjectSettings_property_gui/theme/lcd_subpixel_layout:
  2985. .. rst-class:: classref-property
  2986. :ref:`int<class_int>` **gui/theme/lcd_subpixel_layout** = ``1``
  2987. LCD subpixel layout used for font anti-aliasing. See :ref:`FontLCDSubpixelLayout<enum_TextServer_FontLCDSubpixelLayout>`.
  2988. .. rst-class:: classref-item-separator
  2989. ----
  2990. .. _class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time:
  2991. .. rst-class:: classref-property
  2992. :ref:`float<class_float>` **gui/timers/button_shortcut_feedback_highlight_time** = ``0.2``
  2993. 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.
  2994. .. rst-class:: classref-item-separator
  2995. ----
  2996. .. _class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec:
  2997. .. rst-class:: classref-property
  2998. :ref:`int<class_int>` **gui/timers/incremental_search_max_interval_msec** = ``2000``
  2999. Timer setting for incremental search in :ref:`Tree<class_Tree>`, :ref:`ItemList<class_ItemList>`, etc. controls (in milliseconds).
  3000. .. rst-class:: classref-item-separator
  3001. ----
  3002. .. _class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec:
  3003. .. rst-class:: classref-property
  3004. :ref:`float<class_float>` **gui/timers/text_edit_idle_detect_sec** = ``3``
  3005. Timer for detecting idle in :ref:`TextEdit<class_TextEdit>` (in seconds).
  3006. .. rst-class:: classref-item-separator
  3007. ----
  3008. .. _class_ProjectSettings_property_gui/timers/tooltip_delay_sec:
  3009. .. rst-class:: classref-property
  3010. :ref:`float<class_float>` **gui/timers/tooltip_delay_sec** = ``0.5``
  3011. Default delay for tooltips (in seconds).
  3012. .. rst-class:: classref-item-separator
  3013. ----
  3014. .. _class_ProjectSettings_property_input/ui_accept:
  3015. .. rst-class:: classref-property
  3016. :ref:`Dictionary<class_Dictionary>` **input/ui_accept**
  3017. Default :ref:`InputEventAction<class_InputEventAction>` to confirm a focused button, menu or list item, or validate input.
  3018. \ **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.
  3019. .. rst-class:: classref-item-separator
  3020. ----
  3021. .. _class_ProjectSettings_property_input/ui_cancel:
  3022. .. rst-class:: classref-property
  3023. :ref:`Dictionary<class_Dictionary>` **input/ui_cancel**
  3024. Default :ref:`InputEventAction<class_InputEventAction>` to discard a modal or pending input.
  3025. \ **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.
  3026. .. rst-class:: classref-item-separator
  3027. ----
  3028. .. _class_ProjectSettings_property_input/ui_copy:
  3029. .. rst-class:: classref-property
  3030. :ref:`Dictionary<class_Dictionary>` **input/ui_copy**
  3031. Default :ref:`InputEventAction<class_InputEventAction>` to copy a selection to the clipboard.
  3032. \ **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.
  3033. .. rst-class:: classref-item-separator
  3034. ----
  3035. .. _class_ProjectSettings_property_input/ui_cut:
  3036. .. rst-class:: classref-property
  3037. :ref:`Dictionary<class_Dictionary>` **input/ui_cut**
  3038. Default :ref:`InputEventAction<class_InputEventAction>` to cut a selection to the clipboard.
  3039. \ **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.
  3040. .. rst-class:: classref-item-separator
  3041. ----
  3042. .. _class_ProjectSettings_property_input/ui_down:
  3043. .. rst-class:: classref-property
  3044. :ref:`Dictionary<class_Dictionary>` **input/ui_down**
  3045. Default :ref:`InputEventAction<class_InputEventAction>` to move down in the UI.
  3046. \ **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.
  3047. .. rst-class:: classref-item-separator
  3048. ----
  3049. .. _class_ProjectSettings_property_input/ui_end:
  3050. .. rst-class:: classref-property
  3051. :ref:`Dictionary<class_Dictionary>` **input/ui_end**
  3052. 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.
  3053. \ **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.
  3054. .. rst-class:: classref-item-separator
  3055. ----
  3056. .. _class_ProjectSettings_property_input/ui_filedialog_refresh:
  3057. .. rst-class:: classref-property
  3058. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_refresh**
  3059. Default :ref:`InputEventAction<class_InputEventAction>` to refresh the contents of the current directory of a :ref:`FileDialog<class_FileDialog>`.
  3060. \ **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.
  3061. .. rst-class:: classref-item-separator
  3062. ----
  3063. .. _class_ProjectSettings_property_input/ui_filedialog_show_hidden:
  3064. .. rst-class:: classref-property
  3065. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_show_hidden**
  3066. Default :ref:`InputEventAction<class_InputEventAction>` to toggle showing hidden files and directories in a :ref:`FileDialog<class_FileDialog>`.
  3067. \ **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.
  3068. .. rst-class:: classref-item-separator
  3069. ----
  3070. .. _class_ProjectSettings_property_input/ui_filedialog_up_one_level:
  3071. .. rst-class:: classref-property
  3072. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_up_one_level**
  3073. Default :ref:`InputEventAction<class_InputEventAction>` to go up one directory in a :ref:`FileDialog<class_FileDialog>`.
  3074. \ **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.
  3075. .. rst-class:: classref-item-separator
  3076. ----
  3077. .. _class_ProjectSettings_property_input/ui_focus_next:
  3078. .. rst-class:: classref-property
  3079. :ref:`Dictionary<class_Dictionary>` **input/ui_focus_next**
  3080. 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>`.
  3081. \ **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.
  3082. .. rst-class:: classref-item-separator
  3083. ----
  3084. .. _class_ProjectSettings_property_input/ui_focus_prev:
  3085. .. rst-class:: classref-property
  3086. :ref:`Dictionary<class_Dictionary>` **input/ui_focus_prev**
  3087. 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>`.
  3088. \ **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.
  3089. .. rst-class:: classref-item-separator
  3090. ----
  3091. .. _class_ProjectSettings_property_input/ui_graph_delete:
  3092. .. rst-class:: classref-property
  3093. :ref:`Dictionary<class_Dictionary>` **input/ui_graph_delete**
  3094. Default :ref:`InputEventAction<class_InputEventAction>` to delete a :ref:`GraphNode<class_GraphNode>` in a :ref:`GraphEdit<class_GraphEdit>`.
  3095. \ **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.
  3096. .. rst-class:: classref-item-separator
  3097. ----
  3098. .. _class_ProjectSettings_property_input/ui_graph_duplicate:
  3099. .. rst-class:: classref-property
  3100. :ref:`Dictionary<class_Dictionary>` **input/ui_graph_duplicate**
  3101. Default :ref:`InputEventAction<class_InputEventAction>` to duplicate a :ref:`GraphNode<class_GraphNode>` in a :ref:`GraphEdit<class_GraphEdit>`.
  3102. \ **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.
  3103. .. rst-class:: classref-item-separator
  3104. ----
  3105. .. _class_ProjectSettings_property_input/ui_home:
  3106. .. rst-class:: classref-property
  3107. :ref:`Dictionary<class_Dictionary>` **input/ui_home**
  3108. 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.
  3109. \ **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.
  3110. .. rst-class:: classref-item-separator
  3111. ----
  3112. .. _class_ProjectSettings_property_input/ui_left:
  3113. .. rst-class:: classref-property
  3114. :ref:`Dictionary<class_Dictionary>` **input/ui_left**
  3115. Default :ref:`InputEventAction<class_InputEventAction>` to move left in the UI.
  3116. \ **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.
  3117. .. rst-class:: classref-item-separator
  3118. ----
  3119. .. _class_ProjectSettings_property_input/ui_menu:
  3120. .. rst-class:: classref-property
  3121. :ref:`Dictionary<class_Dictionary>` **input/ui_menu**
  3122. Default :ref:`InputEventAction<class_InputEventAction>` to open a context menu in a text field.
  3123. \ **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.
  3124. .. rst-class:: classref-item-separator
  3125. ----
  3126. .. _class_ProjectSettings_property_input/ui_page_down:
  3127. .. rst-class:: classref-property
  3128. :ref:`Dictionary<class_Dictionary>` **input/ui_page_down**
  3129. 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.
  3130. \ **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.
  3131. .. rst-class:: classref-item-separator
  3132. ----
  3133. .. _class_ProjectSettings_property_input/ui_page_up:
  3134. .. rst-class:: classref-property
  3135. :ref:`Dictionary<class_Dictionary>` **input/ui_page_up**
  3136. 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.
  3137. \ **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.
  3138. .. rst-class:: classref-item-separator
  3139. ----
  3140. .. _class_ProjectSettings_property_input/ui_paste:
  3141. .. rst-class:: classref-property
  3142. :ref:`Dictionary<class_Dictionary>` **input/ui_paste**
  3143. Default :ref:`InputEventAction<class_InputEventAction>` to paste from the clipboard.
  3144. \ **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.
  3145. .. rst-class:: classref-item-separator
  3146. ----
  3147. .. _class_ProjectSettings_property_input/ui_redo:
  3148. .. rst-class:: classref-property
  3149. :ref:`Dictionary<class_Dictionary>` **input/ui_redo**
  3150. Default :ref:`InputEventAction<class_InputEventAction>` to redo an undone action.
  3151. \ **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.
  3152. .. rst-class:: classref-item-separator
  3153. ----
  3154. .. _class_ProjectSettings_property_input/ui_right:
  3155. .. rst-class:: classref-property
  3156. :ref:`Dictionary<class_Dictionary>` **input/ui_right**
  3157. Default :ref:`InputEventAction<class_InputEventAction>` to move right in the UI.
  3158. \ **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.
  3159. .. rst-class:: classref-item-separator
  3160. ----
  3161. .. _class_ProjectSettings_property_input/ui_select:
  3162. .. rst-class:: classref-property
  3163. :ref:`Dictionary<class_Dictionary>` **input/ui_select**
  3164. 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>`).
  3165. \ **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.
  3166. .. rst-class:: classref-item-separator
  3167. ----
  3168. .. _class_ProjectSettings_property_input/ui_swap_input_direction:
  3169. .. rst-class:: classref-property
  3170. :ref:`Dictionary<class_Dictionary>` **input/ui_swap_input_direction**
  3171. Default :ref:`InputEventAction<class_InputEventAction>` to swap input direction, i.e. change between left-to-right to right-to-left modes. Affects text-editting controls (:ref:`LineEdit<class_LineEdit>`, :ref:`TextEdit<class_TextEdit>`).
  3172. .. rst-class:: classref-item-separator
  3173. ----
  3174. .. _class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence:
  3175. .. rst-class:: classref-property
  3176. :ref:`Dictionary<class_Dictionary>` **input/ui_text_add_selection_for_next_occurrence**
  3177. 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.
  3178. If no selection is currently active with the last caret in text fields, selects the word currently under the caret.
  3179. The action can be performed sequentially for all occurrences of the selection of the last caret and for all existing carets.
  3180. The viewport is adjusted to the latest newly added caret.
  3181. \ **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.
  3182. .. rst-class:: classref-item-separator
  3183. ----
  3184. .. _class_ProjectSettings_property_input/ui_text_backspace:
  3185. .. rst-class:: classref-property
  3186. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace**
  3187. Default :ref:`InputEventAction<class_InputEventAction>` to delete the character before the text cursor.
  3188. \ **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.
  3189. .. rst-class:: classref-item-separator
  3190. ----
  3191. .. _class_ProjectSettings_property_input/ui_text_backspace_all_to_left:
  3192. .. rst-class:: classref-property
  3193. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_all_to_left**
  3194. Default :ref:`InputEventAction<class_InputEventAction>` to delete **all** text before the text cursor.
  3195. \ **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.
  3196. .. rst-class:: classref-item-separator
  3197. ----
  3198. .. _class_ProjectSettings_property_input/ui_text_backspace_all_to_left.macos:
  3199. .. rst-class:: classref-property
  3200. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_all_to_left.macos**
  3201. macOS specific override for the shortcut to delete all text before the text cursor.
  3202. .. rst-class:: classref-item-separator
  3203. ----
  3204. .. _class_ProjectSettings_property_input/ui_text_backspace_word:
  3205. .. rst-class:: classref-property
  3206. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_word**
  3207. Default :ref:`InputEventAction<class_InputEventAction>` to delete all characters before the cursor up until a whitespace or punctuation character.
  3208. \ **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.
  3209. .. rst-class:: classref-item-separator
  3210. ----
  3211. .. _class_ProjectSettings_property_input/ui_text_backspace_word.macos:
  3212. .. rst-class:: classref-property
  3213. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_word.macos**
  3214. macOS specific override for the shortcut to delete a word.
  3215. .. rst-class:: classref-item-separator
  3216. ----
  3217. .. _class_ProjectSettings_property_input/ui_text_caret_add_above:
  3218. .. rst-class:: classref-property
  3219. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_above**
  3220. Default :ref:`InputEventAction<class_InputEventAction>` to add an additional caret above every caret of a text.
  3221. .. rst-class:: classref-item-separator
  3222. ----
  3223. .. _class_ProjectSettings_property_input/ui_text_caret_add_above.macos:
  3224. .. rst-class:: classref-property
  3225. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_above.macos**
  3226. macOS specific override for the shortcut to add a caret above every caret.
  3227. .. rst-class:: classref-item-separator
  3228. ----
  3229. .. _class_ProjectSettings_property_input/ui_text_caret_add_below:
  3230. .. rst-class:: classref-property
  3231. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_below**
  3232. Default :ref:`InputEventAction<class_InputEventAction>` to add an additional caret below every caret of a text.
  3233. .. rst-class:: classref-item-separator
  3234. ----
  3235. .. _class_ProjectSettings_property_input/ui_text_caret_add_below.macos:
  3236. .. rst-class:: classref-property
  3237. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_below.macos**
  3238. macOS specific override for the shortcut to add a caret below every caret.
  3239. .. rst-class:: classref-item-separator
  3240. ----
  3241. .. _class_ProjectSettings_property_input/ui_text_caret_document_end:
  3242. .. rst-class:: classref-property
  3243. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_end**
  3244. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the end of the text.
  3245. \ **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.
  3246. .. rst-class:: classref-item-separator
  3247. ----
  3248. .. _class_ProjectSettings_property_input/ui_text_caret_document_end.macos:
  3249. .. rst-class:: classref-property
  3250. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_end.macos**
  3251. macOS specific override for the shortcut to move the text cursor to the end of the text.
  3252. .. rst-class:: classref-item-separator
  3253. ----
  3254. .. _class_ProjectSettings_property_input/ui_text_caret_document_start:
  3255. .. rst-class:: classref-property
  3256. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_start**
  3257. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the start of the text.
  3258. \ **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.
  3259. .. rst-class:: classref-item-separator
  3260. ----
  3261. .. _class_ProjectSettings_property_input/ui_text_caret_document_start.macos:
  3262. .. rst-class:: classref-property
  3263. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_start.macos**
  3264. macOS specific override for the shortcut to move the text cursor to the start of the text.
  3265. .. rst-class:: classref-item-separator
  3266. ----
  3267. .. _class_ProjectSettings_property_input/ui_text_caret_down:
  3268. .. rst-class:: classref-property
  3269. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_down**
  3270. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor down.
  3271. \ **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.
  3272. .. rst-class:: classref-item-separator
  3273. ----
  3274. .. _class_ProjectSettings_property_input/ui_text_caret_left:
  3275. .. rst-class:: classref-property
  3276. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_left**
  3277. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor left.
  3278. \ **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.
  3279. .. rst-class:: classref-item-separator
  3280. ----
  3281. .. _class_ProjectSettings_property_input/ui_text_caret_line_end:
  3282. .. rst-class:: classref-property
  3283. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_end**
  3284. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the end of the line.
  3285. \ **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.
  3286. .. rst-class:: classref-item-separator
  3287. ----
  3288. .. _class_ProjectSettings_property_input/ui_text_caret_line_end.macos:
  3289. .. rst-class:: classref-property
  3290. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_end.macos**
  3291. macOS specific override for the shortcut to move the text cursor to the end of the line.
  3292. .. rst-class:: classref-item-separator
  3293. ----
  3294. .. _class_ProjectSettings_property_input/ui_text_caret_line_start:
  3295. .. rst-class:: classref-property
  3296. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_start**
  3297. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the start of the line.
  3298. \ **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.
  3299. .. rst-class:: classref-item-separator
  3300. ----
  3301. .. _class_ProjectSettings_property_input/ui_text_caret_line_start.macos:
  3302. .. rst-class:: classref-property
  3303. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_start.macos**
  3304. macOS specific override for the shortcut to move the text cursor to the start of the line.
  3305. .. rst-class:: classref-item-separator
  3306. ----
  3307. .. _class_ProjectSettings_property_input/ui_text_caret_page_down:
  3308. .. rst-class:: classref-property
  3309. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_page_down**
  3310. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor down one page.
  3311. \ **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.
  3312. .. rst-class:: classref-item-separator
  3313. ----
  3314. .. _class_ProjectSettings_property_input/ui_text_caret_page_up:
  3315. .. rst-class:: classref-property
  3316. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_page_up**
  3317. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor up one page.
  3318. \ **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.
  3319. .. rst-class:: classref-item-separator
  3320. ----
  3321. .. _class_ProjectSettings_property_input/ui_text_caret_right:
  3322. .. rst-class:: classref-property
  3323. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_right**
  3324. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor right.
  3325. \ **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.
  3326. .. rst-class:: classref-item-separator
  3327. ----
  3328. .. _class_ProjectSettings_property_input/ui_text_caret_up:
  3329. .. rst-class:: classref-property
  3330. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_up**
  3331. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor up.
  3332. \ **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.
  3333. .. rst-class:: classref-item-separator
  3334. ----
  3335. .. _class_ProjectSettings_property_input/ui_text_caret_word_left:
  3336. .. rst-class:: classref-property
  3337. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_left**
  3338. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor left to the next whitespace or punctuation.
  3339. \ **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.
  3340. .. rst-class:: classref-item-separator
  3341. ----
  3342. .. _class_ProjectSettings_property_input/ui_text_caret_word_left.macos:
  3343. .. rst-class:: classref-property
  3344. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_left.macos**
  3345. macOS specific override for the shortcut to move the text cursor back one word.
  3346. .. rst-class:: classref-item-separator
  3347. ----
  3348. .. _class_ProjectSettings_property_input/ui_text_caret_word_right:
  3349. .. rst-class:: classref-property
  3350. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_right**
  3351. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor right to the next whitespace or punctuation.
  3352. \ **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.
  3353. .. rst-class:: classref-item-separator
  3354. ----
  3355. .. _class_ProjectSettings_property_input/ui_text_caret_word_right.macos:
  3356. .. rst-class:: classref-property
  3357. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_right.macos**
  3358. macOS specific override for the shortcut to move the text cursor forward one word.
  3359. .. rst-class:: classref-item-separator
  3360. ----
  3361. .. _class_ProjectSettings_property_input/ui_text_clear_carets_and_selection:
  3362. .. rst-class:: classref-property
  3363. :ref:`Dictionary<class_Dictionary>` **input/ui_text_clear_carets_and_selection**
  3364. If there's only one caret active and with a selection, clears the selection.
  3365. In case there's more than one caret active, removes the secondary carets and clears their selections.
  3366. \ **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.
  3367. .. rst-class:: classref-item-separator
  3368. ----
  3369. .. _class_ProjectSettings_property_input/ui_text_completion_accept:
  3370. .. rst-class:: classref-property
  3371. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_accept**
  3372. Default :ref:`InputEventAction<class_InputEventAction>` to accept an autocompetion hint.
  3373. \ **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.
  3374. .. rst-class:: classref-item-separator
  3375. ----
  3376. .. _class_ProjectSettings_property_input/ui_text_completion_query:
  3377. .. rst-class:: classref-property
  3378. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_query**
  3379. Default :ref:`InputEventAction<class_InputEventAction>` to request autocompetion.
  3380. \ **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.
  3381. .. rst-class:: classref-item-separator
  3382. ----
  3383. .. _class_ProjectSettings_property_input/ui_text_completion_replace:
  3384. .. rst-class:: classref-property
  3385. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_replace**
  3386. Default :ref:`InputEventAction<class_InputEventAction>` to accept an autocompetion hint, replacing existing text.
  3387. \ **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.
  3388. .. rst-class:: classref-item-separator
  3389. ----
  3390. .. _class_ProjectSettings_property_input/ui_text_dedent:
  3391. .. rst-class:: classref-property
  3392. :ref:`Dictionary<class_Dictionary>` **input/ui_text_dedent**
  3393. Default :ref:`InputEventAction<class_InputEventAction>` to unindent text.
  3394. \ **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.
  3395. .. rst-class:: classref-item-separator
  3396. ----
  3397. .. _class_ProjectSettings_property_input/ui_text_delete:
  3398. .. rst-class:: classref-property
  3399. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete**
  3400. Default :ref:`InputEventAction<class_InputEventAction>` to delete the character after the text cursor.
  3401. \ **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.
  3402. .. rst-class:: classref-item-separator
  3403. ----
  3404. .. _class_ProjectSettings_property_input/ui_text_delete_all_to_right:
  3405. .. rst-class:: classref-property
  3406. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_all_to_right**
  3407. Default :ref:`InputEventAction<class_InputEventAction>` to delete **all** text after the text cursor.
  3408. \ **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.
  3409. .. rst-class:: classref-item-separator
  3410. ----
  3411. .. _class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos:
  3412. .. rst-class:: classref-property
  3413. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_all_to_right.macos**
  3414. macOS specific override for the shortcut to delete all text after the text cursor.
  3415. .. rst-class:: classref-item-separator
  3416. ----
  3417. .. _class_ProjectSettings_property_input/ui_text_delete_word:
  3418. .. rst-class:: classref-property
  3419. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_word**
  3420. Default :ref:`InputEventAction<class_InputEventAction>` to delete all characters after the cursor up until a whitespace or punctuation character.
  3421. \ **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.
  3422. .. rst-class:: classref-item-separator
  3423. ----
  3424. .. _class_ProjectSettings_property_input/ui_text_delete_word.macos:
  3425. .. rst-class:: classref-property
  3426. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_word.macos**
  3427. macOS specific override for the shortcut to delete a word after the text cursor.
  3428. .. rst-class:: classref-item-separator
  3429. ----
  3430. .. _class_ProjectSettings_property_input/ui_text_indent:
  3431. .. rst-class:: classref-property
  3432. :ref:`Dictionary<class_Dictionary>` **input/ui_text_indent**
  3433. Default :ref:`InputEventAction<class_InputEventAction>` to indent the current line.
  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_text_newline:
  3438. .. rst-class:: classref-property
  3439. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline**
  3440. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line at the position of the text cursor.
  3441. \ **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.
  3442. .. rst-class:: classref-item-separator
  3443. ----
  3444. .. _class_ProjectSettings_property_input/ui_text_newline_above:
  3445. .. rst-class:: classref-property
  3446. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline_above**
  3447. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line before the current one.
  3448. \ **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.
  3449. .. rst-class:: classref-item-separator
  3450. ----
  3451. .. _class_ProjectSettings_property_input/ui_text_newline_blank:
  3452. .. rst-class:: classref-property
  3453. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline_blank**
  3454. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line after the current one.
  3455. \ **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.
  3456. .. rst-class:: classref-item-separator
  3457. ----
  3458. .. _class_ProjectSettings_property_input/ui_text_scroll_down:
  3459. .. rst-class:: classref-property
  3460. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_down**
  3461. Default :ref:`InputEventAction<class_InputEventAction>` to scroll down one line of text.
  3462. \ **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.
  3463. .. rst-class:: classref-item-separator
  3464. ----
  3465. .. _class_ProjectSettings_property_input/ui_text_scroll_down.macos:
  3466. .. rst-class:: classref-property
  3467. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_down.macos**
  3468. macOS specific override for the shortcut to scroll down one line.
  3469. .. rst-class:: classref-item-separator
  3470. ----
  3471. .. _class_ProjectSettings_property_input/ui_text_scroll_up:
  3472. .. rst-class:: classref-property
  3473. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_up**
  3474. Default :ref:`InputEventAction<class_InputEventAction>` to scroll up one line of text.
  3475. \ **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.
  3476. .. rst-class:: classref-item-separator
  3477. ----
  3478. .. _class_ProjectSettings_property_input/ui_text_scroll_up.macos:
  3479. .. rst-class:: classref-property
  3480. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_up.macos**
  3481. macOS specific override for the shortcut to scroll up one line.
  3482. .. rst-class:: classref-item-separator
  3483. ----
  3484. .. _class_ProjectSettings_property_input/ui_text_select_all:
  3485. .. rst-class:: classref-property
  3486. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_all**
  3487. Default :ref:`InputEventAction<class_InputEventAction>` to select all text.
  3488. \ **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.
  3489. .. rst-class:: classref-item-separator
  3490. ----
  3491. .. _class_ProjectSettings_property_input/ui_text_select_word_under_caret:
  3492. .. rst-class:: classref-property
  3493. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_word_under_caret**
  3494. 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.
  3495. \ **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.
  3496. .. rst-class:: classref-item-separator
  3497. ----
  3498. .. _class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos:
  3499. .. rst-class:: classref-property
  3500. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_word_under_caret.macos**
  3501. macOS specific override for the shortcut to select the word currently under the caret.
  3502. .. rst-class:: classref-item-separator
  3503. ----
  3504. .. _class_ProjectSettings_property_input/ui_text_submit:
  3505. .. rst-class:: classref-property
  3506. :ref:`Dictionary<class_Dictionary>` **input/ui_text_submit**
  3507. Default :ref:`InputEventAction<class_InputEventAction>` to submit a text field.
  3508. \ **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.
  3509. .. rst-class:: classref-item-separator
  3510. ----
  3511. .. _class_ProjectSettings_property_input/ui_text_toggle_insert_mode:
  3512. .. rst-class:: classref-property
  3513. :ref:`Dictionary<class_Dictionary>` **input/ui_text_toggle_insert_mode**
  3514. 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.
  3515. \ **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.
  3516. .. rst-class:: classref-item-separator
  3517. ----
  3518. .. _class_ProjectSettings_property_input/ui_undo:
  3519. .. rst-class:: classref-property
  3520. :ref:`Dictionary<class_Dictionary>` **input/ui_undo**
  3521. Default :ref:`InputEventAction<class_InputEventAction>` to undo the most recent action.
  3522. \ **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.
  3523. .. rst-class:: classref-item-separator
  3524. ----
  3525. .. _class_ProjectSettings_property_input/ui_up:
  3526. .. rst-class:: classref-property
  3527. :ref:`Dictionary<class_Dictionary>` **input/ui_up**
  3528. Default :ref:`InputEventAction<class_InputEventAction>` to move up in the UI.
  3529. \ **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.
  3530. .. rst-class:: classref-item-separator
  3531. ----
  3532. .. _class_ProjectSettings_property_input_devices/buffering/agile_event_flushing:
  3533. .. rst-class:: classref-property
  3534. :ref:`bool<class_bool>` **input_devices/buffering/agile_event_flushing** = ``false``
  3535. If ``true``, key/touch/joystick events will be flushed just before every idle and physics frame.
  3536. If ``false``, such events will be flushed only once per process frame, between iterations of the engine.
  3537. 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.
  3538. \ **Note:** Currently implemented only on Android.
  3539. .. rst-class:: classref-item-separator
  3540. ----
  3541. .. _class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior:
  3542. .. rst-class:: classref-property
  3543. :ref:`bool<class_bool>` **input_devices/compatibility/legacy_just_pressed_behavior** = ``false``
  3544. 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.
  3545. If ``false``, no input will be lost.
  3546. \ **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.
  3547. .. rst-class:: classref-item-separator
  3548. ----
  3549. .. _class_ProjectSettings_property_input_devices/pen_tablet/driver:
  3550. .. rst-class:: classref-property
  3551. :ref:`String<class_String>` **input_devices/pen_tablet/driver**
  3552. Specifies the tablet driver to use. If left empty, the default driver will be used.
  3553. \ **Note:** The driver in use can be overridden at runtime via the ``--tablet-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3554. .. rst-class:: classref-item-separator
  3555. ----
  3556. .. _class_ProjectSettings_property_input_devices/pen_tablet/driver.windows:
  3557. .. rst-class:: classref-property
  3558. :ref:`String<class_String>` **input_devices/pen_tablet/driver.windows**
  3559. Override for :ref:`input_devices/pen_tablet/driver<class_ProjectSettings_property_input_devices/pen_tablet/driver>` on Windows.
  3560. .. rst-class:: classref-item-separator
  3561. ----
  3562. .. _class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch:
  3563. .. rst-class:: classref-property
  3564. :ref:`bool<class_bool>` **input_devices/pointing/emulate_mouse_from_touch** = ``true``
  3565. If ``true``, sends mouse input events when tapping or swiping on the touchscreen.
  3566. .. rst-class:: classref-item-separator
  3567. ----
  3568. .. _class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse:
  3569. .. rst-class:: classref-property
  3570. :ref:`bool<class_bool>` **input_devices/pointing/emulate_touch_from_mouse** = ``false``
  3571. If ``true``, sends touch input events when clicking or dragging the mouse.
  3572. .. rst-class:: classref-item-separator
  3573. ----
  3574. .. _class_ProjectSettings_property_internationalization/locale/fallback:
  3575. .. rst-class:: classref-property
  3576. :ref:`String<class_String>` **internationalization/locale/fallback** = ``"en"``
  3577. The locale to fall back to if a translation isn't available in a given language. If left empty, ``en`` (English) will be used.
  3578. .. rst-class:: classref-item-separator
  3579. ----
  3580. .. _class_ProjectSettings_property_internationalization/locale/include_text_server_data:
  3581. .. rst-class:: classref-property
  3582. :ref:`bool<class_bool>` **internationalization/locale/include_text_server_data** = ``false``
  3583. If ``true``, text server break iteration rule sets, dictionaries and other optional data are included in the exported project.
  3584. \ **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.
  3585. \ **Note:** "Fallback" text server does not use additional data.
  3586. .. rst-class:: classref-item-separator
  3587. ----
  3588. .. _class_ProjectSettings_property_internationalization/locale/test:
  3589. .. rst-class:: classref-property
  3590. :ref:`String<class_String>` **internationalization/locale/test** = ``""``
  3591. If non-empty, this locale will be used when running the project from the editor.
  3592. .. rst-class:: classref-item-separator
  3593. ----
  3594. .. _class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels:
  3595. .. rst-class:: classref-property
  3596. :ref:`bool<class_bool>` **internationalization/pseudolocalization/double_vowels** = ``false``
  3597. Double vowels in strings during pseudolocalization to simulate the lengthening of text due to localization.
  3598. .. rst-class:: classref-item-separator
  3599. ----
  3600. .. _class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio:
  3601. .. rst-class:: classref-property
  3602. :ref:`float<class_float>` **internationalization/pseudolocalization/expansion_ratio** = ``0.0``
  3603. 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%.
  3604. .. rst-class:: classref-item-separator
  3605. ----
  3606. .. _class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi:
  3607. .. rst-class:: classref-property
  3608. :ref:`bool<class_bool>` **internationalization/pseudolocalization/fake_bidi** = ``false``
  3609. 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.
  3610. .. rst-class:: classref-item-separator
  3611. ----
  3612. .. _class_ProjectSettings_property_internationalization/pseudolocalization/override:
  3613. .. rst-class:: classref-property
  3614. :ref:`bool<class_bool>` **internationalization/pseudolocalization/override** = ``false``
  3615. Replace all characters in the string with ``*``. Useful for finding non-localizable strings.
  3616. .. rst-class:: classref-item-separator
  3617. ----
  3618. .. _class_ProjectSettings_property_internationalization/pseudolocalization/prefix:
  3619. .. rst-class:: classref-property
  3620. :ref:`String<class_String>` **internationalization/pseudolocalization/prefix** = ``"["``
  3621. Prefix that will be prepended to the pseudolocalized string.
  3622. .. rst-class:: classref-item-separator
  3623. ----
  3624. .. _class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents:
  3625. .. rst-class:: classref-property
  3626. :ref:`bool<class_bool>` **internationalization/pseudolocalization/replace_with_accents** = ``true``
  3627. Replace all characters with their accented variants during pseudolocalization.
  3628. .. rst-class:: classref-item-separator
  3629. ----
  3630. .. _class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders:
  3631. .. rst-class:: classref-property
  3632. :ref:`bool<class_bool>` **internationalization/pseudolocalization/skip_placeholders** = ``true``
  3633. Skip placeholders for string formatting like ``%s`` or ``%f`` during pseudolocalization. Useful to identify strings which need additional control characters to display correctly.
  3634. .. rst-class:: classref-item-separator
  3635. ----
  3636. .. _class_ProjectSettings_property_internationalization/pseudolocalization/suffix:
  3637. .. rst-class:: classref-property
  3638. :ref:`String<class_String>` **internationalization/pseudolocalization/suffix** = ``"]"``
  3639. Suffix that will be appended to the pseudolocalized string.
  3640. .. rst-class:: classref-item-separator
  3641. ----
  3642. .. _class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization:
  3643. .. rst-class:: classref-property
  3644. :ref:`bool<class_bool>` **internationalization/pseudolocalization/use_pseudolocalization** = ``false``
  3645. 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.
  3646. \ **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.
  3647. .. rst-class:: classref-item-separator
  3648. ----
  3649. .. _class_ProjectSettings_property_internationalization/rendering/force_right_to_left_layout_direction:
  3650. .. rst-class:: classref-property
  3651. :ref:`bool<class_bool>` **internationalization/rendering/force_right_to_left_layout_direction** = ``false``
  3652. Force layout direction and text writing direction to RTL for all controls.
  3653. .. rst-class:: classref-item-separator
  3654. ----
  3655. .. _class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction:
  3656. .. rst-class:: classref-property
  3657. :ref:`int<class_int>` **internationalization/rendering/root_node_layout_direction** = ``0``
  3658. Root node default layout direction.
  3659. .. rst-class:: classref-item-separator
  3660. ----
  3661. .. _class_ProjectSettings_property_internationalization/rendering/text_driver:
  3662. .. rst-class:: classref-property
  3663. :ref:`String<class_String>` **internationalization/rendering/text_driver** = ``""``
  3664. Specifies the :ref:`TextServer<class_TextServer>` to use. If left empty, the default will be used.
  3665. "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.
  3666. \ **Note:** The driver in use can be overridden at runtime via the ``--text-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3667. \ **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>`.
  3668. .. rst-class:: classref-item-separator
  3669. ----
  3670. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_1:
  3671. .. rst-class:: classref-property
  3672. :ref:`String<class_String>` **layer_names/2d_navigation/layer_1** = ``""``
  3673. Optional name for the 2D navigation layer 1. If left empty, the layer will display as "Layer 1".
  3674. .. rst-class:: classref-item-separator
  3675. ----
  3676. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_2:
  3677. .. rst-class:: classref-property
  3678. :ref:`String<class_String>` **layer_names/2d_navigation/layer_2** = ``""``
  3679. Optional name for the 2D navigation layer 2. If left empty, the layer will display as "Layer 2".
  3680. .. rst-class:: classref-item-separator
  3681. ----
  3682. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_3:
  3683. .. rst-class:: classref-property
  3684. :ref:`String<class_String>` **layer_names/2d_navigation/layer_3** = ``""``
  3685. Optional name for the 2D navigation layer 3. If left empty, the layer will display as "Layer 3".
  3686. .. rst-class:: classref-item-separator
  3687. ----
  3688. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_4:
  3689. .. rst-class:: classref-property
  3690. :ref:`String<class_String>` **layer_names/2d_navigation/layer_4** = ``""``
  3691. Optional name for the 2D navigation layer 4. If left empty, the layer will display as "Layer 4".
  3692. .. rst-class:: classref-item-separator
  3693. ----
  3694. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_5:
  3695. .. rst-class:: classref-property
  3696. :ref:`String<class_String>` **layer_names/2d_navigation/layer_5** = ``""``
  3697. Optional name for the 2D navigation layer 5. If left empty, the layer will display as "Layer 5".
  3698. .. rst-class:: classref-item-separator
  3699. ----
  3700. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_6:
  3701. .. rst-class:: classref-property
  3702. :ref:`String<class_String>` **layer_names/2d_navigation/layer_6** = ``""``
  3703. Optional name for the 2D navigation layer 6. If left empty, the layer will display as "Layer 6".
  3704. .. rst-class:: classref-item-separator
  3705. ----
  3706. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_7:
  3707. .. rst-class:: classref-property
  3708. :ref:`String<class_String>` **layer_names/2d_navigation/layer_7** = ``""``
  3709. Optional name for the 2D navigation layer 7. If left empty, the layer will display as "Layer 7".
  3710. .. rst-class:: classref-item-separator
  3711. ----
  3712. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_8:
  3713. .. rst-class:: classref-property
  3714. :ref:`String<class_String>` **layer_names/2d_navigation/layer_8** = ``""``
  3715. Optional name for the 2D navigation layer 8. If left empty, the layer will display as "Layer 8".
  3716. .. rst-class:: classref-item-separator
  3717. ----
  3718. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_9:
  3719. .. rst-class:: classref-property
  3720. :ref:`String<class_String>` **layer_names/2d_navigation/layer_9** = ``""``
  3721. Optional name for the 2D navigation layer 9. If left empty, the layer will display as "Layer 9".
  3722. .. rst-class:: classref-item-separator
  3723. ----
  3724. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_10:
  3725. .. rst-class:: classref-property
  3726. :ref:`String<class_String>` **layer_names/2d_navigation/layer_10** = ``""``
  3727. Optional name for the 2D navigation layer 10. If left empty, the layer will display as "Layer 10".
  3728. .. rst-class:: classref-item-separator
  3729. ----
  3730. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_11:
  3731. .. rst-class:: classref-property
  3732. :ref:`String<class_String>` **layer_names/2d_navigation/layer_11** = ``""``
  3733. Optional name for the 2D navigation layer 11. If left empty, the layer will display as "Layer 11".
  3734. .. rst-class:: classref-item-separator
  3735. ----
  3736. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_12:
  3737. .. rst-class:: classref-property
  3738. :ref:`String<class_String>` **layer_names/2d_navigation/layer_12** = ``""``
  3739. Optional name for the 2D navigation layer 12. If left empty, the layer will display as "Layer 12".
  3740. .. rst-class:: classref-item-separator
  3741. ----
  3742. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_13:
  3743. .. rst-class:: classref-property
  3744. :ref:`String<class_String>` **layer_names/2d_navigation/layer_13** = ``""``
  3745. Optional name for the 2D navigation layer 13. If left empty, the layer will display as "Layer 13".
  3746. .. rst-class:: classref-item-separator
  3747. ----
  3748. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_14:
  3749. .. rst-class:: classref-property
  3750. :ref:`String<class_String>` **layer_names/2d_navigation/layer_14** = ``""``
  3751. Optional name for the 2D navigation layer 14. If left empty, the layer will display as "Layer 14".
  3752. .. rst-class:: classref-item-separator
  3753. ----
  3754. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_15:
  3755. .. rst-class:: classref-property
  3756. :ref:`String<class_String>` **layer_names/2d_navigation/layer_15** = ``""``
  3757. Optional name for the 2D navigation layer 15. If left empty, the layer will display as "Layer 15".
  3758. .. rst-class:: classref-item-separator
  3759. ----
  3760. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_16:
  3761. .. rst-class:: classref-property
  3762. :ref:`String<class_String>` **layer_names/2d_navigation/layer_16** = ``""``
  3763. Optional name for the 2D navigation layer 16. If left empty, the layer will display as "Layer 16".
  3764. .. rst-class:: classref-item-separator
  3765. ----
  3766. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_17:
  3767. .. rst-class:: classref-property
  3768. :ref:`String<class_String>` **layer_names/2d_navigation/layer_17** = ``""``
  3769. Optional name for the 2D navigation layer 17. If left empty, the layer will display as "Layer 17".
  3770. .. rst-class:: classref-item-separator
  3771. ----
  3772. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_18:
  3773. .. rst-class:: classref-property
  3774. :ref:`String<class_String>` **layer_names/2d_navigation/layer_18** = ``""``
  3775. Optional name for the 2D navigation layer 18. If left empty, the layer will display as "Layer 18".
  3776. .. rst-class:: classref-item-separator
  3777. ----
  3778. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_19:
  3779. .. rst-class:: classref-property
  3780. :ref:`String<class_String>` **layer_names/2d_navigation/layer_19** = ``""``
  3781. Optional name for the 2D navigation layer 19. If left empty, the layer will display as "Layer 19".
  3782. .. rst-class:: classref-item-separator
  3783. ----
  3784. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_20:
  3785. .. rst-class:: classref-property
  3786. :ref:`String<class_String>` **layer_names/2d_navigation/layer_20** = ``""``
  3787. Optional name for the 2D navigation layer 20. If left empty, the layer will display as "Layer 20".
  3788. .. rst-class:: classref-item-separator
  3789. ----
  3790. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_21:
  3791. .. rst-class:: classref-property
  3792. :ref:`String<class_String>` **layer_names/2d_navigation/layer_21** = ``""``
  3793. Optional name for the 2D navigation layer 21. If left empty, the layer will display as "Layer 21".
  3794. .. rst-class:: classref-item-separator
  3795. ----
  3796. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_22:
  3797. .. rst-class:: classref-property
  3798. :ref:`String<class_String>` **layer_names/2d_navigation/layer_22** = ``""``
  3799. Optional name for the 2D navigation layer 22. If left empty, the layer will display as "Layer 22".
  3800. .. rst-class:: classref-item-separator
  3801. ----
  3802. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_23:
  3803. .. rst-class:: classref-property
  3804. :ref:`String<class_String>` **layer_names/2d_navigation/layer_23** = ``""``
  3805. Optional name for the 2D navigation layer 23. If left empty, the layer will display as "Layer 23".
  3806. .. rst-class:: classref-item-separator
  3807. ----
  3808. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_24:
  3809. .. rst-class:: classref-property
  3810. :ref:`String<class_String>` **layer_names/2d_navigation/layer_24** = ``""``
  3811. Optional name for the 2D navigation layer 24. If left empty, the layer will display as "Layer 24".
  3812. .. rst-class:: classref-item-separator
  3813. ----
  3814. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_25:
  3815. .. rst-class:: classref-property
  3816. :ref:`String<class_String>` **layer_names/2d_navigation/layer_25** = ``""``
  3817. Optional name for the 2D navigation layer 25. If left empty, the layer will display as "Layer 25".
  3818. .. rst-class:: classref-item-separator
  3819. ----
  3820. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_26:
  3821. .. rst-class:: classref-property
  3822. :ref:`String<class_String>` **layer_names/2d_navigation/layer_26** = ``""``
  3823. Optional name for the 2D navigation layer 26. If left empty, the layer will display as "Layer 26".
  3824. .. rst-class:: classref-item-separator
  3825. ----
  3826. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_27:
  3827. .. rst-class:: classref-property
  3828. :ref:`String<class_String>` **layer_names/2d_navigation/layer_27** = ``""``
  3829. Optional name for the 2D navigation layer 27. If left empty, the layer will display as "Layer 27".
  3830. .. rst-class:: classref-item-separator
  3831. ----
  3832. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_28:
  3833. .. rst-class:: classref-property
  3834. :ref:`String<class_String>` **layer_names/2d_navigation/layer_28** = ``""``
  3835. Optional name for the 2D navigation layer 28. If left empty, the layer will display as "Layer 28".
  3836. .. rst-class:: classref-item-separator
  3837. ----
  3838. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_29:
  3839. .. rst-class:: classref-property
  3840. :ref:`String<class_String>` **layer_names/2d_navigation/layer_29** = ``""``
  3841. Optional name for the 2D navigation layer 29. If left empty, the layer will display as "Layer 29".
  3842. .. rst-class:: classref-item-separator
  3843. ----
  3844. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_30:
  3845. .. rst-class:: classref-property
  3846. :ref:`String<class_String>` **layer_names/2d_navigation/layer_30** = ``""``
  3847. Optional name for the 2D navigation layer 30. If left empty, the layer will display as "Layer 30".
  3848. .. rst-class:: classref-item-separator
  3849. ----
  3850. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_31:
  3851. .. rst-class:: classref-property
  3852. :ref:`String<class_String>` **layer_names/2d_navigation/layer_31** = ``""``
  3853. Optional name for the 2D navigation layer 31. If left empty, the layer will display as "Layer 31".
  3854. .. rst-class:: classref-item-separator
  3855. ----
  3856. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_32:
  3857. .. rst-class:: classref-property
  3858. :ref:`String<class_String>` **layer_names/2d_navigation/layer_32** = ``""``
  3859. Optional name for the 2D navigation layer 32. If left empty, the layer will display as "Layer 32".
  3860. .. rst-class:: classref-item-separator
  3861. ----
  3862. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_1:
  3863. .. rst-class:: classref-property
  3864. :ref:`String<class_String>` **layer_names/2d_physics/layer_1** = ``""``
  3865. Optional name for the 2D physics layer 1. If left empty, the layer will display as "Layer 1".
  3866. .. rst-class:: classref-item-separator
  3867. ----
  3868. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_2:
  3869. .. rst-class:: classref-property
  3870. :ref:`String<class_String>` **layer_names/2d_physics/layer_2** = ``""``
  3871. Optional name for the 2D physics layer 2. If left empty, the layer will display as "Layer 2".
  3872. .. rst-class:: classref-item-separator
  3873. ----
  3874. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_3:
  3875. .. rst-class:: classref-property
  3876. :ref:`String<class_String>` **layer_names/2d_physics/layer_3** = ``""``
  3877. Optional name for the 2D physics layer 3. If left empty, the layer will display as "Layer 3".
  3878. .. rst-class:: classref-item-separator
  3879. ----
  3880. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_4:
  3881. .. rst-class:: classref-property
  3882. :ref:`String<class_String>` **layer_names/2d_physics/layer_4** = ``""``
  3883. Optional name for the 2D physics layer 4. If left empty, the layer will display as "Layer 4".
  3884. .. rst-class:: classref-item-separator
  3885. ----
  3886. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_5:
  3887. .. rst-class:: classref-property
  3888. :ref:`String<class_String>` **layer_names/2d_physics/layer_5** = ``""``
  3889. Optional name for the 2D physics layer 5. If left empty, the layer will display as "Layer 5".
  3890. .. rst-class:: classref-item-separator
  3891. ----
  3892. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_6:
  3893. .. rst-class:: classref-property
  3894. :ref:`String<class_String>` **layer_names/2d_physics/layer_6** = ``""``
  3895. Optional name for the 2D physics layer 6. If left empty, the layer will display as "Layer 6".
  3896. .. rst-class:: classref-item-separator
  3897. ----
  3898. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_7:
  3899. .. rst-class:: classref-property
  3900. :ref:`String<class_String>` **layer_names/2d_physics/layer_7** = ``""``
  3901. Optional name for the 2D physics layer 7. If left empty, the layer will display as "Layer 7".
  3902. .. rst-class:: classref-item-separator
  3903. ----
  3904. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_8:
  3905. .. rst-class:: classref-property
  3906. :ref:`String<class_String>` **layer_names/2d_physics/layer_8** = ``""``
  3907. Optional name for the 2D physics layer 8. If left empty, the layer will display as "Layer 8".
  3908. .. rst-class:: classref-item-separator
  3909. ----
  3910. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_9:
  3911. .. rst-class:: classref-property
  3912. :ref:`String<class_String>` **layer_names/2d_physics/layer_9** = ``""``
  3913. Optional name for the 2D physics layer 9. If left empty, the layer will display as "Layer 9".
  3914. .. rst-class:: classref-item-separator
  3915. ----
  3916. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_10:
  3917. .. rst-class:: classref-property
  3918. :ref:`String<class_String>` **layer_names/2d_physics/layer_10** = ``""``
  3919. Optional name for the 2D physics layer 10. If left empty, the layer will display as "Layer 10".
  3920. .. rst-class:: classref-item-separator
  3921. ----
  3922. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_11:
  3923. .. rst-class:: classref-property
  3924. :ref:`String<class_String>` **layer_names/2d_physics/layer_11** = ``""``
  3925. Optional name for the 2D physics layer 11. If left empty, the layer will display as "Layer 11".
  3926. .. rst-class:: classref-item-separator
  3927. ----
  3928. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_12:
  3929. .. rst-class:: classref-property
  3930. :ref:`String<class_String>` **layer_names/2d_physics/layer_12** = ``""``
  3931. Optional name for the 2D physics layer 12. If left empty, the layer will display as "Layer 12".
  3932. .. rst-class:: classref-item-separator
  3933. ----
  3934. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_13:
  3935. .. rst-class:: classref-property
  3936. :ref:`String<class_String>` **layer_names/2d_physics/layer_13** = ``""``
  3937. Optional name for the 2D physics layer 13. If left empty, the layer will display as "Layer 13".
  3938. .. rst-class:: classref-item-separator
  3939. ----
  3940. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_14:
  3941. .. rst-class:: classref-property
  3942. :ref:`String<class_String>` **layer_names/2d_physics/layer_14** = ``""``
  3943. Optional name for the 2D physics layer 14. If left empty, the layer will display as "Layer 14".
  3944. .. rst-class:: classref-item-separator
  3945. ----
  3946. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_15:
  3947. .. rst-class:: classref-property
  3948. :ref:`String<class_String>` **layer_names/2d_physics/layer_15** = ``""``
  3949. Optional name for the 2D physics layer 15. If left empty, the layer will display as "Layer 15".
  3950. .. rst-class:: classref-item-separator
  3951. ----
  3952. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_16:
  3953. .. rst-class:: classref-property
  3954. :ref:`String<class_String>` **layer_names/2d_physics/layer_16** = ``""``
  3955. Optional name for the 2D physics layer 16. If left empty, the layer will display as "Layer 16".
  3956. .. rst-class:: classref-item-separator
  3957. ----
  3958. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_17:
  3959. .. rst-class:: classref-property
  3960. :ref:`String<class_String>` **layer_names/2d_physics/layer_17** = ``""``
  3961. Optional name for the 2D physics layer 17. If left empty, the layer will display as "Layer 17".
  3962. .. rst-class:: classref-item-separator
  3963. ----
  3964. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_18:
  3965. .. rst-class:: classref-property
  3966. :ref:`String<class_String>` **layer_names/2d_physics/layer_18** = ``""``
  3967. Optional name for the 2D physics layer 18. If left empty, the layer will display as "Layer 18".
  3968. .. rst-class:: classref-item-separator
  3969. ----
  3970. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_19:
  3971. .. rst-class:: classref-property
  3972. :ref:`String<class_String>` **layer_names/2d_physics/layer_19** = ``""``
  3973. Optional name for the 2D physics layer 19. If left empty, the layer will display as "Layer 19".
  3974. .. rst-class:: classref-item-separator
  3975. ----
  3976. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_20:
  3977. .. rst-class:: classref-property
  3978. :ref:`String<class_String>` **layer_names/2d_physics/layer_20** = ``""``
  3979. Optional name for the 2D physics layer 20. If left empty, the layer will display as "Layer 20".
  3980. .. rst-class:: classref-item-separator
  3981. ----
  3982. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_21:
  3983. .. rst-class:: classref-property
  3984. :ref:`String<class_String>` **layer_names/2d_physics/layer_21** = ``""``
  3985. Optional name for the 2D physics layer 21. If left empty, the layer will display as "Layer 21".
  3986. .. rst-class:: classref-item-separator
  3987. ----
  3988. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_22:
  3989. .. rst-class:: classref-property
  3990. :ref:`String<class_String>` **layer_names/2d_physics/layer_22** = ``""``
  3991. Optional name for the 2D physics layer 22. If left empty, the layer will display as "Layer 22".
  3992. .. rst-class:: classref-item-separator
  3993. ----
  3994. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_23:
  3995. .. rst-class:: classref-property
  3996. :ref:`String<class_String>` **layer_names/2d_physics/layer_23** = ``""``
  3997. Optional name for the 2D physics layer 23. If left empty, the layer will display as "Layer 23".
  3998. .. rst-class:: classref-item-separator
  3999. ----
  4000. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_24:
  4001. .. rst-class:: classref-property
  4002. :ref:`String<class_String>` **layer_names/2d_physics/layer_24** = ``""``
  4003. Optional name for the 2D physics layer 24. If left empty, the layer will display as "Layer 24".
  4004. .. rst-class:: classref-item-separator
  4005. ----
  4006. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_25:
  4007. .. rst-class:: classref-property
  4008. :ref:`String<class_String>` **layer_names/2d_physics/layer_25** = ``""``
  4009. Optional name for the 2D physics layer 25. If left empty, the layer will display as "Layer 25".
  4010. .. rst-class:: classref-item-separator
  4011. ----
  4012. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_26:
  4013. .. rst-class:: classref-property
  4014. :ref:`String<class_String>` **layer_names/2d_physics/layer_26** = ``""``
  4015. Optional name for the 2D physics layer 26. If left empty, the layer will display as "Layer 26".
  4016. .. rst-class:: classref-item-separator
  4017. ----
  4018. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_27:
  4019. .. rst-class:: classref-property
  4020. :ref:`String<class_String>` **layer_names/2d_physics/layer_27** = ``""``
  4021. Optional name for the 2D physics layer 27. If left empty, the layer will display as "Layer 27".
  4022. .. rst-class:: classref-item-separator
  4023. ----
  4024. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_28:
  4025. .. rst-class:: classref-property
  4026. :ref:`String<class_String>` **layer_names/2d_physics/layer_28** = ``""``
  4027. Optional name for the 2D physics layer 28. If left empty, the layer will display as "Layer 28".
  4028. .. rst-class:: classref-item-separator
  4029. ----
  4030. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_29:
  4031. .. rst-class:: classref-property
  4032. :ref:`String<class_String>` **layer_names/2d_physics/layer_29** = ``""``
  4033. Optional name for the 2D physics layer 29. If left empty, the layer will display as "Layer 29".
  4034. .. rst-class:: classref-item-separator
  4035. ----
  4036. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_30:
  4037. .. rst-class:: classref-property
  4038. :ref:`String<class_String>` **layer_names/2d_physics/layer_30** = ``""``
  4039. Optional name for the 2D physics layer 30. If left empty, the layer will display as "Layer 30".
  4040. .. rst-class:: classref-item-separator
  4041. ----
  4042. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_31:
  4043. .. rst-class:: classref-property
  4044. :ref:`String<class_String>` **layer_names/2d_physics/layer_31** = ``""``
  4045. Optional name for the 2D physics layer 31. If left empty, the layer will display as "Layer 31".
  4046. .. rst-class:: classref-item-separator
  4047. ----
  4048. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_32:
  4049. .. rst-class:: classref-property
  4050. :ref:`String<class_String>` **layer_names/2d_physics/layer_32** = ``""``
  4051. Optional name for the 2D physics layer 32. If left empty, the layer will display as "Layer 32".
  4052. .. rst-class:: classref-item-separator
  4053. ----
  4054. .. _class_ProjectSettings_property_layer_names/2d_render/layer_1:
  4055. .. rst-class:: classref-property
  4056. :ref:`String<class_String>` **layer_names/2d_render/layer_1** = ``""``
  4057. Optional name for the 2D render layer 1. If left empty, the layer will display as "Layer 1".
  4058. .. rst-class:: classref-item-separator
  4059. ----
  4060. .. _class_ProjectSettings_property_layer_names/2d_render/layer_2:
  4061. .. rst-class:: classref-property
  4062. :ref:`String<class_String>` **layer_names/2d_render/layer_2** = ``""``
  4063. Optional name for the 2D render layer 2. If left empty, the layer will display as "Layer 2".
  4064. .. rst-class:: classref-item-separator
  4065. ----
  4066. .. _class_ProjectSettings_property_layer_names/2d_render/layer_3:
  4067. .. rst-class:: classref-property
  4068. :ref:`String<class_String>` **layer_names/2d_render/layer_3** = ``""``
  4069. Optional name for the 2D render layer 3. If left empty, the layer will display as "Layer 3".
  4070. .. rst-class:: classref-item-separator
  4071. ----
  4072. .. _class_ProjectSettings_property_layer_names/2d_render/layer_4:
  4073. .. rst-class:: classref-property
  4074. :ref:`String<class_String>` **layer_names/2d_render/layer_4** = ``""``
  4075. Optional name for the 2D render layer 4. If left empty, the layer will display as "Layer 4".
  4076. .. rst-class:: classref-item-separator
  4077. ----
  4078. .. _class_ProjectSettings_property_layer_names/2d_render/layer_5:
  4079. .. rst-class:: classref-property
  4080. :ref:`String<class_String>` **layer_names/2d_render/layer_5** = ``""``
  4081. Optional name for the 2D render layer 5. If left empty, the layer will display as "Layer 5".
  4082. .. rst-class:: classref-item-separator
  4083. ----
  4084. .. _class_ProjectSettings_property_layer_names/2d_render/layer_6:
  4085. .. rst-class:: classref-property
  4086. :ref:`String<class_String>` **layer_names/2d_render/layer_6** = ``""``
  4087. Optional name for the 2D render layer 6. If left empty, the layer will display as "Layer 6".
  4088. .. rst-class:: classref-item-separator
  4089. ----
  4090. .. _class_ProjectSettings_property_layer_names/2d_render/layer_7:
  4091. .. rst-class:: classref-property
  4092. :ref:`String<class_String>` **layer_names/2d_render/layer_7** = ``""``
  4093. Optional name for the 2D render layer 7. If left empty, the layer will display as "Layer 7".
  4094. .. rst-class:: classref-item-separator
  4095. ----
  4096. .. _class_ProjectSettings_property_layer_names/2d_render/layer_8:
  4097. .. rst-class:: classref-property
  4098. :ref:`String<class_String>` **layer_names/2d_render/layer_8** = ``""``
  4099. Optional name for the 2D render layer 8. If left empty, the layer will display as "Layer 8".
  4100. .. rst-class:: classref-item-separator
  4101. ----
  4102. .. _class_ProjectSettings_property_layer_names/2d_render/layer_9:
  4103. .. rst-class:: classref-property
  4104. :ref:`String<class_String>` **layer_names/2d_render/layer_9** = ``""``
  4105. Optional name for the 2D render layer 9. If left empty, the layer will display as "Layer 9".
  4106. .. rst-class:: classref-item-separator
  4107. ----
  4108. .. _class_ProjectSettings_property_layer_names/2d_render/layer_10:
  4109. .. rst-class:: classref-property
  4110. :ref:`String<class_String>` **layer_names/2d_render/layer_10** = ``""``
  4111. Optional name for the 2D render layer 10. If left empty, the layer will display as "Layer 10".
  4112. .. rst-class:: classref-item-separator
  4113. ----
  4114. .. _class_ProjectSettings_property_layer_names/2d_render/layer_11:
  4115. .. rst-class:: classref-property
  4116. :ref:`String<class_String>` **layer_names/2d_render/layer_11** = ``""``
  4117. Optional name for the 2D render layer 11. If left empty, the layer will display as "Layer 11".
  4118. .. rst-class:: classref-item-separator
  4119. ----
  4120. .. _class_ProjectSettings_property_layer_names/2d_render/layer_12:
  4121. .. rst-class:: classref-property
  4122. :ref:`String<class_String>` **layer_names/2d_render/layer_12** = ``""``
  4123. Optional name for the 2D render layer 12. If left empty, the layer will display as "Layer 12".
  4124. .. rst-class:: classref-item-separator
  4125. ----
  4126. .. _class_ProjectSettings_property_layer_names/2d_render/layer_13:
  4127. .. rst-class:: classref-property
  4128. :ref:`String<class_String>` **layer_names/2d_render/layer_13** = ``""``
  4129. Optional name for the 2D render layer 13. If left empty, the layer will display as "Layer 13".
  4130. .. rst-class:: classref-item-separator
  4131. ----
  4132. .. _class_ProjectSettings_property_layer_names/2d_render/layer_14:
  4133. .. rst-class:: classref-property
  4134. :ref:`String<class_String>` **layer_names/2d_render/layer_14** = ``""``
  4135. Optional name for the 2D render layer 14. If left empty, the layer will display as "Layer 14".
  4136. .. rst-class:: classref-item-separator
  4137. ----
  4138. .. _class_ProjectSettings_property_layer_names/2d_render/layer_15:
  4139. .. rst-class:: classref-property
  4140. :ref:`String<class_String>` **layer_names/2d_render/layer_15** = ``""``
  4141. Optional name for the 2D render layer 15. If left empty, the layer will display as "Layer 15".
  4142. .. rst-class:: classref-item-separator
  4143. ----
  4144. .. _class_ProjectSettings_property_layer_names/2d_render/layer_16:
  4145. .. rst-class:: classref-property
  4146. :ref:`String<class_String>` **layer_names/2d_render/layer_16** = ``""``
  4147. Optional name for the 2D render layer 16. If left empty, the layer will display as "Layer 16".
  4148. .. rst-class:: classref-item-separator
  4149. ----
  4150. .. _class_ProjectSettings_property_layer_names/2d_render/layer_17:
  4151. .. rst-class:: classref-property
  4152. :ref:`String<class_String>` **layer_names/2d_render/layer_17** = ``""``
  4153. Optional name for the 2D render layer 17. If left empty, the layer will display as "Layer 17".
  4154. .. rst-class:: classref-item-separator
  4155. ----
  4156. .. _class_ProjectSettings_property_layer_names/2d_render/layer_18:
  4157. .. rst-class:: classref-property
  4158. :ref:`String<class_String>` **layer_names/2d_render/layer_18** = ``""``
  4159. Optional name for the 2D render layer 18. If left empty, the layer will display as "Layer 18".
  4160. .. rst-class:: classref-item-separator
  4161. ----
  4162. .. _class_ProjectSettings_property_layer_names/2d_render/layer_19:
  4163. .. rst-class:: classref-property
  4164. :ref:`String<class_String>` **layer_names/2d_render/layer_19** = ``""``
  4165. Optional name for the 2D render layer 19. If left empty, the layer will display as "Layer 19".
  4166. .. rst-class:: classref-item-separator
  4167. ----
  4168. .. _class_ProjectSettings_property_layer_names/2d_render/layer_20:
  4169. .. rst-class:: classref-property
  4170. :ref:`String<class_String>` **layer_names/2d_render/layer_20** = ``""``
  4171. Optional name for the 2D render layer 20. If left empty, the layer will display as "Layer 20".
  4172. .. rst-class:: classref-item-separator
  4173. ----
  4174. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_1:
  4175. .. rst-class:: classref-property
  4176. :ref:`String<class_String>` **layer_names/3d_navigation/layer_1** = ``""``
  4177. Optional name for the 3D navigation layer 1. If left empty, the layer will display as "Layer 1".
  4178. .. rst-class:: classref-item-separator
  4179. ----
  4180. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_2:
  4181. .. rst-class:: classref-property
  4182. :ref:`String<class_String>` **layer_names/3d_navigation/layer_2** = ``""``
  4183. Optional name for the 3D navigation layer 2. If left empty, the layer will display as "Layer 2".
  4184. .. rst-class:: classref-item-separator
  4185. ----
  4186. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_3:
  4187. .. rst-class:: classref-property
  4188. :ref:`String<class_String>` **layer_names/3d_navigation/layer_3** = ``""``
  4189. Optional name for the 3D navigation layer 3. If left empty, the layer will display as "Layer 3".
  4190. .. rst-class:: classref-item-separator
  4191. ----
  4192. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_4:
  4193. .. rst-class:: classref-property
  4194. :ref:`String<class_String>` **layer_names/3d_navigation/layer_4** = ``""``
  4195. Optional name for the 3D navigation layer 4. If left empty, the layer will display as "Layer 4".
  4196. .. rst-class:: classref-item-separator
  4197. ----
  4198. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_5:
  4199. .. rst-class:: classref-property
  4200. :ref:`String<class_String>` **layer_names/3d_navigation/layer_5** = ``""``
  4201. Optional name for the 3D navigation layer 5. If left empty, the layer will display as "Layer 5".
  4202. .. rst-class:: classref-item-separator
  4203. ----
  4204. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_6:
  4205. .. rst-class:: classref-property
  4206. :ref:`String<class_String>` **layer_names/3d_navigation/layer_6** = ``""``
  4207. Optional name for the 3D navigation layer 6. If left empty, the layer will display as "Layer 6".
  4208. .. rst-class:: classref-item-separator
  4209. ----
  4210. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_7:
  4211. .. rst-class:: classref-property
  4212. :ref:`String<class_String>` **layer_names/3d_navigation/layer_7** = ``""``
  4213. Optional name for the 3D navigation layer 7. If left empty, the layer will display as "Layer 7".
  4214. .. rst-class:: classref-item-separator
  4215. ----
  4216. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_8:
  4217. .. rst-class:: classref-property
  4218. :ref:`String<class_String>` **layer_names/3d_navigation/layer_8** = ``""``
  4219. Optional name for the 3D navigation layer 8. If left empty, the layer will display as "Layer 8".
  4220. .. rst-class:: classref-item-separator
  4221. ----
  4222. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_9:
  4223. .. rst-class:: classref-property
  4224. :ref:`String<class_String>` **layer_names/3d_navigation/layer_9** = ``""``
  4225. Optional name for the 3D navigation layer 9. If left empty, the layer will display as "Layer 9".
  4226. .. rst-class:: classref-item-separator
  4227. ----
  4228. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_10:
  4229. .. rst-class:: classref-property
  4230. :ref:`String<class_String>` **layer_names/3d_navigation/layer_10** = ``""``
  4231. Optional name for the 3D navigation layer 10. If left empty, the layer will display as "Layer 10".
  4232. .. rst-class:: classref-item-separator
  4233. ----
  4234. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_11:
  4235. .. rst-class:: classref-property
  4236. :ref:`String<class_String>` **layer_names/3d_navigation/layer_11** = ``""``
  4237. Optional name for the 3D navigation layer 11. If left empty, the layer will display as "Layer 11".
  4238. .. rst-class:: classref-item-separator
  4239. ----
  4240. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_12:
  4241. .. rst-class:: classref-property
  4242. :ref:`String<class_String>` **layer_names/3d_navigation/layer_12** = ``""``
  4243. Optional name for the 3D navigation layer 12. If left empty, the layer will display as "Layer 12".
  4244. .. rst-class:: classref-item-separator
  4245. ----
  4246. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_13:
  4247. .. rst-class:: classref-property
  4248. :ref:`String<class_String>` **layer_names/3d_navigation/layer_13** = ``""``
  4249. Optional name for the 3D navigation layer 13. If left empty, the layer will display as "Layer 13".
  4250. .. rst-class:: classref-item-separator
  4251. ----
  4252. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_14:
  4253. .. rst-class:: classref-property
  4254. :ref:`String<class_String>` **layer_names/3d_navigation/layer_14** = ``""``
  4255. Optional name for the 3D navigation layer 14. If left empty, the layer will display as "Layer 14".
  4256. .. rst-class:: classref-item-separator
  4257. ----
  4258. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_15:
  4259. .. rst-class:: classref-property
  4260. :ref:`String<class_String>` **layer_names/3d_navigation/layer_15** = ``""``
  4261. Optional name for the 3D navigation layer 15. If left empty, the layer will display as "Layer 15".
  4262. .. rst-class:: classref-item-separator
  4263. ----
  4264. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_16:
  4265. .. rst-class:: classref-property
  4266. :ref:`String<class_String>` **layer_names/3d_navigation/layer_16** = ``""``
  4267. Optional name for the 3D navigation layer 16. If left empty, the layer will display as "Layer 16".
  4268. .. rst-class:: classref-item-separator
  4269. ----
  4270. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_17:
  4271. .. rst-class:: classref-property
  4272. :ref:`String<class_String>` **layer_names/3d_navigation/layer_17** = ``""``
  4273. Optional name for the 3D navigation layer 17. If left empty, the layer will display as "Layer 17".
  4274. .. rst-class:: classref-item-separator
  4275. ----
  4276. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_18:
  4277. .. rst-class:: classref-property
  4278. :ref:`String<class_String>` **layer_names/3d_navigation/layer_18** = ``""``
  4279. Optional name for the 3D navigation layer 18. If left empty, the layer will display as "Layer 18".
  4280. .. rst-class:: classref-item-separator
  4281. ----
  4282. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_19:
  4283. .. rst-class:: classref-property
  4284. :ref:`String<class_String>` **layer_names/3d_navigation/layer_19** = ``""``
  4285. Optional name for the 3D navigation layer 19. If left empty, the layer will display as "Layer 19".
  4286. .. rst-class:: classref-item-separator
  4287. ----
  4288. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_20:
  4289. .. rst-class:: classref-property
  4290. :ref:`String<class_String>` **layer_names/3d_navigation/layer_20** = ``""``
  4291. Optional name for the 3D navigation layer 20. If left empty, the layer will display as "Layer 20".
  4292. .. rst-class:: classref-item-separator
  4293. ----
  4294. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_21:
  4295. .. rst-class:: classref-property
  4296. :ref:`String<class_String>` **layer_names/3d_navigation/layer_21** = ``""``
  4297. Optional name for the 3D navigation layer 21. If left empty, the layer will display as "Layer 21".
  4298. .. rst-class:: classref-item-separator
  4299. ----
  4300. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_22:
  4301. .. rst-class:: classref-property
  4302. :ref:`String<class_String>` **layer_names/3d_navigation/layer_22** = ``""``
  4303. Optional name for the 3D navigation layer 22. If left empty, the layer will display as "Layer 22".
  4304. .. rst-class:: classref-item-separator
  4305. ----
  4306. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_23:
  4307. .. rst-class:: classref-property
  4308. :ref:`String<class_String>` **layer_names/3d_navigation/layer_23** = ``""``
  4309. Optional name for the 3D navigation layer 23. If left empty, the layer will display as "Layer 23".
  4310. .. rst-class:: classref-item-separator
  4311. ----
  4312. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_24:
  4313. .. rst-class:: classref-property
  4314. :ref:`String<class_String>` **layer_names/3d_navigation/layer_24** = ``""``
  4315. Optional name for the 3D navigation layer 24. If left empty, the layer will display as "Layer 24".
  4316. .. rst-class:: classref-item-separator
  4317. ----
  4318. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_25:
  4319. .. rst-class:: classref-property
  4320. :ref:`String<class_String>` **layer_names/3d_navigation/layer_25** = ``""``
  4321. Optional name for the 3D navigation layer 25. If left empty, the layer will display as "Layer 25".
  4322. .. rst-class:: classref-item-separator
  4323. ----
  4324. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_26:
  4325. .. rst-class:: classref-property
  4326. :ref:`String<class_String>` **layer_names/3d_navigation/layer_26** = ``""``
  4327. Optional name for the 3D navigation layer 26. If left empty, the layer will display as "Layer 26".
  4328. .. rst-class:: classref-item-separator
  4329. ----
  4330. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_27:
  4331. .. rst-class:: classref-property
  4332. :ref:`String<class_String>` **layer_names/3d_navigation/layer_27** = ``""``
  4333. Optional name for the 3D navigation layer 27. If left empty, the layer will display as "Layer 27".
  4334. .. rst-class:: classref-item-separator
  4335. ----
  4336. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_28:
  4337. .. rst-class:: classref-property
  4338. :ref:`String<class_String>` **layer_names/3d_navigation/layer_28** = ``""``
  4339. Optional name for the 3D navigation layer 28. If left empty, the layer will display as "Layer 28".
  4340. .. rst-class:: classref-item-separator
  4341. ----
  4342. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_29:
  4343. .. rst-class:: classref-property
  4344. :ref:`String<class_String>` **layer_names/3d_navigation/layer_29** = ``""``
  4345. Optional name for the 3D navigation layer 29. If left empty, the layer will display as "Layer 29".
  4346. .. rst-class:: classref-item-separator
  4347. ----
  4348. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_30:
  4349. .. rst-class:: classref-property
  4350. :ref:`String<class_String>` **layer_names/3d_navigation/layer_30** = ``""``
  4351. Optional name for the 3D navigation layer 30. If left empty, the layer will display as "Layer 30".
  4352. .. rst-class:: classref-item-separator
  4353. ----
  4354. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_31:
  4355. .. rst-class:: classref-property
  4356. :ref:`String<class_String>` **layer_names/3d_navigation/layer_31** = ``""``
  4357. Optional name for the 3D navigation layer 31. If left empty, the layer will display as "Layer 31".
  4358. .. rst-class:: classref-item-separator
  4359. ----
  4360. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_32:
  4361. .. rst-class:: classref-property
  4362. :ref:`String<class_String>` **layer_names/3d_navigation/layer_32** = ``""``
  4363. Optional name for the 3D navigation layer 32. If left empty, the layer will display as "Layer 32".
  4364. .. rst-class:: classref-item-separator
  4365. ----
  4366. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_1:
  4367. .. rst-class:: classref-property
  4368. :ref:`String<class_String>` **layer_names/3d_physics/layer_1** = ``""``
  4369. Optional name for the 3D physics layer 1. If left empty, the layer will display as "Layer 1".
  4370. .. rst-class:: classref-item-separator
  4371. ----
  4372. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_2:
  4373. .. rst-class:: classref-property
  4374. :ref:`String<class_String>` **layer_names/3d_physics/layer_2** = ``""``
  4375. Optional name for the 3D physics layer 2. If left empty, the layer will display as "Layer 2".
  4376. .. rst-class:: classref-item-separator
  4377. ----
  4378. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_3:
  4379. .. rst-class:: classref-property
  4380. :ref:`String<class_String>` **layer_names/3d_physics/layer_3** = ``""``
  4381. Optional name for the 3D physics layer 3. If left empty, the layer will display as "Layer 3".
  4382. .. rst-class:: classref-item-separator
  4383. ----
  4384. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_4:
  4385. .. rst-class:: classref-property
  4386. :ref:`String<class_String>` **layer_names/3d_physics/layer_4** = ``""``
  4387. Optional name for the 3D physics layer 4. If left empty, the layer will display as "Layer 4".
  4388. .. rst-class:: classref-item-separator
  4389. ----
  4390. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_5:
  4391. .. rst-class:: classref-property
  4392. :ref:`String<class_String>` **layer_names/3d_physics/layer_5** = ``""``
  4393. Optional name for the 3D physics layer 5. If left empty, the layer will display as "Layer 5".
  4394. .. rst-class:: classref-item-separator
  4395. ----
  4396. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_6:
  4397. .. rst-class:: classref-property
  4398. :ref:`String<class_String>` **layer_names/3d_physics/layer_6** = ``""``
  4399. Optional name for the 3D physics layer 6. If left empty, the layer will display as "Layer 6".
  4400. .. rst-class:: classref-item-separator
  4401. ----
  4402. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_7:
  4403. .. rst-class:: classref-property
  4404. :ref:`String<class_String>` **layer_names/3d_physics/layer_7** = ``""``
  4405. Optional name for the 3D physics layer 7. If left empty, the layer will display as "Layer 7".
  4406. .. rst-class:: classref-item-separator
  4407. ----
  4408. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_8:
  4409. .. rst-class:: classref-property
  4410. :ref:`String<class_String>` **layer_names/3d_physics/layer_8** = ``""``
  4411. Optional name for the 3D physics layer 8. If left empty, the layer will display as "Layer 8".
  4412. .. rst-class:: classref-item-separator
  4413. ----
  4414. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_9:
  4415. .. rst-class:: classref-property
  4416. :ref:`String<class_String>` **layer_names/3d_physics/layer_9** = ``""``
  4417. Optional name for the 3D physics layer 9. If left empty, the layer will display as "Layer 9".
  4418. .. rst-class:: classref-item-separator
  4419. ----
  4420. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_10:
  4421. .. rst-class:: classref-property
  4422. :ref:`String<class_String>` **layer_names/3d_physics/layer_10** = ``""``
  4423. Optional name for the 3D physics layer 10. If left empty, the layer will display as "Layer 10".
  4424. .. rst-class:: classref-item-separator
  4425. ----
  4426. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_11:
  4427. .. rst-class:: classref-property
  4428. :ref:`String<class_String>` **layer_names/3d_physics/layer_11** = ``""``
  4429. Optional name for the 3D physics layer 11. If left empty, the layer will display as "Layer 11".
  4430. .. rst-class:: classref-item-separator
  4431. ----
  4432. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_12:
  4433. .. rst-class:: classref-property
  4434. :ref:`String<class_String>` **layer_names/3d_physics/layer_12** = ``""``
  4435. Optional name for the 3D physics layer 12. If left empty, the layer will display as "Layer 12".
  4436. .. rst-class:: classref-item-separator
  4437. ----
  4438. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_13:
  4439. .. rst-class:: classref-property
  4440. :ref:`String<class_String>` **layer_names/3d_physics/layer_13** = ``""``
  4441. Optional name for the 3D physics layer 13. If left empty, the layer will display as "Layer 13".
  4442. .. rst-class:: classref-item-separator
  4443. ----
  4444. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_14:
  4445. .. rst-class:: classref-property
  4446. :ref:`String<class_String>` **layer_names/3d_physics/layer_14** = ``""``
  4447. Optional name for the 3D physics layer 14. If left empty, the layer will display as "Layer 14".
  4448. .. rst-class:: classref-item-separator
  4449. ----
  4450. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_15:
  4451. .. rst-class:: classref-property
  4452. :ref:`String<class_String>` **layer_names/3d_physics/layer_15** = ``""``
  4453. Optional name for the 3D physics layer 15. If left empty, the layer will display as "Layer 15".
  4454. .. rst-class:: classref-item-separator
  4455. ----
  4456. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_16:
  4457. .. rst-class:: classref-property
  4458. :ref:`String<class_String>` **layer_names/3d_physics/layer_16** = ``""``
  4459. Optional name for the 3D physics layer 16. If left empty, the layer will display as "Layer 16".
  4460. .. rst-class:: classref-item-separator
  4461. ----
  4462. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_17:
  4463. .. rst-class:: classref-property
  4464. :ref:`String<class_String>` **layer_names/3d_physics/layer_17** = ``""``
  4465. Optional name for the 3D physics layer 17. If left empty, the layer will display as "Layer 17".
  4466. .. rst-class:: classref-item-separator
  4467. ----
  4468. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_18:
  4469. .. rst-class:: classref-property
  4470. :ref:`String<class_String>` **layer_names/3d_physics/layer_18** = ``""``
  4471. Optional name for the 3D physics layer 18. If left empty, the layer will display as "Layer 18".
  4472. .. rst-class:: classref-item-separator
  4473. ----
  4474. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_19:
  4475. .. rst-class:: classref-property
  4476. :ref:`String<class_String>` **layer_names/3d_physics/layer_19** = ``""``
  4477. Optional name for the 3D physics layer 19. If left empty, the layer will display as "Layer 19".
  4478. .. rst-class:: classref-item-separator
  4479. ----
  4480. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_20:
  4481. .. rst-class:: classref-property
  4482. :ref:`String<class_String>` **layer_names/3d_physics/layer_20** = ``""``
  4483. Optional name for the 3D physics layer 20. If left empty, the layer will display as "Layer 20".
  4484. .. rst-class:: classref-item-separator
  4485. ----
  4486. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_21:
  4487. .. rst-class:: classref-property
  4488. :ref:`String<class_String>` **layer_names/3d_physics/layer_21** = ``""``
  4489. Optional name for the 3D physics layer 21. If left empty, the layer will display as "Layer 21".
  4490. .. rst-class:: classref-item-separator
  4491. ----
  4492. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_22:
  4493. .. rst-class:: classref-property
  4494. :ref:`String<class_String>` **layer_names/3d_physics/layer_22** = ``""``
  4495. Optional name for the 3D physics layer 22. If left empty, the layer will display as "Layer 22".
  4496. .. rst-class:: classref-item-separator
  4497. ----
  4498. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_23:
  4499. .. rst-class:: classref-property
  4500. :ref:`String<class_String>` **layer_names/3d_physics/layer_23** = ``""``
  4501. Optional name for the 3D physics layer 23. If left empty, the layer will display as "Layer 23".
  4502. .. rst-class:: classref-item-separator
  4503. ----
  4504. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_24:
  4505. .. rst-class:: classref-property
  4506. :ref:`String<class_String>` **layer_names/3d_physics/layer_24** = ``""``
  4507. Optional name for the 3D physics layer 24. If left empty, the layer will display as "Layer 24".
  4508. .. rst-class:: classref-item-separator
  4509. ----
  4510. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_25:
  4511. .. rst-class:: classref-property
  4512. :ref:`String<class_String>` **layer_names/3d_physics/layer_25** = ``""``
  4513. Optional name for the 3D physics layer 25. If left empty, the layer will display as "Layer 25".
  4514. .. rst-class:: classref-item-separator
  4515. ----
  4516. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_26:
  4517. .. rst-class:: classref-property
  4518. :ref:`String<class_String>` **layer_names/3d_physics/layer_26** = ``""``
  4519. Optional name for the 3D physics layer 26. If left empty, the layer will display as "Layer 26".
  4520. .. rst-class:: classref-item-separator
  4521. ----
  4522. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_27:
  4523. .. rst-class:: classref-property
  4524. :ref:`String<class_String>` **layer_names/3d_physics/layer_27** = ``""``
  4525. Optional name for the 3D physics layer 27. If left empty, the layer will display as "Layer 27".
  4526. .. rst-class:: classref-item-separator
  4527. ----
  4528. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_28:
  4529. .. rst-class:: classref-property
  4530. :ref:`String<class_String>` **layer_names/3d_physics/layer_28** = ``""``
  4531. Optional name for the 3D physics layer 28. If left empty, the layer will display as "Layer 28".
  4532. .. rst-class:: classref-item-separator
  4533. ----
  4534. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_29:
  4535. .. rst-class:: classref-property
  4536. :ref:`String<class_String>` **layer_names/3d_physics/layer_29** = ``""``
  4537. Optional name for the 3D physics layer 29. If left empty, the layer will display as "Layer 29".
  4538. .. rst-class:: classref-item-separator
  4539. ----
  4540. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_30:
  4541. .. rst-class:: classref-property
  4542. :ref:`String<class_String>` **layer_names/3d_physics/layer_30** = ``""``
  4543. Optional name for the 3D physics layer 30. If left empty, the layer will display as "Layer 30".
  4544. .. rst-class:: classref-item-separator
  4545. ----
  4546. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_31:
  4547. .. rst-class:: classref-property
  4548. :ref:`String<class_String>` **layer_names/3d_physics/layer_31** = ``""``
  4549. Optional name for the 3D physics layer 31. If left empty, the layer will display as "Layer 31".
  4550. .. rst-class:: classref-item-separator
  4551. ----
  4552. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_32:
  4553. .. rst-class:: classref-property
  4554. :ref:`String<class_String>` **layer_names/3d_physics/layer_32** = ``""``
  4555. Optional name for the 3D physics layer 32. If left empty, the layer will display as "Layer 32".
  4556. .. rst-class:: classref-item-separator
  4557. ----
  4558. .. _class_ProjectSettings_property_layer_names/3d_render/layer_1:
  4559. .. rst-class:: classref-property
  4560. :ref:`String<class_String>` **layer_names/3d_render/layer_1** = ``""``
  4561. Optional name for the 3D render layer 1. If left empty, the layer will display as "Layer 1".
  4562. .. rst-class:: classref-item-separator
  4563. ----
  4564. .. _class_ProjectSettings_property_layer_names/3d_render/layer_2:
  4565. .. rst-class:: classref-property
  4566. :ref:`String<class_String>` **layer_names/3d_render/layer_2** = ``""``
  4567. Optional name for the 3D render layer 2. If left empty, the layer will display as "Layer 2".
  4568. .. rst-class:: classref-item-separator
  4569. ----
  4570. .. _class_ProjectSettings_property_layer_names/3d_render/layer_3:
  4571. .. rst-class:: classref-property
  4572. :ref:`String<class_String>` **layer_names/3d_render/layer_3** = ``""``
  4573. Optional name for the 3D render layer 3. If left empty, the layer will display as "Layer 3".
  4574. .. rst-class:: classref-item-separator
  4575. ----
  4576. .. _class_ProjectSettings_property_layer_names/3d_render/layer_4:
  4577. .. rst-class:: classref-property
  4578. :ref:`String<class_String>` **layer_names/3d_render/layer_4** = ``""``
  4579. Optional name for the 3D render layer 4. If left empty, the layer will display as "Layer 4".
  4580. .. rst-class:: classref-item-separator
  4581. ----
  4582. .. _class_ProjectSettings_property_layer_names/3d_render/layer_5:
  4583. .. rst-class:: classref-property
  4584. :ref:`String<class_String>` **layer_names/3d_render/layer_5** = ``""``
  4585. Optional name for the 3D render layer 5. If left empty, the layer will display as "Layer 5".
  4586. .. rst-class:: classref-item-separator
  4587. ----
  4588. .. _class_ProjectSettings_property_layer_names/3d_render/layer_6:
  4589. .. rst-class:: classref-property
  4590. :ref:`String<class_String>` **layer_names/3d_render/layer_6** = ``""``
  4591. Optional name for the 3D render layer 6. If left empty, the layer will display as "Layer 6".
  4592. .. rst-class:: classref-item-separator
  4593. ----
  4594. .. _class_ProjectSettings_property_layer_names/3d_render/layer_7:
  4595. .. rst-class:: classref-property
  4596. :ref:`String<class_String>` **layer_names/3d_render/layer_7** = ``""``
  4597. Optional name for the 3D render layer 7. If left empty, the layer will display as "Layer 7".
  4598. .. rst-class:: classref-item-separator
  4599. ----
  4600. .. _class_ProjectSettings_property_layer_names/3d_render/layer_8:
  4601. .. rst-class:: classref-property
  4602. :ref:`String<class_String>` **layer_names/3d_render/layer_8** = ``""``
  4603. Optional name for the 3D render layer 8. If left empty, the layer will display as "Layer 8".
  4604. .. rst-class:: classref-item-separator
  4605. ----
  4606. .. _class_ProjectSettings_property_layer_names/3d_render/layer_9:
  4607. .. rst-class:: classref-property
  4608. :ref:`String<class_String>` **layer_names/3d_render/layer_9** = ``""``
  4609. Optional name for the 3D render layer 9. If left empty, the layer will display as "Layer 9".
  4610. .. rst-class:: classref-item-separator
  4611. ----
  4612. .. _class_ProjectSettings_property_layer_names/3d_render/layer_10:
  4613. .. rst-class:: classref-property
  4614. :ref:`String<class_String>` **layer_names/3d_render/layer_10** = ``""``
  4615. Optional name for the 3D render layer 10. If left empty, the layer will display as "Layer 10".
  4616. .. rst-class:: classref-item-separator
  4617. ----
  4618. .. _class_ProjectSettings_property_layer_names/3d_render/layer_11:
  4619. .. rst-class:: classref-property
  4620. :ref:`String<class_String>` **layer_names/3d_render/layer_11** = ``""``
  4621. Optional name for the 3D render layer 11. If left empty, the layer will display as "Layer 11".
  4622. .. rst-class:: classref-item-separator
  4623. ----
  4624. .. _class_ProjectSettings_property_layer_names/3d_render/layer_12:
  4625. .. rst-class:: classref-property
  4626. :ref:`String<class_String>` **layer_names/3d_render/layer_12** = ``""``
  4627. Optional name for the 3D render layer 12. If left empty, the layer will display as "Layer 12".
  4628. .. rst-class:: classref-item-separator
  4629. ----
  4630. .. _class_ProjectSettings_property_layer_names/3d_render/layer_13:
  4631. .. rst-class:: classref-property
  4632. :ref:`String<class_String>` **layer_names/3d_render/layer_13** = ``""``
  4633. Optional name for the 3D render layer 13. If left empty, the layer will display as "Layer 13".
  4634. .. rst-class:: classref-item-separator
  4635. ----
  4636. .. _class_ProjectSettings_property_layer_names/3d_render/layer_14:
  4637. .. rst-class:: classref-property
  4638. :ref:`String<class_String>` **layer_names/3d_render/layer_14** = ``""``
  4639. Optional name for the 3D render layer 14. If left empty, the layer will display as "Layer 14".
  4640. .. rst-class:: classref-item-separator
  4641. ----
  4642. .. _class_ProjectSettings_property_layer_names/3d_render/layer_15:
  4643. .. rst-class:: classref-property
  4644. :ref:`String<class_String>` **layer_names/3d_render/layer_15** = ``""``
  4645. Optional name for the 3D render layer 15. If left empty, the layer will display as "Layer 15".
  4646. .. rst-class:: classref-item-separator
  4647. ----
  4648. .. _class_ProjectSettings_property_layer_names/3d_render/layer_16:
  4649. .. rst-class:: classref-property
  4650. :ref:`String<class_String>` **layer_names/3d_render/layer_16** = ``""``
  4651. Optional name for the 3D render layer 16. If left empty, the layer will display as "Layer 16".
  4652. .. rst-class:: classref-item-separator
  4653. ----
  4654. .. _class_ProjectSettings_property_layer_names/3d_render/layer_17:
  4655. .. rst-class:: classref-property
  4656. :ref:`String<class_String>` **layer_names/3d_render/layer_17** = ``""``
  4657. Optional name for the 3D render layer 17. If left empty, the layer will display as "Layer 17".
  4658. .. rst-class:: classref-item-separator
  4659. ----
  4660. .. _class_ProjectSettings_property_layer_names/3d_render/layer_18:
  4661. .. rst-class:: classref-property
  4662. :ref:`String<class_String>` **layer_names/3d_render/layer_18** = ``""``
  4663. Optional name for the 3D render layer 18. If left empty, the layer will display as "Layer 18".
  4664. .. rst-class:: classref-item-separator
  4665. ----
  4666. .. _class_ProjectSettings_property_layer_names/3d_render/layer_19:
  4667. .. rst-class:: classref-property
  4668. :ref:`String<class_String>` **layer_names/3d_render/layer_19** = ``""``
  4669. Optional name for the 3D render layer 19. If left empty, the layer will display as "Layer 19".
  4670. .. rst-class:: classref-item-separator
  4671. ----
  4672. .. _class_ProjectSettings_property_layer_names/3d_render/layer_20:
  4673. .. rst-class:: classref-property
  4674. :ref:`String<class_String>` **layer_names/3d_render/layer_20** = ``""``
  4675. Optional name for the 3D render layer 20. If left empty, the layer will display as "Layer 20".
  4676. .. rst-class:: classref-item-separator
  4677. ----
  4678. .. _class_ProjectSettings_property_layer_names/avoidance/layer_1:
  4679. .. rst-class:: classref-property
  4680. :ref:`String<class_String>` **layer_names/avoidance/layer_1** = ``""``
  4681. Optional name for the navigation avoidance layer 1. If left empty, the layer will display as "Layer 1".
  4682. .. rst-class:: classref-item-separator
  4683. ----
  4684. .. _class_ProjectSettings_property_layer_names/avoidance/layer_2:
  4685. .. rst-class:: classref-property
  4686. :ref:`String<class_String>` **layer_names/avoidance/layer_2** = ``""``
  4687. Optional name for the navigation avoidance layer 2. If left empty, the layer will display as "Layer 2".
  4688. .. rst-class:: classref-item-separator
  4689. ----
  4690. .. _class_ProjectSettings_property_layer_names/avoidance/layer_3:
  4691. .. rst-class:: classref-property
  4692. :ref:`String<class_String>` **layer_names/avoidance/layer_3** = ``""``
  4693. Optional name for the navigation avoidance layer 3. If left empty, the layer will display as "Layer 3".
  4694. .. rst-class:: classref-item-separator
  4695. ----
  4696. .. _class_ProjectSettings_property_layer_names/avoidance/layer_4:
  4697. .. rst-class:: classref-property
  4698. :ref:`String<class_String>` **layer_names/avoidance/layer_4** = ``""``
  4699. Optional name for the navigation avoidance layer 4. If left empty, the layer will display as "Layer 4".
  4700. .. rst-class:: classref-item-separator
  4701. ----
  4702. .. _class_ProjectSettings_property_layer_names/avoidance/layer_5:
  4703. .. rst-class:: classref-property
  4704. :ref:`String<class_String>` **layer_names/avoidance/layer_5** = ``""``
  4705. Optional name for the navigation avoidance layer 5. If left empty, the layer will display as "Layer 5".
  4706. .. rst-class:: classref-item-separator
  4707. ----
  4708. .. _class_ProjectSettings_property_layer_names/avoidance/layer_6:
  4709. .. rst-class:: classref-property
  4710. :ref:`String<class_String>` **layer_names/avoidance/layer_6** = ``""``
  4711. Optional name for the navigation avoidance layer 6. If left empty, the layer will display as "Layer 6".
  4712. .. rst-class:: classref-item-separator
  4713. ----
  4714. .. _class_ProjectSettings_property_layer_names/avoidance/layer_7:
  4715. .. rst-class:: classref-property
  4716. :ref:`String<class_String>` **layer_names/avoidance/layer_7** = ``""``
  4717. Optional name for the navigation avoidance layer 7. If left empty, the layer will display as "Layer 7".
  4718. .. rst-class:: classref-item-separator
  4719. ----
  4720. .. _class_ProjectSettings_property_layer_names/avoidance/layer_8:
  4721. .. rst-class:: classref-property
  4722. :ref:`String<class_String>` **layer_names/avoidance/layer_8** = ``""``
  4723. Optional name for the navigation avoidance layer 8. If left empty, the layer will display as "Layer 8".
  4724. .. rst-class:: classref-item-separator
  4725. ----
  4726. .. _class_ProjectSettings_property_layer_names/avoidance/layer_9:
  4727. .. rst-class:: classref-property
  4728. :ref:`String<class_String>` **layer_names/avoidance/layer_9** = ``""``
  4729. Optional name for the navigation avoidance layer 9. If left empty, the layer will display as "Layer 9".
  4730. .. rst-class:: classref-item-separator
  4731. ----
  4732. .. _class_ProjectSettings_property_layer_names/avoidance/layer_10:
  4733. .. rst-class:: classref-property
  4734. :ref:`String<class_String>` **layer_names/avoidance/layer_10** = ``""``
  4735. Optional name for the navigation avoidance layer 10. If left empty, the layer will display as "Layer 10".
  4736. .. rst-class:: classref-item-separator
  4737. ----
  4738. .. _class_ProjectSettings_property_layer_names/avoidance/layer_11:
  4739. .. rst-class:: classref-property
  4740. :ref:`String<class_String>` **layer_names/avoidance/layer_11** = ``""``
  4741. Optional name for the navigation avoidance layer 11. If left empty, the layer will display as "Layer 11".
  4742. .. rst-class:: classref-item-separator
  4743. ----
  4744. .. _class_ProjectSettings_property_layer_names/avoidance/layer_12:
  4745. .. rst-class:: classref-property
  4746. :ref:`String<class_String>` **layer_names/avoidance/layer_12** = ``""``
  4747. Optional name for the navigation avoidance layer 12. If left empty, the layer will display as "Layer 12".
  4748. .. rst-class:: classref-item-separator
  4749. ----
  4750. .. _class_ProjectSettings_property_layer_names/avoidance/layer_13:
  4751. .. rst-class:: classref-property
  4752. :ref:`String<class_String>` **layer_names/avoidance/layer_13** = ``""``
  4753. Optional name for the navigation avoidance layer 13. If left empty, the layer will display as "Layer 13".
  4754. .. rst-class:: classref-item-separator
  4755. ----
  4756. .. _class_ProjectSettings_property_layer_names/avoidance/layer_14:
  4757. .. rst-class:: classref-property
  4758. :ref:`String<class_String>` **layer_names/avoidance/layer_14** = ``""``
  4759. Optional name for the navigation avoidance layer 14. If left empty, the layer will display as "Layer 14".
  4760. .. rst-class:: classref-item-separator
  4761. ----
  4762. .. _class_ProjectSettings_property_layer_names/avoidance/layer_15:
  4763. .. rst-class:: classref-property
  4764. :ref:`String<class_String>` **layer_names/avoidance/layer_15** = ``""``
  4765. Optional name for the navigation avoidance layer 15. If left empty, the layer will display as "Layer 15".
  4766. .. rst-class:: classref-item-separator
  4767. ----
  4768. .. _class_ProjectSettings_property_layer_names/avoidance/layer_16:
  4769. .. rst-class:: classref-property
  4770. :ref:`String<class_String>` **layer_names/avoidance/layer_16** = ``""``
  4771. Optional name for the navigation avoidance layer 16. If left empty, the layer will display as "Layer 16".
  4772. .. rst-class:: classref-item-separator
  4773. ----
  4774. .. _class_ProjectSettings_property_layer_names/avoidance/layer_17:
  4775. .. rst-class:: classref-property
  4776. :ref:`String<class_String>` **layer_names/avoidance/layer_17** = ``""``
  4777. Optional name for the navigation avoidance layer 17. If left empty, the layer will display as "Layer 17".
  4778. .. rst-class:: classref-item-separator
  4779. ----
  4780. .. _class_ProjectSettings_property_layer_names/avoidance/layer_18:
  4781. .. rst-class:: classref-property
  4782. :ref:`String<class_String>` **layer_names/avoidance/layer_18** = ``""``
  4783. Optional name for the navigation avoidance layer 18. If left empty, the layer will display as "Layer 18".
  4784. .. rst-class:: classref-item-separator
  4785. ----
  4786. .. _class_ProjectSettings_property_layer_names/avoidance/layer_19:
  4787. .. rst-class:: classref-property
  4788. :ref:`String<class_String>` **layer_names/avoidance/layer_19** = ``""``
  4789. Optional name for the navigation avoidance layer 19. If left empty, the layer will display as "Layer 19".
  4790. .. rst-class:: classref-item-separator
  4791. ----
  4792. .. _class_ProjectSettings_property_layer_names/avoidance/layer_20:
  4793. .. rst-class:: classref-property
  4794. :ref:`String<class_String>` **layer_names/avoidance/layer_20** = ``""``
  4795. Optional name for the navigation avoidance layer 20. If left empty, the layer will display as "Layer 20".
  4796. .. rst-class:: classref-item-separator
  4797. ----
  4798. .. _class_ProjectSettings_property_layer_names/avoidance/layer_21:
  4799. .. rst-class:: classref-property
  4800. :ref:`String<class_String>` **layer_names/avoidance/layer_21** = ``""``
  4801. Optional name for the navigation avoidance layer 21. If left empty, the layer will display as "Layer 21".
  4802. .. rst-class:: classref-item-separator
  4803. ----
  4804. .. _class_ProjectSettings_property_layer_names/avoidance/layer_22:
  4805. .. rst-class:: classref-property
  4806. :ref:`String<class_String>` **layer_names/avoidance/layer_22** = ``""``
  4807. Optional name for the navigation avoidance layer 22. If left empty, the layer will display as "Layer 22".
  4808. .. rst-class:: classref-item-separator
  4809. ----
  4810. .. _class_ProjectSettings_property_layer_names/avoidance/layer_23:
  4811. .. rst-class:: classref-property
  4812. :ref:`String<class_String>` **layer_names/avoidance/layer_23** = ``""``
  4813. Optional name for the navigation avoidance layer 23. If left empty, the layer will display as "Layer 23".
  4814. .. rst-class:: classref-item-separator
  4815. ----
  4816. .. _class_ProjectSettings_property_layer_names/avoidance/layer_24:
  4817. .. rst-class:: classref-property
  4818. :ref:`String<class_String>` **layer_names/avoidance/layer_24** = ``""``
  4819. Optional name for the navigation avoidance layer 24. If left empty, the layer will display as "Layer 24".
  4820. .. rst-class:: classref-item-separator
  4821. ----
  4822. .. _class_ProjectSettings_property_layer_names/avoidance/layer_25:
  4823. .. rst-class:: classref-property
  4824. :ref:`String<class_String>` **layer_names/avoidance/layer_25** = ``""``
  4825. Optional name for the navigation avoidance layer 25. If left empty, the layer will display as "Layer 25".
  4826. .. rst-class:: classref-item-separator
  4827. ----
  4828. .. _class_ProjectSettings_property_layer_names/avoidance/layer_26:
  4829. .. rst-class:: classref-property
  4830. :ref:`String<class_String>` **layer_names/avoidance/layer_26** = ``""``
  4831. Optional name for the navigation avoidance layer 26. If left empty, the layer will display as "Layer 26".
  4832. .. rst-class:: classref-item-separator
  4833. ----
  4834. .. _class_ProjectSettings_property_layer_names/avoidance/layer_27:
  4835. .. rst-class:: classref-property
  4836. :ref:`String<class_String>` **layer_names/avoidance/layer_27** = ``""``
  4837. Optional name for the navigation avoidance layer 27. If left empty, the layer will display as "Layer 27".
  4838. .. rst-class:: classref-item-separator
  4839. ----
  4840. .. _class_ProjectSettings_property_layer_names/avoidance/layer_28:
  4841. .. rst-class:: classref-property
  4842. :ref:`String<class_String>` **layer_names/avoidance/layer_28** = ``""``
  4843. Optional name for the navigation avoidance layer 28. If left empty, the layer will display as "Layer 28".
  4844. .. rst-class:: classref-item-separator
  4845. ----
  4846. .. _class_ProjectSettings_property_layer_names/avoidance/layer_29:
  4847. .. rst-class:: classref-property
  4848. :ref:`String<class_String>` **layer_names/avoidance/layer_29** = ``""``
  4849. Optional name for the navigation avoidance layer 29. If left empty, the layer will display as "Layer 29".
  4850. .. rst-class:: classref-item-separator
  4851. ----
  4852. .. _class_ProjectSettings_property_layer_names/avoidance/layer_30:
  4853. .. rst-class:: classref-property
  4854. :ref:`String<class_String>` **layer_names/avoidance/layer_30** = ``""``
  4855. Optional name for the navigation avoidance layer 30. If left empty, the layer will display as "Layer 30".
  4856. .. rst-class:: classref-item-separator
  4857. ----
  4858. .. _class_ProjectSettings_property_layer_names/avoidance/layer_31:
  4859. .. rst-class:: classref-property
  4860. :ref:`String<class_String>` **layer_names/avoidance/layer_31** = ``""``
  4861. Optional name for the navigation avoidance layer 31. If left empty, the layer will display as "Layer 31".
  4862. .. rst-class:: classref-item-separator
  4863. ----
  4864. .. _class_ProjectSettings_property_layer_names/avoidance/layer_32:
  4865. .. rst-class:: classref-property
  4866. :ref:`String<class_String>` **layer_names/avoidance/layer_32** = ``""``
  4867. Optional name for the navigation avoidance layer 32. If left empty, the layer will display as "Layer 32".
  4868. .. rst-class:: classref-item-separator
  4869. ----
  4870. .. _class_ProjectSettings_property_memory/limits/message_queue/max_size_mb:
  4871. .. rst-class:: classref-property
  4872. :ref:`int<class_int>` **memory/limits/message_queue/max_size_mb** = ``32``
  4873. 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.
  4874. .. rst-class:: classref-item-separator
  4875. ----
  4876. .. _class_ProjectSettings_property_memory/limits/multithreaded_server/rid_pool_prealloc:
  4877. .. rst-class:: classref-property
  4878. :ref:`int<class_int>` **memory/limits/multithreaded_server/rid_pool_prealloc** = ``60``
  4879. This is used by servers when used in multi-threading mode (servers and visual). RIDs are preallocated to avoid stalling the server requesting them on threads. If servers get stalled too often when loading resources in a thread, increase this number.
  4880. .. rst-class:: classref-item-separator
  4881. ----
  4882. .. _class_ProjectSettings_property_navigation/2d/default_cell_size:
  4883. .. rst-class:: classref-property
  4884. :ref:`float<class_float>` **navigation/2d/default_cell_size** = ``1.0``
  4885. Default cell size for 2D navigation maps. See :ref:`NavigationServer2D.map_set_cell_size<class_NavigationServer2D_method_map_set_cell_size>`.
  4886. .. rst-class:: classref-item-separator
  4887. ----
  4888. .. _class_ProjectSettings_property_navigation/2d/default_edge_connection_margin:
  4889. .. rst-class:: classref-property
  4890. :ref:`float<class_float>` **navigation/2d/default_edge_connection_margin** = ``1.0``
  4891. Default edge connection margin for 2D navigation maps. See :ref:`NavigationServer2D.map_set_edge_connection_margin<class_NavigationServer2D_method_map_set_edge_connection_margin>`.
  4892. .. rst-class:: classref-item-separator
  4893. ----
  4894. .. _class_ProjectSettings_property_navigation/2d/default_link_connection_radius:
  4895. .. rst-class:: classref-property
  4896. :ref:`float<class_float>` **navigation/2d/default_link_connection_radius** = ``4.0``
  4897. Default link connection radius for 2D navigation maps. See :ref:`NavigationServer2D.map_set_link_connection_radius<class_NavigationServer2D_method_map_set_link_connection_radius>`.
  4898. .. rst-class:: classref-item-separator
  4899. ----
  4900. .. _class_ProjectSettings_property_navigation/2d/use_edge_connections:
  4901. .. rst-class:: classref-property
  4902. :ref:`bool<class_bool>` **navigation/2d/use_edge_connections** = ``true``
  4903. 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.
  4904. .. rst-class:: classref-item-separator
  4905. ----
  4906. .. _class_ProjectSettings_property_navigation/3d/default_cell_height:
  4907. .. rst-class:: classref-property
  4908. :ref:`float<class_float>` **navigation/3d/default_cell_height** = ``0.25``
  4909. Default cell height for 3D navigation maps. See :ref:`NavigationServer3D.map_set_cell_height<class_NavigationServer3D_method_map_set_cell_height>`.
  4910. .. rst-class:: classref-item-separator
  4911. ----
  4912. .. _class_ProjectSettings_property_navigation/3d/default_cell_size:
  4913. .. rst-class:: classref-property
  4914. :ref:`float<class_float>` **navigation/3d/default_cell_size** = ``0.25``
  4915. Default cell size for 3D navigation maps. See :ref:`NavigationServer3D.map_set_cell_size<class_NavigationServer3D_method_map_set_cell_size>`.
  4916. .. rst-class:: classref-item-separator
  4917. ----
  4918. .. _class_ProjectSettings_property_navigation/3d/default_edge_connection_margin:
  4919. .. rst-class:: classref-property
  4920. :ref:`float<class_float>` **navigation/3d/default_edge_connection_margin** = ``0.25``
  4921. Default edge connection margin for 3D navigation maps. See :ref:`NavigationServer3D.map_set_edge_connection_margin<class_NavigationServer3D_method_map_set_edge_connection_margin>`.
  4922. .. rst-class:: classref-item-separator
  4923. ----
  4924. .. _class_ProjectSettings_property_navigation/3d/default_link_connection_radius:
  4925. .. rst-class:: classref-property
  4926. :ref:`float<class_float>` **navigation/3d/default_link_connection_radius** = ``1.0``
  4927. Default link connection radius for 3D navigation maps. See :ref:`NavigationServer3D.map_set_link_connection_radius<class_NavigationServer3D_method_map_set_link_connection_radius>`.
  4928. .. rst-class:: classref-item-separator
  4929. ----
  4930. .. _class_ProjectSettings_property_navigation/3d/default_up:
  4931. .. rst-class:: classref-property
  4932. :ref:`Vector3<class_Vector3>` **navigation/3d/default_up** = ``Vector3(0, 1, 0)``
  4933. Default up orientation for 3D navigation maps. See :ref:`NavigationServer3D.map_set_up<class_NavigationServer3D_method_map_set_up>`.
  4934. .. rst-class:: classref-item-separator
  4935. ----
  4936. .. _class_ProjectSettings_property_navigation/3d/use_edge_connections:
  4937. .. rst-class:: classref-property
  4938. :ref:`bool<class_bool>` **navigation/3d/use_edge_connections** = ``true``
  4939. 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.
  4940. .. rst-class:: classref-item-separator
  4941. ----
  4942. .. _class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_high_priority_threads:
  4943. .. rst-class:: classref-property
  4944. :ref:`bool<class_bool>` **navigation/avoidance/thread_model/avoidance_use_high_priority_threads** = ``true``
  4945. If enabled and avoidance calculations use multiple threads the threads run with high priority.
  4946. .. rst-class:: classref-item-separator
  4947. ----
  4948. .. _class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_multiple_threads:
  4949. .. rst-class:: classref-property
  4950. :ref:`bool<class_bool>` **navigation/avoidance/thread_model/avoidance_use_multiple_threads** = ``true``
  4951. If enabled the avoidance calculations use multiple threads.
  4952. .. rst-class:: classref-item-separator
  4953. ----
  4954. .. _class_ProjectSettings_property_navigation/baking/thread_model/baking_use_high_priority_threads:
  4955. .. rst-class:: classref-property
  4956. :ref:`bool<class_bool>` **navigation/baking/thread_model/baking_use_high_priority_threads** = ``true``
  4957. If enabled and async navmesh baking uses multiple threads the threads run with high priority.
  4958. .. rst-class:: classref-item-separator
  4959. ----
  4960. .. _class_ProjectSettings_property_navigation/baking/thread_model/baking_use_multiple_threads:
  4961. .. rst-class:: classref-property
  4962. :ref:`bool<class_bool>` **navigation/baking/thread_model/baking_use_multiple_threads** = ``true``
  4963. If enabled the async navmesh baking uses multiple threads.
  4964. .. rst-class:: classref-item-separator
  4965. ----
  4966. .. _class_ProjectSettings_property_network/limits/debugger/max_chars_per_second:
  4967. .. rst-class:: classref-property
  4968. :ref:`int<class_int>` **network/limits/debugger/max_chars_per_second** = ``32768``
  4969. 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.
  4970. .. rst-class:: classref-item-separator
  4971. ----
  4972. .. _class_ProjectSettings_property_network/limits/debugger/max_errors_per_second:
  4973. .. rst-class:: classref-property
  4974. :ref:`int<class_int>` **network/limits/debugger/max_errors_per_second** = ``400``
  4975. 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.
  4976. .. rst-class:: classref-item-separator
  4977. ----
  4978. .. _class_ProjectSettings_property_network/limits/debugger/max_queued_messages:
  4979. .. rst-class:: classref-property
  4980. :ref:`int<class_int>` **network/limits/debugger/max_queued_messages** = ``2048``
  4981. Maximum number of messages in the debugger queue. Over this value, content is dropped. This helps to limit the debugger memory usage.
  4982. .. rst-class:: classref-item-separator
  4983. ----
  4984. .. _class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second:
  4985. .. rst-class:: classref-property
  4986. :ref:`int<class_int>` **network/limits/debugger/max_warnings_per_second** = ``400``
  4987. 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.
  4988. .. rst-class:: classref-item-separator
  4989. ----
  4990. .. _class_ProjectSettings_property_network/limits/packet_peer_stream/max_buffer_po2:
  4991. .. rst-class:: classref-property
  4992. :ref:`int<class_int>` **network/limits/packet_peer_stream/max_buffer_po2** = ``16``
  4993. 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.
  4994. .. rst-class:: classref-item-separator
  4995. ----
  4996. .. _class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds:
  4997. .. rst-class:: classref-property
  4998. :ref:`int<class_int>` **network/limits/tcp/connect_timeout_seconds** = ``30``
  4999. Timeout (in seconds) for connection attempts using TCP.
  5000. .. rst-class:: classref-item-separator
  5001. ----
  5002. .. _class_ProjectSettings_property_network/limits/webrtc/max_channel_in_buffer_kb:
  5003. .. rst-class:: classref-property
  5004. :ref:`int<class_int>` **network/limits/webrtc/max_channel_in_buffer_kb** = ``64``
  5005. Maximum size (in kiB) for the :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` input buffer.
  5006. .. rst-class:: classref-item-separator
  5007. ----
  5008. .. _class_ProjectSettings_property_network/tls/certificate_bundle_override:
  5009. .. rst-class:: classref-property
  5010. :ref:`String<class_String>` **network/tls/certificate_bundle_override** = ``""``
  5011. 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.
  5012. If in doubt, leave this setting empty.
  5013. .. rst-class:: classref-item-separator
  5014. ----
  5015. .. _class_ProjectSettings_property_physics/2d/default_angular_damp:
  5016. .. rst-class:: classref-property
  5017. :ref:`float<class_float>` **physics/2d/default_angular_damp** = ``1.0``
  5018. The default angular damp in 2D.
  5019. \ **Note:** Good values are in the range ``0`` to ``1``. At value ``0`` objects will keep moving with the same velocity. Values greater than ``1`` will aim to reduce the velocity to ``0`` in less than a second e.g. a value of ``2`` will aim to reduce the velocity to ``0`` in half a second. A value equal to or greater than the physics frame rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`, ``60`` by default) will bring the object to a stop in one iteration.
  5020. .. rst-class:: classref-item-separator
  5021. ----
  5022. .. _class_ProjectSettings_property_physics/2d/default_gravity:
  5023. .. rst-class:: classref-property
  5024. :ref:`float<class_float>` **physics/2d/default_gravity** = ``980.0``
  5025. The default gravity strength in 2D (in pixels per second squared).
  5026. \ **Note:** This property is only read when the project starts. To change the default gravity at runtime, use the following code sample:
  5027. .. tabs::
  5028. .. code-tab:: gdscript
  5029. # Set the default gravity strength to 980.
  5030. PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY, 980)
  5031. .. code-tab:: csharp
  5032. // Set the default gravity strength to 980.
  5033. PhysicsServer2D.AreaSetParam(GetViewport().FindWorld2D().Space, PhysicsServer2D.AreaParameter.Gravity, 980);
  5034. .. rst-class:: classref-item-separator
  5035. ----
  5036. .. _class_ProjectSettings_property_physics/2d/default_gravity_vector:
  5037. .. rst-class:: classref-property
  5038. :ref:`Vector2<class_Vector2>` **physics/2d/default_gravity_vector** = ``Vector2(0, 1)``
  5039. The default gravity direction in 2D.
  5040. \ **Note:** This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample:
  5041. .. tabs::
  5042. .. code-tab:: gdscript
  5043. # Set the default gravity direction to `Vector2(0, 1)`.
  5044. PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY_VECTOR, Vector2.DOWN)
  5045. .. code-tab:: csharp
  5046. // Set the default gravity direction to `Vector2(0, 1)`.
  5047. PhysicsServer2D.AreaSetParam(GetViewport().FindWorld2D().Space, PhysicsServer2D.AreaParameter.GravityVector, Vector2.Down)
  5048. .. rst-class:: classref-item-separator
  5049. ----
  5050. .. _class_ProjectSettings_property_physics/2d/default_linear_damp:
  5051. .. rst-class:: classref-property
  5052. :ref:`float<class_float>` **physics/2d/default_linear_damp** = ``0.1``
  5053. The default linear damp in 2D.
  5054. \ **Note:** Good values are in the range ``0`` to ``1``. At value ``0`` objects will keep moving with the same velocity. Values greater than ``1`` will aim to reduce the velocity to ``0`` in less than a second e.g. a value of ``2`` will aim to reduce the velocity to ``0`` in half a second. A value equal to or greater than the physics frame rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`, ``60`` by default) will bring the object to a stop in one iteration.
  5055. .. rst-class:: classref-item-separator
  5056. ----
  5057. .. _class_ProjectSettings_property_physics/2d/physics_engine:
  5058. .. rst-class:: classref-property
  5059. :ref:`String<class_String>` **physics/2d/physics_engine** = ``"DEFAULT"``
  5060. Sets which physics engine to use for 2D physics.
  5061. "DEFAULT" and "GodotPhysics2D" are the same, as there is currently no alternative 2D physics server implemented.
  5062. .. rst-class:: classref-item-separator
  5063. ----
  5064. .. _class_ProjectSettings_property_physics/2d/run_on_separate_thread:
  5065. .. rst-class:: classref-property
  5066. :ref:`bool<class_bool>` **physics/2d/run_on_separate_thread** = ``false``
  5067. 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.
  5068. .. rst-class:: classref-item-separator
  5069. ----
  5070. .. _class_ProjectSettings_property_physics/2d/sleep_threshold_angular:
  5071. .. rst-class:: classref-property
  5072. :ref:`float<class_float>` **physics/2d/sleep_threshold_angular** = ``0.139626``
  5073. 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>`.
  5074. .. rst-class:: classref-item-separator
  5075. ----
  5076. .. _class_ProjectSettings_property_physics/2d/sleep_threshold_linear:
  5077. .. rst-class:: classref-property
  5078. :ref:`float<class_float>` **physics/2d/sleep_threshold_linear** = ``2.0``
  5079. 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>`.
  5080. .. rst-class:: classref-item-separator
  5081. ----
  5082. .. _class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration:
  5083. .. rst-class:: classref-property
  5084. :ref:`float<class_float>` **physics/2d/solver/contact_max_allowed_penetration** = ``0.3``
  5085. 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>`.
  5086. .. rst-class:: classref-item-separator
  5087. ----
  5088. .. _class_ProjectSettings_property_physics/2d/solver/contact_max_separation:
  5089. .. rst-class:: classref-property
  5090. :ref:`float<class_float>` **physics/2d/solver/contact_max_separation** = ``1.5``
  5091. 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>`.
  5092. .. rst-class:: classref-item-separator
  5093. ----
  5094. .. _class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius:
  5095. .. rst-class:: classref-property
  5096. :ref:`float<class_float>` **physics/2d/solver/contact_recycle_radius** = ``1.0``
  5097. 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>`.
  5098. .. rst-class:: classref-item-separator
  5099. ----
  5100. .. _class_ProjectSettings_property_physics/2d/solver/default_constraint_bias:
  5101. .. rst-class:: classref-property
  5102. :ref:`float<class_float>` **physics/2d/solver/default_constraint_bias** = ``0.2``
  5103. 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>`.
  5104. Individual constraints can have a specific bias value (see :ref:`Joint2D.bias<class_Joint2D_property_bias>`).
  5105. .. rst-class:: classref-item-separator
  5106. ----
  5107. .. _class_ProjectSettings_property_physics/2d/solver/default_contact_bias:
  5108. .. rst-class:: classref-property
  5109. :ref:`float<class_float>` **physics/2d/solver/default_contact_bias** = ``0.8``
  5110. 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>`.
  5111. Individual shapes can have a specific bias value (see :ref:`Shape2D.custom_solver_bias<class_Shape2D_property_custom_solver_bias>`).
  5112. .. rst-class:: classref-item-separator
  5113. ----
  5114. .. _class_ProjectSettings_property_physics/2d/solver/solver_iterations:
  5115. .. rst-class:: classref-property
  5116. :ref:`int<class_int>` **physics/2d/solver/solver_iterations** = ``16``
  5117. 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>`.
  5118. .. rst-class:: classref-item-separator
  5119. ----
  5120. .. _class_ProjectSettings_property_physics/2d/time_before_sleep:
  5121. .. rst-class:: classref-property
  5122. :ref:`float<class_float>` **physics/2d/time_before_sleep** = ``0.5``
  5123. 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>`.
  5124. .. rst-class:: classref-item-separator
  5125. ----
  5126. .. _class_ProjectSettings_property_physics/3d/default_angular_damp:
  5127. .. rst-class:: classref-property
  5128. :ref:`float<class_float>` **physics/3d/default_angular_damp** = ``0.1``
  5129. The default angular damp in 3D.
  5130. \ **Note:** Good values are in the range ``0`` to ``1``. At value ``0`` objects will keep moving with the same velocity. Values greater than ``1`` will aim to reduce the velocity to ``0`` in less than a second e.g. a value of ``2`` will aim to reduce the velocity to ``0`` in half a second. A value equal to or greater than the physics frame rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`, ``60`` by default) will bring the object to a stop in one iteration.
  5131. .. rst-class:: classref-item-separator
  5132. ----
  5133. .. _class_ProjectSettings_property_physics/3d/default_gravity:
  5134. .. rst-class:: classref-property
  5135. :ref:`float<class_float>` **physics/3d/default_gravity** = ``9.8``
  5136. The default gravity strength in 3D (in meters per second squared).
  5137. \ **Note:** This property is only read when the project starts. To change the default gravity at runtime, use the following code sample:
  5138. .. tabs::
  5139. .. code-tab:: gdscript
  5140. # Set the default gravity strength to 9.8.
  5141. PhysicsServer3D.area_set_param(get_viewport().find_world().space, PhysicsServer3D.AREA_PARAM_GRAVITY, 9.8)
  5142. .. code-tab:: csharp
  5143. // Set the default gravity strength to 9.8.
  5144. PhysicsServer3D.AreaSetParam(GetViewport().FindWorld().Space, PhysicsServer3D.AreaParameter.Gravity, 9.8);
  5145. .. rst-class:: classref-item-separator
  5146. ----
  5147. .. _class_ProjectSettings_property_physics/3d/default_gravity_vector:
  5148. .. rst-class:: classref-property
  5149. :ref:`Vector3<class_Vector3>` **physics/3d/default_gravity_vector** = ``Vector3(0, -1, 0)``
  5150. The default gravity direction in 3D.
  5151. \ **Note:** This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample:
  5152. .. tabs::
  5153. .. code-tab:: gdscript
  5154. # Set the default gravity direction to `Vector3(0, -1, 0)`.
  5155. PhysicsServer3D.area_set_param(get_viewport().find_world().get_space(), PhysicsServer3D.AREA_PARAM_GRAVITY_VECTOR, Vector3.DOWN)
  5156. .. code-tab:: csharp
  5157. // Set the default gravity direction to `Vector3(0, -1, 0)`.
  5158. PhysicsServer3D.AreaSetParam(GetViewport().FindWorld().Space, PhysicsServer3D.AreaParameter.GravityVector, Vector3.Down)
  5159. .. rst-class:: classref-item-separator
  5160. ----
  5161. .. _class_ProjectSettings_property_physics/3d/default_linear_damp:
  5162. .. rst-class:: classref-property
  5163. :ref:`float<class_float>` **physics/3d/default_linear_damp** = ``0.1``
  5164. The default linear damp in 3D.
  5165. \ **Note:** Good values are in the range ``0`` to ``1``. At value ``0`` objects will keep moving with the same velocity. Values greater than ``1`` will aim to reduce the velocity to ``0`` in less than a second e.g. a value of ``2`` will aim to reduce the velocity to ``0`` in half a second. A value equal to or greater than the physics frame rate (:ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`, ``60`` by default) will bring the object to a stop in one iteration.
  5166. .. rst-class:: classref-item-separator
  5167. ----
  5168. .. _class_ProjectSettings_property_physics/3d/physics_engine:
  5169. .. rst-class:: classref-property
  5170. :ref:`String<class_String>` **physics/3d/physics_engine** = ``"DEFAULT"``
  5171. Sets which physics engine to use for 3D physics.
  5172. "DEFAULT" and "GodotPhysics3D" are the same, as there is currently no alternative 3D physics server implemented.
  5173. .. rst-class:: classref-item-separator
  5174. ----
  5175. .. _class_ProjectSettings_property_physics/3d/run_on_separate_thread:
  5176. .. rst-class:: classref-property
  5177. :ref:`bool<class_bool>` **physics/3d/run_on_separate_thread** = ``false``
  5178. 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.
  5179. .. rst-class:: classref-item-separator
  5180. ----
  5181. .. _class_ProjectSettings_property_physics/3d/sleep_threshold_angular:
  5182. .. rst-class:: classref-property
  5183. :ref:`float<class_float>` **physics/3d/sleep_threshold_angular** = ``0.139626``
  5184. 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>`.
  5185. .. rst-class:: classref-item-separator
  5186. ----
  5187. .. _class_ProjectSettings_property_physics/3d/sleep_threshold_linear:
  5188. .. rst-class:: classref-property
  5189. :ref:`float<class_float>` **physics/3d/sleep_threshold_linear** = ``0.1``
  5190. 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>`.
  5191. .. rst-class:: classref-item-separator
  5192. ----
  5193. .. _class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration:
  5194. .. rst-class:: classref-property
  5195. :ref:`float<class_float>` **physics/3d/solver/contact_max_allowed_penetration** = ``0.01``
  5196. 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>`.
  5197. .. rst-class:: classref-item-separator
  5198. ----
  5199. .. _class_ProjectSettings_property_physics/3d/solver/contact_max_separation:
  5200. .. rst-class:: classref-property
  5201. :ref:`float<class_float>` **physics/3d/solver/contact_max_separation** = ``0.05``
  5202. 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>`.
  5203. .. rst-class:: classref-item-separator
  5204. ----
  5205. .. _class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius:
  5206. .. rst-class:: classref-property
  5207. :ref:`float<class_float>` **physics/3d/solver/contact_recycle_radius** = ``0.01``
  5208. 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>`.
  5209. .. rst-class:: classref-item-separator
  5210. ----
  5211. .. _class_ProjectSettings_property_physics/3d/solver/default_contact_bias:
  5212. .. rst-class:: classref-property
  5213. :ref:`float<class_float>` **physics/3d/solver/default_contact_bias** = ``0.8``
  5214. 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>`.
  5215. Individual shapes can have a specific bias value (see :ref:`Shape3D.custom_solver_bias<class_Shape3D_property_custom_solver_bias>`).
  5216. .. rst-class:: classref-item-separator
  5217. ----
  5218. .. _class_ProjectSettings_property_physics/3d/solver/solver_iterations:
  5219. .. rst-class:: classref-property
  5220. :ref:`int<class_int>` **physics/3d/solver/solver_iterations** = ``16``
  5221. 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>`.
  5222. .. rst-class:: classref-item-separator
  5223. ----
  5224. .. _class_ProjectSettings_property_physics/3d/time_before_sleep:
  5225. .. rst-class:: classref-property
  5226. :ref:`float<class_float>` **physics/3d/time_before_sleep** = ``0.5``
  5227. 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>`.
  5228. .. rst-class:: classref-item-separator
  5229. ----
  5230. .. _class_ProjectSettings_property_physics/common/enable_object_picking:
  5231. .. rst-class:: classref-property
  5232. :ref:`bool<class_bool>` **physics/common/enable_object_picking** = ``true``
  5233. Enables :ref:`Viewport.physics_object_picking<class_Viewport_property_physics_object_picking>` on the root viewport.
  5234. .. rst-class:: classref-item-separator
  5235. ----
  5236. .. _class_ProjectSettings_property_physics/common/max_physics_steps_per_frame:
  5237. .. rst-class:: classref-property
  5238. :ref:`int<class_int>` **physics/common/max_physics_steps_per_frame** = ``8``
  5239. 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.
  5240. \ **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.
  5241. .. rst-class:: classref-item-separator
  5242. ----
  5243. .. _class_ProjectSettings_property_physics/common/physics_jitter_fix:
  5244. .. rst-class:: classref-property
  5245. :ref:`float<class_float>` **physics/common/physics_jitter_fix** = ``0.5``
  5246. 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 fine for most; values above 2 could cause the game to react to dropped frames with a noticeable delay and are not recommended.
  5247. \ **Note:** For best results, when using a custom physics interpolation 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``.
  5248. \ **Note:** This property is only read when the project starts. To change the physics FPS at runtime, set :ref:`Engine.physics_jitter_fix<class_Engine_property_physics_jitter_fix>` instead.
  5249. .. rst-class:: classref-item-separator
  5250. ----
  5251. .. _class_ProjectSettings_property_physics/common/physics_ticks_per_second:
  5252. .. rst-class:: classref-property
  5253. :ref:`int<class_int>` **physics/common/physics_ticks_per_second** = ``60``
  5254. The number of fixed iterations per second. This controls how often physics simulation and :ref:`Node._physics_process<class_Node_method__physics_process>` methods are run. See also :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>`.
  5255. \ **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.
  5256. \ **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.
  5257. .. rst-class:: classref-item-separator
  5258. ----
  5259. .. _class_ProjectSettings_property_rendering/2d/sdf/oversize:
  5260. .. rst-class:: classref-property
  5261. :ref:`int<class_int>` **rendering/2d/sdf/oversize** = ``1``
  5262. 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.
  5263. 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).
  5264. \ **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.
  5265. .. rst-class:: classref-item-separator
  5266. ----
  5267. .. _class_ProjectSettings_property_rendering/2d/sdf/scale:
  5268. .. rst-class:: classref-property
  5269. :ref:`int<class_int>` **rendering/2d/sdf/scale** = ``1``
  5270. 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.
  5271. \ **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.
  5272. .. rst-class:: classref-item-separator
  5273. ----
  5274. .. _class_ProjectSettings_property_rendering/2d/shadow_atlas/size:
  5275. .. rst-class:: classref-property
  5276. :ref:`int<class_int>` **rendering/2d/shadow_atlas/size** = ``2048``
  5277. 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.
  5278. \ **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.
  5279. .. rst-class:: classref-item-separator
  5280. ----
  5281. .. _class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel:
  5282. .. rst-class:: classref-property
  5283. :ref:`bool<class_bool>` **rendering/2d/snap/snap_2d_transforms_to_pixel** = ``false``
  5284. If ``true``, :ref:`CanvasItem<class_CanvasItem>` nodes will internally snap to full pixels. Their position can still be sub-pixel, but the decimals will not have effect. This can lead to a crisper appearance at the cost of less smooth movement, especially when :ref:`Camera2D<class_Camera2D>` smoothing is enabled.
  5285. \ **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.
  5286. \ **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>`.
  5287. .. rst-class:: classref-item-separator
  5288. ----
  5289. .. _class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel:
  5290. .. rst-class:: classref-property
  5291. :ref:`bool<class_bool>` **rendering/2d/snap/snap_2d_vertices_to_pixel** = ``false``
  5292. If ``true``, vertices of :ref:`CanvasItem<class_CanvasItem>` nodes will snap to full pixels. 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.
  5293. \ **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.
  5294. \ **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>`.
  5295. .. rst-class:: classref-item-separator
  5296. ----
  5297. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d:
  5298. .. rst-class:: classref-property
  5299. :ref:`int<class_int>` **rendering/anti_aliasing/quality/msaa_2d** = ``0``
  5300. 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.
  5301. \ **Note:** MSAA is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5302. .. rst-class:: classref-item-separator
  5303. ----
  5304. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d:
  5305. .. rst-class:: classref-property
  5306. :ref:`int<class_int>` **rendering/anti_aliasing/quality/msaa_3d** = ``0``
  5307. 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.
  5308. \ **Note:** MSAA is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5309. .. rst-class:: classref-item-separator
  5310. ----
  5311. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa:
  5312. .. rst-class:: classref-property
  5313. :ref:`int<class_int>` **rendering/anti_aliasing/quality/screen_space_aa** = ``0``
  5314. 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>`).
  5315. 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>`.
  5316. \ **Note:** Screen-space antialiasing is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5317. .. rst-class:: classref-item-separator
  5318. ----
  5319. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding:
  5320. .. rst-class:: classref-property
  5321. :ref:`bool<class_bool>` **rendering/anti_aliasing/quality/use_debanding** = ``false``
  5322. 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>`.
  5323. 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.
  5324. \ **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.
  5325. .. rst-class:: classref-item-separator
  5326. ----
  5327. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa:
  5328. .. rst-class:: classref-property
  5329. :ref:`bool<class_bool>` **rendering/anti_aliasing/quality/use_taa** = ``false``
  5330. 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>`).
  5331. \ **Note:** The implementation is not complete yet. Some visual instances such as particles and skinned meshes may show ghosting artifacts in motion.
  5332. \ **Note:** TAA is only supported in the Forward+ rendering method, not Mobile or Compatibility.
  5333. .. rst-class:: classref-item-separator
  5334. ----
  5335. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/amount:
  5336. .. rst-class:: classref-property
  5337. :ref:`float<class_float>` **rendering/anti_aliasing/screen_space_roughness_limiter/amount** = ``0.25``
  5338. **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.
  5339. .. rst-class:: classref-item-separator
  5340. ----
  5341. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/enabled:
  5342. .. rst-class:: classref-property
  5343. :ref:`bool<class_bool>` **rendering/anti_aliasing/screen_space_roughness_limiter/enabled** = ``true``
  5344. 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.
  5345. \ **Note:** The screen-space roughness limiter is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5346. \ **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.
  5347. .. rst-class:: classref-item-separator
  5348. ----
  5349. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/limit:
  5350. .. rst-class:: classref-property
  5351. :ref:`float<class_float>` **rendering/anti_aliasing/screen_space_roughness_limiter/limit** = ``0.18``
  5352. **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.
  5353. .. rst-class:: classref-item-separator
  5354. ----
  5355. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_quality:
  5356. .. rst-class:: classref-property
  5357. :ref:`int<class_int>` **rendering/camera/depth_of_field/depth_of_field_bokeh_quality** = ``1``
  5358. Sets the quality of the depth of field effect. Higher quality takes more samples, which is slower but looks smoother.
  5359. .. rst-class:: classref-item-separator
  5360. ----
  5361. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_shape:
  5362. .. rst-class:: classref-property
  5363. :ref:`int<class_int>` **rendering/camera/depth_of_field/depth_of_field_bokeh_shape** = ``1``
  5364. 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.
  5365. .. rst-class:: classref-item-separator
  5366. ----
  5367. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_use_jitter:
  5368. .. rst-class:: classref-property
  5369. :ref:`bool<class_bool>` **rendering/camera/depth_of_field/depth_of_field_use_jitter** = ``false``
  5370. 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.
  5371. .. rst-class:: classref-item-separator
  5372. ----
  5373. .. _class_ProjectSettings_property_rendering/driver/depth_prepass/disable_for_vendors:
  5374. .. rst-class:: classref-property
  5375. :ref:`String<class_String>` **rendering/driver/depth_prepass/disable_for_vendors** = ``"PowerVR,Mali,Adreno,Apple"``
  5376. 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.
  5377. .. rst-class:: classref-item-separator
  5378. ----
  5379. .. _class_ProjectSettings_property_rendering/driver/depth_prepass/enable:
  5380. .. rst-class:: classref-property
  5381. :ref:`bool<class_bool>` **rendering/driver/depth_prepass/enable** = ``true``
  5382. 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.
  5383. \ **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.
  5384. .. rst-class:: classref-item-separator
  5385. ----
  5386. .. _class_ProjectSettings_property_rendering/driver/threads/thread_model:
  5387. .. rst-class:: classref-property
  5388. :ref:`int<class_int>` **rendering/driver/threads/thread_model** = ``1``
  5389. 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.
  5390. \ **Note:** The **Multi-Threaded** option is experimental, and 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.
  5391. .. rst-class:: classref-item-separator
  5392. ----
  5393. .. _class_ProjectSettings_property_rendering/environment/defaults/default_clear_color:
  5394. .. rst-class:: classref-property
  5395. :ref:`Color<class_Color>` **rendering/environment/defaults/default_clear_color** = ``Color(0.3, 0.3, 0.3, 1)``
  5396. 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>`.
  5397. .. rst-class:: classref-item-separator
  5398. ----
  5399. .. _class_ProjectSettings_property_rendering/environment/defaults/default_environment:
  5400. .. rst-class:: classref-property
  5401. :ref:`String<class_String>` **rendering/environment/defaults/default_environment** = ``""``
  5402. :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.
  5403. .. rst-class:: classref-item-separator
  5404. ----
  5405. .. _class_ProjectSettings_property_rendering/environment/glow/upscale_mode:
  5406. .. rst-class:: classref-property
  5407. :ref:`int<class_int>` **rendering/environment/glow/upscale_mode** = ``1``
  5408. 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.
  5409. .. rst-class:: classref-item-separator
  5410. ----
  5411. .. _class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile:
  5412. .. rst-class:: classref-property
  5413. :ref:`int<class_int>` **rendering/environment/glow/upscale_mode.mobile** = ``0``
  5414. 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.
  5415. .. rst-class:: classref-item-separator
  5416. ----
  5417. .. _class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality:
  5418. .. rst-class:: classref-property
  5419. :ref:`int<class_int>` **rendering/environment/screen_space_reflection/roughness_quality** = ``1``
  5420. 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.
  5421. .. rst-class:: classref-item-separator
  5422. ----
  5423. .. _class_ProjectSettings_property_rendering/environment/ssao/adaptive_target:
  5424. .. rst-class:: classref-property
  5425. :ref:`float<class_float>` **rendering/environment/ssao/adaptive_target** = ``0.5``
  5426. 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.
  5427. .. rst-class:: classref-item-separator
  5428. ----
  5429. .. _class_ProjectSettings_property_rendering/environment/ssao/blur_passes:
  5430. .. rst-class:: classref-property
  5431. :ref:`int<class_int>` **rendering/environment/ssao/blur_passes** = ``2``
  5432. 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.
  5433. .. rst-class:: classref-item-separator
  5434. ----
  5435. .. _class_ProjectSettings_property_rendering/environment/ssao/fadeout_from:
  5436. .. rst-class:: classref-property
  5437. :ref:`float<class_float>` **rendering/environment/ssao/fadeout_from** = ``50.0``
  5438. Distance at which the screen-space ambient occlusion effect starts to fade out. Use this hide ambient occlusion at great distances.
  5439. .. rst-class:: classref-item-separator
  5440. ----
  5441. .. _class_ProjectSettings_property_rendering/environment/ssao/fadeout_to:
  5442. .. rst-class:: classref-property
  5443. :ref:`float<class_float>` **rendering/environment/ssao/fadeout_to** = ``300.0``
  5444. Distance at which the screen-space ambient occlusion is fully faded out. Use this hide ambient occlusion at great distances.
  5445. .. rst-class:: classref-item-separator
  5446. ----
  5447. .. _class_ProjectSettings_property_rendering/environment/ssao/half_size:
  5448. .. rst-class:: classref-property
  5449. :ref:`bool<class_bool>` **rendering/environment/ssao/half_size** = ``true``
  5450. 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.
  5451. .. rst-class:: classref-item-separator
  5452. ----
  5453. .. _class_ProjectSettings_property_rendering/environment/ssao/quality:
  5454. .. rst-class:: classref-property
  5455. :ref:`int<class_int>` **rendering/environment/ssao/quality** = ``2``
  5456. 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.
  5457. .. rst-class:: classref-item-separator
  5458. ----
  5459. .. _class_ProjectSettings_property_rendering/environment/ssil/adaptive_target:
  5460. .. rst-class:: classref-property
  5461. :ref:`float<class_float>` **rendering/environment/ssil/adaptive_target** = ``0.5``
  5462. 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.
  5463. .. rst-class:: classref-item-separator
  5464. ----
  5465. .. _class_ProjectSettings_property_rendering/environment/ssil/blur_passes:
  5466. .. rst-class:: classref-property
  5467. :ref:`int<class_int>` **rendering/environment/ssil/blur_passes** = ``4``
  5468. 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.
  5469. .. rst-class:: classref-item-separator
  5470. ----
  5471. .. _class_ProjectSettings_property_rendering/environment/ssil/fadeout_from:
  5472. .. rst-class:: classref-property
  5473. :ref:`float<class_float>` **rendering/environment/ssil/fadeout_from** = ``50.0``
  5474. Distance at which the screen-space indirect lighting effect starts to fade out. Use this hide screen-space indirect lighting at great distances.
  5475. .. rst-class:: classref-item-separator
  5476. ----
  5477. .. _class_ProjectSettings_property_rendering/environment/ssil/fadeout_to:
  5478. .. rst-class:: classref-property
  5479. :ref:`float<class_float>` **rendering/environment/ssil/fadeout_to** = ``300.0``
  5480. Distance at which the screen-space indirect lighting is fully faded out. Use this hide screen-space indirect lighting at great distances.
  5481. .. rst-class:: classref-item-separator
  5482. ----
  5483. .. _class_ProjectSettings_property_rendering/environment/ssil/half_size:
  5484. .. rst-class:: classref-property
  5485. :ref:`bool<class_bool>` **rendering/environment/ssil/half_size** = ``true``
  5486. 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.
  5487. .. rst-class:: classref-item-separator
  5488. ----
  5489. .. _class_ProjectSettings_property_rendering/environment/ssil/quality:
  5490. .. rst-class:: classref-property
  5491. :ref:`int<class_int>` **rendering/environment/ssil/quality** = ``2``
  5492. 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.
  5493. .. rst-class:: classref-item-separator
  5494. ----
  5495. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale:
  5496. .. rst-class:: classref-property
  5497. :ref:`float<class_float>` **rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale** = ``0.01``
  5498. 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>`.
  5499. \ **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.
  5500. .. rst-class:: classref-item-separator
  5501. ----
  5502. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality:
  5503. .. rst-class:: classref-property
  5504. :ref:`int<class_int>` **rendering/environment/subsurface_scattering/subsurface_scattering_quality** = ``1``
  5505. 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``.
  5506. \ **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.
  5507. .. rst-class:: classref-item-separator
  5508. ----
  5509. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale:
  5510. .. rst-class:: classref-property
  5511. :ref:`float<class_float>` **rendering/environment/subsurface_scattering/subsurface_scattering_scale** = ``0.05``
  5512. 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>`.
  5513. \ **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.
  5514. .. rst-class:: classref-item-separator
  5515. ----
  5516. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter:
  5517. .. rst-class:: classref-property
  5518. :ref:`int<class_int>` **rendering/environment/volumetric_fog/use_filter** = ``1``
  5519. 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.
  5520. .. rst-class:: classref-item-separator
  5521. ----
  5522. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth:
  5523. .. rst-class:: classref-property
  5524. :ref:`int<class_int>` **rendering/environment/volumetric_fog/volume_depth** = ``64``
  5525. 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>`.
  5526. .. rst-class:: classref-item-separator
  5527. ----
  5528. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size:
  5529. .. rst-class:: classref-property
  5530. :ref:`int<class_int>` **rendering/environment/volumetric_fog/volume_size** = ``64``
  5531. 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.
  5532. .. rst-class:: classref-item-separator
  5533. ----
  5534. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver:
  5535. .. rst-class:: classref-property
  5536. :ref:`String<class_String>` **rendering/gl_compatibility/driver** = ``"opengl3"``
  5537. 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.
  5538. .. rst-class:: classref-item-separator
  5539. ----
  5540. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.android:
  5541. .. rst-class:: classref-property
  5542. :ref:`String<class_String>` **rendering/gl_compatibility/driver.android** = ``"opengl3"``
  5543. Android override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5544. .. rst-class:: classref-item-separator
  5545. ----
  5546. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.ios:
  5547. .. rst-class:: classref-property
  5548. :ref:`String<class_String>` **rendering/gl_compatibility/driver.ios** = ``"opengl3"``
  5549. iOS override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5550. .. rst-class:: classref-item-separator
  5551. ----
  5552. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd:
  5553. .. rst-class:: classref-property
  5554. :ref:`String<class_String>` **rendering/gl_compatibility/driver.linuxbsd** = ``"opengl3"``
  5555. LinuxBSD override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5556. .. rst-class:: classref-item-separator
  5557. ----
  5558. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.macos:
  5559. .. rst-class:: classref-property
  5560. :ref:`String<class_String>` **rendering/gl_compatibility/driver.macos** = ``"opengl3"``
  5561. macOS override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5562. .. rst-class:: classref-item-separator
  5563. ----
  5564. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.web:
  5565. .. rst-class:: classref-property
  5566. :ref:`String<class_String>` **rendering/gl_compatibility/driver.web** = ``"opengl3"``
  5567. Web override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5568. .. rst-class:: classref-item-separator
  5569. ----
  5570. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.windows:
  5571. .. rst-class:: classref-property
  5572. :ref:`String<class_String>` **rendering/gl_compatibility/driver.windows** = ``"opengl3"``
  5573. Windows override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5574. .. rst-class:: classref-item-separator
  5575. ----
  5576. .. _class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size:
  5577. .. rst-class:: classref-property
  5578. :ref:`int<class_int>` **rendering/gl_compatibility/item_buffer_size** = ``16384``
  5579. 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.
  5580. .. rst-class:: classref-item-separator
  5581. ----
  5582. .. _class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization:
  5583. .. rst-class:: classref-property
  5584. :ref:`bool<class_bool>` **rendering/gl_compatibility/nvidia_disable_threaded_optimization** = ``true``
  5585. If ``true``, disables the threaded optimization feature from the NVIDIA drivers, which are known to cause stuttering in most OpenGL applications.
  5586. \ **Note:** This setting only works on Windows, as threaded optimization is disabled by default on other platforms.
  5587. .. rst-class:: classref-item-separator
  5588. ----
  5589. .. _class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution:
  5590. .. rst-class:: classref-property
  5591. :ref:`bool<class_bool>` **rendering/global_illumination/gi/use_half_resolution** = ``false``
  5592. 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.
  5593. \ **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.
  5594. .. rst-class:: classref-item-separator
  5595. ----
  5596. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge:
  5597. .. rst-class:: classref-property
  5598. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/frames_to_converge** = ``5``
  5599. 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>`.
  5600. \ **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.
  5601. .. rst-class:: classref-item-separator
  5602. ----
  5603. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights:
  5604. .. rst-class:: classref-property
  5605. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/frames_to_update_lights** = ``2``
  5606. 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>`.
  5607. \ **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.
  5608. \ **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.
  5609. .. rst-class:: classref-item-separator
  5610. ----
  5611. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count:
  5612. .. rst-class:: classref-property
  5613. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/probe_ray_count** = ``1``
  5614. 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>`.
  5615. \ **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.
  5616. .. rst-class:: classref-item-separator
  5617. ----
  5618. .. _class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality:
  5619. .. rst-class:: classref-property
  5620. :ref:`int<class_int>` **rendering/global_illumination/voxel_gi/quality** = ``0``
  5621. 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.
  5622. \ **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.
  5623. .. rst-class:: classref-item-separator
  5624. ----
  5625. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_pass:
  5626. .. rst-class:: classref-property
  5627. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/max_rays_per_pass** = ``32``
  5628. 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.
  5629. .. rst-class:: classref-item-separator
  5630. ----
  5631. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_probe_pass:
  5632. .. rst-class:: classref-property
  5633. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/max_rays_per_probe_pass** = ``64``
  5634. 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.
  5635. .. rst-class:: classref-item-separator
  5636. ----
  5637. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size:
  5638. .. rst-class:: classref-property
  5639. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/region_size** = ``512``
  5640. The region size to use when baking lightmaps with :ref:`LightmapGI<class_LightmapGI>`.
  5641. .. rst-class:: classref-item-separator
  5642. ----
  5643. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_probe_ray_count:
  5644. .. rst-class:: classref-property
  5645. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/high_quality_probe_ray_count** = ``512``
  5646. 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>`.
  5647. .. rst-class:: classref-item-separator
  5648. ----
  5649. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_ray_count:
  5650. .. rst-class:: classref-property
  5651. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/high_quality_ray_count** = ``256``
  5652. 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>`.
  5653. .. rst-class:: classref-item-separator
  5654. ----
  5655. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_probe_ray_count:
  5656. .. rst-class:: classref-property
  5657. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/low_quality_probe_ray_count** = ``64``
  5658. 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>`.
  5659. .. rst-class:: classref-item-separator
  5660. ----
  5661. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_ray_count:
  5662. .. rst-class:: classref-property
  5663. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/low_quality_ray_count** = ``16``
  5664. 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>`.
  5665. .. rst-class:: classref-item-separator
  5666. ----
  5667. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_probe_ray_count:
  5668. .. rst-class:: classref-property
  5669. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/medium_quality_probe_ray_count** = ``256``
  5670. 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>`.
  5671. .. rst-class:: classref-item-separator
  5672. ----
  5673. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_ray_count:
  5674. .. rst-class:: classref-property
  5675. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/medium_quality_ray_count** = ``64``
  5676. 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>`.
  5677. .. rst-class:: classref-item-separator
  5678. ----
  5679. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count:
  5680. .. rst-class:: classref-property
  5681. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count** = ``2048``
  5682. 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>`.
  5683. .. rst-class:: classref-item-separator
  5684. ----
  5685. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_ray_count:
  5686. .. rst-class:: classref-property
  5687. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/ultra_quality_ray_count** = ``1024``
  5688. 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>`.
  5689. .. rst-class:: classref-item-separator
  5690. ----
  5691. .. _class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size:
  5692. .. rst-class:: classref-property
  5693. :ref:`float<class_float>` **rendering/lightmapping/primitive_meshes/texel_size** = ``0.2``
  5694. 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.
  5695. .. rst-class:: classref-item-separator
  5696. ----
  5697. .. _class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed:
  5698. .. rst-class:: classref-property
  5699. :ref:`float<class_float>` **rendering/lightmapping/probe_capture/update_speed** = ``15``
  5700. 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.
  5701. .. rst-class:: classref-item-separator
  5702. ----
  5703. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/16_bits:
  5704. .. rst-class:: classref-property
  5705. :ref:`bool<class_bool>` **rendering/lights_and_shadows/directional_shadow/16_bits** = ``true``
  5706. 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.
  5707. .. rst-class:: classref-item-separator
  5708. ----
  5709. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size:
  5710. .. rst-class:: classref-property
  5711. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/size** = ``4096``
  5712. 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.
  5713. .. rst-class:: classref-item-separator
  5714. ----
  5715. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size.mobile:
  5716. .. rst-class:: classref-property
  5717. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/size.mobile** = ``2048``
  5718. 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.
  5719. .. rst-class:: classref-item-separator
  5720. ----
  5721. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality:
  5722. .. rst-class:: classref-property
  5723. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality** = ``2``
  5724. 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.
  5725. \ **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>`.
  5726. \ **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.
  5727. .. rst-class:: classref-item-separator
  5728. ----
  5729. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile:
  5730. .. rst-class:: classref-property
  5731. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile** = ``0``
  5732. 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.
  5733. .. rst-class:: classref-item-separator
  5734. ----
  5735. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_16_bits:
  5736. .. rst-class:: classref-property
  5737. :ref:`bool<class_bool>` **rendering/lights_and_shadows/positional_shadow/atlas_16_bits** = ``true``
  5738. 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.
  5739. .. rst-class:: classref-item-separator
  5740. ----
  5741. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv:
  5742. .. rst-class:: classref-property
  5743. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv** = ``2``
  5744. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5745. .. rst-class:: classref-item-separator
  5746. ----
  5747. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv:
  5748. .. rst-class:: classref-property
  5749. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv** = ``2``
  5750. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5751. .. rst-class:: classref-item-separator
  5752. ----
  5753. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv:
  5754. .. rst-class:: classref-property
  5755. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv** = ``3``
  5756. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5757. .. rst-class:: classref-item-separator
  5758. ----
  5759. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv:
  5760. .. rst-class:: classref-property
  5761. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv** = ``4``
  5762. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5763. .. rst-class:: classref-item-separator
  5764. ----
  5765. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size:
  5766. .. rst-class:: classref-property
  5767. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_size** = ``4096``
  5768. Size for shadow atlas (used for OmniLights and SpotLights). See documentation.
  5769. .. rst-class:: classref-item-separator
  5770. ----
  5771. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size.mobile:
  5772. .. rst-class:: classref-property
  5773. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_size.mobile** = ``2048``
  5774. 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.
  5775. .. rst-class:: classref-item-separator
  5776. ----
  5777. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality:
  5778. .. rst-class:: classref-property
  5779. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality** = ``2``
  5780. 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.
  5781. \ **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>`.
  5782. \ **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.
  5783. .. rst-class:: classref-item-separator
  5784. ----
  5785. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile:
  5786. .. rst-class:: classref-property
  5787. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile** = ``0``
  5788. 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.
  5789. .. rst-class:: classref-item-separator
  5790. ----
  5791. .. _class_ProjectSettings_property_rendering/lights_and_shadows/use_physical_light_units:
  5792. .. rst-class:: classref-property
  5793. :ref:`bool<class_bool>` **rendering/lights_and_shadows/use_physical_light_units** = ``false``
  5794. 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.
  5795. .. rst-class:: classref-item-separator
  5796. ----
  5797. .. _class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements:
  5798. .. rst-class:: classref-property
  5799. :ref:`float<class_float>` **rendering/limits/cluster_builder/max_clustered_elements** = ``512``
  5800. 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.
  5801. Decreasing this value may improve GPU performance on certain setups, even if the maximum number of clustered elements is never reached in the project.
  5802. \ **Note:** This setting is only effective when using the Forward+ rendering method, not Mobile and Compatibility.
  5803. .. rst-class:: classref-item-separator
  5804. ----
  5805. .. _class_ProjectSettings_property_rendering/limits/forward_renderer/threaded_render_minimum_instances:
  5806. .. rst-class:: classref-property
  5807. :ref:`int<class_int>` **rendering/limits/forward_renderer/threaded_render_minimum_instances** = ``500``
  5808. .. container:: contribute
  5809. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5810. .. rst-class:: classref-item-separator
  5811. ----
  5812. .. _class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size:
  5813. .. rst-class:: classref-property
  5814. :ref:`int<class_int>` **rendering/limits/global_shader_variables/buffer_size** = ``65536``
  5815. .. container:: contribute
  5816. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5817. .. rst-class:: classref-item-separator
  5818. ----
  5819. .. _class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object:
  5820. .. rst-class:: classref-property
  5821. :ref:`int<class_int>` **rendering/limits/opengl/max_lights_per_object** = ``8``
  5822. 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.
  5823. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  5824. .. rst-class:: classref-item-separator
  5825. ----
  5826. .. _class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements:
  5827. .. rst-class:: classref-property
  5828. :ref:`int<class_int>` **rendering/limits/opengl/max_renderable_elements** = ``65536``
  5829. 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.
  5830. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  5831. .. rst-class:: classref-item-separator
  5832. ----
  5833. .. _class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights:
  5834. .. rst-class:: classref-property
  5835. :ref:`int<class_int>` **rendering/limits/opengl/max_renderable_lights** = ``32``
  5836. 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.
  5837. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  5838. .. rst-class:: classref-item-separator
  5839. ----
  5840. .. _class_ProjectSettings_property_rendering/limits/spatial_indexer/threaded_cull_minimum_instances:
  5841. .. rst-class:: classref-property
  5842. :ref:`int<class_int>` **rendering/limits/spatial_indexer/threaded_cull_minimum_instances** = ``1000``
  5843. .. container:: contribute
  5844. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5845. .. rst-class:: classref-item-separator
  5846. ----
  5847. .. _class_ProjectSettings_property_rendering/limits/spatial_indexer/update_iterations_per_frame:
  5848. .. rst-class:: classref-property
  5849. :ref:`int<class_int>` **rendering/limits/spatial_indexer/update_iterations_per_frame** = ``10``
  5850. .. container:: contribute
  5851. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5852. .. rst-class:: classref-item-separator
  5853. ----
  5854. .. _class_ProjectSettings_property_rendering/limits/time/time_rollover_secs:
  5855. .. rst-class:: classref-property
  5856. :ref:`float<class_float>` **rendering/limits/time/time_rollover_secs** = ``3600``
  5857. .. container:: contribute
  5858. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5859. .. rst-class:: classref-item-separator
  5860. ----
  5861. .. _class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels:
  5862. .. rst-class:: classref-property
  5863. :ref:`float<class_float>` **rendering/mesh_lod/lod_change/threshold_pixels** = ``1.0``
  5864. 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.
  5865. \ **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).
  5866. \ **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>`.
  5867. .. rst-class:: classref-item-separator
  5868. ----
  5869. .. _class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality:
  5870. .. rst-class:: classref-property
  5871. :ref:`int<class_int>` **rendering/occlusion_culling/bvh_build_quality** = ``2``
  5872. 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>`.
  5873. \ **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>`.
  5874. .. rst-class:: classref-item-separator
  5875. ----
  5876. .. _class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread:
  5877. .. rst-class:: classref-property
  5878. :ref:`int<class_int>` **rendering/occlusion_culling/occlusion_rays_per_thread** = ``512``
  5879. 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>`.
  5880. \ **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>`.
  5881. .. rst-class:: classref-item-separator
  5882. ----
  5883. .. _class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling:
  5884. .. rst-class:: classref-property
  5885. :ref:`bool<class_bool>` **rendering/occlusion_culling/use_occlusion_culling** = ``false``
  5886. 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.
  5887. \ **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.
  5888. .. rst-class:: classref-item-separator
  5889. ----
  5890. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count:
  5891. .. rst-class:: classref-property
  5892. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_count** = ``64``
  5893. 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.
  5894. .. rst-class:: classref-item-separator
  5895. ----
  5896. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size:
  5897. .. rst-class:: classref-property
  5898. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_size** = ``256``
  5899. Size of cubemap faces for :ref:`ReflectionProbe<class_ReflectionProbe>`\ s. A higher number requires more VRAM and may make reflection probe updating slower.
  5900. .. rst-class:: classref-item-separator
  5901. ----
  5902. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile:
  5903. .. rst-class:: classref-property
  5904. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_size.mobile** = ``128``
  5905. 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.
  5906. .. rst-class:: classref-item-separator
  5907. ----
  5908. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/fast_filter_high_quality:
  5909. .. rst-class:: classref-property
  5910. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/fast_filter_high_quality** = ``false``
  5911. 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.
  5912. .. rst-class:: classref-item-separator
  5913. ----
  5914. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples:
  5915. .. rst-class:: classref-property
  5916. :ref:`int<class_int>` **rendering/reflections/sky_reflections/ggx_samples** = ``32``
  5917. 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.
  5918. .. rst-class:: classref-item-separator
  5919. ----
  5920. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile:
  5921. .. rst-class:: classref-property
  5922. :ref:`int<class_int>` **rendering/reflections/sky_reflections/ggx_samples.mobile** = ``16``
  5923. 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.
  5924. .. rst-class:: classref-item-separator
  5925. ----
  5926. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers:
  5927. .. rst-class:: classref-property
  5928. :ref:`int<class_int>` **rendering/reflections/sky_reflections/roughness_layers** = ``8``
  5929. 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.
  5930. .. rst-class:: classref-item-separator
  5931. ----
  5932. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections:
  5933. .. rst-class:: classref-property
  5934. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/texture_array_reflections** = ``true``
  5935. 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.
  5936. .. rst-class:: classref-item-separator
  5937. ----
  5938. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections.mobile:
  5939. .. rst-class:: classref-property
  5940. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/texture_array_reflections.mobile** = ``false``
  5941. 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.
  5942. .. rst-class:: classref-item-separator
  5943. ----
  5944. .. _class_ProjectSettings_property_rendering/renderer/rendering_method:
  5945. .. rst-class:: classref-property
  5946. :ref:`String<class_String>` **rendering/renderer/rendering_method** = ``"forward_plus"``
  5947. Sets the renderer that will be used by the project. Options are:
  5948. \ **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.
  5949. \ **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.
  5950. \ **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.
  5951. .. rst-class:: classref-item-separator
  5952. ----
  5953. .. _class_ProjectSettings_property_rendering/renderer/rendering_method.mobile:
  5954. .. rst-class:: classref-property
  5955. :ref:`String<class_String>` **rendering/renderer/rendering_method.mobile** = ``"mobile"``
  5956. Override for :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` on mobile devices.
  5957. .. rst-class:: classref-item-separator
  5958. ----
  5959. .. _class_ProjectSettings_property_rendering/renderer/rendering_method.web:
  5960. .. rst-class:: classref-property
  5961. :ref:`String<class_String>` **rendering/renderer/rendering_method.web** = ``"gl_compatibility"``
  5962. Override for :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` on web.
  5963. .. rst-class:: classref-item-separator
  5964. ----
  5965. .. _class_ProjectSettings_property_rendering/rendering_device/driver:
  5966. .. rst-class:: classref-property
  5967. :ref:`String<class_String>` **rendering/rendering_device/driver** = ``"vulkan"``
  5968. 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.
  5969. .. rst-class:: classref-item-separator
  5970. ----
  5971. .. _class_ProjectSettings_property_rendering/rendering_device/driver.android:
  5972. .. rst-class:: classref-property
  5973. :ref:`String<class_String>` **rendering/rendering_device/driver.android** = ``"vulkan"``
  5974. Android override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5975. .. rst-class:: classref-item-separator
  5976. ----
  5977. .. _class_ProjectSettings_property_rendering/rendering_device/driver.ios:
  5978. .. rst-class:: classref-property
  5979. :ref:`String<class_String>` **rendering/rendering_device/driver.ios** = ``"vulkan"``
  5980. iOS override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5981. .. rst-class:: classref-item-separator
  5982. ----
  5983. .. _class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd:
  5984. .. rst-class:: classref-property
  5985. :ref:`String<class_String>` **rendering/rendering_device/driver.linuxbsd** = ``"vulkan"``
  5986. LinuxBSD override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5987. .. rst-class:: classref-item-separator
  5988. ----
  5989. .. _class_ProjectSettings_property_rendering/rendering_device/driver.macos:
  5990. .. rst-class:: classref-property
  5991. :ref:`String<class_String>` **rendering/rendering_device/driver.macos** = ``"vulkan"``
  5992. macOS override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5993. .. rst-class:: classref-item-separator
  5994. ----
  5995. .. _class_ProjectSettings_property_rendering/rendering_device/driver.windows:
  5996. .. rst-class:: classref-property
  5997. :ref:`String<class_String>` **rendering/rendering_device/driver.windows** = ``"vulkan"``
  5998. Windows override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5999. .. rst-class:: classref-item-separator
  6000. ----
  6001. .. _class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/save_chunk_size_mb:
  6002. .. rst-class:: classref-property
  6003. :ref:`float<class_float>` **rendering/rendering_device/pipeline_cache/save_chunk_size_mb** = ``3.0``
  6004. Determines at which interval pipeline cache is saved to disk. The lower the value, the more often it is saved.
  6005. .. rst-class:: classref-item-separator
  6006. ----
  6007. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/block_size_kb:
  6008. .. rst-class:: classref-property
  6009. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/block_size_kb** = ``256``
  6010. .. container:: contribute
  6011. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6012. .. rst-class:: classref-item-separator
  6013. ----
  6014. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/max_size_mb:
  6015. .. rst-class:: classref-property
  6016. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/max_size_mb** = ``128``
  6017. .. container:: contribute
  6018. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6019. .. rst-class:: classref-item-separator
  6020. ----
  6021. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/texture_upload_region_size_px:
  6022. .. rst-class:: classref-property
  6023. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/texture_upload_region_size_px** = ``64``
  6024. .. container:: contribute
  6025. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6026. .. rst-class:: classref-item-separator
  6027. ----
  6028. .. _class_ProjectSettings_property_rendering/rendering_device/vulkan/max_descriptors_per_pool:
  6029. .. rst-class:: classref-property
  6030. :ref:`int<class_int>` **rendering/rendering_device/vulkan/max_descriptors_per_pool** = ``64``
  6031. .. container:: contribute
  6032. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6033. .. rst-class:: classref-item-separator
  6034. ----
  6035. .. _class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness:
  6036. .. rst-class:: classref-property
  6037. :ref:`float<class_float>` **rendering/scaling_3d/fsr_sharpness** = ``0.2``
  6038. 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.
  6039. .. rst-class:: classref-item-separator
  6040. ----
  6041. .. _class_ProjectSettings_property_rendering/scaling_3d/mode:
  6042. .. rst-class:: classref-property
  6043. :ref:`int<class_int>` **rendering/scaling_3d/mode** = ``0``
  6044. 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).
  6045. \ **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.
  6046. .. rst-class:: classref-item-separator
  6047. ----
  6048. .. _class_ProjectSettings_property_rendering/scaling_3d/scale:
  6049. .. rst-class:: classref-property
  6050. :ref:`float<class_float>` **rendering/scaling_3d/scale** = ``1.0``
  6051. 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.
  6052. .. rst-class:: classref-item-separator
  6053. ----
  6054. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress:
  6055. .. rst-class:: classref-property
  6056. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/compress** = ``true``
  6057. .. container:: contribute
  6058. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6059. .. rst-class:: classref-item-separator
  6060. ----
  6061. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled:
  6062. .. rst-class:: classref-property
  6063. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/enabled** = ``true``
  6064. Enable the shader cache, which stores compiled shaders to disk to prevent stuttering from shader compilation the next time the shader is needed.
  6065. .. rst-class:: classref-item-separator
  6066. ----
  6067. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug:
  6068. .. rst-class:: classref-property
  6069. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/strip_debug** = ``false``
  6070. .. container:: contribute
  6071. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6072. .. rst-class:: classref-item-separator
  6073. ----
  6074. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug.release:
  6075. .. rst-class:: classref-property
  6076. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/strip_debug.release** = ``true``
  6077. .. container:: contribute
  6078. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6079. .. rst-class:: classref-item-separator
  6080. ----
  6081. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/use_zstd_compression:
  6082. .. rst-class:: classref-property
  6083. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/use_zstd_compression** = ``true``
  6084. .. container:: contribute
  6085. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6086. .. rst-class:: classref-item-separator
  6087. ----
  6088. .. _class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley:
  6089. .. rst-class:: classref-property
  6090. :ref:`bool<class_bool>` **rendering/shading/overrides/force_lambert_over_burley** = ``false``
  6091. If ``true``, uses faster but lower-quality Lambert material lighting model instead of Burley.
  6092. .. rst-class:: classref-item-separator
  6093. ----
  6094. .. _class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley.mobile:
  6095. .. rst-class:: classref-property
  6096. :ref:`bool<class_bool>` **rendering/shading/overrides/force_lambert_over_burley.mobile** = ``true``
  6097. 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.
  6098. .. rst-class:: classref-item-separator
  6099. ----
  6100. .. _class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading:
  6101. .. rst-class:: classref-property
  6102. :ref:`bool<class_bool>` **rendering/shading/overrides/force_vertex_shading** = ``false``
  6103. 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.
  6104. \ **Note:** This setting currently has no effect, as vertex shading is not implemented yet.
  6105. .. rst-class:: classref-item-separator
  6106. ----
  6107. .. _class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile:
  6108. .. rst-class:: classref-property
  6109. :ref:`bool<class_bool>` **rendering/shading/overrides/force_vertex_shading.mobile** = ``true``
  6110. 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.
  6111. \ **Note:** This setting currently has no effect, as vertex shading is not implemented yet.
  6112. .. rst-class:: classref-item-separator
  6113. ----
  6114. .. _class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter:
  6115. .. rst-class:: classref-property
  6116. :ref:`int<class_int>` **rendering/textures/canvas_textures/default_texture_filter** = ``1``
  6117. The default texture filtering mode to use on :ref:`CanvasItem<class_CanvasItem>`\ s.
  6118. .. rst-class:: classref-item-separator
  6119. ----
  6120. .. _class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat:
  6121. .. rst-class:: classref-property
  6122. :ref:`int<class_int>` **rendering/textures/canvas_textures/default_texture_repeat** = ``0``
  6123. The default texture repeating mode to use on :ref:`CanvasItem<class_CanvasItem>`\ s.
  6124. .. rst-class:: classref-item-separator
  6125. ----
  6126. .. _class_ProjectSettings_property_rendering/textures/decals/filter:
  6127. .. rst-class:: classref-property
  6128. :ref:`int<class_int>` **rendering/textures/decals/filter** = ``3``
  6129. 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>`.
  6130. .. rst-class:: classref-item-separator
  6131. ----
  6132. .. _class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level:
  6133. .. rst-class:: classref-property
  6134. :ref:`int<class_int>` **rendering/textures/default_filters/anisotropic_filtering_level** = ``2``
  6135. 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.
  6136. 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>`.
  6137. \ **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.
  6138. \ **Note:** This property is only read when the project starts. There is currently no way to change this setting at run-time.
  6139. .. rst-class:: classref-item-separator
  6140. ----
  6141. .. _class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias:
  6142. .. rst-class:: classref-property
  6143. :ref:`float<class_float>` **rendering/textures/default_filters/texture_mipmap_bias** = ``0.0``
  6144. 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).
  6145. 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.
  6146. \ **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``.
  6147. \ **Note:** This property is only read when the project starts. To change the mipmap LOD bias at run-time, set :ref:`Viewport.texture_mipmap_bias<class_Viewport_property_texture_mipmap_bias>` instead.
  6148. .. rst-class:: classref-item-separator
  6149. ----
  6150. .. _class_ProjectSettings_property_rendering/textures/default_filters/use_nearest_mipmap_filter:
  6151. .. rst-class:: classref-property
  6152. :ref:`bool<class_bool>` **rendering/textures/default_filters/use_nearest_mipmap_filter** = ``false``
  6153. 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.
  6154. \ **Note:** This property is only read when the project starts. There is currently no way to change this setting at run-time.
  6155. .. rst-class:: classref-item-separator
  6156. ----
  6157. .. _class_ProjectSettings_property_rendering/textures/light_projectors/filter:
  6158. .. rst-class:: classref-property
  6159. :ref:`int<class_int>` **rendering/textures/light_projectors/filter** = ``3``
  6160. 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>`.
  6161. .. rst-class:: classref-item-separator
  6162. ----
  6163. .. _class_ProjectSettings_property_rendering/textures/lossless_compression/force_png:
  6164. .. rst-class:: classref-property
  6165. :ref:`bool<class_bool>` **rendering/textures/lossless_compression/force_png** = ``false``
  6166. If ``true``, the texture importer will import lossless textures using the PNG format. Otherwise, it will default to using WebP.
  6167. .. rst-class:: classref-item-separator
  6168. ----
  6169. .. _class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc:
  6170. .. rst-class:: classref-property
  6171. :ref:`bool<class_bool>` **rendering/textures/vram_compression/import_etc2_astc** = ``false``
  6172. 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 4x4 block size).
  6173. \ **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``.
  6174. \ **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>`).
  6175. .. rst-class:: classref-item-separator
  6176. ----
  6177. .. _class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc:
  6178. .. rst-class:: classref-property
  6179. :ref:`bool<class_bool>` **rendering/textures/vram_compression/import_s3tc_bptc** = ``false``
  6180. 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.
  6181. \ **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``.
  6182. \ **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>`).
  6183. .. rst-class:: classref-item-separator
  6184. ----
  6185. .. _class_ProjectSettings_property_rendering/textures/webp_compression/compression_method:
  6186. .. rst-class:: classref-property
  6187. :ref:`int<class_int>` **rendering/textures/webp_compression/compression_method** = ``2``
  6188. 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.
  6189. .. rst-class:: classref-item-separator
  6190. ----
  6191. .. _class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor:
  6192. .. rst-class:: classref-property
  6193. :ref:`float<class_float>` **rendering/textures/webp_compression/lossless_compression_factor** = ``25``
  6194. The default compression factor for lossless WebP. Decompression speed is mostly unaffected by the compression factor. Supported values are 0 to 100.
  6195. .. rst-class:: classref-item-separator
  6196. ----
  6197. .. _class_ProjectSettings_property_rendering/viewport/hdr_2d:
  6198. .. rst-class:: classref-property
  6199. :ref:`bool<class_bool>` **rendering/viewport/hdr_2d** = ``false``
  6200. 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).
  6201. .. rst-class:: classref-item-separator
  6202. ----
  6203. .. _class_ProjectSettings_property_rendering/viewport/transparent_background:
  6204. .. rst-class:: classref-property
  6205. :ref:`bool<class_bool>` **rendering/viewport/transparent_background** = ``false``
  6206. 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>`.
  6207. .. rst-class:: classref-item-separator
  6208. ----
  6209. .. _class_ProjectSettings_property_rendering/vrs/mode:
  6210. .. rst-class:: classref-property
  6211. :ref:`int<class_int>` **rendering/vrs/mode** = ``0``
  6212. 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.
  6213. .. rst-class:: classref-item-separator
  6214. ----
  6215. .. _class_ProjectSettings_property_rendering/vrs/texture:
  6216. .. rst-class:: classref-property
  6217. :ref:`String<class_String>` **rendering/vrs/texture** = ``""``
  6218. 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.
  6219. 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:
  6220. ::
  6221. - 1x1 = rgb(0, 0, 0) - #000000
  6222. - 1x2 = rgb(0, 85, 0) - #005500
  6223. - 2x1 = rgb(85, 0, 0) - #550000
  6224. - 2x2 = rgb(85, 85, 0) - #555500
  6225. - 2x4 = rgb(85, 170, 0) - #55aa00
  6226. - 4x2 = rgb(170, 85, 0) - #aa5500
  6227. - 4x4 = rgb(170, 170, 0) - #aaaa00
  6228. - 4x8 = rgb(170, 255, 0) - #aaff00 - Not supported on most hardware
  6229. - 8x4 = rgb(255, 170, 0) - #ffaa00 - Not supported on most hardware
  6230. - 8x8 = rgb(255, 255, 0) - #ffff00 - Not supported on most hardware
  6231. .. rst-class:: classref-item-separator
  6232. ----
  6233. .. _class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio:
  6234. .. rst-class:: classref-property
  6235. :ref:`float<class_float>` **threading/worker_pool/low_priority_thread_ratio** = ``0.3``
  6236. .. container:: contribute
  6237. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6238. .. rst-class:: classref-item-separator
  6239. ----
  6240. .. _class_ProjectSettings_property_threading/worker_pool/max_threads:
  6241. .. rst-class:: classref-property
  6242. :ref:`int<class_int>` **threading/worker_pool/max_threads** = ``-1``
  6243. Maximum number of threads to be used by :ref:`WorkerThreadPool<class_WorkerThreadPool>`. Value of ``-1`` means no limit.
  6244. .. rst-class:: classref-item-separator
  6245. ----
  6246. .. _class_ProjectSettings_property_threading/worker_pool/use_system_threads_for_low_priority_tasks:
  6247. .. rst-class:: classref-property
  6248. :ref:`bool<class_bool>` **threading/worker_pool/use_system_threads_for_low_priority_tasks** = ``true``
  6249. .. container:: contribute
  6250. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6251. .. rst-class:: classref-item-separator
  6252. ----
  6253. .. _class_ProjectSettings_property_xr/openxr/default_action_map:
  6254. .. rst-class:: classref-property
  6255. :ref:`String<class_String>` **xr/openxr/default_action_map** = ``"res://openxr_action_map.tres"``
  6256. Action map configuration to load by default.
  6257. .. rst-class:: classref-item-separator
  6258. ----
  6259. .. _class_ProjectSettings_property_xr/openxr/enabled:
  6260. .. rst-class:: classref-property
  6261. :ref:`bool<class_bool>` **xr/openxr/enabled** = ``false``
  6262. If ``true`` Godot will setup and initialize OpenXR on startup.
  6263. .. rst-class:: classref-item-separator
  6264. ----
  6265. .. _class_ProjectSettings_property_xr/openxr/environment_blend_mode:
  6266. .. rst-class:: classref-property
  6267. :ref:`int<class_int>` **xr/openxr/environment_blend_mode** = ``"0"``
  6268. 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.
  6269. .. rst-class:: classref-item-separator
  6270. ----
  6271. .. _class_ProjectSettings_property_xr/openxr/form_factor:
  6272. .. rst-class:: classref-property
  6273. :ref:`int<class_int>` **xr/openxr/form_factor** = ``"0"``
  6274. Specify whether OpenXR should be configured for an HMD or a hand held device.
  6275. .. rst-class:: classref-item-separator
  6276. ----
  6277. .. _class_ProjectSettings_property_xr/openxr/reference_space:
  6278. .. rst-class:: classref-property
  6279. :ref:`int<class_int>` **xr/openxr/reference_space** = ``"1"``
  6280. Specify the default reference space.
  6281. .. rst-class:: classref-item-separator
  6282. ----
  6283. .. _class_ProjectSettings_property_xr/openxr/startup_alert:
  6284. .. rst-class:: classref-property
  6285. :ref:`bool<class_bool>` **xr/openxr/startup_alert** = ``true``
  6286. If ``true``, Godot will display an alert modal when OpenXR initialization fails on startup.
  6287. .. rst-class:: classref-item-separator
  6288. ----
  6289. .. _class_ProjectSettings_property_xr/openxr/submit_depth_buffer:
  6290. .. rst-class:: classref-property
  6291. :ref:`bool<class_bool>` **xr/openxr/submit_depth_buffer** = ``false``
  6292. 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.
  6293. .. rst-class:: classref-item-separator
  6294. ----
  6295. .. _class_ProjectSettings_property_xr/openxr/view_configuration:
  6296. .. rst-class:: classref-property
  6297. :ref:`int<class_int>` **xr/openxr/view_configuration** = ``"1"``
  6298. Specify the view configuration with which to configure OpenXR setting up either Mono or Stereo rendering.
  6299. .. rst-class:: classref-item-separator
  6300. ----
  6301. .. _class_ProjectSettings_property_xr/shaders/enabled:
  6302. .. rst-class:: classref-property
  6303. :ref:`bool<class_bool>` **xr/shaders/enabled** = ``false``
  6304. If ``true``, Godot will compile shaders required for XR.
  6305. .. rst-class:: classref-section-separator
  6306. ----
  6307. .. rst-class:: classref-descriptions-group
  6308. Method Descriptions
  6309. -------------------
  6310. .. _class_ProjectSettings_method_add_property_info:
  6311. .. rst-class:: classref-method
  6312. void **add_property_info** **(** :ref:`Dictionary<class_Dictionary>` hint **)**
  6313. Adds a custom property info to a property. The dictionary must contain:
  6314. - ``"name"``: :ref:`String<class_String>` (the property's name)
  6315. - ``"type"``: :ref:`int<class_int>` (see :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>`)
  6316. - optionally ``"hint"``: :ref:`int<class_int>` (see :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>`) and ``"hint_string"``: :ref:`String<class_String>`\
  6317. \ **Example:**\
  6318. .. tabs::
  6319. .. code-tab:: gdscript
  6320. ProjectSettings.set("category/property_name", 0)
  6321. var property_info = {
  6322. "name": "category/property_name",
  6323. "type": TYPE_INT,
  6324. "hint": PROPERTY_HINT_ENUM,
  6325. "hint_string": "one,two,three"
  6326. }
  6327. ProjectSettings.add_property_info(property_info)
  6328. .. code-tab:: csharp
  6329. ProjectSettings.Singleton.Set("category/property_name", 0);
  6330. var propertyInfo = new Godot.Collections.Dictionary
  6331. {
  6332. {"name", "category/propertyName"},
  6333. {"type", (int)Variant.Type.Int},
  6334. {"hint", (int)PropertyHint.Enum},
  6335. {"hint_string", "one,two,three"},
  6336. };
  6337. ProjectSettings.AddPropertyInfo(propertyInfo);
  6338. .. rst-class:: classref-item-separator
  6339. ----
  6340. .. _class_ProjectSettings_method_clear:
  6341. .. rst-class:: classref-method
  6342. void **clear** **(** :ref:`String<class_String>` name **)**
  6343. Clears the whole configuration (not recommended, may break things).
  6344. .. rst-class:: classref-item-separator
  6345. ----
  6346. .. _class_ProjectSettings_method_get_global_class_list:
  6347. .. rst-class:: classref-method
  6348. :ref:`Dictionary[]<class_Dictionary>` **get_global_class_list** **(** **)**
  6349. 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:
  6350. - ``base`` is a name of the base class;
  6351. - ``class`` is a name of the registered global class;
  6352. - ``icon`` is a path to a custom icon of the global class, if it has any;
  6353. - ``language`` is a name of a programming language in which the global class is written;
  6354. - ``path`` is a path to a file containing the global class.
  6355. \ **Note:** Both the script and the icon paths are local to the project filesystem, i.e. they start with ``res://``.
  6356. .. rst-class:: classref-item-separator
  6357. ----
  6358. .. _class_ProjectSettings_method_get_order:
  6359. .. rst-class:: classref-method
  6360. :ref:`int<class_int>` **get_order** **(** :ref:`String<class_String>` name **)** |const|
  6361. Returns the order of a configuration value (influences when saved to the config file).
  6362. .. rst-class:: classref-item-separator
  6363. ----
  6364. .. _class_ProjectSettings_method_get_setting:
  6365. .. rst-class:: classref-method
  6366. :ref:`Variant<class_Variant>` **get_setting** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` default_value=null **)** |const|
  6367. 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.
  6368. \ **Example:**\
  6369. .. tabs::
  6370. .. code-tab:: gdscript
  6371. print(ProjectSettings.get_setting("application/config/name"))
  6372. print(ProjectSettings.get_setting("application/config/custom_description", "No description specified."))
  6373. .. code-tab:: csharp
  6374. GD.Print(ProjectSettings.GetSetting("application/config/name"));
  6375. GD.Print(ProjectSettings.GetSetting("application/config/custom_description", "No description specified."));
  6376. \ **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.
  6377. .. rst-class:: classref-item-separator
  6378. ----
  6379. .. _class_ProjectSettings_method_get_setting_with_override:
  6380. .. rst-class:: classref-method
  6381. :ref:`Variant<class_Variant>` **get_setting_with_override** **(** :ref:`StringName<class_StringName>` name **)** |const|
  6382. Similar to :ref:`get_setting<class_ProjectSettings_method_get_setting>`, but applies feature tag overrides if any exists and is valid.
  6383. \ **Example:**\
  6384. If the following setting override exists "application/config/name.windows", and the following code is executed:
  6385. .. tabs::
  6386. .. code-tab:: gdscript
  6387. print(ProjectSettings.get_setting_with_override("application/config/name"))
  6388. .. code-tab:: csharp
  6389. GD.Print(ProjectSettings.GetSettingWithOverride("application/config/name"));
  6390. Then the overridden setting will be returned instead if the project is running on the *Windows* operating system.
  6391. .. rst-class:: classref-item-separator
  6392. ----
  6393. .. _class_ProjectSettings_method_globalize_path:
  6394. .. rst-class:: classref-method
  6395. :ref:`String<class_String>` **globalize_path** **(** :ref:`String<class_String>` path **)** |const|
  6396. 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>`.
  6397. \ **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:
  6398. ::
  6399. var path = ""
  6400. if OS.has_feature("editor"):
  6401. # Running from an editor binary.
  6402. # `path` will contain the absolute path to `hello.txt` located in the project root.
  6403. path = ProjectSettings.globalize_path("res://hello.txt")
  6404. else:
  6405. # Running from an exported project.
  6406. # `path` will contain the absolute path to `hello.txt` next to the executable.
  6407. # This is *not* identical to using `ProjectSettings.globalize_path()` with a `res://` path,
  6408. # but is close enough in spirit.
  6409. path = OS.get_executable_path().get_base_dir().path_join("hello.txt")
  6410. .. rst-class:: classref-item-separator
  6411. ----
  6412. .. _class_ProjectSettings_method_has_setting:
  6413. .. rst-class:: classref-method
  6414. :ref:`bool<class_bool>` **has_setting** **(** :ref:`String<class_String>` name **)** |const|
  6415. Returns ``true`` if a configuration value is present.
  6416. .. rst-class:: classref-item-separator
  6417. ----
  6418. .. _class_ProjectSettings_method_load_resource_pack:
  6419. .. rst-class:: classref-method
  6420. :ref:`bool<class_bool>` **load_resource_pack** **(** :ref:`String<class_String>` pack, :ref:`bool<class_bool>` replace_files=true, :ref:`int<class_int>` offset=0 **)**
  6421. Loads the contents of the .pck or .zip file specified by ``pack`` into the resource filesystem (``res://``). Returns ``true`` on success.
  6422. \ **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``.
  6423. \ **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.
  6424. .. rst-class:: classref-item-separator
  6425. ----
  6426. .. _class_ProjectSettings_method_localize_path:
  6427. .. rst-class:: classref-method
  6428. :ref:`String<class_String>` **localize_path** **(** :ref:`String<class_String>` path **)** |const|
  6429. Returns the localized path (starting with ``res://``) corresponding to the absolute, native OS ``path``. See also :ref:`globalize_path<class_ProjectSettings_method_globalize_path>`.
  6430. .. rst-class:: classref-item-separator
  6431. ----
  6432. .. _class_ProjectSettings_method_save:
  6433. .. rst-class:: classref-method
  6434. :ref:`Error<enum_@GlobalScope_Error>` **save** **(** **)**
  6435. Saves the configuration to the ``project.godot`` file.
  6436. \ **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.
  6437. .. rst-class:: classref-item-separator
  6438. ----
  6439. .. _class_ProjectSettings_method_save_custom:
  6440. .. rst-class:: classref-method
  6441. :ref:`Error<enum_@GlobalScope_Error>` **save_custom** **(** :ref:`String<class_String>` file **)**
  6442. 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.
  6443. .. rst-class:: classref-item-separator
  6444. ----
  6445. .. _class_ProjectSettings_method_set_as_basic:
  6446. .. rst-class:: classref-method
  6447. void **set_as_basic** **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` basic **)**
  6448. 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.
  6449. .. rst-class:: classref-item-separator
  6450. ----
  6451. .. _class_ProjectSettings_method_set_as_internal:
  6452. .. rst-class:: classref-method
  6453. void **set_as_internal** **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` internal **)**
  6454. 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.
  6455. .. rst-class:: classref-item-separator
  6456. ----
  6457. .. _class_ProjectSettings_method_set_initial_value:
  6458. .. rst-class:: classref-method
  6459. void **set_initial_value** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)**
  6460. Sets the specified setting's initial value. This is the value the setting reverts to.
  6461. .. rst-class:: classref-item-separator
  6462. ----
  6463. .. _class_ProjectSettings_method_set_order:
  6464. .. rst-class:: classref-method
  6465. void **set_order** **(** :ref:`String<class_String>` name, :ref:`int<class_int>` position **)**
  6466. Sets the order of a configuration value (influences when saved to the config file).
  6467. .. rst-class:: classref-item-separator
  6468. ----
  6469. .. _class_ProjectSettings_method_set_restart_if_changed:
  6470. .. rst-class:: classref-method
  6471. void **set_restart_if_changed** **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` restart **)**
  6472. Sets whether a setting requires restarting the editor to properly take effect.
  6473. \ **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.
  6474. .. rst-class:: classref-item-separator
  6475. ----
  6476. .. _class_ProjectSettings_method_set_setting:
  6477. .. rst-class:: classref-method
  6478. void **set_setting** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)**
  6479. Sets the value of a setting.
  6480. \ **Example:**\
  6481. .. tabs::
  6482. .. code-tab:: gdscript
  6483. ProjectSettings.set_setting("application/config/name", "Example")
  6484. .. code-tab:: csharp
  6485. ProjectSettings.SetSetting("application/config/name", "Example");
  6486. This can also be used to erase custom project settings. To do this change the setting value to ``null``.
  6487. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  6488. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  6489. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  6490. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  6491. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  6492. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  6493. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`