class_projectsettings.rst 877 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277
  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/4.1/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.1/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/windows_native_icon<class_ProjectSettings_property_application/config/windows_native_icon>` | ``""`` |
  65. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  66. | :ref:`bool<class_bool>` | :ref:`application/run/delta_smoothing<class_ProjectSettings_property_application/run/delta_smoothing>` | ``true`` |
  67. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  68. | :ref:`bool<class_bool>` | :ref:`application/run/disable_stderr<class_ProjectSettings_property_application/run/disable_stderr>` | ``false`` |
  69. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  70. | :ref:`bool<class_bool>` | :ref:`application/run/disable_stdout<class_ProjectSettings_property_application/run/disable_stdout>` | ``false`` |
  71. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  72. | :ref:`bool<class_bool>` | :ref:`application/run/flush_stdout_on_print<class_ProjectSettings_property_application/run/flush_stdout_on_print>` | ``false`` |
  73. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  74. | :ref:`bool<class_bool>` | :ref:`application/run/flush_stdout_on_print.debug<class_ProjectSettings_property_application/run/flush_stdout_on_print.debug>` | ``true`` |
  75. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  76. | :ref:`int<class_int>` | :ref:`application/run/frame_delay_msec<class_ProjectSettings_property_application/run/frame_delay_msec>` | ``0`` |
  77. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  78. | :ref:`bool<class_bool>` | :ref:`application/run/low_processor_mode<class_ProjectSettings_property_application/run/low_processor_mode>` | ``false`` |
  79. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  80. | :ref:`int<class_int>` | :ref:`application/run/low_processor_mode_sleep_usec<class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec>` | ``6900`` |
  81. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  82. | :ref:`String<class_String>` | :ref:`application/run/main_loop_type<class_ProjectSettings_property_application/run/main_loop_type>` | ``"SceneTree"`` |
  83. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  84. | :ref:`String<class_String>` | :ref:`application/run/main_scene<class_ProjectSettings_property_application/run/main_scene>` | ``""`` |
  85. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  86. | :ref:`int<class_int>` | :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>` | ``0`` |
  87. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  88. | :ref:`float<class_float>` | :ref:`audio/buses/channel_disable_threshold_db<class_ProjectSettings_property_audio/buses/channel_disable_threshold_db>` | ``-60.0`` |
  89. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  90. | :ref:`float<class_float>` | :ref:`audio/buses/channel_disable_time<class_ProjectSettings_property_audio/buses/channel_disable_time>` | ``2.0`` |
  91. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  92. | :ref:`String<class_String>` | :ref:`audio/buses/default_bus_layout<class_ProjectSettings_property_audio/buses/default_bus_layout>` | ``"res://default_bus_layout.tres"`` |
  93. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  94. | :ref:`String<class_String>` | :ref:`audio/driver/driver<class_ProjectSettings_property_audio/driver/driver>` | |
  95. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`audio/driver/enable_input<class_ProjectSettings_property_audio/driver/enable_input>` | ``false`` |
  97. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  98. | :ref:`int<class_int>` | :ref:`audio/driver/mix_rate<class_ProjectSettings_property_audio/driver/mix_rate>` | ``44100`` |
  99. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  100. | :ref:`int<class_int>` | :ref:`audio/driver/mix_rate.web<class_ProjectSettings_property_audio/driver/mix_rate.web>` | ``0`` |
  101. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  102. | :ref:`int<class_int>` | :ref:`audio/driver/output_latency<class_ProjectSettings_property_audio/driver/output_latency>` | ``15`` |
  103. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  104. | :ref:`int<class_int>` | :ref:`audio/driver/output_latency.web<class_ProjectSettings_property_audio/driver/output_latency.web>` | ``50`` |
  105. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  106. | :ref:`float<class_float>` | :ref:`audio/general/2d_panning_strength<class_ProjectSettings_property_audio/general/2d_panning_strength>` | ``0.5`` |
  107. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  108. | :ref:`float<class_float>` | :ref:`audio/general/3d_panning_strength<class_ProjectSettings_property_audio/general/3d_panning_strength>` | ``0.5`` |
  109. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  110. | :ref:`bool<class_bool>` | :ref:`audio/general/text_to_speech<class_ProjectSettings_property_audio/general/text_to_speech>` | ``false`` |
  111. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  112. | :ref:`int<class_int>` | :ref:`audio/video/video_delay_compensation_ms<class_ProjectSettings_property_audio/video/video_delay_compensation_ms>` | ``0`` |
  113. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  114. | :ref:`int<class_int>` | :ref:`compression/formats/gzip/compression_level<class_ProjectSettings_property_compression/formats/gzip/compression_level>` | ``-1`` |
  115. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  116. | :ref:`int<class_int>` | :ref:`compression/formats/zlib/compression_level<class_ProjectSettings_property_compression/formats/zlib/compression_level>` | ``-1`` |
  117. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  118. | :ref:`int<class_int>` | :ref:`compression/formats/zstd/compression_level<class_ProjectSettings_property_compression/formats/zstd/compression_level>` | ``3`` |
  119. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  120. | :ref:`bool<class_bool>` | :ref:`compression/formats/zstd/long_distance_matching<class_ProjectSettings_property_compression/formats/zstd/long_distance_matching>` | ``false`` |
  121. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  122. | :ref:`int<class_int>` | :ref:`compression/formats/zstd/window_log_size<class_ProjectSettings_property_compression/formats/zstd/window_log_size>` | ``27`` |
  123. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  124. | :ref:`bool<class_bool>` | :ref:`debug/file_logging/enable_file_logging<class_ProjectSettings_property_debug/file_logging/enable_file_logging>` | ``false`` |
  125. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  126. | :ref:`bool<class_bool>` | :ref:`debug/file_logging/enable_file_logging.pc<class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc>` | ``true`` |
  127. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  128. | :ref:`String<class_String>` | :ref:`debug/file_logging/log_path<class_ProjectSettings_property_debug/file_logging/log_path>` | ``"user://logs/godot.log"`` |
  129. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  130. | :ref:`int<class_int>` | :ref:`debug/file_logging/max_log_files<class_ProjectSettings_property_debug/file_logging/max_log_files>` | ``5`` |
  131. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  132. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/assert_always_false<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false>` | ``1`` |
  133. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  134. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/assert_always_true<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true>` | ``1`` |
  135. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  136. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/confusable_identifier<class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier>` | ``1`` |
  137. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  138. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/constant_used_as_function<class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function>` | ``1`` |
  139. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  140. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/deprecated_keyword<class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword>` | ``1`` |
  141. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  142. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/empty_file<class_ProjectSettings_property_debug/gdscript/warnings/empty_file>` | ``1`` |
  143. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  144. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/enable<class_ProjectSettings_property_debug/gdscript/warnings/enable>` | ``true`` |
  145. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  146. | :ref:`bool<class_bool>` | :ref:`debug/gdscript/warnings/exclude_addons<class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons>` | ``true`` |
  147. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  148. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/function_used_as_property<class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property>` | ``1`` |
  149. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  150. | :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`` |
  151. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  152. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/incompatible_ternary<class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary>` | ``1`` |
  153. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  154. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/inference_on_variant<class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant>` | ``2`` |
  155. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  156. | :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`` |
  157. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  158. | :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`` |
  159. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  160. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/integer_division<class_ProjectSettings_property_debug/gdscript/warnings/integer_division>` | ``1`` |
  161. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  162. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/narrowing_conversion<class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion>` | ``1`` |
  163. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  164. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/native_method_override<class_ProjectSettings_property_debug/gdscript/warnings/native_method_override>` | ``2`` |
  165. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  166. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/onready_with_export<class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export>` | ``2`` |
  167. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  168. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/property_used_as_function<class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function>` | ``1`` |
  169. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  170. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/redundant_await<class_ProjectSettings_property_debug/gdscript/warnings/redundant_await>` | ``1`` |
  171. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  172. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/redundant_static_unload<class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload>` | ``1`` |
  173. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  174. | :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`` |
  175. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  176. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/return_value_discarded<class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded>` | ``0`` |
  177. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  178. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_global_identifier<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier>` | ``1`` |
  179. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  180. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_variable<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable>` | ``1`` |
  181. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  182. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/shadowed_variable_base_class<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class>` | ``1`` |
  183. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  184. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/standalone_expression<class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression>` | ``1`` |
  185. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  186. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/standalone_ternary<class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary>` | ``1`` |
  187. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  188. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/static_called_on_instance<class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance>` | ``1`` |
  189. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  190. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unassigned_variable<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable>` | ``1`` |
  191. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  192. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unassigned_variable_op_assign<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign>` | ``1`` |
  193. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  194. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unreachable_code<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code>` | ``1`` |
  195. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  196. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unreachable_pattern<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern>` | ``1`` |
  197. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  198. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_call_argument<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument>` | ``0`` |
  199. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  200. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_cast<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast>` | ``0`` |
  201. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  202. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_method_access<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access>` | ``0`` |
  203. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  204. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_property_access<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access>` | ``0`` |
  205. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  206. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unsafe_void_return<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return>` | ``1`` |
  207. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  208. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_local_constant<class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant>` | ``1`` |
  209. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  210. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_parameter<class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter>` | ``1`` |
  211. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  212. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_private_class_variable<class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable>` | ``1`` |
  213. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  214. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_signal<class_ProjectSettings_property_debug/gdscript/warnings/unused_signal>` | ``1`` |
  215. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  216. | :ref:`int<class_int>` | :ref:`debug/gdscript/warnings/unused_variable<class_ProjectSettings_property_debug/gdscript/warnings/unused_variable>` | ``1`` |
  217. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  218. | :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."`` |
  219. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  220. | :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"`` |
  221. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  222. | :ref:`int<class_int>` | :ref:`debug/settings/gdscript/max_call_stack<class_ProjectSettings_property_debug/settings/gdscript/max_call_stack>` | ``1024`` |
  223. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  224. | :ref:`int<class_int>` | :ref:`debug/settings/profiler/max_functions<class_ProjectSettings_property_debug/settings/profiler/max_functions>` | ``16384`` |
  225. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  226. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/print_fps<class_ProjectSettings_property_debug/settings/stdout/print_fps>` | ``false`` |
  227. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  228. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/print_gpu_profile<class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile>` | ``false`` |
  229. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  230. | :ref:`bool<class_bool>` | :ref:`debug/settings/stdout/verbose_stdout<class_ProjectSettings_property_debug/settings/stdout/verbose_stdout>` | ``false`` |
  231. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  232. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/device_limit_exceeded<class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded>` | ``true`` |
  233. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  234. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/enable<class_ProjectSettings_property_debug/shader_language/warnings/enable>` | ``true`` |
  235. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  236. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/float_comparison<class_ProjectSettings_property_debug/shader_language/warnings/float_comparison>` | ``true`` |
  237. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  238. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/formatting_error<class_ProjectSettings_property_debug/shader_language/warnings/formatting_error>` | ``true`` |
  239. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  240. | :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`` |
  241. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  242. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_constant<class_ProjectSettings_property_debug/shader_language/warnings/unused_constant>` | ``true`` |
  243. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  244. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_function<class_ProjectSettings_property_debug/shader_language/warnings/unused_function>` | ``true`` |
  245. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  246. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_local_variable<class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable>` | ``true`` |
  247. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  248. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_struct<class_ProjectSettings_property_debug/shader_language/warnings/unused_struct>` | ``true`` |
  249. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  250. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_uniform<class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform>` | ``true`` |
  251. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  252. | :ref:`bool<class_bool>` | :ref:`debug/shader_language/warnings/unused_varying<class_ProjectSettings_property_debug/shader_language/warnings/unused_varying>` | ``true`` |
  253. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  254. | :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)`` |
  255. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  256. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_agents_radius<class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius>` | ``true`` |
  257. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  258. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_obstacles_radius<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius>` | ``true`` |
  259. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  260. | :ref:`bool<class_bool>` | :ref:`debug/shapes/avoidance/enable_obstacles_static<class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static>` | ``true`` |
  261. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  262. | :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)`` |
  263. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  264. | :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)`` |
  265. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  266. | :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)`` |
  267. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  268. | :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)`` |
  269. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  270. | :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)`` |
  271. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  272. | :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)`` |
  273. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  274. | :ref:`bool<class_bool>` | :ref:`debug/shapes/collision/draw_2d_outlines<class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines>` | ``true`` |
  275. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  276. | :ref:`int<class_int>` | :ref:`debug/shapes/collision/max_contacts_displayed<class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed>` | ``10000`` |
  277. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  278. | :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)`` |
  279. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  280. | :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)`` |
  281. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  282. | :ref:`float<class_float>` | :ref:`debug/shapes/navigation/agent_path_point_size<class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size>` | ``4.0`` |
  283. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  284. | :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)`` |
  285. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  286. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_agent_paths<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths>` | ``true`` |
  287. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  288. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_agent_paths_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray>` | ``true`` |
  289. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  290. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_connections<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections>` | ``true`` |
  291. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  292. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_connections_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray>` | ``true`` |
  293. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  294. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_lines<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines>` | ``true`` |
  295. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  296. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_edge_lines_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray>` | ``true`` |
  297. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  298. | :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`` |
  299. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  300. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_link_connections<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections>` | ``true`` |
  301. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  302. | :ref:`bool<class_bool>` | :ref:`debug/shapes/navigation/enable_link_connections_xray<class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray>` | ``true`` |
  303. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  304. | :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)`` |
  305. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  306. | :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)`` |
  307. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  308. | :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)`` |
  309. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  310. | :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)`` |
  311. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  312. | :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)`` |
  313. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  314. | :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)`` |
  315. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  316. | :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)`` |
  317. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  318. | :ref:`float<class_float>` | :ref:`debug/shapes/paths/geometry_width<class_ProjectSettings_property_debug/shapes/paths/geometry_width>` | ``2.0`` |
  319. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  320. | :ref:`String<class_String>` | :ref:`display/mouse_cursor/custom_image<class_ProjectSettings_property_display/mouse_cursor/custom_image>` | ``""`` |
  321. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  322. | :ref:`Vector2<class_Vector2>` | :ref:`display/mouse_cursor/custom_image_hotspot<class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot>` | ``Vector2(0, 0)`` |
  323. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  324. | :ref:`Vector2<class_Vector2>` | :ref:`display/mouse_cursor/tooltip_position_offset<class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset>` | ``Vector2(10, 10)`` |
  325. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  326. | :ref:`bool<class_bool>` | :ref:`display/window/dpi/allow_hidpi<class_ProjectSettings_property_display/window/dpi/allow_hidpi>` | ``true`` |
  327. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  328. | :ref:`bool<class_bool>` | :ref:`display/window/energy_saving/keep_screen_on<class_ProjectSettings_property_display/window/energy_saving/keep_screen_on>` | ``true`` |
  329. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  330. | :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`` |
  331. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  332. | :ref:`int<class_int>` | :ref:`display/window/handheld/orientation<class_ProjectSettings_property_display/window/handheld/orientation>` | ``0`` |
  333. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  334. | :ref:`bool<class_bool>` | :ref:`display/window/ios/allow_high_refresh_rate<class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate>` | ``true`` |
  335. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  336. | :ref:`bool<class_bool>` | :ref:`display/window/ios/hide_home_indicator<class_ProjectSettings_property_display/window/ios/hide_home_indicator>` | ``true`` |
  337. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  338. | :ref:`bool<class_bool>` | :ref:`display/window/ios/hide_status_bar<class_ProjectSettings_property_display/window/ios/hide_status_bar>` | ``true`` |
  339. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  340. | :ref:`bool<class_bool>` | :ref:`display/window/ios/suppress_ui_gesture<class_ProjectSettings_property_display/window/ios/suppress_ui_gesture>` | ``true`` |
  341. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  342. | :ref:`bool<class_bool>` | :ref:`display/window/per_pixel_transparency/allowed<class_ProjectSettings_property_display/window/per_pixel_transparency/allowed>` | ``false`` |
  343. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  344. | :ref:`bool<class_bool>` | :ref:`display/window/size/always_on_top<class_ProjectSettings_property_display/window/size/always_on_top>` | ``false`` |
  345. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  346. | :ref:`bool<class_bool>` | :ref:`display/window/size/borderless<class_ProjectSettings_property_display/window/size/borderless>` | ``false`` |
  347. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  348. | :ref:`bool<class_bool>` | :ref:`display/window/size/extend_to_title<class_ProjectSettings_property_display/window/size/extend_to_title>` | ``false`` |
  349. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  350. | :ref:`Vector2i<class_Vector2i>` | :ref:`display/window/size/initial_position<class_ProjectSettings_property_display/window/size/initial_position>` | ``Vector2i(0, 0)`` |
  351. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  352. | :ref:`int<class_int>` | :ref:`display/window/size/initial_position_type<class_ProjectSettings_property_display/window/size/initial_position_type>` | ``1`` |
  353. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  354. | :ref:`int<class_int>` | :ref:`display/window/size/initial_screen<class_ProjectSettings_property_display/window/size/initial_screen>` | ``0`` |
  355. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  356. | :ref:`int<class_int>` | :ref:`display/window/size/mode<class_ProjectSettings_property_display/window/size/mode>` | ``0`` |
  357. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  358. | :ref:`bool<class_bool>` | :ref:`display/window/size/no_focus<class_ProjectSettings_property_display/window/size/no_focus>` | ``false`` |
  359. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  360. | :ref:`bool<class_bool>` | :ref:`display/window/size/resizable<class_ProjectSettings_property_display/window/size/resizable>` | ``true`` |
  361. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  362. | :ref:`bool<class_bool>` | :ref:`display/window/size/transparent<class_ProjectSettings_property_display/window/size/transparent>` | ``false`` |
  363. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  364. | :ref:`int<class_int>` | :ref:`display/window/size/viewport_height<class_ProjectSettings_property_display/window/size/viewport_height>` | ``648`` |
  365. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  366. | :ref:`int<class_int>` | :ref:`display/window/size/viewport_width<class_ProjectSettings_property_display/window/size/viewport_width>` | ``1152`` |
  367. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  368. | :ref:`int<class_int>` | :ref:`display/window/size/window_height_override<class_ProjectSettings_property_display/window/size/window_height_override>` | ``0`` |
  369. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  370. | :ref:`int<class_int>` | :ref:`display/window/size/window_width_override<class_ProjectSettings_property_display/window/size/window_width_override>` | ``0`` |
  371. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  372. | :ref:`String<class_String>` | :ref:`display/window/stretch/aspect<class_ProjectSettings_property_display/window/stretch/aspect>` | ``"keep"`` |
  373. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  374. | :ref:`String<class_String>` | :ref:`display/window/stretch/mode<class_ProjectSettings_property_display/window/stretch/mode>` | ``"disabled"`` |
  375. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  376. | :ref:`float<class_float>` | :ref:`display/window/stretch/scale<class_ProjectSettings_property_display/window/stretch/scale>` | ``1.0`` |
  377. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  378. | :ref:`bool<class_bool>` | :ref:`display/window/subwindows/embed_subwindows<class_ProjectSettings_property_display/window/subwindows/embed_subwindows>` | ``true`` |
  379. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  380. | :ref:`int<class_int>` | :ref:`display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>` | ``1`` |
  381. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  382. | :ref:`String<class_String>` | :ref:`dotnet/project/assembly_name<class_ProjectSettings_property_dotnet/project/assembly_name>` | ``""`` |
  383. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  384. | :ref:`int<class_int>` | :ref:`dotnet/project/assembly_reload_attempts<class_ProjectSettings_property_dotnet/project/assembly_reload_attempts>` | ``3`` |
  385. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  386. | :ref:`String<class_String>` | :ref:`dotnet/project/solution_directory<class_ProjectSettings_property_dotnet/project/solution_directory>` | ``""`` |
  387. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  388. | :ref:`bool<class_bool>` | :ref:`editor/export/convert_text_resources_to_binary<class_ProjectSettings_property_editor/export/convert_text_resources_to_binary>` | ``true`` |
  389. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  390. | :ref:`bool<class_bool>` | :ref:`editor/import/reimport_missing_imported_files<class_ProjectSettings_property_editor/import/reimport_missing_imported_files>` | ``true`` |
  391. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  392. | :ref:`bool<class_bool>` | :ref:`editor/import/use_multiple_threads<class_ProjectSettings_property_editor/import/use_multiple_threads>` | ``true`` |
  393. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  394. | :ref:`bool<class_bool>` | :ref:`editor/movie_writer/disable_vsync<class_ProjectSettings_property_editor/movie_writer/disable_vsync>` | ``false`` |
  395. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  396. | :ref:`int<class_int>` | :ref:`editor/movie_writer/fps<class_ProjectSettings_property_editor/movie_writer/fps>` | ``60`` |
  397. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  398. | :ref:`int<class_int>` | :ref:`editor/movie_writer/mix_rate<class_ProjectSettings_property_editor/movie_writer/mix_rate>` | ``48000`` |
  399. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  400. | :ref:`float<class_float>` | :ref:`editor/movie_writer/mjpeg_quality<class_ProjectSettings_property_editor/movie_writer/mjpeg_quality>` | ``0.75`` |
  401. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  402. | :ref:`String<class_String>` | :ref:`editor/movie_writer/movie_file<class_ProjectSettings_property_editor/movie_writer/movie_file>` | ``""`` |
  403. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  404. | :ref:`int<class_int>` | :ref:`editor/movie_writer/speaker_mode<class_ProjectSettings_property_editor/movie_writer/speaker_mode>` | ``0`` |
  405. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  406. | :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}"`` |
  407. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  408. | :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}"`` |
  409. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  410. | :ref:`int<class_int>` | :ref:`editor/naming/node_name_casing<class_ProjectSettings_property_editor/naming/node_name_casing>` | ``0`` |
  411. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  412. | :ref:`int<class_int>` | :ref:`editor/naming/node_name_num_separator<class_ProjectSettings_property_editor/naming/node_name_num_separator>` | ``0`` |
  413. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  414. | :ref:`int<class_int>` | :ref:`editor/naming/scene_name_casing<class_ProjectSettings_property_editor/naming/scene_name_casing>` | ``2`` |
  415. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  416. | :ref:`String<class_String>` | :ref:`editor/run/main_run_args<class_ProjectSettings_property_editor/run/main_run_args>` | ``""`` |
  417. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  418. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`editor/script/search_in_file_extensions<class_ProjectSettings_property_editor/script/search_in_file_extensions>` | ``PackedStringArray("gd", "gdshader")`` |
  419. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  420. | :ref:`String<class_String>` | :ref:`editor/script/templates_search_path<class_ProjectSettings_property_editor/script/templates_search_path>` | ``"res://script_templates"`` |
  421. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  422. | :ref:`bool<class_bool>` | :ref:`editor/version_control/autoload_on_startup<class_ProjectSettings_property_editor/version_control/autoload_on_startup>` | ``false`` |
  423. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  424. | :ref:`String<class_String>` | :ref:`editor/version_control/plugin_name<class_ProjectSettings_property_editor/version_control/plugin_name>` | ``""`` |
  425. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  426. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>` | ``true`` |
  427. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  428. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled.android<class_ProjectSettings_property_filesystem/import/blender/enabled.android>` | ``false`` |
  429. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  430. | :ref:`bool<class_bool>` | :ref:`filesystem/import/blender/enabled.web<class_ProjectSettings_property_filesystem/import/blender/enabled.web>` | ``false`` |
  431. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  432. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx/enabled<class_ProjectSettings_property_filesystem/import/fbx/enabled>` | ``true`` |
  433. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  434. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx/enabled.android<class_ProjectSettings_property_filesystem/import/fbx/enabled.android>` | ``false`` |
  435. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  436. | :ref:`bool<class_bool>` | :ref:`filesystem/import/fbx/enabled.web<class_ProjectSettings_property_filesystem/import/fbx/enabled.web>` | ``false`` |
  437. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  438. | :ref:`int<class_int>` | :ref:`gui/common/default_scroll_deadzone<class_ProjectSettings_property_gui/common/default_scroll_deadzone>` | ``0`` |
  439. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  440. | :ref:`bool<class_bool>` | :ref:`gui/common/snap_controls_to_pixels<class_ProjectSettings_property_gui/common/snap_controls_to_pixels>` | ``true`` |
  441. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  442. | :ref:`bool<class_bool>` | :ref:`gui/common/swap_cancel_ok<class_ProjectSettings_property_gui/common/swap_cancel_ok>` | |
  443. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  444. | :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`` |
  445. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  446. | :ref:`bool<class_bool>` | :ref:`gui/fonts/dynamic_fonts/use_oversampling<class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling>` | ``true`` |
  447. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  448. | :ref:`String<class_String>` | :ref:`gui/theme/custom<class_ProjectSettings_property_gui/theme/custom>` | ``""`` |
  449. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  450. | :ref:`String<class_String>` | :ref:`gui/theme/custom_font<class_ProjectSettings_property_gui/theme/custom_font>` | ``""`` |
  451. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  452. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_antialiasing<class_ProjectSettings_property_gui/theme/default_font_antialiasing>` | ``1`` |
  453. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  454. | :ref:`bool<class_bool>` | :ref:`gui/theme/default_font_generate_mipmaps<class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps>` | ``false`` |
  455. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  456. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_hinting<class_ProjectSettings_property_gui/theme/default_font_hinting>` | ``1`` |
  457. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  458. | :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`` |
  459. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  460. | :ref:`int<class_int>` | :ref:`gui/theme/default_font_subpixel_positioning<class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning>` | ``1`` |
  461. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  462. | :ref:`float<class_float>` | :ref:`gui/theme/default_theme_scale<class_ProjectSettings_property_gui/theme/default_theme_scale>` | ``1.0`` |
  463. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  464. | :ref:`int<class_int>` | :ref:`gui/theme/lcd_subpixel_layout<class_ProjectSettings_property_gui/theme/lcd_subpixel_layout>` | ``1`` |
  465. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  466. | :ref:`float<class_float>` | :ref:`gui/timers/button_shortcut_feedback_highlight_time<class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time>` | ``0.2`` |
  467. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  468. | :ref:`int<class_int>` | :ref:`gui/timers/incremental_search_max_interval_msec<class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec>` | ``2000`` |
  469. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  470. | :ref:`float<class_float>` | :ref:`gui/timers/text_edit_idle_detect_sec<class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec>` | ``3`` |
  471. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  472. | :ref:`float<class_float>` | :ref:`gui/timers/tooltip_delay_sec<class_ProjectSettings_property_gui/timers/tooltip_delay_sec>` | ``0.5`` |
  473. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  474. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_accept<class_ProjectSettings_property_input/ui_accept>` | |
  475. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  476. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_cancel<class_ProjectSettings_property_input/ui_cancel>` | |
  477. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  478. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_copy<class_ProjectSettings_property_input/ui_copy>` | |
  479. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  480. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_cut<class_ProjectSettings_property_input/ui_cut>` | |
  481. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  482. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_down<class_ProjectSettings_property_input/ui_down>` | |
  483. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  484. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_end<class_ProjectSettings_property_input/ui_end>` | |
  485. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  486. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_refresh<class_ProjectSettings_property_input/ui_filedialog_refresh>` | |
  487. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  488. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_show_hidden<class_ProjectSettings_property_input/ui_filedialog_show_hidden>` | |
  489. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  490. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_filedialog_up_one_level<class_ProjectSettings_property_input/ui_filedialog_up_one_level>` | |
  491. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  492. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_focus_next<class_ProjectSettings_property_input/ui_focus_next>` | |
  493. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  494. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_focus_prev<class_ProjectSettings_property_input/ui_focus_prev>` | |
  495. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  496. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_graph_delete<class_ProjectSettings_property_input/ui_graph_delete>` | |
  497. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  498. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_graph_duplicate<class_ProjectSettings_property_input/ui_graph_duplicate>` | |
  499. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  500. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_home<class_ProjectSettings_property_input/ui_home>` | |
  501. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  502. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_left<class_ProjectSettings_property_input/ui_left>` | |
  503. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  504. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_menu<class_ProjectSettings_property_input/ui_menu>` | |
  505. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  506. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_page_down<class_ProjectSettings_property_input/ui_page_down>` | |
  507. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  508. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_page_up<class_ProjectSettings_property_input/ui_page_up>` | |
  509. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  510. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_paste<class_ProjectSettings_property_input/ui_paste>` | |
  511. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  512. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_redo<class_ProjectSettings_property_input/ui_redo>` | |
  513. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  514. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_right<class_ProjectSettings_property_input/ui_right>` | |
  515. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  516. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_select<class_ProjectSettings_property_input/ui_select>` | |
  517. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  518. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_swap_input_direction<class_ProjectSettings_property_input/ui_swap_input_direction>` | |
  519. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  520. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_add_selection_for_next_occurrence<class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence>` | |
  521. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  522. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace<class_ProjectSettings_property_input/ui_text_backspace>` | |
  523. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  524. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_all_to_left<class_ProjectSettings_property_input/ui_text_backspace_all_to_left>` | |
  525. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  526. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_all_to_left.macos<class_ProjectSettings_property_input/ui_text_backspace_all_to_left.macos>` | |
  527. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  528. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_word<class_ProjectSettings_property_input/ui_text_backspace_word>` | |
  529. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  530. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_backspace_word.macos<class_ProjectSettings_property_input/ui_text_backspace_word.macos>` | |
  531. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  532. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_above<class_ProjectSettings_property_input/ui_text_caret_add_above>` | |
  533. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  534. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_above.macos<class_ProjectSettings_property_input/ui_text_caret_add_above.macos>` | |
  535. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  536. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_below<class_ProjectSettings_property_input/ui_text_caret_add_below>` | |
  537. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  538. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_add_below.macos<class_ProjectSettings_property_input/ui_text_caret_add_below.macos>` | |
  539. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  540. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_end<class_ProjectSettings_property_input/ui_text_caret_document_end>` | |
  541. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  542. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_end.macos<class_ProjectSettings_property_input/ui_text_caret_document_end.macos>` | |
  543. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  544. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_start<class_ProjectSettings_property_input/ui_text_caret_document_start>` | |
  545. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  546. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_document_start.macos<class_ProjectSettings_property_input/ui_text_caret_document_start.macos>` | |
  547. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  548. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_down<class_ProjectSettings_property_input/ui_text_caret_down>` | |
  549. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  550. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_left<class_ProjectSettings_property_input/ui_text_caret_left>` | |
  551. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  552. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_end<class_ProjectSettings_property_input/ui_text_caret_line_end>` | |
  553. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  554. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_end.macos<class_ProjectSettings_property_input/ui_text_caret_line_end.macos>` | |
  555. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  556. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_start<class_ProjectSettings_property_input/ui_text_caret_line_start>` | |
  557. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  558. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_line_start.macos<class_ProjectSettings_property_input/ui_text_caret_line_start.macos>` | |
  559. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  560. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_page_down<class_ProjectSettings_property_input/ui_text_caret_page_down>` | |
  561. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  562. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_page_up<class_ProjectSettings_property_input/ui_text_caret_page_up>` | |
  563. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  564. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_right<class_ProjectSettings_property_input/ui_text_caret_right>` | |
  565. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  566. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_up<class_ProjectSettings_property_input/ui_text_caret_up>` | |
  567. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  568. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_left<class_ProjectSettings_property_input/ui_text_caret_word_left>` | |
  569. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  570. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_left.macos<class_ProjectSettings_property_input/ui_text_caret_word_left.macos>` | |
  571. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  572. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_right<class_ProjectSettings_property_input/ui_text_caret_word_right>` | |
  573. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  574. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_caret_word_right.macos<class_ProjectSettings_property_input/ui_text_caret_word_right.macos>` | |
  575. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  576. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_clear_carets_and_selection<class_ProjectSettings_property_input/ui_text_clear_carets_and_selection>` | |
  577. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  578. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_accept<class_ProjectSettings_property_input/ui_text_completion_accept>` | |
  579. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  580. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_query<class_ProjectSettings_property_input/ui_text_completion_query>` | |
  581. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  582. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_completion_replace<class_ProjectSettings_property_input/ui_text_completion_replace>` | |
  583. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  584. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_dedent<class_ProjectSettings_property_input/ui_text_dedent>` | |
  585. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  586. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete<class_ProjectSettings_property_input/ui_text_delete>` | |
  587. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  588. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_all_to_right<class_ProjectSettings_property_input/ui_text_delete_all_to_right>` | |
  589. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  590. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_all_to_right.macos<class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos>` | |
  591. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  592. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_word<class_ProjectSettings_property_input/ui_text_delete_word>` | |
  593. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  594. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_delete_word.macos<class_ProjectSettings_property_input/ui_text_delete_word.macos>` | |
  595. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  596. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_indent<class_ProjectSettings_property_input/ui_text_indent>` | |
  597. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  598. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline<class_ProjectSettings_property_input/ui_text_newline>` | |
  599. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  600. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline_above<class_ProjectSettings_property_input/ui_text_newline_above>` | |
  601. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  602. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_newline_blank<class_ProjectSettings_property_input/ui_text_newline_blank>` | |
  603. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  604. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_down<class_ProjectSettings_property_input/ui_text_scroll_down>` | |
  605. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  606. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_down.macos<class_ProjectSettings_property_input/ui_text_scroll_down.macos>` | |
  607. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  608. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_up<class_ProjectSettings_property_input/ui_text_scroll_up>` | |
  609. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  610. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_scroll_up.macos<class_ProjectSettings_property_input/ui_text_scroll_up.macos>` | |
  611. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  612. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_all<class_ProjectSettings_property_input/ui_text_select_all>` | |
  613. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  614. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_word_under_caret<class_ProjectSettings_property_input/ui_text_select_word_under_caret>` | |
  615. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  616. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_select_word_under_caret.macos<class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos>` | |
  617. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  618. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_submit<class_ProjectSettings_property_input/ui_text_submit>` | |
  619. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  620. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_text_toggle_insert_mode<class_ProjectSettings_property_input/ui_text_toggle_insert_mode>` | |
  621. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  622. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_undo<class_ProjectSettings_property_input/ui_undo>` | |
  623. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  624. | :ref:`Dictionary<class_Dictionary>` | :ref:`input/ui_up<class_ProjectSettings_property_input/ui_up>` | |
  625. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  626. | :ref:`bool<class_bool>` | :ref:`input_devices/buffering/agile_event_flushing<class_ProjectSettings_property_input_devices/buffering/agile_event_flushing>` | ``false`` |
  627. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  628. | :ref:`bool<class_bool>` | :ref:`input_devices/compatibility/legacy_just_pressed_behavior<class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior>` | ``false`` |
  629. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  630. | :ref:`String<class_String>` | :ref:`input_devices/pen_tablet/driver<class_ProjectSettings_property_input_devices/pen_tablet/driver>` | |
  631. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  632. | :ref:`String<class_String>` | :ref:`input_devices/pen_tablet/driver.windows<class_ProjectSettings_property_input_devices/pen_tablet/driver.windows>` | |
  633. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  634. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/emulate_mouse_from_touch<class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch>` | ``true`` |
  635. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  636. | :ref:`bool<class_bool>` | :ref:`input_devices/pointing/emulate_touch_from_mouse<class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse>` | ``false`` |
  637. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  638. | :ref:`String<class_String>` | :ref:`internationalization/locale/fallback<class_ProjectSettings_property_internationalization/locale/fallback>` | ``"en"`` |
  639. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  640. | :ref:`bool<class_bool>` | :ref:`internationalization/locale/include_text_server_data<class_ProjectSettings_property_internationalization/locale/include_text_server_data>` | ``false`` |
  641. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  642. | :ref:`String<class_String>` | :ref:`internationalization/locale/test<class_ProjectSettings_property_internationalization/locale/test>` | ``""`` |
  643. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  644. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/double_vowels<class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels>` | ``false`` |
  645. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  646. | :ref:`float<class_float>` | :ref:`internationalization/pseudolocalization/expansion_ratio<class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio>` | ``0.0`` |
  647. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  648. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/fake_bidi<class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi>` | ``false`` |
  649. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  650. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/override<class_ProjectSettings_property_internationalization/pseudolocalization/override>` | ``false`` |
  651. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  652. | :ref:`String<class_String>` | :ref:`internationalization/pseudolocalization/prefix<class_ProjectSettings_property_internationalization/pseudolocalization/prefix>` | ``"["`` |
  653. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  654. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/replace_with_accents<class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents>` | ``true`` |
  655. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  656. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/skip_placeholders<class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders>` | ``true`` |
  657. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  658. | :ref:`String<class_String>` | :ref:`internationalization/pseudolocalization/suffix<class_ProjectSettings_property_internationalization/pseudolocalization/suffix>` | ``"]"`` |
  659. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  660. | :ref:`bool<class_bool>` | :ref:`internationalization/pseudolocalization/use_pseudolocalization<class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization>` | ``false`` |
  661. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  662. | :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`` |
  663. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  664. | :ref:`int<class_int>` | :ref:`internationalization/rendering/root_node_layout_direction<class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction>` | ``0`` |
  665. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  666. | :ref:`String<class_String>` | :ref:`internationalization/rendering/text_driver<class_ProjectSettings_property_internationalization/rendering/text_driver>` | ``""`` |
  667. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  668. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_1<class_ProjectSettings_property_layer_names/2d_navigation/layer_1>` | ``""`` |
  669. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  670. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_2<class_ProjectSettings_property_layer_names/2d_navigation/layer_2>` | ``""`` |
  671. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  672. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_3<class_ProjectSettings_property_layer_names/2d_navigation/layer_3>` | ``""`` |
  673. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  674. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_4<class_ProjectSettings_property_layer_names/2d_navigation/layer_4>` | ``""`` |
  675. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  676. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_5<class_ProjectSettings_property_layer_names/2d_navigation/layer_5>` | ``""`` |
  677. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  678. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_6<class_ProjectSettings_property_layer_names/2d_navigation/layer_6>` | ``""`` |
  679. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  680. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_7<class_ProjectSettings_property_layer_names/2d_navigation/layer_7>` | ``""`` |
  681. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  682. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_8<class_ProjectSettings_property_layer_names/2d_navigation/layer_8>` | ``""`` |
  683. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  684. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_9<class_ProjectSettings_property_layer_names/2d_navigation/layer_9>` | ``""`` |
  685. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  686. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_10<class_ProjectSettings_property_layer_names/2d_navigation/layer_10>` | ``""`` |
  687. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  688. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_11<class_ProjectSettings_property_layer_names/2d_navigation/layer_11>` | ``""`` |
  689. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  690. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_12<class_ProjectSettings_property_layer_names/2d_navigation/layer_12>` | ``""`` |
  691. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  692. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_13<class_ProjectSettings_property_layer_names/2d_navigation/layer_13>` | ``""`` |
  693. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  694. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_14<class_ProjectSettings_property_layer_names/2d_navigation/layer_14>` | ``""`` |
  695. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  696. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_15<class_ProjectSettings_property_layer_names/2d_navigation/layer_15>` | ``""`` |
  697. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  698. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_16<class_ProjectSettings_property_layer_names/2d_navigation/layer_16>` | ``""`` |
  699. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  700. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_17<class_ProjectSettings_property_layer_names/2d_navigation/layer_17>` | ``""`` |
  701. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  702. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_18<class_ProjectSettings_property_layer_names/2d_navigation/layer_18>` | ``""`` |
  703. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  704. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_19<class_ProjectSettings_property_layer_names/2d_navigation/layer_19>` | ``""`` |
  705. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  706. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_20<class_ProjectSettings_property_layer_names/2d_navigation/layer_20>` | ``""`` |
  707. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  708. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_21<class_ProjectSettings_property_layer_names/2d_navigation/layer_21>` | ``""`` |
  709. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  710. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_22<class_ProjectSettings_property_layer_names/2d_navigation/layer_22>` | ``""`` |
  711. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  712. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_23<class_ProjectSettings_property_layer_names/2d_navigation/layer_23>` | ``""`` |
  713. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  714. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_24<class_ProjectSettings_property_layer_names/2d_navigation/layer_24>` | ``""`` |
  715. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  716. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_25<class_ProjectSettings_property_layer_names/2d_navigation/layer_25>` | ``""`` |
  717. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  718. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_26<class_ProjectSettings_property_layer_names/2d_navigation/layer_26>` | ``""`` |
  719. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  720. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_27<class_ProjectSettings_property_layer_names/2d_navigation/layer_27>` | ``""`` |
  721. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  722. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_28<class_ProjectSettings_property_layer_names/2d_navigation/layer_28>` | ``""`` |
  723. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  724. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_29<class_ProjectSettings_property_layer_names/2d_navigation/layer_29>` | ``""`` |
  725. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  726. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_30<class_ProjectSettings_property_layer_names/2d_navigation/layer_30>` | ``""`` |
  727. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  728. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_31<class_ProjectSettings_property_layer_names/2d_navigation/layer_31>` | ``""`` |
  729. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  730. | :ref:`String<class_String>` | :ref:`layer_names/2d_navigation/layer_32<class_ProjectSettings_property_layer_names/2d_navigation/layer_32>` | ``""`` |
  731. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  732. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_1<class_ProjectSettings_property_layer_names/2d_physics/layer_1>` | ``""`` |
  733. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  734. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_2<class_ProjectSettings_property_layer_names/2d_physics/layer_2>` | ``""`` |
  735. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  736. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_3<class_ProjectSettings_property_layer_names/2d_physics/layer_3>` | ``""`` |
  737. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  738. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_4<class_ProjectSettings_property_layer_names/2d_physics/layer_4>` | ``""`` |
  739. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  740. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_5<class_ProjectSettings_property_layer_names/2d_physics/layer_5>` | ``""`` |
  741. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  742. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_6<class_ProjectSettings_property_layer_names/2d_physics/layer_6>` | ``""`` |
  743. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  744. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_7<class_ProjectSettings_property_layer_names/2d_physics/layer_7>` | ``""`` |
  745. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  746. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_8<class_ProjectSettings_property_layer_names/2d_physics/layer_8>` | ``""`` |
  747. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  748. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_9<class_ProjectSettings_property_layer_names/2d_physics/layer_9>` | ``""`` |
  749. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  750. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_10<class_ProjectSettings_property_layer_names/2d_physics/layer_10>` | ``""`` |
  751. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  752. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_11<class_ProjectSettings_property_layer_names/2d_physics/layer_11>` | ``""`` |
  753. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  754. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_12<class_ProjectSettings_property_layer_names/2d_physics/layer_12>` | ``""`` |
  755. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  756. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_13<class_ProjectSettings_property_layer_names/2d_physics/layer_13>` | ``""`` |
  757. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  758. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_14<class_ProjectSettings_property_layer_names/2d_physics/layer_14>` | ``""`` |
  759. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  760. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_15<class_ProjectSettings_property_layer_names/2d_physics/layer_15>` | ``""`` |
  761. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  762. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_16<class_ProjectSettings_property_layer_names/2d_physics/layer_16>` | ``""`` |
  763. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  764. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_17<class_ProjectSettings_property_layer_names/2d_physics/layer_17>` | ``""`` |
  765. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  766. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_18<class_ProjectSettings_property_layer_names/2d_physics/layer_18>` | ``""`` |
  767. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  768. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_19<class_ProjectSettings_property_layer_names/2d_physics/layer_19>` | ``""`` |
  769. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  770. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_20<class_ProjectSettings_property_layer_names/2d_physics/layer_20>` | ``""`` |
  771. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  772. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_21<class_ProjectSettings_property_layer_names/2d_physics/layer_21>` | ``""`` |
  773. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  774. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_22<class_ProjectSettings_property_layer_names/2d_physics/layer_22>` | ``""`` |
  775. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  776. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_23<class_ProjectSettings_property_layer_names/2d_physics/layer_23>` | ``""`` |
  777. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  778. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_24<class_ProjectSettings_property_layer_names/2d_physics/layer_24>` | ``""`` |
  779. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  780. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_25<class_ProjectSettings_property_layer_names/2d_physics/layer_25>` | ``""`` |
  781. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  782. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_26<class_ProjectSettings_property_layer_names/2d_physics/layer_26>` | ``""`` |
  783. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  784. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_27<class_ProjectSettings_property_layer_names/2d_physics/layer_27>` | ``""`` |
  785. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  786. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_28<class_ProjectSettings_property_layer_names/2d_physics/layer_28>` | ``""`` |
  787. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  788. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_29<class_ProjectSettings_property_layer_names/2d_physics/layer_29>` | ``""`` |
  789. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  790. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_30<class_ProjectSettings_property_layer_names/2d_physics/layer_30>` | ``""`` |
  791. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  792. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_31<class_ProjectSettings_property_layer_names/2d_physics/layer_31>` | ``""`` |
  793. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  794. | :ref:`String<class_String>` | :ref:`layer_names/2d_physics/layer_32<class_ProjectSettings_property_layer_names/2d_physics/layer_32>` | ``""`` |
  795. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  796. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_1<class_ProjectSettings_property_layer_names/2d_render/layer_1>` | ``""`` |
  797. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  798. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_2<class_ProjectSettings_property_layer_names/2d_render/layer_2>` | ``""`` |
  799. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  800. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_3<class_ProjectSettings_property_layer_names/2d_render/layer_3>` | ``""`` |
  801. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  802. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_4<class_ProjectSettings_property_layer_names/2d_render/layer_4>` | ``""`` |
  803. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  804. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_5<class_ProjectSettings_property_layer_names/2d_render/layer_5>` | ``""`` |
  805. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  806. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_6<class_ProjectSettings_property_layer_names/2d_render/layer_6>` | ``""`` |
  807. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  808. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_7<class_ProjectSettings_property_layer_names/2d_render/layer_7>` | ``""`` |
  809. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  810. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_8<class_ProjectSettings_property_layer_names/2d_render/layer_8>` | ``""`` |
  811. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  812. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_9<class_ProjectSettings_property_layer_names/2d_render/layer_9>` | ``""`` |
  813. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  814. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_10<class_ProjectSettings_property_layer_names/2d_render/layer_10>` | ``""`` |
  815. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  816. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_11<class_ProjectSettings_property_layer_names/2d_render/layer_11>` | ``""`` |
  817. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  818. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_12<class_ProjectSettings_property_layer_names/2d_render/layer_12>` | ``""`` |
  819. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  820. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_13<class_ProjectSettings_property_layer_names/2d_render/layer_13>` | ``""`` |
  821. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  822. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_14<class_ProjectSettings_property_layer_names/2d_render/layer_14>` | ``""`` |
  823. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  824. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_15<class_ProjectSettings_property_layer_names/2d_render/layer_15>` | ``""`` |
  825. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  826. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_16<class_ProjectSettings_property_layer_names/2d_render/layer_16>` | ``""`` |
  827. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  828. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_17<class_ProjectSettings_property_layer_names/2d_render/layer_17>` | ``""`` |
  829. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  830. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_18<class_ProjectSettings_property_layer_names/2d_render/layer_18>` | ``""`` |
  831. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  832. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_19<class_ProjectSettings_property_layer_names/2d_render/layer_19>` | ``""`` |
  833. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  834. | :ref:`String<class_String>` | :ref:`layer_names/2d_render/layer_20<class_ProjectSettings_property_layer_names/2d_render/layer_20>` | ``""`` |
  835. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  836. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_1<class_ProjectSettings_property_layer_names/3d_navigation/layer_1>` | ``""`` |
  837. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  838. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_2<class_ProjectSettings_property_layer_names/3d_navigation/layer_2>` | ``""`` |
  839. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  840. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_3<class_ProjectSettings_property_layer_names/3d_navigation/layer_3>` | ``""`` |
  841. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  842. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_4<class_ProjectSettings_property_layer_names/3d_navigation/layer_4>` | ``""`` |
  843. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  844. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_5<class_ProjectSettings_property_layer_names/3d_navigation/layer_5>` | ``""`` |
  845. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  846. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_6<class_ProjectSettings_property_layer_names/3d_navigation/layer_6>` | ``""`` |
  847. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  848. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_7<class_ProjectSettings_property_layer_names/3d_navigation/layer_7>` | ``""`` |
  849. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  850. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_8<class_ProjectSettings_property_layer_names/3d_navigation/layer_8>` | ``""`` |
  851. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  852. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_9<class_ProjectSettings_property_layer_names/3d_navigation/layer_9>` | ``""`` |
  853. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  854. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_10<class_ProjectSettings_property_layer_names/3d_navigation/layer_10>` | ``""`` |
  855. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  856. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_11<class_ProjectSettings_property_layer_names/3d_navigation/layer_11>` | ``""`` |
  857. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  858. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_12<class_ProjectSettings_property_layer_names/3d_navigation/layer_12>` | ``""`` |
  859. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  860. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_13<class_ProjectSettings_property_layer_names/3d_navigation/layer_13>` | ``""`` |
  861. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  862. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_14<class_ProjectSettings_property_layer_names/3d_navigation/layer_14>` | ``""`` |
  863. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  864. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_15<class_ProjectSettings_property_layer_names/3d_navigation/layer_15>` | ``""`` |
  865. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  866. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_16<class_ProjectSettings_property_layer_names/3d_navigation/layer_16>` | ``""`` |
  867. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  868. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_17<class_ProjectSettings_property_layer_names/3d_navigation/layer_17>` | ``""`` |
  869. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  870. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_18<class_ProjectSettings_property_layer_names/3d_navigation/layer_18>` | ``""`` |
  871. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  872. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_19<class_ProjectSettings_property_layer_names/3d_navigation/layer_19>` | ``""`` |
  873. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  874. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_20<class_ProjectSettings_property_layer_names/3d_navigation/layer_20>` | ``""`` |
  875. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  876. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_21<class_ProjectSettings_property_layer_names/3d_navigation/layer_21>` | ``""`` |
  877. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  878. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_22<class_ProjectSettings_property_layer_names/3d_navigation/layer_22>` | ``""`` |
  879. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  880. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_23<class_ProjectSettings_property_layer_names/3d_navigation/layer_23>` | ``""`` |
  881. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  882. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_24<class_ProjectSettings_property_layer_names/3d_navigation/layer_24>` | ``""`` |
  883. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  884. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_25<class_ProjectSettings_property_layer_names/3d_navigation/layer_25>` | ``""`` |
  885. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  886. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_26<class_ProjectSettings_property_layer_names/3d_navigation/layer_26>` | ``""`` |
  887. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  888. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_27<class_ProjectSettings_property_layer_names/3d_navigation/layer_27>` | ``""`` |
  889. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  890. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_28<class_ProjectSettings_property_layer_names/3d_navigation/layer_28>` | ``""`` |
  891. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  892. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_29<class_ProjectSettings_property_layer_names/3d_navigation/layer_29>` | ``""`` |
  893. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  894. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_30<class_ProjectSettings_property_layer_names/3d_navigation/layer_30>` | ``""`` |
  895. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  896. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_31<class_ProjectSettings_property_layer_names/3d_navigation/layer_31>` | ``""`` |
  897. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  898. | :ref:`String<class_String>` | :ref:`layer_names/3d_navigation/layer_32<class_ProjectSettings_property_layer_names/3d_navigation/layer_32>` | ``""`` |
  899. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  900. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_1<class_ProjectSettings_property_layer_names/3d_physics/layer_1>` | ``""`` |
  901. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  902. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_2<class_ProjectSettings_property_layer_names/3d_physics/layer_2>` | ``""`` |
  903. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  904. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_3<class_ProjectSettings_property_layer_names/3d_physics/layer_3>` | ``""`` |
  905. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  906. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_4<class_ProjectSettings_property_layer_names/3d_physics/layer_4>` | ``""`` |
  907. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  908. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_5<class_ProjectSettings_property_layer_names/3d_physics/layer_5>` | ``""`` |
  909. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  910. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_6<class_ProjectSettings_property_layer_names/3d_physics/layer_6>` | ``""`` |
  911. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  912. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_7<class_ProjectSettings_property_layer_names/3d_physics/layer_7>` | ``""`` |
  913. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  914. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_8<class_ProjectSettings_property_layer_names/3d_physics/layer_8>` | ``""`` |
  915. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  916. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_9<class_ProjectSettings_property_layer_names/3d_physics/layer_9>` | ``""`` |
  917. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  918. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_10<class_ProjectSettings_property_layer_names/3d_physics/layer_10>` | ``""`` |
  919. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  920. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_11<class_ProjectSettings_property_layer_names/3d_physics/layer_11>` | ``""`` |
  921. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  922. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_12<class_ProjectSettings_property_layer_names/3d_physics/layer_12>` | ``""`` |
  923. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  924. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_13<class_ProjectSettings_property_layer_names/3d_physics/layer_13>` | ``""`` |
  925. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  926. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_14<class_ProjectSettings_property_layer_names/3d_physics/layer_14>` | ``""`` |
  927. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  928. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_15<class_ProjectSettings_property_layer_names/3d_physics/layer_15>` | ``""`` |
  929. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  930. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_16<class_ProjectSettings_property_layer_names/3d_physics/layer_16>` | ``""`` |
  931. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  932. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_17<class_ProjectSettings_property_layer_names/3d_physics/layer_17>` | ``""`` |
  933. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  934. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_18<class_ProjectSettings_property_layer_names/3d_physics/layer_18>` | ``""`` |
  935. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  936. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_19<class_ProjectSettings_property_layer_names/3d_physics/layer_19>` | ``""`` |
  937. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  938. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_20<class_ProjectSettings_property_layer_names/3d_physics/layer_20>` | ``""`` |
  939. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  940. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_21<class_ProjectSettings_property_layer_names/3d_physics/layer_21>` | ``""`` |
  941. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  942. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_22<class_ProjectSettings_property_layer_names/3d_physics/layer_22>` | ``""`` |
  943. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  944. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_23<class_ProjectSettings_property_layer_names/3d_physics/layer_23>` | ``""`` |
  945. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  946. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_24<class_ProjectSettings_property_layer_names/3d_physics/layer_24>` | ``""`` |
  947. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  948. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_25<class_ProjectSettings_property_layer_names/3d_physics/layer_25>` | ``""`` |
  949. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  950. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_26<class_ProjectSettings_property_layer_names/3d_physics/layer_26>` | ``""`` |
  951. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  952. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_27<class_ProjectSettings_property_layer_names/3d_physics/layer_27>` | ``""`` |
  953. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  954. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_28<class_ProjectSettings_property_layer_names/3d_physics/layer_28>` | ``""`` |
  955. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  956. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_29<class_ProjectSettings_property_layer_names/3d_physics/layer_29>` | ``""`` |
  957. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  958. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_30<class_ProjectSettings_property_layer_names/3d_physics/layer_30>` | ``""`` |
  959. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  960. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_31<class_ProjectSettings_property_layer_names/3d_physics/layer_31>` | ``""`` |
  961. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  962. | :ref:`String<class_String>` | :ref:`layer_names/3d_physics/layer_32<class_ProjectSettings_property_layer_names/3d_physics/layer_32>` | ``""`` |
  963. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  964. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_1<class_ProjectSettings_property_layer_names/3d_render/layer_1>` | ``""`` |
  965. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  966. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_2<class_ProjectSettings_property_layer_names/3d_render/layer_2>` | ``""`` |
  967. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  968. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_3<class_ProjectSettings_property_layer_names/3d_render/layer_3>` | ``""`` |
  969. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  970. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_4<class_ProjectSettings_property_layer_names/3d_render/layer_4>` | ``""`` |
  971. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  972. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_5<class_ProjectSettings_property_layer_names/3d_render/layer_5>` | ``""`` |
  973. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  974. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_6<class_ProjectSettings_property_layer_names/3d_render/layer_6>` | ``""`` |
  975. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  976. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_7<class_ProjectSettings_property_layer_names/3d_render/layer_7>` | ``""`` |
  977. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  978. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_8<class_ProjectSettings_property_layer_names/3d_render/layer_8>` | ``""`` |
  979. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  980. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_9<class_ProjectSettings_property_layer_names/3d_render/layer_9>` | ``""`` |
  981. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  982. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_10<class_ProjectSettings_property_layer_names/3d_render/layer_10>` | ``""`` |
  983. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  984. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_11<class_ProjectSettings_property_layer_names/3d_render/layer_11>` | ``""`` |
  985. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  986. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_12<class_ProjectSettings_property_layer_names/3d_render/layer_12>` | ``""`` |
  987. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  988. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_13<class_ProjectSettings_property_layer_names/3d_render/layer_13>` | ``""`` |
  989. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  990. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_14<class_ProjectSettings_property_layer_names/3d_render/layer_14>` | ``""`` |
  991. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  992. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_15<class_ProjectSettings_property_layer_names/3d_render/layer_15>` | ``""`` |
  993. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  994. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_16<class_ProjectSettings_property_layer_names/3d_render/layer_16>` | ``""`` |
  995. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  996. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_17<class_ProjectSettings_property_layer_names/3d_render/layer_17>` | ``""`` |
  997. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  998. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_18<class_ProjectSettings_property_layer_names/3d_render/layer_18>` | ``""`` |
  999. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1000. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_19<class_ProjectSettings_property_layer_names/3d_render/layer_19>` | ``""`` |
  1001. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1002. | :ref:`String<class_String>` | :ref:`layer_names/3d_render/layer_20<class_ProjectSettings_property_layer_names/3d_render/layer_20>` | ``""`` |
  1003. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1004. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_1<class_ProjectSettings_property_layer_names/avoidance/layer_1>` | ``""`` |
  1005. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1006. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_2<class_ProjectSettings_property_layer_names/avoidance/layer_2>` | ``""`` |
  1007. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1008. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_3<class_ProjectSettings_property_layer_names/avoidance/layer_3>` | ``""`` |
  1009. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1010. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_4<class_ProjectSettings_property_layer_names/avoidance/layer_4>` | ``""`` |
  1011. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1012. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_5<class_ProjectSettings_property_layer_names/avoidance/layer_5>` | ``""`` |
  1013. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1014. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_6<class_ProjectSettings_property_layer_names/avoidance/layer_6>` | ``""`` |
  1015. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1016. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_7<class_ProjectSettings_property_layer_names/avoidance/layer_7>` | ``""`` |
  1017. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1018. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_8<class_ProjectSettings_property_layer_names/avoidance/layer_8>` | ``""`` |
  1019. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1020. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_9<class_ProjectSettings_property_layer_names/avoidance/layer_9>` | ``""`` |
  1021. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1022. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_10<class_ProjectSettings_property_layer_names/avoidance/layer_10>` | ``""`` |
  1023. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1024. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_11<class_ProjectSettings_property_layer_names/avoidance/layer_11>` | ``""`` |
  1025. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1026. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_12<class_ProjectSettings_property_layer_names/avoidance/layer_12>` | ``""`` |
  1027. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1028. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_13<class_ProjectSettings_property_layer_names/avoidance/layer_13>` | ``""`` |
  1029. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1030. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_14<class_ProjectSettings_property_layer_names/avoidance/layer_14>` | ``""`` |
  1031. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1032. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_15<class_ProjectSettings_property_layer_names/avoidance/layer_15>` | ``""`` |
  1033. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1034. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_16<class_ProjectSettings_property_layer_names/avoidance/layer_16>` | ``""`` |
  1035. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1036. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_17<class_ProjectSettings_property_layer_names/avoidance/layer_17>` | ``""`` |
  1037. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1038. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_18<class_ProjectSettings_property_layer_names/avoidance/layer_18>` | ``""`` |
  1039. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1040. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_19<class_ProjectSettings_property_layer_names/avoidance/layer_19>` | ``""`` |
  1041. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1042. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_20<class_ProjectSettings_property_layer_names/avoidance/layer_20>` | ``""`` |
  1043. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1044. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_21<class_ProjectSettings_property_layer_names/avoidance/layer_21>` | ``""`` |
  1045. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1046. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_22<class_ProjectSettings_property_layer_names/avoidance/layer_22>` | ``""`` |
  1047. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1048. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_23<class_ProjectSettings_property_layer_names/avoidance/layer_23>` | ``""`` |
  1049. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1050. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_24<class_ProjectSettings_property_layer_names/avoidance/layer_24>` | ``""`` |
  1051. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1052. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_25<class_ProjectSettings_property_layer_names/avoidance/layer_25>` | ``""`` |
  1053. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1054. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_26<class_ProjectSettings_property_layer_names/avoidance/layer_26>` | ``""`` |
  1055. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1056. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_27<class_ProjectSettings_property_layer_names/avoidance/layer_27>` | ``""`` |
  1057. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1058. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_28<class_ProjectSettings_property_layer_names/avoidance/layer_28>` | ``""`` |
  1059. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1060. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_29<class_ProjectSettings_property_layer_names/avoidance/layer_29>` | ``""`` |
  1061. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1062. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_30<class_ProjectSettings_property_layer_names/avoidance/layer_30>` | ``""`` |
  1063. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1064. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_31<class_ProjectSettings_property_layer_names/avoidance/layer_31>` | ``""`` |
  1065. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1066. | :ref:`String<class_String>` | :ref:`layer_names/avoidance/layer_32<class_ProjectSettings_property_layer_names/avoidance/layer_32>` | ``""`` |
  1067. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1068. | :ref:`int<class_int>` | :ref:`memory/limits/message_queue/max_size_mb<class_ProjectSettings_property_memory/limits/message_queue/max_size_mb>` | ``32`` |
  1069. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1070. | :ref:`int<class_int>` | :ref:`memory/limits/multithreaded_server/rid_pool_prealloc<class_ProjectSettings_property_memory/limits/multithreaded_server/rid_pool_prealloc>` | ``60`` |
  1071. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1072. | :ref:`int<class_int>` | :ref:`navigation/2d/default_cell_size<class_ProjectSettings_property_navigation/2d/default_cell_size>` | ``1`` |
  1073. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1074. | :ref:`int<class_int>` | :ref:`navigation/2d/default_edge_connection_margin<class_ProjectSettings_property_navigation/2d/default_edge_connection_margin>` | ``1`` |
  1075. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1076. | :ref:`int<class_int>` | :ref:`navigation/2d/default_link_connection_radius<class_ProjectSettings_property_navigation/2d/default_link_connection_radius>` | ``4`` |
  1077. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1078. | :ref:`bool<class_bool>` | :ref:`navigation/2d/use_edge_connections<class_ProjectSettings_property_navigation/2d/use_edge_connections>` | ``true`` |
  1079. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1080. | :ref:`float<class_float>` | :ref:`navigation/3d/default_cell_height<class_ProjectSettings_property_navigation/3d/default_cell_height>` | ``0.25`` |
  1081. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1082. | :ref:`float<class_float>` | :ref:`navigation/3d/default_cell_size<class_ProjectSettings_property_navigation/3d/default_cell_size>` | ``0.25`` |
  1083. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1084. | :ref:`float<class_float>` | :ref:`navigation/3d/default_edge_connection_margin<class_ProjectSettings_property_navigation/3d/default_edge_connection_margin>` | ``0.25`` |
  1085. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1086. | :ref:`float<class_float>` | :ref:`navigation/3d/default_link_connection_radius<class_ProjectSettings_property_navigation/3d/default_link_connection_radius>` | ``1.0`` |
  1087. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1088. | :ref:`bool<class_bool>` | :ref:`navigation/3d/use_edge_connections<class_ProjectSettings_property_navigation/3d/use_edge_connections>` | ``true`` |
  1089. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1090. | :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`` |
  1091. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1092. | :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`` |
  1093. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1094. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_chars_per_second<class_ProjectSettings_property_network/limits/debugger/max_chars_per_second>` | ``32768`` |
  1095. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1096. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_errors_per_second<class_ProjectSettings_property_network/limits/debugger/max_errors_per_second>` | ``400`` |
  1097. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1098. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_queued_messages<class_ProjectSettings_property_network/limits/debugger/max_queued_messages>` | ``2048`` |
  1099. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1100. | :ref:`int<class_int>` | :ref:`network/limits/debugger/max_warnings_per_second<class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second>` | ``400`` |
  1101. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1102. | :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`` |
  1103. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1104. | :ref:`int<class_int>` | :ref:`network/limits/tcp/connect_timeout_seconds<class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds>` | ``30`` |
  1105. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1106. | :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`` |
  1107. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1108. | :ref:`String<class_String>` | :ref:`network/tls/certificate_bundle_override<class_ProjectSettings_property_network/tls/certificate_bundle_override>` | ``""`` |
  1109. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1110. | :ref:`float<class_float>` | :ref:`physics/2d/default_angular_damp<class_ProjectSettings_property_physics/2d/default_angular_damp>` | ``1.0`` |
  1111. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1112. | :ref:`float<class_float>` | :ref:`physics/2d/default_gravity<class_ProjectSettings_property_physics/2d/default_gravity>` | ``980.0`` |
  1113. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1114. | :ref:`Vector2<class_Vector2>` | :ref:`physics/2d/default_gravity_vector<class_ProjectSettings_property_physics/2d/default_gravity_vector>` | ``Vector2(0, 1)`` |
  1115. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1116. | :ref:`float<class_float>` | :ref:`physics/2d/default_linear_damp<class_ProjectSettings_property_physics/2d/default_linear_damp>` | ``0.1`` |
  1117. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1118. | :ref:`String<class_String>` | :ref:`physics/2d/physics_engine<class_ProjectSettings_property_physics/2d/physics_engine>` | ``"DEFAULT"`` |
  1119. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1120. | :ref:`bool<class_bool>` | :ref:`physics/2d/run_on_separate_thread<class_ProjectSettings_property_physics/2d/run_on_separate_thread>` | ``false`` |
  1121. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1122. | :ref:`float<class_float>` | :ref:`physics/2d/sleep_threshold_angular<class_ProjectSettings_property_physics/2d/sleep_threshold_angular>` | ``0.139626`` |
  1123. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1124. | :ref:`float<class_float>` | :ref:`physics/2d/sleep_threshold_linear<class_ProjectSettings_property_physics/2d/sleep_threshold_linear>` | ``2.0`` |
  1125. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1126. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_max_allowed_penetration<class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration>` | ``0.3`` |
  1127. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1128. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_max_separation<class_ProjectSettings_property_physics/2d/solver/contact_max_separation>` | ``1.5`` |
  1129. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1130. | :ref:`float<class_float>` | :ref:`physics/2d/solver/contact_recycle_radius<class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius>` | ``1.0`` |
  1131. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1132. | :ref:`float<class_float>` | :ref:`physics/2d/solver/default_constraint_bias<class_ProjectSettings_property_physics/2d/solver/default_constraint_bias>` | ``0.2`` |
  1133. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1134. | :ref:`float<class_float>` | :ref:`physics/2d/solver/default_contact_bias<class_ProjectSettings_property_physics/2d/solver/default_contact_bias>` | ``0.8`` |
  1135. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1136. | :ref:`int<class_int>` | :ref:`physics/2d/solver/solver_iterations<class_ProjectSettings_property_physics/2d/solver/solver_iterations>` | ``16`` |
  1137. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1138. | :ref:`float<class_float>` | :ref:`physics/2d/time_before_sleep<class_ProjectSettings_property_physics/2d/time_before_sleep>` | ``0.5`` |
  1139. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1140. | :ref:`float<class_float>` | :ref:`physics/3d/default_angular_damp<class_ProjectSettings_property_physics/3d/default_angular_damp>` | ``0.1`` |
  1141. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1142. | :ref:`float<class_float>` | :ref:`physics/3d/default_gravity<class_ProjectSettings_property_physics/3d/default_gravity>` | ``9.8`` |
  1143. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1144. | :ref:`Vector3<class_Vector3>` | :ref:`physics/3d/default_gravity_vector<class_ProjectSettings_property_physics/3d/default_gravity_vector>` | ``Vector3(0, -1, 0)`` |
  1145. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1146. | :ref:`float<class_float>` | :ref:`physics/3d/default_linear_damp<class_ProjectSettings_property_physics/3d/default_linear_damp>` | ``0.1`` |
  1147. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1148. | :ref:`String<class_String>` | :ref:`physics/3d/physics_engine<class_ProjectSettings_property_physics/3d/physics_engine>` | ``"DEFAULT"`` |
  1149. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1150. | :ref:`bool<class_bool>` | :ref:`physics/3d/run_on_separate_thread<class_ProjectSettings_property_physics/3d/run_on_separate_thread>` | ``false`` |
  1151. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1152. | :ref:`float<class_float>` | :ref:`physics/3d/sleep_threshold_angular<class_ProjectSettings_property_physics/3d/sleep_threshold_angular>` | ``0.139626`` |
  1153. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1154. | :ref:`float<class_float>` | :ref:`physics/3d/sleep_threshold_linear<class_ProjectSettings_property_physics/3d/sleep_threshold_linear>` | ``0.1`` |
  1155. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1156. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_max_allowed_penetration<class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration>` | ``0.01`` |
  1157. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1158. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_max_separation<class_ProjectSettings_property_physics/3d/solver/contact_max_separation>` | ``0.05`` |
  1159. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1160. | :ref:`float<class_float>` | :ref:`physics/3d/solver/contact_recycle_radius<class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius>` | ``0.01`` |
  1161. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1162. | :ref:`float<class_float>` | :ref:`physics/3d/solver/default_contact_bias<class_ProjectSettings_property_physics/3d/solver/default_contact_bias>` | ``0.8`` |
  1163. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1164. | :ref:`int<class_int>` | :ref:`physics/3d/solver/solver_iterations<class_ProjectSettings_property_physics/3d/solver/solver_iterations>` | ``16`` |
  1165. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1166. | :ref:`float<class_float>` | :ref:`physics/3d/time_before_sleep<class_ProjectSettings_property_physics/3d/time_before_sleep>` | ``0.5`` |
  1167. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1168. | :ref:`bool<class_bool>` | :ref:`physics/common/enable_object_picking<class_ProjectSettings_property_physics/common/enable_object_picking>` | ``true`` |
  1169. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1170. | :ref:`int<class_int>` | :ref:`physics/common/max_physics_steps_per_frame<class_ProjectSettings_property_physics/common/max_physics_steps_per_frame>` | ``8`` |
  1171. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1172. | :ref:`float<class_float>` | :ref:`physics/common/physics_jitter_fix<class_ProjectSettings_property_physics/common/physics_jitter_fix>` | ``0.5`` |
  1173. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1174. | :ref:`int<class_int>` | :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` | ``60`` |
  1175. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1176. | :ref:`int<class_int>` | :ref:`rendering/2d/sdf/oversize<class_ProjectSettings_property_rendering/2d/sdf/oversize>` | ``1`` |
  1177. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1178. | :ref:`int<class_int>` | :ref:`rendering/2d/sdf/scale<class_ProjectSettings_property_rendering/2d/sdf/scale>` | ``1`` |
  1179. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1180. | :ref:`int<class_int>` | :ref:`rendering/2d/shadow_atlas/size<class_ProjectSettings_property_rendering/2d/shadow_atlas/size>` | ``2048`` |
  1181. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1182. | :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`` |
  1183. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1184. | :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`` |
  1185. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1186. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/msaa_2d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d>` | ``0`` |
  1187. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1188. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/msaa_3d<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d>` | ``0`` |
  1189. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1190. | :ref:`int<class_int>` | :ref:`rendering/anti_aliasing/quality/screen_space_aa<class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa>` | ``0`` |
  1191. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1192. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/quality/use_debanding<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding>` | ``false`` |
  1193. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1194. | :ref:`bool<class_bool>` | :ref:`rendering/anti_aliasing/quality/use_taa<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>` | ``false`` |
  1195. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1196. | :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`` |
  1197. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1198. | :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`` |
  1199. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1200. | :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`` |
  1201. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1202. | :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`` |
  1203. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1204. | :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`` |
  1205. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1206. | :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`` |
  1207. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1208. | :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"`` |
  1209. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1210. | :ref:`bool<class_bool>` | :ref:`rendering/driver/depth_prepass/enable<class_ProjectSettings_property_rendering/driver/depth_prepass/enable>` | ``true`` |
  1211. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1212. | :ref:`int<class_int>` | :ref:`rendering/driver/threads/thread_model<class_ProjectSettings_property_rendering/driver/threads/thread_model>` | ``1`` |
  1213. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1214. | :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)`` |
  1215. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1216. | :ref:`String<class_String>` | :ref:`rendering/environment/defaults/default_environment<class_ProjectSettings_property_rendering/environment/defaults/default_environment>` | ``""`` |
  1217. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1218. | :ref:`int<class_int>` | :ref:`rendering/environment/glow/upscale_mode<class_ProjectSettings_property_rendering/environment/glow/upscale_mode>` | ``1`` |
  1219. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1220. | :ref:`int<class_int>` | :ref:`rendering/environment/glow/upscale_mode.mobile<class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile>` | ``0`` |
  1221. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1222. | :ref:`int<class_int>` | :ref:`rendering/environment/screen_space_reflection/roughness_quality<class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality>` | ``1`` |
  1223. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1224. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/adaptive_target<class_ProjectSettings_property_rendering/environment/ssao/adaptive_target>` | ``0.5`` |
  1225. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1226. | :ref:`int<class_int>` | :ref:`rendering/environment/ssao/blur_passes<class_ProjectSettings_property_rendering/environment/ssao/blur_passes>` | ``2`` |
  1227. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1228. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/fadeout_from<class_ProjectSettings_property_rendering/environment/ssao/fadeout_from>` | ``50.0`` |
  1229. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1230. | :ref:`float<class_float>` | :ref:`rendering/environment/ssao/fadeout_to<class_ProjectSettings_property_rendering/environment/ssao/fadeout_to>` | ``300.0`` |
  1231. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1232. | :ref:`bool<class_bool>` | :ref:`rendering/environment/ssao/half_size<class_ProjectSettings_property_rendering/environment/ssao/half_size>` | ``true`` |
  1233. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1234. | :ref:`int<class_int>` | :ref:`rendering/environment/ssao/quality<class_ProjectSettings_property_rendering/environment/ssao/quality>` | ``2`` |
  1235. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1236. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/adaptive_target<class_ProjectSettings_property_rendering/environment/ssil/adaptive_target>` | ``0.5`` |
  1237. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1238. | :ref:`int<class_int>` | :ref:`rendering/environment/ssil/blur_passes<class_ProjectSettings_property_rendering/environment/ssil/blur_passes>` | ``4`` |
  1239. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1240. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/fadeout_from<class_ProjectSettings_property_rendering/environment/ssil/fadeout_from>` | ``50.0`` |
  1241. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1242. | :ref:`float<class_float>` | :ref:`rendering/environment/ssil/fadeout_to<class_ProjectSettings_property_rendering/environment/ssil/fadeout_to>` | ``300.0`` |
  1243. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1244. | :ref:`bool<class_bool>` | :ref:`rendering/environment/ssil/half_size<class_ProjectSettings_property_rendering/environment/ssil/half_size>` | ``true`` |
  1245. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1246. | :ref:`int<class_int>` | :ref:`rendering/environment/ssil/quality<class_ProjectSettings_property_rendering/environment/ssil/quality>` | ``2`` |
  1247. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1248. | :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`` |
  1249. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1250. | :ref:`int<class_int>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_quality<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality>` | ``1`` |
  1251. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1252. | :ref:`float<class_float>` | :ref:`rendering/environment/subsurface_scattering/subsurface_scattering_scale<class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale>` | ``0.05`` |
  1253. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1254. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/use_filter<class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter>` | ``1`` |
  1255. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1256. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/volume_depth<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth>` | ``64`` |
  1257. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1258. | :ref:`int<class_int>` | :ref:`rendering/environment/volumetric_fog/volume_size<class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size>` | ``64`` |
  1259. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1260. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>` | ``"opengl3"`` |
  1261. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1262. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.android<class_ProjectSettings_property_rendering/gl_compatibility/driver.android>` | ``"opengl3"`` |
  1263. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1264. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.ios<class_ProjectSettings_property_rendering/gl_compatibility/driver.ios>` | ``"opengl3"`` |
  1265. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1266. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.linuxbsd<class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd>` | ``"opengl3"`` |
  1267. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1268. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.macos<class_ProjectSettings_property_rendering/gl_compatibility/driver.macos>` | ``"opengl3"`` |
  1269. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1270. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.web<class_ProjectSettings_property_rendering/gl_compatibility/driver.web>` | ``"opengl3"`` |
  1271. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1272. | :ref:`String<class_String>` | :ref:`rendering/gl_compatibility/driver.windows<class_ProjectSettings_property_rendering/gl_compatibility/driver.windows>` | ``"opengl3"`` |
  1273. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1274. | :ref:`int<class_int>` | :ref:`rendering/gl_compatibility/item_buffer_size<class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size>` | ``16384`` |
  1275. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1276. | :ref:`bool<class_bool>` | :ref:`rendering/gl_compatibility/nvidia_disable_threaded_optimization<class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization>` | ``true`` |
  1277. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1278. | :ref:`bool<class_bool>` | :ref:`rendering/global_illumination/gi/use_half_resolution<class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution>` | ``false`` |
  1279. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1280. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/frames_to_converge<class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge>` | ``5`` |
  1281. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1282. | :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`` |
  1283. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1284. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/sdfgi/probe_ray_count<class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count>` | ``1`` |
  1285. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1286. | :ref:`int<class_int>` | :ref:`rendering/global_illumination/voxel_gi/quality<class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality>` | ``0`` |
  1287. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1288. | :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`` |
  1289. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1290. | :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`` |
  1291. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1292. | :ref:`int<class_int>` | :ref:`rendering/lightmapping/bake_performance/region_size<class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size>` | ``512`` |
  1293. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1294. | :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`` |
  1295. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1296. | :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`` |
  1297. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1298. | :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`` |
  1299. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1300. | :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`` |
  1301. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1302. | :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`` |
  1303. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1304. | :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`` |
  1305. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1306. | :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`` |
  1307. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1308. | :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`` |
  1309. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1310. | :ref:`float<class_float>` | :ref:`rendering/lightmapping/primitive_meshes/texel_size<class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size>` | ``0.2`` |
  1311. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1312. | :ref:`float<class_float>` | :ref:`rendering/lightmapping/probe_capture/update_speed<class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed>` | ``15`` |
  1313. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1314. | :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`` |
  1315. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1316. | :ref:`int<class_int>` | :ref:`rendering/lights_and_shadows/directional_shadow/size<class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size>` | ``4096`` |
  1317. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1318. | :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`` |
  1319. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1320. | :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`` |
  1321. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1322. | :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`` |
  1323. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1324. | :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`` |
  1325. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1326. | :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`` |
  1327. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1328. | :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`` |
  1329. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1330. | :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`` |
  1331. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1332. | :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`` |
  1333. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1334. | :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`` |
  1335. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1336. | :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`` |
  1337. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1338. | :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`` |
  1339. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1340. | :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`` |
  1341. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1342. | :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`` |
  1343. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1344. | :ref:`float<class_float>` | :ref:`rendering/limits/cluster_builder/max_clustered_elements<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>` | ``512`` |
  1345. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1346. | :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`` |
  1347. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1348. | :ref:`int<class_int>` | :ref:`rendering/limits/global_shader_variables/buffer_size<class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size>` | ``65536`` |
  1349. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1350. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_lights_per_object<class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object>` | ``8`` |
  1351. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1352. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_renderable_elements<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements>` | ``65536`` |
  1353. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1354. | :ref:`int<class_int>` | :ref:`rendering/limits/opengl/max_renderable_lights<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights>` | ``32`` |
  1355. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1356. | :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`` |
  1357. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1358. | :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`` |
  1359. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1360. | :ref:`float<class_float>` | :ref:`rendering/limits/time/time_rollover_secs<class_ProjectSettings_property_rendering/limits/time/time_rollover_secs>` | ``3600`` |
  1361. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1362. | :ref:`float<class_float>` | :ref:`rendering/mesh_lod/lod_change/threshold_pixels<class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels>` | ``1.0`` |
  1363. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1364. | :ref:`int<class_int>` | :ref:`rendering/occlusion_culling/bvh_build_quality<class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality>` | ``2`` |
  1365. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1366. | :ref:`int<class_int>` | :ref:`rendering/occlusion_culling/occlusion_rays_per_thread<class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread>` | ``512`` |
  1367. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1368. | :ref:`bool<class_bool>` | :ref:`rendering/occlusion_culling/use_occlusion_culling<class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling>` | ``false`` |
  1369. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1370. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_count<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count>` | ``64`` |
  1371. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1372. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_size<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size>` | ``256`` |
  1373. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1374. | :ref:`int<class_int>` | :ref:`rendering/reflections/reflection_atlas/reflection_size.mobile<class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile>` | ``128`` |
  1375. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1376. | :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`` |
  1377. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1378. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/ggx_samples<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples>` | ``32`` |
  1379. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1380. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/ggx_samples.mobile<class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile>` | ``16`` |
  1381. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1382. | :ref:`int<class_int>` | :ref:`rendering/reflections/sky_reflections/roughness_layers<class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers>` | ``8`` |
  1383. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1384. | :ref:`bool<class_bool>` | :ref:`rendering/reflections/sky_reflections/texture_array_reflections<class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections>` | ``true`` |
  1385. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1386. | :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`` |
  1387. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1388. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` | ``"forward_plus"`` |
  1389. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1390. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method.mobile<class_ProjectSettings_property_rendering/renderer/rendering_method.mobile>` | ``"mobile"`` |
  1391. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1392. | :ref:`String<class_String>` | :ref:`rendering/renderer/rendering_method.web<class_ProjectSettings_property_rendering/renderer/rendering_method.web>` | ``"gl_compatibility"`` |
  1393. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1394. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>` | ``"vulkan"`` |
  1395. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1396. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.android<class_ProjectSettings_property_rendering/rendering_device/driver.android>` | ``"vulkan"`` |
  1397. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1398. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.ios<class_ProjectSettings_property_rendering/rendering_device/driver.ios>` | ``"vulkan"`` |
  1399. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1400. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.linuxbsd<class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd>` | ``"vulkan"`` |
  1401. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1402. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.macos<class_ProjectSettings_property_rendering/rendering_device/driver.macos>` | ``"vulkan"`` |
  1403. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1404. | :ref:`String<class_String>` | :ref:`rendering/rendering_device/driver.windows<class_ProjectSettings_property_rendering/rendering_device/driver.windows>` | ``"vulkan"`` |
  1405. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1406. | :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`` |
  1407. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1408. | :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`` |
  1409. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1410. | :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`` |
  1411. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1412. | :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`` |
  1413. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1414. | :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`` |
  1415. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1416. | :ref:`float<class_float>` | :ref:`rendering/scaling_3d/fsr_sharpness<class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness>` | ``0.2`` |
  1417. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1418. | :ref:`int<class_int>` | :ref:`rendering/scaling_3d/mode<class_ProjectSettings_property_rendering/scaling_3d/mode>` | ``0`` |
  1419. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1420. | :ref:`float<class_float>` | :ref:`rendering/scaling_3d/scale<class_ProjectSettings_property_rendering/scaling_3d/scale>` | ``1.0`` |
  1421. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1422. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/compress<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress>` | ``true`` |
  1423. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1424. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/enabled<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled>` | ``true`` |
  1425. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1426. | :ref:`bool<class_bool>` | :ref:`rendering/shader_compiler/shader_cache/strip_debug<class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug>` | ``false`` |
  1427. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1428. | :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`` |
  1429. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1430. | :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`` |
  1431. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1432. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_lambert_over_burley<class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley>` | ``false`` |
  1433. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1434. | :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`` |
  1435. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1436. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_vertex_shading<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading>` | ``false`` |
  1437. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1438. | :ref:`bool<class_bool>` | :ref:`rendering/shading/overrides/force_vertex_shading.mobile<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile>` | ``true`` |
  1439. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1440. | :ref:`int<class_int>` | :ref:`rendering/textures/canvas_textures/default_texture_filter<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter>` | ``1`` |
  1441. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1442. | :ref:`int<class_int>` | :ref:`rendering/textures/canvas_textures/default_texture_repeat<class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat>` | ``0`` |
  1443. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1444. | :ref:`int<class_int>` | :ref:`rendering/textures/decals/filter<class_ProjectSettings_property_rendering/textures/decals/filter>` | ``3`` |
  1445. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1446. | :ref:`int<class_int>` | :ref:`rendering/textures/default_filters/anisotropic_filtering_level<class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level>` | ``2`` |
  1447. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1448. | :ref:`float<class_float>` | :ref:`rendering/textures/default_filters/texture_mipmap_bias<class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias>` | ``0.0`` |
  1449. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1450. | :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`` |
  1451. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1452. | :ref:`int<class_int>` | :ref:`rendering/textures/light_projectors/filter<class_ProjectSettings_property_rendering/textures/light_projectors/filter>` | ``3`` |
  1453. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1454. | :ref:`bool<class_bool>` | :ref:`rendering/textures/lossless_compression/force_png<class_ProjectSettings_property_rendering/textures/lossless_compression/force_png>` | ``false`` |
  1455. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1456. | :ref:`bool<class_bool>` | :ref:`rendering/textures/vram_compression/import_etc2_astc<class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc>` | ``false`` |
  1457. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1458. | :ref:`bool<class_bool>` | :ref:`rendering/textures/vram_compression/import_s3tc_bptc<class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc>` | ``false`` |
  1459. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1460. | :ref:`int<class_int>` | :ref:`rendering/textures/webp_compression/compression_method<class_ProjectSettings_property_rendering/textures/webp_compression/compression_method>` | ``2`` |
  1461. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1462. | :ref:`float<class_float>` | :ref:`rendering/textures/webp_compression/lossless_compression_factor<class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor>` | ``25`` |
  1463. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1464. | :ref:`bool<class_bool>` | :ref:`rendering/viewport/transparent_background<class_ProjectSettings_property_rendering/viewport/transparent_background>` | ``false`` |
  1465. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1466. | :ref:`int<class_int>` | :ref:`rendering/vrs/mode<class_ProjectSettings_property_rendering/vrs/mode>` | ``0`` |
  1467. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1468. | :ref:`String<class_String>` | :ref:`rendering/vrs/texture<class_ProjectSettings_property_rendering/vrs/texture>` | ``""`` |
  1469. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1470. | :ref:`float<class_float>` | :ref:`threading/worker_pool/low_priority_thread_ratio<class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio>` | ``0.3`` |
  1471. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1472. | :ref:`int<class_int>` | :ref:`threading/worker_pool/max_threads<class_ProjectSettings_property_threading/worker_pool/max_threads>` | ``-1`` |
  1473. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1474. | :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`` |
  1475. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1476. | :ref:`String<class_String>` | :ref:`xr/openxr/default_action_map<class_ProjectSettings_property_xr/openxr/default_action_map>` | ``"res://openxr_action_map.tres"`` |
  1477. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1478. | :ref:`bool<class_bool>` | :ref:`xr/openxr/enabled<class_ProjectSettings_property_xr/openxr/enabled>` | ``false`` |
  1479. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1480. | :ref:`int<class_int>` | :ref:`xr/openxr/form_factor<class_ProjectSettings_property_xr/openxr/form_factor>` | ``"0"`` |
  1481. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1482. | :ref:`int<class_int>` | :ref:`xr/openxr/reference_space<class_ProjectSettings_property_xr/openxr/reference_space>` | ``"1"`` |
  1483. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1484. | :ref:`bool<class_bool>` | :ref:`xr/openxr/startup_alert<class_ProjectSettings_property_xr/openxr/startup_alert>` | ``true`` |
  1485. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1486. | :ref:`bool<class_bool>` | :ref:`xr/openxr/submit_depth_buffer<class_ProjectSettings_property_xr/openxr/submit_depth_buffer>` | ``false`` |
  1487. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1488. | :ref:`int<class_int>` | :ref:`xr/openxr/view_configuration<class_ProjectSettings_property_xr/openxr/view_configuration>` | ``"1"`` |
  1489. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1490. | :ref:`bool<class_bool>` | :ref:`xr/shaders/enabled<class_ProjectSettings_property_xr/shaders/enabled>` | ``false`` |
  1491. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------+
  1492. .. rst-class:: classref-reftable-group
  1493. Methods
  1494. -------
  1495. .. table::
  1496. :widths: auto
  1497. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1498. | void | :ref:`add_property_info<class_ProjectSettings_method_add_property_info>` **(** :ref:`Dictionary<class_Dictionary>` hint **)** |
  1499. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1500. | void | :ref:`clear<class_ProjectSettings_method_clear>` **(** :ref:`String<class_String>` name **)** |
  1501. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1502. | :ref:`Dictionary[]<class_Dictionary>` | :ref:`get_global_class_list<class_ProjectSettings_method_get_global_class_list>` **(** **)** |
  1503. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1504. | :ref:`int<class_int>` | :ref:`get_order<class_ProjectSettings_method_get_order>` **(** :ref:`String<class_String>` name **)** |const| |
  1505. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1506. | :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| |
  1507. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1508. | :ref:`Variant<class_Variant>` | :ref:`get_setting_with_override<class_ProjectSettings_method_get_setting_with_override>` **(** :ref:`StringName<class_StringName>` name **)** |const| |
  1509. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1510. | :ref:`String<class_String>` | :ref:`globalize_path<class_ProjectSettings_method_globalize_path>` **(** :ref:`String<class_String>` path **)** |const| |
  1511. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1512. | :ref:`bool<class_bool>` | :ref:`has_setting<class_ProjectSettings_method_has_setting>` **(** :ref:`String<class_String>` name **)** |const| |
  1513. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1514. | :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 **)** |
  1515. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1516. | :ref:`String<class_String>` | :ref:`localize_path<class_ProjectSettings_method_localize_path>` **(** :ref:`String<class_String>` path **)** |const| |
  1517. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1518. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save<class_ProjectSettings_method_save>` **(** **)** |
  1519. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1520. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save_custom<class_ProjectSettings_method_save_custom>` **(** :ref:`String<class_String>` file **)** |
  1521. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1522. | void | :ref:`set_as_basic<class_ProjectSettings_method_set_as_basic>` **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` basic **)** |
  1523. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1524. | void | :ref:`set_as_internal<class_ProjectSettings_method_set_as_internal>` **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` internal **)** |
  1525. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1526. | void | :ref:`set_initial_value<class_ProjectSettings_method_set_initial_value>` **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)** |
  1527. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1528. | void | :ref:`set_order<class_ProjectSettings_method_set_order>` **(** :ref:`String<class_String>` name, :ref:`int<class_int>` position **)** |
  1529. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1530. | void | :ref:`set_restart_if_changed<class_ProjectSettings_method_set_restart_if_changed>` **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` restart **)** |
  1531. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1532. | void | :ref:`set_setting<class_ProjectSettings_method_set_setting>` **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)** |
  1533. +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  1534. .. rst-class:: classref-section-separator
  1535. ----
  1536. .. rst-class:: classref-descriptions-group
  1537. Property Descriptions
  1538. ---------------------
  1539. .. _class_ProjectSettings_property_application/boot_splash/bg_color:
  1540. .. rst-class:: classref-property
  1541. :ref:`Color<class_Color>` **application/boot_splash/bg_color** = ``Color(0.14, 0.14, 0.14, 1)``
  1542. Background color for the boot splash.
  1543. .. rst-class:: classref-item-separator
  1544. ----
  1545. .. _class_ProjectSettings_property_application/boot_splash/fullsize:
  1546. .. rst-class:: classref-property
  1547. :ref:`bool<class_bool>` **application/boot_splash/fullsize** = ``true``
  1548. 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.
  1549. .. rst-class:: classref-item-separator
  1550. ----
  1551. .. _class_ProjectSettings_property_application/boot_splash/image:
  1552. .. rst-class:: classref-property
  1553. :ref:`String<class_String>` **application/boot_splash/image** = ``""``
  1554. Path to an image used as the boot splash. If left empty, the default Godot Engine splash will be displayed instead.
  1555. \ **Note:** Only effective if :ref:`application/boot_splash/show_image<class_ProjectSettings_property_application/boot_splash/show_image>` is ``true``.
  1556. .. rst-class:: classref-item-separator
  1557. ----
  1558. .. _class_ProjectSettings_property_application/boot_splash/minimum_display_time:
  1559. .. rst-class:: classref-property
  1560. :ref:`int<class_int>` **application/boot_splash/minimum_display_time** = ``0``
  1561. Minimum boot splash display time (in milliseconds). It is not recommended to set too high values for this setting.
  1562. .. rst-class:: classref-item-separator
  1563. ----
  1564. .. _class_ProjectSettings_property_application/boot_splash/show_image:
  1565. .. rst-class:: classref-property
  1566. :ref:`bool<class_bool>` **application/boot_splash/show_image** = ``true``
  1567. 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>`.
  1568. .. rst-class:: classref-item-separator
  1569. ----
  1570. .. _class_ProjectSettings_property_application/boot_splash/use_filter:
  1571. .. rst-class:: classref-property
  1572. :ref:`bool<class_bool>` **application/boot_splash/use_filter** = ``true``
  1573. If ``true``, applies linear filtering when scaling the image (recommended for high-resolution artwork). If ``false``, uses nearest-neighbor interpolation (recommended for pixel art).
  1574. .. rst-class:: classref-item-separator
  1575. ----
  1576. .. _class_ProjectSettings_property_application/config/auto_accept_quit:
  1577. .. rst-class:: classref-property
  1578. :ref:`bool<class_bool>` **application/config/auto_accept_quit** = ``true``
  1579. If ``true``, the application automatically accepts quitting requests.
  1580. .. rst-class:: classref-item-separator
  1581. ----
  1582. .. _class_ProjectSettings_property_application/config/custom_user_dir_name:
  1583. .. rst-class:: classref-property
  1584. :ref:`String<class_String>` **application/config/custom_user_dir_name** = ``""``
  1585. 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>`).
  1586. 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.
  1587. .. rst-class:: classref-item-separator
  1588. ----
  1589. .. _class_ProjectSettings_property_application/config/description:
  1590. .. rst-class:: classref-property
  1591. :ref:`String<class_String>` **application/config/description** = ``""``
  1592. The project's description, displayed as a tooltip in the Project Manager when hovering the project.
  1593. .. rst-class:: classref-item-separator
  1594. ----
  1595. .. _class_ProjectSettings_property_application/config/icon:
  1596. .. rst-class:: classref-property
  1597. :ref:`String<class_String>` **application/config/icon** = ``""``
  1598. Icon used for the project, set when project loads. Exporters will also use this icon as a fallback if necessary.
  1599. .. rst-class:: classref-item-separator
  1600. ----
  1601. .. _class_ProjectSettings_property_application/config/macos_native_icon:
  1602. .. rst-class:: classref-property
  1603. :ref:`String<class_String>` **application/config/macos_native_icon** = ``""``
  1604. 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>`.
  1605. .. rst-class:: classref-item-separator
  1606. ----
  1607. .. _class_ProjectSettings_property_application/config/name:
  1608. .. rst-class:: classref-property
  1609. :ref:`String<class_String>` **application/config/name** = ``""``
  1610. 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.
  1611. \ **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.
  1612. .. rst-class:: classref-item-separator
  1613. ----
  1614. .. _class_ProjectSettings_property_application/config/name_localized:
  1615. .. rst-class:: classref-property
  1616. :ref:`Dictionary<class_Dictionary>` **application/config/name_localized** = ``{}``
  1617. Translations of the project's name. This setting is used by OS tools to translate application name on Android, iOS and macOS.
  1618. .. rst-class:: classref-item-separator
  1619. ----
  1620. .. _class_ProjectSettings_property_application/config/project_settings_override:
  1621. .. rst-class:: classref-property
  1622. :ref:`String<class_String>` **application/config/project_settings_override** = ``""``
  1623. 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.
  1624. \ **Note:** Regardless of this setting's value, ``res://override.cfg`` will still be read to override the project settings.
  1625. .. rst-class:: classref-item-separator
  1626. ----
  1627. .. _class_ProjectSettings_property_application/config/quit_on_go_back:
  1628. .. rst-class:: classref-property
  1629. :ref:`bool<class_bool>` **application/config/quit_on_go_back** = ``true``
  1630. If ``true``, the application quits automatically when navigating back (e.g. using the system "Back" button on Android).
  1631. .. rst-class:: classref-item-separator
  1632. ----
  1633. .. _class_ProjectSettings_property_application/config/use_custom_user_dir:
  1634. .. rst-class:: classref-property
  1635. :ref:`bool<class_bool>` **application/config/use_custom_user_dir** = ``false``
  1636. 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>``.
  1637. 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.
  1638. .. rst-class:: classref-item-separator
  1639. ----
  1640. .. _class_ProjectSettings_property_application/config/use_hidden_project_data_directory:
  1641. .. rst-class:: classref-property
  1642. :ref:`bool<class_bool>` **application/config/use_hidden_project_data_directory** = ``true``
  1643. If ``true``, the project will use a hidden directory (``.godot``) for storing project-specific data (metadata, shader cache, etc.).
  1644. If ``false``, a non-hidden directory (``godot``) will be used instead.
  1645. \ **Note:** Restart the application after changing this setting.
  1646. \ **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.
  1647. .. rst-class:: classref-item-separator
  1648. ----
  1649. .. _class_ProjectSettings_property_application/config/windows_native_icon:
  1650. .. rst-class:: classref-property
  1651. :ref:`String<class_String>` **application/config/windows_native_icon** = ``""``
  1652. 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>`.
  1653. .. rst-class:: classref-item-separator
  1654. ----
  1655. .. _class_ProjectSettings_property_application/run/delta_smoothing:
  1656. .. rst-class:: classref-property
  1657. :ref:`bool<class_bool>` **application/run/delta_smoothing** = ``true``
  1658. 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.
  1659. \ **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.
  1660. 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.
  1661. .. rst-class:: classref-item-separator
  1662. ----
  1663. .. _class_ProjectSettings_property_application/run/disable_stderr:
  1664. .. rst-class:: classref-property
  1665. :ref:`bool<class_bool>` **application/run/disable_stderr** = ``false``
  1666. 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>`.
  1667. Changes to this setting will only be applied upon restarting the application.
  1668. .. rst-class:: classref-item-separator
  1669. ----
  1670. .. _class_ProjectSettings_property_application/run/disable_stdout:
  1671. .. rst-class:: classref-property
  1672. :ref:`bool<class_bool>` **application/run/disable_stdout** = ``false``
  1673. 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>`.
  1674. Changes to this setting will only be applied upon restarting the application.
  1675. .. rst-class:: classref-item-separator
  1676. ----
  1677. .. _class_ProjectSettings_property_application/run/flush_stdout_on_print:
  1678. .. rst-class:: classref-property
  1679. :ref:`bool<class_bool>` **application/run/flush_stdout_on_print** = ``false``
  1680. If ``true``, flushes the standard output stream every time a line is printed. This affects both terminal logging and file logging.
  1681. 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").
  1682. \ **Note:** Regardless of this setting, the standard error stream (``stderr``) is always flushed when a line is printed to it.
  1683. Changes to this setting will only be applied upon restarting the application.
  1684. .. rst-class:: classref-item-separator
  1685. ----
  1686. .. _class_ProjectSettings_property_application/run/flush_stdout_on_print.debug:
  1687. .. rst-class:: classref-property
  1688. :ref:`bool<class_bool>` **application/run/flush_stdout_on_print.debug** = ``true``
  1689. 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.
  1690. Changes to this setting will only be applied upon restarting the application.
  1691. .. rst-class:: classref-item-separator
  1692. ----
  1693. .. _class_ProjectSettings_property_application/run/frame_delay_msec:
  1694. .. rst-class:: classref-property
  1695. :ref:`int<class_int>` **application/run/frame_delay_msec** = ``0``
  1696. Forces a *constant* delay between frames in the main loop (in milliseconds). In most situations, :ref:`application/run/max_fps<class_ProjectSettings_property_application/run/max_fps>` should be preferred as an FPS limiter as it's more precise.
  1697. This setting can be overridden using the ``--frame-delay <ms;>`` command line argument.
  1698. .. rst-class:: classref-item-separator
  1699. ----
  1700. .. _class_ProjectSettings_property_application/run/low_processor_mode:
  1701. .. rst-class:: classref-property
  1702. :ref:`bool<class_bool>` **application/run/low_processor_mode** = ``false``
  1703. 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.
  1704. .. rst-class:: classref-item-separator
  1705. ----
  1706. .. _class_ProjectSettings_property_application/run/low_processor_mode_sleep_usec:
  1707. .. rst-class:: classref-property
  1708. :ref:`int<class_int>` **application/run/low_processor_mode_sleep_usec** = ``6900``
  1709. Amount of sleeping between frames when the low-processor usage mode is enabled (in microseconds). Higher values will result in lower CPU usage.
  1710. .. rst-class:: classref-item-separator
  1711. ----
  1712. .. _class_ProjectSettings_property_application/run/main_loop_type:
  1713. .. rst-class:: classref-property
  1714. :ref:`String<class_String>` **application/run/main_loop_type** = ``"SceneTree"``
  1715. The name of the type implementing the engine's main loop.
  1716. .. rst-class:: classref-item-separator
  1717. ----
  1718. .. _class_ProjectSettings_property_application/run/main_scene:
  1719. .. rst-class:: classref-property
  1720. :ref:`String<class_String>` **application/run/main_scene** = ``""``
  1721. Path to the main scene file that will be loaded when the project runs.
  1722. .. rst-class:: classref-item-separator
  1723. ----
  1724. .. _class_ProjectSettings_property_application/run/max_fps:
  1725. .. rst-class:: classref-property
  1726. :ref:`int<class_int>` **application/run/max_fps** = ``0``
  1727. 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.
  1728. Limiting the FPS can be useful to reduce system power consumption, which reduces heat and noise emissions (and improves battery life on mobile devices).
  1729. 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.
  1730. 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/>`__.
  1731. 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.
  1732. See also :ref:`physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>`.
  1733. \ **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.
  1734. .. rst-class:: classref-item-separator
  1735. ----
  1736. .. _class_ProjectSettings_property_audio/buses/channel_disable_threshold_db:
  1737. .. rst-class:: classref-property
  1738. :ref:`float<class_float>` **audio/buses/channel_disable_threshold_db** = ``-60.0``
  1739. 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.
  1740. .. rst-class:: classref-item-separator
  1741. ----
  1742. .. _class_ProjectSettings_property_audio/buses/channel_disable_time:
  1743. .. rst-class:: classref-property
  1744. :ref:`float<class_float>` **audio/buses/channel_disable_time** = ``2.0``
  1745. 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.
  1746. .. rst-class:: classref-item-separator
  1747. ----
  1748. .. _class_ProjectSettings_property_audio/buses/default_bus_layout:
  1749. .. rst-class:: classref-property
  1750. :ref:`String<class_String>` **audio/buses/default_bus_layout** = ``"res://default_bus_layout.tres"``
  1751. Default :ref:`AudioBusLayout<class_AudioBusLayout>` resource file to use in the project, unless overridden by the scene.
  1752. .. rst-class:: classref-item-separator
  1753. ----
  1754. .. _class_ProjectSettings_property_audio/driver/driver:
  1755. .. rst-class:: classref-property
  1756. :ref:`String<class_String>` **audio/driver/driver**
  1757. 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.
  1758. 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.
  1759. \ **Note:** The driver in use can be overridden at runtime via the ``--audio-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  1760. .. rst-class:: classref-item-separator
  1761. ----
  1762. .. _class_ProjectSettings_property_audio/driver/enable_input:
  1763. .. rst-class:: classref-property
  1764. :ref:`bool<class_bool>` **audio/driver/enable_input** = ``false``
  1765. If ``true``, microphone input will be allowed. This requires appropriate permissions to be set when exporting to Android or iOS.
  1766. \ **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.
  1767. .. rst-class:: classref-item-separator
  1768. ----
  1769. .. _class_ProjectSettings_property_audio/driver/mix_rate:
  1770. .. rst-class:: classref-property
  1771. :ref:`int<class_int>` **audio/driver/mix_rate** = ``44100``
  1772. 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.
  1773. .. rst-class:: classref-item-separator
  1774. ----
  1775. .. _class_ProjectSettings_property_audio/driver/mix_rate.web:
  1776. .. rst-class:: classref-property
  1777. :ref:`int<class_int>` **audio/driver/mix_rate.web** = ``0``
  1778. 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).
  1779. .. rst-class:: classref-item-separator
  1780. ----
  1781. .. _class_ProjectSettings_property_audio/driver/output_latency:
  1782. .. rst-class:: classref-property
  1783. :ref:`int<class_int>` **audio/driver/output_latency** = ``15``
  1784. 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.
  1785. 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.
  1786. \ **Note:** This setting is ignored on all versions of Windows prior to Windows 10.
  1787. .. rst-class:: classref-item-separator
  1788. ----
  1789. .. _class_ProjectSettings_property_audio/driver/output_latency.web:
  1790. .. rst-class:: classref-property
  1791. :ref:`int<class_int>` **audio/driver/output_latency.web** = ``50``
  1792. 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.
  1793. .. rst-class:: classref-item-separator
  1794. ----
  1795. .. _class_ProjectSettings_property_audio/general/2d_panning_strength:
  1796. .. rst-class:: classref-property
  1797. :ref:`float<class_float>` **audio/general/2d_panning_strength** = ``0.5``
  1798. 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.
  1799. 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.
  1800. .. rst-class:: classref-item-separator
  1801. ----
  1802. .. _class_ProjectSettings_property_audio/general/3d_panning_strength:
  1803. .. rst-class:: classref-property
  1804. :ref:`float<class_float>` **audio/general/3d_panning_strength** = ``0.5``
  1805. 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.
  1806. 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.
  1807. .. rst-class:: classref-item-separator
  1808. ----
  1809. .. _class_ProjectSettings_property_audio/general/text_to_speech:
  1810. .. rst-class:: classref-property
  1811. :ref:`bool<class_bool>` **audio/general/text_to_speech** = ``false``
  1812. 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>`.
  1813. \ **Note:** Enabling TTS can cause addition idle CPU usage and interfere with the sleep mode, so consider disabling it if TTS is not used.
  1814. .. rst-class:: classref-item-separator
  1815. ----
  1816. .. _class_ProjectSettings_property_audio/video/video_delay_compensation_ms:
  1817. .. rst-class:: classref-property
  1818. :ref:`int<class_int>` **audio/video/video_delay_compensation_ms** = ``0``
  1819. Setting to hardcode audio delay when playing video. Best to leave this untouched unless you know what you are doing.
  1820. .. rst-class:: classref-item-separator
  1821. ----
  1822. .. _class_ProjectSettings_property_compression/formats/gzip/compression_level:
  1823. .. rst-class:: classref-property
  1824. :ref:`int<class_int>` **compression/formats/gzip/compression_level** = ``-1``
  1825. 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.
  1826. .. rst-class:: classref-item-separator
  1827. ----
  1828. .. _class_ProjectSettings_property_compression/formats/zlib/compression_level:
  1829. .. rst-class:: classref-property
  1830. :ref:`int<class_int>` **compression/formats/zlib/compression_level** = ``-1``
  1831. 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.
  1832. .. rst-class:: classref-item-separator
  1833. ----
  1834. .. _class_ProjectSettings_property_compression/formats/zstd/compression_level:
  1835. .. rst-class:: classref-property
  1836. :ref:`int<class_int>` **compression/formats/zstd/compression_level** = ``3``
  1837. 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.
  1838. .. rst-class:: classref-item-separator
  1839. ----
  1840. .. _class_ProjectSettings_property_compression/formats/zstd/long_distance_matching:
  1841. .. rst-class:: classref-property
  1842. :ref:`bool<class_bool>` **compression/formats/zstd/long_distance_matching** = ``false``
  1843. Enables `long-distance matching <https://github.com/facebook/zstd/releases/tag/v1.3.2>`__ in Zstandard.
  1844. .. rst-class:: classref-item-separator
  1845. ----
  1846. .. _class_ProjectSettings_property_compression/formats/zstd/window_log_size:
  1847. .. rst-class:: classref-property
  1848. :ref:`int<class_int>` **compression/formats/zstd/window_log_size** = ``27``
  1849. 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.
  1850. .. rst-class:: classref-item-separator
  1851. ----
  1852. .. _class_ProjectSettings_property_debug/file_logging/enable_file_logging:
  1853. .. rst-class:: classref-property
  1854. :ref:`bool<class_bool>` **debug/file_logging/enable_file_logging** = ``false``
  1855. If ``true``, logs all output to files.
  1856. .. rst-class:: classref-item-separator
  1857. ----
  1858. .. _class_ProjectSettings_property_debug/file_logging/enable_file_logging.pc:
  1859. .. rst-class:: classref-property
  1860. :ref:`bool<class_bool>` **debug/file_logging/enable_file_logging.pc** = ``true``
  1861. 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.
  1862. .. rst-class:: classref-item-separator
  1863. ----
  1864. .. _class_ProjectSettings_property_debug/file_logging/log_path:
  1865. .. rst-class:: classref-property
  1866. :ref:`String<class_String>` **debug/file_logging/log_path** = ``"user://logs/godot.log"``
  1867. Path at which to store log files for the project. Using a path under ``user://`` is recommended.
  1868. .. rst-class:: classref-item-separator
  1869. ----
  1870. .. _class_ProjectSettings_property_debug/file_logging/max_log_files:
  1871. .. rst-class:: classref-property
  1872. :ref:`int<class_int>` **debug/file_logging/max_log_files** = ``5``
  1873. Specifies the maximum number of log files allowed (used for rotation).
  1874. .. rst-class:: classref-item-separator
  1875. ----
  1876. .. _class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false:
  1877. .. rst-class:: classref-property
  1878. :ref:`int<class_int>` **debug/gdscript/warnings/assert_always_false** = ``1``
  1879. When set to ``warn`` or ``error``, produces a warning or an error respectively when an ``assert`` call always evaluates to false.
  1880. .. rst-class:: classref-item-separator
  1881. ----
  1882. .. _class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true:
  1883. .. rst-class:: classref-property
  1884. :ref:`int<class_int>` **debug/gdscript/warnings/assert_always_true** = ``1``
  1885. When set to ``warn`` or ``error``, produces a warning or an error respectively when an ``assert`` call always evaluates to true.
  1886. .. rst-class:: classref-item-separator
  1887. ----
  1888. .. _class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier:
  1889. .. rst-class:: classref-property
  1890. :ref:`int<class_int>` **debug/gdscript/warnings/confusable_identifier** = ``1``
  1891. 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.
  1892. .. rst-class:: classref-item-separator
  1893. ----
  1894. .. _class_ProjectSettings_property_debug/gdscript/warnings/constant_used_as_function:
  1895. .. rst-class:: classref-property
  1896. :ref:`int<class_int>` **debug/gdscript/warnings/constant_used_as_function** = ``1``
  1897. When set to ``warn`` or ``error``, produces a warning or an error respectively when a constant is used as a function.
  1898. .. rst-class:: classref-item-separator
  1899. ----
  1900. .. _class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword:
  1901. .. rst-class:: classref-property
  1902. :ref:`int<class_int>` **debug/gdscript/warnings/deprecated_keyword** = ``1``
  1903. When set to ``warn`` or ``error``, produces a warning or an error respectively when deprecated keywords are used.
  1904. .. rst-class:: classref-item-separator
  1905. ----
  1906. .. _class_ProjectSettings_property_debug/gdscript/warnings/empty_file:
  1907. .. rst-class:: classref-property
  1908. :ref:`int<class_int>` **debug/gdscript/warnings/empty_file** = ``1``
  1909. When set to ``warn`` or ``error``, produces a warning or an error respectively when an empty file is parsed.
  1910. .. rst-class:: classref-item-separator
  1911. ----
  1912. .. _class_ProjectSettings_property_debug/gdscript/warnings/enable:
  1913. .. rst-class:: classref-property
  1914. :ref:`bool<class_bool>` **debug/gdscript/warnings/enable** = ``true``
  1915. If ``true``, enables specific GDScript warnings (see ``debug/gdscript/warnings/*`` settings). If ``false``, disables all GDScript warnings.
  1916. .. rst-class:: classref-item-separator
  1917. ----
  1918. .. _class_ProjectSettings_property_debug/gdscript/warnings/exclude_addons:
  1919. .. rst-class:: classref-property
  1920. :ref:`bool<class_bool>` **debug/gdscript/warnings/exclude_addons** = ``true``
  1921. If ``true``, scripts in the ``res://addons`` folder will not generate warnings.
  1922. .. rst-class:: classref-item-separator
  1923. ----
  1924. .. _class_ProjectSettings_property_debug/gdscript/warnings/function_used_as_property:
  1925. .. rst-class:: classref-property
  1926. :ref:`int<class_int>` **debug/gdscript/warnings/function_used_as_property** = ``1``
  1927. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a function as if it is a property.
  1928. .. rst-class:: classref-item-separator
  1929. ----
  1930. .. _class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready:
  1931. .. rst-class:: classref-property
  1932. :ref:`int<class_int>` **debug/gdscript/warnings/get_node_default_without_onready** = ``2``
  1933. 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.
  1934. .. rst-class:: classref-item-separator
  1935. ----
  1936. .. _class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary:
  1937. .. rst-class:: classref-property
  1938. :ref:`int<class_int>` **debug/gdscript/warnings/incompatible_ternary** = ``1``
  1939. When set to ``warn`` or ``error``, produces a warning or an error respectively when a ternary operator may emit values with incompatible types.
  1940. .. rst-class:: classref-item-separator
  1941. ----
  1942. .. _class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant:
  1943. .. rst-class:: classref-property
  1944. :ref:`int<class_int>` **debug/gdscript/warnings/inference_on_variant** = ``2``
  1945. 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.
  1946. .. rst-class:: classref-item-separator
  1947. ----
  1948. .. _class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast:
  1949. .. rst-class:: classref-property
  1950. :ref:`int<class_int>` **debug/gdscript/warnings/int_as_enum_without_cast** = ``1``
  1951. 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.
  1952. .. rst-class:: classref-item-separator
  1953. ----
  1954. .. _class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match:
  1955. .. rst-class:: classref-property
  1956. :ref:`int<class_int>` **debug/gdscript/warnings/int_as_enum_without_match** = ``1``
  1957. 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.
  1958. .. rst-class:: classref-item-separator
  1959. ----
  1960. .. _class_ProjectSettings_property_debug/gdscript/warnings/integer_division:
  1961. .. rst-class:: classref-property
  1962. :ref:`int<class_int>` **debug/gdscript/warnings/integer_division** = ``1``
  1963. 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).
  1964. .. rst-class:: classref-item-separator
  1965. ----
  1966. .. _class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion:
  1967. .. rst-class:: classref-property
  1968. :ref:`int<class_int>` **debug/gdscript/warnings/narrowing_conversion** = ``1``
  1969. 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).
  1970. .. rst-class:: classref-item-separator
  1971. ----
  1972. .. _class_ProjectSettings_property_debug/gdscript/warnings/native_method_override:
  1973. .. rst-class:: classref-property
  1974. :ref:`int<class_int>` **debug/gdscript/warnings/native_method_override** = ``2``
  1975. 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.
  1976. .. rst-class:: classref-item-separator
  1977. ----
  1978. .. _class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export:
  1979. .. rst-class:: classref-property
  1980. :ref:`int<class_int>` **debug/gdscript/warnings/onready_with_export** = ``2``
  1981. 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.
  1982. .. rst-class:: classref-item-separator
  1983. ----
  1984. .. _class_ProjectSettings_property_debug/gdscript/warnings/property_used_as_function:
  1985. .. rst-class:: classref-property
  1986. :ref:`int<class_int>` **debug/gdscript/warnings/property_used_as_function** = ``1``
  1987. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a property as if it is a function.
  1988. .. rst-class:: classref-item-separator
  1989. ----
  1990. .. _class_ProjectSettings_property_debug/gdscript/warnings/redundant_await:
  1991. .. rst-class:: classref-property
  1992. :ref:`int<class_int>` **debug/gdscript/warnings/redundant_await** = ``1``
  1993. 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.
  1994. .. rst-class:: classref-item-separator
  1995. ----
  1996. .. _class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload:
  1997. .. rst-class:: classref-property
  1998. :ref:`int<class_int>` **debug/gdscript/warnings/redundant_static_unload** = ``1``
  1999. 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.
  2000. .. rst-class:: classref-item-separator
  2001. ----
  2002. .. _class_ProjectSettings_property_debug/gdscript/warnings/renamed_in_godot_4_hint:
  2003. .. rst-class:: classref-property
  2004. :ref:`bool<class_bool>` **debug/gdscript/warnings/renamed_in_godot_4_hint** = ``1``
  2005. When enabled, using a property, enum, or function that was renamed since Godot 3 will produce a hint if an error occurs.
  2006. .. rst-class:: classref-item-separator
  2007. ----
  2008. .. _class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded:
  2009. .. rst-class:: classref-property
  2010. :ref:`int<class_int>` **debug/gdscript/warnings/return_value_discarded** = ``0``
  2011. 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.
  2012. .. rst-class:: classref-item-separator
  2013. ----
  2014. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier:
  2015. .. rst-class:: classref-property
  2016. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_global_identifier** = ``1``
  2017. 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.
  2018. .. rst-class:: classref-item-separator
  2019. ----
  2020. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable:
  2021. .. rst-class:: classref-property
  2022. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_variable** = ``1``
  2023. 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.
  2024. .. rst-class:: classref-item-separator
  2025. ----
  2026. .. _class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class:
  2027. .. rst-class:: classref-property
  2028. :ref:`int<class_int>` **debug/gdscript/warnings/shadowed_variable_base_class** = ``1``
  2029. 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.
  2030. .. rst-class:: classref-item-separator
  2031. ----
  2032. .. _class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression:
  2033. .. rst-class:: classref-property
  2034. :ref:`int<class_int>` **debug/gdscript/warnings/standalone_expression** = ``1``
  2035. 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.
  2036. .. rst-class:: classref-item-separator
  2037. ----
  2038. .. _class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary:
  2039. .. rst-class:: classref-property
  2040. :ref:`int<class_int>` **debug/gdscript/warnings/standalone_ternary** = ``1``
  2041. 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.
  2042. .. rst-class:: classref-item-separator
  2043. ----
  2044. .. _class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance:
  2045. .. rst-class:: classref-property
  2046. :ref:`int<class_int>` **debug/gdscript/warnings/static_called_on_instance** = ``1``
  2047. 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.
  2048. .. rst-class:: classref-item-separator
  2049. ----
  2050. .. _class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable:
  2051. .. rst-class:: classref-property
  2052. :ref:`int<class_int>` **debug/gdscript/warnings/unassigned_variable** = ``1``
  2053. When set to ``warn`` or ``error``, produces a warning or an error respectively when using a variable that wasn't previously assigned.
  2054. .. rst-class:: classref-item-separator
  2055. ----
  2056. .. _class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign:
  2057. .. rst-class:: classref-property
  2058. :ref:`int<class_int>` **debug/gdscript/warnings/unassigned_variable_op_assign** = ``1``
  2059. 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.
  2060. .. rst-class:: classref-item-separator
  2061. ----
  2062. .. _class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code:
  2063. .. rst-class:: classref-property
  2064. :ref:`int<class_int>` **debug/gdscript/warnings/unreachable_code** = ``1``
  2065. 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).
  2066. .. rst-class:: classref-item-separator
  2067. ----
  2068. .. _class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern:
  2069. .. rst-class:: classref-property
  2070. :ref:`int<class_int>` **debug/gdscript/warnings/unreachable_pattern** = ``1``
  2071. When set to ``warn`` or ``error``, produces a warning or an error respectively when an unreachable ``match`` pattern is detected.
  2072. .. rst-class:: classref-item-separator
  2073. ----
  2074. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument:
  2075. .. rst-class:: classref-property
  2076. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_call_argument** = ``0``
  2077. 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.
  2078. .. rst-class:: classref-item-separator
  2079. ----
  2080. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_cast:
  2081. .. rst-class:: classref-property
  2082. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_cast** = ``0``
  2083. When set to ``warn`` or ``error``, produces a warning or an error respectively when performing an unsafe cast.
  2084. .. rst-class:: classref-item-separator
  2085. ----
  2086. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_method_access:
  2087. .. rst-class:: classref-property
  2088. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_method_access** = ``0``
  2089. 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.
  2090. .. rst-class:: classref-item-separator
  2091. ----
  2092. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_property_access:
  2093. .. rst-class:: classref-property
  2094. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_property_access** = ``0``
  2095. 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.
  2096. .. rst-class:: classref-item-separator
  2097. ----
  2098. .. _class_ProjectSettings_property_debug/gdscript/warnings/unsafe_void_return:
  2099. .. rst-class:: classref-property
  2100. :ref:`int<class_int>` **debug/gdscript/warnings/unsafe_void_return** = ``1``
  2101. 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``.
  2102. .. rst-class:: classref-item-separator
  2103. ----
  2104. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_local_constant:
  2105. .. rst-class:: classref-property
  2106. :ref:`int<class_int>` **debug/gdscript/warnings/unused_local_constant** = ``1``
  2107. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local constant is never used.
  2108. .. rst-class:: classref-item-separator
  2109. ----
  2110. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_parameter:
  2111. .. rst-class:: classref-property
  2112. :ref:`int<class_int>` **debug/gdscript/warnings/unused_parameter** = ``1``
  2113. When set to ``warn`` or ``error``, produces a warning or an error respectively when a function parameter is never used.
  2114. .. rst-class:: classref-item-separator
  2115. ----
  2116. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_private_class_variable:
  2117. .. rst-class:: classref-property
  2118. :ref:`int<class_int>` **debug/gdscript/warnings/unused_private_class_variable** = ``1``
  2119. When set to ``warn`` or ``error``, produces a warning or an error respectively when a private member variable is never used.
  2120. .. rst-class:: classref-item-separator
  2121. ----
  2122. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_signal:
  2123. .. rst-class:: classref-property
  2124. :ref:`int<class_int>` **debug/gdscript/warnings/unused_signal** = ``1``
  2125. When set to ``warn`` or ``error``, produces a warning or an error respectively when a signal is declared but never emitted.
  2126. .. rst-class:: classref-item-separator
  2127. ----
  2128. .. _class_ProjectSettings_property_debug/gdscript/warnings/unused_variable:
  2129. .. rst-class:: classref-property
  2130. :ref:`int<class_int>` **debug/gdscript/warnings/unused_variable** = ``1``
  2131. When set to ``warn`` or ``error``, produces a warning or an error respectively when a local variable is unused.
  2132. .. rst-class:: classref-item-separator
  2133. ----
  2134. .. _class_ProjectSettings_property_debug/settings/crash_handler/message:
  2135. .. rst-class:: classref-property
  2136. :ref:`String<class_String>` **debug/settings/crash_handler/message** = ``"Please include this when reporting the bug to the project developer."``
  2137. 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.
  2138. .. rst-class:: classref-item-separator
  2139. ----
  2140. .. _class_ProjectSettings_property_debug/settings/crash_handler/message.editor:
  2141. .. rst-class:: classref-property
  2142. :ref:`String<class_String>` **debug/settings/crash_handler/message.editor** = ``"Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"``
  2143. 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.
  2144. .. rst-class:: classref-item-separator
  2145. ----
  2146. .. _class_ProjectSettings_property_debug/settings/gdscript/max_call_stack:
  2147. .. rst-class:: classref-property
  2148. :ref:`int<class_int>` **debug/settings/gdscript/max_call_stack** = ``1024``
  2149. Maximum call stack allowed for debugging GDScript.
  2150. .. rst-class:: classref-item-separator
  2151. ----
  2152. .. _class_ProjectSettings_property_debug/settings/profiler/max_functions:
  2153. .. rst-class:: classref-property
  2154. :ref:`int<class_int>` **debug/settings/profiler/max_functions** = ``16384``
  2155. Maximum number of functions per frame allowed when profiling.
  2156. .. rst-class:: classref-item-separator
  2157. ----
  2158. .. _class_ProjectSettings_property_debug/settings/stdout/print_fps:
  2159. .. rst-class:: classref-property
  2160. :ref:`bool<class_bool>` **debug/settings/stdout/print_fps** = ``false``
  2161. Print frames per second to standard output every second.
  2162. .. rst-class:: classref-item-separator
  2163. ----
  2164. .. _class_ProjectSettings_property_debug/settings/stdout/print_gpu_profile:
  2165. .. rst-class:: classref-property
  2166. :ref:`bool<class_bool>` **debug/settings/stdout/print_gpu_profile** = ``false``
  2167. 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.
  2168. .. rst-class:: classref-item-separator
  2169. ----
  2170. .. _class_ProjectSettings_property_debug/settings/stdout/verbose_stdout:
  2171. .. rst-class:: classref-property
  2172. :ref:`bool<class_bool>` **debug/settings/stdout/verbose_stdout** = ``false``
  2173. 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>`.
  2174. .. rst-class:: classref-item-separator
  2175. ----
  2176. .. _class_ProjectSettings_property_debug/shader_language/warnings/device_limit_exceeded:
  2177. .. rst-class:: classref-property
  2178. :ref:`bool<class_bool>` **debug/shader_language/warnings/device_limit_exceeded** = ``true``
  2179. 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.
  2180. .. rst-class:: classref-item-separator
  2181. ----
  2182. .. _class_ProjectSettings_property_debug/shader_language/warnings/enable:
  2183. .. rst-class:: classref-property
  2184. :ref:`bool<class_bool>` **debug/shader_language/warnings/enable** = ``true``
  2185. If ``true``, enables specific shader warnings (see ``debug/shader_language/warnings/*`` settings). If ``false``, disables all shader warnings.
  2186. .. rst-class:: classref-item-separator
  2187. ----
  2188. .. _class_ProjectSettings_property_debug/shader_language/warnings/float_comparison:
  2189. .. rst-class:: classref-property
  2190. :ref:`bool<class_bool>` **debug/shader_language/warnings/float_comparison** = ``true``
  2191. When set to ``true``, produces a warning when two floating point numbers are compared directly with the ``==`` operator or the ``!=`` operator.
  2192. .. rst-class:: classref-item-separator
  2193. ----
  2194. .. _class_ProjectSettings_property_debug/shader_language/warnings/formatting_error:
  2195. .. rst-class:: classref-property
  2196. :ref:`bool<class_bool>` **debug/shader_language/warnings/formatting_error** = ``true``
  2197. 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.
  2198. .. rst-class:: classref-item-separator
  2199. ----
  2200. .. _class_ProjectSettings_property_debug/shader_language/warnings/treat_warnings_as_errors:
  2201. .. rst-class:: classref-property
  2202. :ref:`bool<class_bool>` **debug/shader_language/warnings/treat_warnings_as_errors** = ``false``
  2203. When set to ``true``, warnings are treated as errors.
  2204. .. rst-class:: classref-item-separator
  2205. ----
  2206. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_constant:
  2207. .. rst-class:: classref-property
  2208. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_constant** = ``true``
  2209. When set to ``true``, produces a warning when a constant is never used.
  2210. .. rst-class:: classref-item-separator
  2211. ----
  2212. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_function:
  2213. .. rst-class:: classref-property
  2214. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_function** = ``true``
  2215. When set to ``true``, produces a warning when a function is never used.
  2216. .. rst-class:: classref-item-separator
  2217. ----
  2218. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_local_variable:
  2219. .. rst-class:: classref-property
  2220. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_local_variable** = ``true``
  2221. When set to ``true``, produces a warning when a local variable is never used.
  2222. .. rst-class:: classref-item-separator
  2223. ----
  2224. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_struct:
  2225. .. rst-class:: classref-property
  2226. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_struct** = ``true``
  2227. When set to ``true``, produces a warning when a struct is never used.
  2228. .. rst-class:: classref-item-separator
  2229. ----
  2230. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_uniform:
  2231. .. rst-class:: classref-property
  2232. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_uniform** = ``true``
  2233. When set to ``true``, produces a warning when a uniform is never used.
  2234. .. rst-class:: classref-item-separator
  2235. ----
  2236. .. _class_ProjectSettings_property_debug/shader_language/warnings/unused_varying:
  2237. .. rst-class:: classref-property
  2238. :ref:`bool<class_bool>` **debug/shader_language/warnings/unused_varying** = ``true``
  2239. When set to ``true``, produces a warning when a varying is never used.
  2240. .. rst-class:: classref-item-separator
  2241. ----
  2242. .. _class_ProjectSettings_property_debug/shapes/avoidance/agents_radius_color:
  2243. .. rst-class:: classref-property
  2244. :ref:`Color<class_Color>` **debug/shapes/avoidance/agents_radius_color** = ``Color(1, 1, 0, 0.25)``
  2245. Color of the avoidance agents radius, visible when "Visible Avoidance" is enabled in the Debug menu.
  2246. .. rst-class:: classref-item-separator
  2247. ----
  2248. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_agents_radius:
  2249. .. rst-class:: classref-property
  2250. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_agents_radius** = ``true``
  2251. If enabled, displays avoidance agents radius when "Visible Avoidance" is enabled in the Debug menu.
  2252. .. rst-class:: classref-item-separator
  2253. ----
  2254. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_radius:
  2255. .. rst-class:: classref-property
  2256. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_obstacles_radius** = ``true``
  2257. If enabled, displays avoidance obstacles radius when "Visible Avoidance" is enabled in the Debug menu.
  2258. .. rst-class:: classref-item-separator
  2259. ----
  2260. .. _class_ProjectSettings_property_debug/shapes/avoidance/enable_obstacles_static:
  2261. .. rst-class:: classref-property
  2262. :ref:`bool<class_bool>` **debug/shapes/avoidance/enable_obstacles_static** = ``true``
  2263. If enabled, displays static avoidance obstacles when "Visible Avoidance" is enabled in the Debug menu.
  2264. .. rst-class:: classref-item-separator
  2265. ----
  2266. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_radius_color:
  2267. .. rst-class:: classref-property
  2268. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_radius_color** = ``Color(1, 0.5, 0, 0.25)``
  2269. Color of the avoidance obstacles radius, visible when "Visible Avoidance" is enabled in the Debug menu.
  2270. .. rst-class:: classref-item-separator
  2271. ----
  2272. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushin_color:
  2273. .. rst-class:: classref-property
  2274. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_edge_pushin_color** = ``Color(1, 0, 0, 1)``
  2275. 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.
  2276. .. rst-class:: classref-item-separator
  2277. ----
  2278. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_edge_pushout_color:
  2279. .. rst-class:: classref-property
  2280. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_edge_pushout_color** = ``Color(1, 1, 0, 1)``
  2281. 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.
  2282. .. rst-class:: classref-item-separator
  2283. ----
  2284. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushin_color:
  2285. .. rst-class:: classref-property
  2286. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_face_pushin_color** = ``Color(1, 0, 0, 0)``
  2287. 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.
  2288. .. rst-class:: classref-item-separator
  2289. ----
  2290. .. _class_ProjectSettings_property_debug/shapes/avoidance/obstacles_static_face_pushout_color:
  2291. .. rst-class:: classref-property
  2292. :ref:`Color<class_Color>` **debug/shapes/avoidance/obstacles_static_face_pushout_color** = ``Color(1, 1, 0, 0.5)``
  2293. 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.
  2294. .. rst-class:: classref-item-separator
  2295. ----
  2296. .. _class_ProjectSettings_property_debug/shapes/collision/contact_color:
  2297. .. rst-class:: classref-property
  2298. :ref:`Color<class_Color>` **debug/shapes/collision/contact_color** = ``Color(1, 0.2, 0.1, 0.8)``
  2299. Color of the contact points between collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu.
  2300. .. rst-class:: classref-item-separator
  2301. ----
  2302. .. _class_ProjectSettings_property_debug/shapes/collision/draw_2d_outlines:
  2303. .. rst-class:: classref-property
  2304. :ref:`bool<class_bool>` **debug/shapes/collision/draw_2d_outlines** = ``true``
  2305. Sets whether 2D physics will display collision outlines in game when "Visible Collision Shapes" is enabled in the Debug menu.
  2306. .. rst-class:: classref-item-separator
  2307. ----
  2308. .. _class_ProjectSettings_property_debug/shapes/collision/max_contacts_displayed:
  2309. .. rst-class:: classref-property
  2310. :ref:`int<class_int>` **debug/shapes/collision/max_contacts_displayed** = ``10000``
  2311. Maximum number of contact points between collision shapes to display when "Visible Collision Shapes" is enabled in the Debug menu.
  2312. .. rst-class:: classref-item-separator
  2313. ----
  2314. .. _class_ProjectSettings_property_debug/shapes/collision/shape_color:
  2315. .. rst-class:: classref-property
  2316. :ref:`Color<class_Color>` **debug/shapes/collision/shape_color** = ``Color(0, 0.6, 0.7, 0.42)``
  2317. Color of the collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu.
  2318. .. rst-class:: classref-item-separator
  2319. ----
  2320. .. _class_ProjectSettings_property_debug/shapes/navigation/agent_path_color:
  2321. .. rst-class:: classref-property
  2322. :ref:`Color<class_Color>` **debug/shapes/navigation/agent_path_color** = ``Color(1, 0, 0, 1)``
  2323. Color to display enabled navigation agent paths when an agent has debug enabled.
  2324. .. rst-class:: classref-item-separator
  2325. ----
  2326. .. _class_ProjectSettings_property_debug/shapes/navigation/agent_path_point_size:
  2327. .. rst-class:: classref-property
  2328. :ref:`float<class_float>` **debug/shapes/navigation/agent_path_point_size** = ``4.0``
  2329. Rasterized size (pixel) used to render navigation agent path points when an agent has debug enabled.
  2330. .. rst-class:: classref-item-separator
  2331. ----
  2332. .. _class_ProjectSettings_property_debug/shapes/navigation/edge_connection_color:
  2333. .. rst-class:: classref-property
  2334. :ref:`Color<class_Color>` **debug/shapes/navigation/edge_connection_color** = ``Color(1, 0, 1, 1)``
  2335. Color to display edge connections between navigation regions, visible when "Visible Navigation" is enabled in the Debug menu.
  2336. .. rst-class:: classref-item-separator
  2337. ----
  2338. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths:
  2339. .. rst-class:: classref-property
  2340. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_agent_paths** = ``true``
  2341. If enabled, displays navigation agent paths when an agent has debug enabled.
  2342. .. rst-class:: classref-item-separator
  2343. ----
  2344. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_agent_paths_xray:
  2345. .. rst-class:: classref-property
  2346. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_agent_paths_xray** = ``true``
  2347. If enabled, displays navigation agent paths through geometry when an agent has debug enabled.
  2348. .. rst-class:: classref-item-separator
  2349. ----
  2350. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections:
  2351. .. rst-class:: classref-property
  2352. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_connections** = ``true``
  2353. If enabled, displays edge connections between navigation regions when "Visible Navigation" is enabled in the Debug menu.
  2354. .. rst-class:: classref-item-separator
  2355. ----
  2356. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_connections_xray:
  2357. .. rst-class:: classref-property
  2358. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_connections_xray** = ``true``
  2359. If enabled, displays edge connections between navigation regions through geometry when "Visible Navigation" is enabled in the Debug menu.
  2360. .. rst-class:: classref-item-separator
  2361. ----
  2362. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines:
  2363. .. rst-class:: classref-property
  2364. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_lines** = ``true``
  2365. If enabled, displays navigation mesh polygon edges when "Visible Navigation" is enabled in the Debug menu.
  2366. .. rst-class:: classref-item-separator
  2367. ----
  2368. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_edge_lines_xray:
  2369. .. rst-class:: classref-property
  2370. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_edge_lines_xray** = ``true``
  2371. If enabled, displays navigation mesh polygon edges through geometry when "Visible Navigation" is enabled in the Debug menu.
  2372. .. rst-class:: classref-item-separator
  2373. ----
  2374. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_geometry_face_random_color:
  2375. .. rst-class:: classref-property
  2376. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_geometry_face_random_color** = ``true``
  2377. If enabled, colorizes each navigation mesh polygon face with a random color when "Visible Navigation" is enabled in the Debug menu.
  2378. .. rst-class:: classref-item-separator
  2379. ----
  2380. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections:
  2381. .. rst-class:: classref-property
  2382. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_link_connections** = ``true``
  2383. If enabled, displays navigation link connections when "Visible Navigation" is enabled in the Debug menu.
  2384. .. rst-class:: classref-item-separator
  2385. ----
  2386. .. _class_ProjectSettings_property_debug/shapes/navigation/enable_link_connections_xray:
  2387. .. rst-class:: classref-property
  2388. :ref:`bool<class_bool>` **debug/shapes/navigation/enable_link_connections_xray** = ``true``
  2389. If enabled, displays navigation link connections through geometry when "Visible Navigation" is enabled in the Debug menu.
  2390. .. rst-class:: classref-item-separator
  2391. ----
  2392. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_color:
  2393. .. rst-class:: classref-property
  2394. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_edge_color** = ``Color(0.5, 1, 1, 1)``
  2395. Color to display enabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu.
  2396. .. rst-class:: classref-item-separator
  2397. ----
  2398. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_edge_disabled_color:
  2399. .. rst-class:: classref-property
  2400. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_edge_disabled_color** = ``Color(0.5, 0.5, 0.5, 1)``
  2401. Color to display disabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu.
  2402. .. rst-class:: classref-item-separator
  2403. ----
  2404. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_face_color:
  2405. .. rst-class:: classref-property
  2406. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_face_color** = ``Color(0.5, 1, 1, 0.4)``
  2407. Color to display enabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu.
  2408. .. rst-class:: classref-item-separator
  2409. ----
  2410. .. _class_ProjectSettings_property_debug/shapes/navigation/geometry_face_disabled_color:
  2411. .. rst-class:: classref-property
  2412. :ref:`Color<class_Color>` **debug/shapes/navigation/geometry_face_disabled_color** = ``Color(0.5, 0.5, 0.5, 0.4)``
  2413. Color to display disabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu.
  2414. .. rst-class:: classref-item-separator
  2415. ----
  2416. .. _class_ProjectSettings_property_debug/shapes/navigation/link_connection_color:
  2417. .. rst-class:: classref-property
  2418. :ref:`Color<class_Color>` **debug/shapes/navigation/link_connection_color** = ``Color(1, 0.5, 1, 1)``
  2419. Color to use to display navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu.
  2420. .. rst-class:: classref-item-separator
  2421. ----
  2422. .. _class_ProjectSettings_property_debug/shapes/navigation/link_connection_disabled_color:
  2423. .. rst-class:: classref-property
  2424. :ref:`Color<class_Color>` **debug/shapes/navigation/link_connection_disabled_color** = ``Color(0.5, 0.5, 0.5, 1)``
  2425. Color to use to display disabled navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu.
  2426. .. rst-class:: classref-item-separator
  2427. ----
  2428. .. _class_ProjectSettings_property_debug/shapes/paths/geometry_color:
  2429. .. rst-class:: classref-property
  2430. :ref:`Color<class_Color>` **debug/shapes/paths/geometry_color** = ``Color(0.1, 1, 0.7, 0.4)``
  2431. Color of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu.
  2432. .. rst-class:: classref-item-separator
  2433. ----
  2434. .. _class_ProjectSettings_property_debug/shapes/paths/geometry_width:
  2435. .. rst-class:: classref-property
  2436. :ref:`float<class_float>` **debug/shapes/paths/geometry_width** = ``2.0``
  2437. Line width of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu.
  2438. .. rst-class:: classref-item-separator
  2439. ----
  2440. .. _class_ProjectSettings_property_display/mouse_cursor/custom_image:
  2441. .. rst-class:: classref-property
  2442. :ref:`String<class_String>` **display/mouse_cursor/custom_image** = ``""``
  2443. Custom image for the mouse cursor (limited to 256×256).
  2444. .. rst-class:: classref-item-separator
  2445. ----
  2446. .. _class_ProjectSettings_property_display/mouse_cursor/custom_image_hotspot:
  2447. .. rst-class:: classref-property
  2448. :ref:`Vector2<class_Vector2>` **display/mouse_cursor/custom_image_hotspot** = ``Vector2(0, 0)``
  2449. Hotspot for the custom mouse cursor image.
  2450. .. rst-class:: classref-item-separator
  2451. ----
  2452. .. _class_ProjectSettings_property_display/mouse_cursor/tooltip_position_offset:
  2453. .. rst-class:: classref-property
  2454. :ref:`Vector2<class_Vector2>` **display/mouse_cursor/tooltip_position_offset** = ``Vector2(10, 10)``
  2455. Position offset for tooltips, relative to the mouse cursor's hotspot.
  2456. .. rst-class:: classref-item-separator
  2457. ----
  2458. .. _class_ProjectSettings_property_display/window/dpi/allow_hidpi:
  2459. .. rst-class:: classref-property
  2460. :ref:`bool<class_bool>` **display/window/dpi/allow_hidpi** = ``true``
  2461. 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.
  2462. \ **Note:** This setting has no effect on Linux as DPI-awareness fallbacks are not supported there.
  2463. .. rst-class:: classref-item-separator
  2464. ----
  2465. .. _class_ProjectSettings_property_display/window/energy_saving/keep_screen_on:
  2466. .. rst-class:: classref-property
  2467. :ref:`bool<class_bool>` **display/window/energy_saving/keep_screen_on** = ``true``
  2468. If ``true``, keeps the screen on (even in case of inactivity), so the screensaver does not take over. Works on desktop and mobile platforms.
  2469. .. rst-class:: classref-item-separator
  2470. ----
  2471. .. _class_ProjectSettings_property_display/window/energy_saving/keep_screen_on.editor:
  2472. .. rst-class:: classref-property
  2473. :ref:`bool<class_bool>` **display/window/energy_saving/keep_screen_on.editor** = ``false``
  2474. 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.
  2475. .. rst-class:: classref-item-separator
  2476. ----
  2477. .. _class_ProjectSettings_property_display/window/handheld/orientation:
  2478. .. rst-class:: classref-property
  2479. :ref:`int<class_int>` **display/window/handheld/orientation** = ``0``
  2480. The default screen orientation to use on mobile devices. See :ref:`ScreenOrientation<enum_DisplayServer_ScreenOrientation>` for possible values.
  2481. \ **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.
  2482. .. rst-class:: classref-item-separator
  2483. ----
  2484. .. _class_ProjectSettings_property_display/window/ios/allow_high_refresh_rate:
  2485. .. rst-class:: classref-property
  2486. :ref:`bool<class_bool>` **display/window/ios/allow_high_refresh_rate** = ``true``
  2487. If ``true``, iOS devices that support high refresh rate/"ProMotion" will be allowed to render at up to 120 frames per second.
  2488. .. rst-class:: classref-item-separator
  2489. ----
  2490. .. _class_ProjectSettings_property_display/window/ios/hide_home_indicator:
  2491. .. rst-class:: classref-property
  2492. :ref:`bool<class_bool>` **display/window/ios/hide_home_indicator** = ``true``
  2493. If ``true``, the home indicator is hidden automatically. This only affects iOS devices without a physical home button.
  2494. .. rst-class:: classref-item-separator
  2495. ----
  2496. .. _class_ProjectSettings_property_display/window/ios/hide_status_bar:
  2497. .. rst-class:: classref-property
  2498. :ref:`bool<class_bool>` **display/window/ios/hide_status_bar** = ``true``
  2499. If ``true``, the status bar is hidden while the app is running.
  2500. .. rst-class:: classref-item-separator
  2501. ----
  2502. .. _class_ProjectSettings_property_display/window/ios/suppress_ui_gesture:
  2503. .. rst-class:: classref-property
  2504. :ref:`bool<class_bool>` **display/window/ios/suppress_ui_gesture** = ``true``
  2505. If ``true``, it will require two swipes to access iOS UI that uses gestures.
  2506. \ **Note:** This setting has no effect on the home indicator if ``hide_home_indicator`` is ``true``.
  2507. .. rst-class:: classref-item-separator
  2508. ----
  2509. .. _class_ProjectSettings_property_display/window/per_pixel_transparency/allowed:
  2510. .. rst-class:: classref-property
  2511. :ref:`bool<class_bool>` **display/window/per_pixel_transparency/allowed** = ``false``
  2512. 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>`.
  2513. .. rst-class:: classref-item-separator
  2514. ----
  2515. .. _class_ProjectSettings_property_display/window/size/always_on_top:
  2516. .. rst-class:: classref-property
  2517. :ref:`bool<class_bool>` **display/window/size/always_on_top** = ``false``
  2518. Forces the main window to be always on top.
  2519. \ **Note:** This setting is ignored on iOS, Android, and Web.
  2520. .. rst-class:: classref-item-separator
  2521. ----
  2522. .. _class_ProjectSettings_property_display/window/size/borderless:
  2523. .. rst-class:: classref-property
  2524. :ref:`bool<class_bool>` **display/window/size/borderless** = ``false``
  2525. Forces the main window to be borderless.
  2526. \ **Note:** This setting is ignored on iOS, Android, and Web.
  2527. .. rst-class:: classref-item-separator
  2528. ----
  2529. .. _class_ProjectSettings_property_display/window/size/extend_to_title:
  2530. .. rst-class:: classref-property
  2531. :ref:`bool<class_bool>` **display/window/size/extend_to_title** = ``false``
  2532. 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.
  2533. \ **Note:** This setting is implemented only on macOS.
  2534. .. rst-class:: classref-item-separator
  2535. ----
  2536. .. _class_ProjectSettings_property_display/window/size/initial_position:
  2537. .. rst-class:: classref-property
  2538. :ref:`Vector2i<class_Vector2i>` **display/window/size/initial_position** = ``Vector2i(0, 0)``
  2539. 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``).
  2540. \ **Note:** This setting only affects the exported project, or when the project is run from the command line. In the editor, the value of :ref:`EditorSettings.run/window_placement/rect_custom_position<class_EditorSettings_property_run/window_placement/rect_custom_position>` is used instead.
  2541. .. rst-class:: classref-item-separator
  2542. ----
  2543. .. _class_ProjectSettings_property_display/window/size/initial_position_type:
  2544. .. rst-class:: classref-property
  2545. :ref:`int<class_int>` **display/window/size/initial_position_type** = ``1``
  2546. Main window initial position.
  2547. \ ``0`` - "Absolute", :ref:`display/window/size/initial_position<class_ProjectSettings_property_display/window/size/initial_position>` is used to set window position.
  2548. \ ``1`` - "Primary Screen Center".
  2549. \ ``2`` - "Other Screen Center", :ref:`display/window/size/initial_screen<class_ProjectSettings_property_display/window/size/initial_screen>` is used to set the screen.
  2550. \ **Note:** This setting only affects the exported project, or when the project is run from the command line. In the editor, the value of :ref:`EditorSettings.run/window_placement/rect<class_EditorSettings_property_run/window_placement/rect>` is used instead.
  2551. .. rst-class:: classref-item-separator
  2552. ----
  2553. .. _class_ProjectSettings_property_display/window/size/initial_screen:
  2554. .. rst-class:: classref-property
  2555. :ref:`int<class_int>` **display/window/size/initial_screen** = ``0``
  2556. 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``).
  2557. \ **Note:** This setting only affects the exported project, or when the project is run from the command line. In the editor, the value of :ref:`EditorSettings.run/window_placement/screen<class_EditorSettings_property_run/window_placement/screen>` is used instead.
  2558. .. rst-class:: classref-item-separator
  2559. ----
  2560. .. _class_ProjectSettings_property_display/window/size/mode:
  2561. .. rst-class:: classref-property
  2562. :ref:`int<class_int>` **display/window/size/mode** = ``0``
  2563. Main window mode. See :ref:`WindowMode<enum_DisplayServer_WindowMode>` for possible values and how each mode behaves.
  2564. .. rst-class:: classref-item-separator
  2565. ----
  2566. .. _class_ProjectSettings_property_display/window/size/no_focus:
  2567. .. rst-class:: classref-property
  2568. :ref:`bool<class_bool>` **display/window/size/no_focus** = ``false``
  2569. Main window can't be focused. No-focus window will ignore all input, except mouse clicks.
  2570. .. rst-class:: classref-item-separator
  2571. ----
  2572. .. _class_ProjectSettings_property_display/window/size/resizable:
  2573. .. rst-class:: classref-property
  2574. :ref:`bool<class_bool>` **display/window/size/resizable** = ``true``
  2575. If ``true``, allows the window to be resizable by default.
  2576. \ **Note:** This property is only read when the project starts. To change whether the window is resizable at runtime, set :ref:`Window.unresizable<class_Window_property_unresizable>` instead on the root Window, which can be retrieved using ``get_viewport().get_window()``. :ref:`Window.unresizable<class_Window_property_unresizable>` takes the opposite value of this setting.
  2577. \ **Note:** Certain window managers can be configured to ignore the non-resizable status of a window. Do not rely on this setting as a guarantee that the window will *never* be resizable.
  2578. \ **Note:** This setting is ignored on iOS.
  2579. .. rst-class:: classref-item-separator
  2580. ----
  2581. .. _class_ProjectSettings_property_display/window/size/transparent:
  2582. .. rst-class:: classref-property
  2583. :ref:`bool<class_bool>` **display/window/size/transparent** = ``false``
  2584. 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>`.
  2585. \ **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)``.
  2586. \ **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``.
  2587. .. rst-class:: classref-item-separator
  2588. ----
  2589. .. _class_ProjectSettings_property_display/window/size/viewport_height:
  2590. .. rst-class:: classref-property
  2591. :ref:`int<class_int>` **display/window/size/viewport_height** = ``648``
  2592. 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>`.
  2593. .. rst-class:: classref-item-separator
  2594. ----
  2595. .. _class_ProjectSettings_property_display/window/size/viewport_width:
  2596. .. rst-class:: classref-property
  2597. :ref:`int<class_int>` **display/window/size/viewport_width** = ``1152``
  2598. 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>`.
  2599. .. rst-class:: classref-item-separator
  2600. ----
  2601. .. _class_ProjectSettings_property_display/window/size/window_height_override:
  2602. .. rst-class:: classref-property
  2603. :ref:`int<class_int>` **display/window/size/window_height_override** = ``0``
  2604. 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>`.
  2605. \ **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.
  2606. .. rst-class:: classref-item-separator
  2607. ----
  2608. .. _class_ProjectSettings_property_display/window/size/window_width_override:
  2609. .. rst-class:: classref-property
  2610. :ref:`int<class_int>` **display/window/size/window_width_override** = ``0``
  2611. 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>`.
  2612. \ **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.
  2613. .. rst-class:: classref-item-separator
  2614. ----
  2615. .. _class_ProjectSettings_property_display/window/stretch/aspect:
  2616. .. rst-class:: classref-property
  2617. :ref:`String<class_String>` **display/window/stretch/aspect** = ``"keep"``
  2618. .. container:: contribute
  2619. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2620. .. rst-class:: classref-item-separator
  2621. ----
  2622. .. _class_ProjectSettings_property_display/window/stretch/mode:
  2623. .. rst-class:: classref-property
  2624. :ref:`String<class_String>` **display/window/stretch/mode** = ``"disabled"``
  2625. Defines how the base size is stretched to fit the resolution of the window or screen.
  2626. \ **"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.
  2627. \ **"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).
  2628. \ **"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.
  2629. .. rst-class:: classref-item-separator
  2630. ----
  2631. .. _class_ProjectSettings_property_display/window/stretch/scale:
  2632. .. rst-class:: classref-property
  2633. :ref:`float<class_float>` **display/window/stretch/scale** = ``1.0``
  2634. .. container:: contribute
  2635. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2636. .. rst-class:: classref-item-separator
  2637. ----
  2638. .. _class_ProjectSettings_property_display/window/subwindows/embed_subwindows:
  2639. .. rst-class:: classref-property
  2640. :ref:`bool<class_bool>` **display/window/subwindows/embed_subwindows** = ``true``
  2641. If ``true`` subwindows are embedded in the main window.
  2642. .. rst-class:: classref-item-separator
  2643. ----
  2644. .. _class_ProjectSettings_property_display/window/vsync/vsync_mode:
  2645. .. rst-class:: classref-property
  2646. :ref:`int<class_int>` **display/window/vsync/vsync_mode** = ``1``
  2647. Sets the V-Sync mode for the main game window.
  2648. See :ref:`VSyncMode<enum_DisplayServer_VSyncMode>` for possible values and how they affect the behavior of your application.
  2649. Depending on the platform and used renderer, the engine will fall back to **Enabled** if the desired mode is not supported.
  2650. \ **Note:** V-Sync modes other than **Enabled** are only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  2651. \ **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.
  2652. .. rst-class:: classref-item-separator
  2653. ----
  2654. .. _class_ProjectSettings_property_dotnet/project/assembly_name:
  2655. .. rst-class:: classref-property
  2656. :ref:`String<class_String>` **dotnet/project/assembly_name** = ``""``
  2657. 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.
  2658. .. rst-class:: classref-item-separator
  2659. ----
  2660. .. _class_ProjectSettings_property_dotnet/project/assembly_reload_attempts:
  2661. .. rst-class:: classref-property
  2662. :ref:`int<class_int>` **dotnet/project/assembly_reload_attempts** = ``3``
  2663. Number of times to attempt assembly reloading after rebuilding .NET assembies. Effectively also the timeout in seconds to wait for unloading of script assemblies to finish.
  2664. .. rst-class:: classref-item-separator
  2665. ----
  2666. .. _class_ProjectSettings_property_dotnet/project/solution_directory:
  2667. .. rst-class:: classref-property
  2668. :ref:`String<class_String>` **dotnet/project/solution_directory** = ``""``
  2669. 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.
  2670. 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.
  2671. .. rst-class:: classref-item-separator
  2672. ----
  2673. .. _class_ProjectSettings_property_editor/export/convert_text_resources_to_binary:
  2674. .. rst-class:: classref-property
  2675. :ref:`bool<class_bool>` **editor/export/convert_text_resources_to_binary** = ``true``
  2676. If ``true``, text resources are converted to a binary format on export. This decreases file sizes and speeds up loading slightly.
  2677. \ **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``.
  2678. .. rst-class:: classref-item-separator
  2679. ----
  2680. .. _class_ProjectSettings_property_editor/import/reimport_missing_imported_files:
  2681. .. rst-class:: classref-property
  2682. :ref:`bool<class_bool>` **editor/import/reimport_missing_imported_files** = ``true``
  2683. .. container:: contribute
  2684. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2685. .. rst-class:: classref-item-separator
  2686. ----
  2687. .. _class_ProjectSettings_property_editor/import/use_multiple_threads:
  2688. .. rst-class:: classref-property
  2689. :ref:`bool<class_bool>` **editor/import/use_multiple_threads** = ``true``
  2690. If ``true`` importing of resources is run on multiple threads.
  2691. .. rst-class:: classref-item-separator
  2692. ----
  2693. .. _class_ProjectSettings_property_editor/movie_writer/disable_vsync:
  2694. .. rst-class:: classref-property
  2695. :ref:`bool<class_bool>` **editor/movie_writer/disable_vsync** = ``false``
  2696. 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.
  2697. \ **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.
  2698. .. rst-class:: classref-item-separator
  2699. ----
  2700. .. _class_ProjectSettings_property_editor/movie_writer/fps:
  2701. .. rst-class:: classref-property
  2702. :ref:`int<class_int>` **editor/movie_writer/fps** = ``60``
  2703. 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.
  2704. This can be specified manually on the command line using the ``--fixed-fps <fps>`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  2705. .. rst-class:: classref-item-separator
  2706. ----
  2707. .. _class_ProjectSettings_property_editor/movie_writer/mix_rate:
  2708. .. rst-class:: classref-property
  2709. :ref:`int<class_int>` **editor/movie_writer/mix_rate** = ``48000``
  2710. 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.
  2711. .. rst-class:: classref-item-separator
  2712. ----
  2713. .. _class_ProjectSettings_property_editor/movie_writer/mjpeg_quality:
  2714. .. rst-class:: classref-property
  2715. :ref:`float<class_float>` **editor/movie_writer/mjpeg_quality** = ``0.75``
  2716. 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.
  2717. \ **Note:** This does not affect the audio quality or writing PNG image sequences.
  2718. .. rst-class:: classref-item-separator
  2719. ----
  2720. .. _class_ProjectSettings_property_editor/movie_writer/movie_file:
  2721. .. rst-class:: classref-property
  2722. :ref:`String<class_String>` **editor/movie_writer/movie_file** = ``""``
  2723. The output path for the movie. The file extension determines the :ref:`MovieWriter<class_MovieWriter>` that will be used.
  2724. Godot has 2 built-in :ref:`MovieWriter<class_MovieWriter>`\ s:
  2725. - 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.
  2726. - 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.
  2727. 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.
  2728. 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``.
  2729. .. rst-class:: classref-item-separator
  2730. ----
  2731. .. _class_ProjectSettings_property_editor/movie_writer/speaker_mode:
  2732. .. rst-class:: classref-property
  2733. :ref:`int<class_int>` **editor/movie_writer/speaker_mode** = ``0``
  2734. The speaker mode to use in the recorded audio when writing a movie. See :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` for possible values.
  2735. .. rst-class:: classref-item-separator
  2736. ----
  2737. .. _class_ProjectSettings_property_editor/naming/default_signal_callback_name:
  2738. .. rst-class:: classref-property
  2739. :ref:`String<class_String>` **editor/naming/default_signal_callback_name** = ``"_on_{node_name}_{signal_name}"``
  2740. 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}``.
  2741. .. rst-class:: classref-item-separator
  2742. ----
  2743. .. _class_ProjectSettings_property_editor/naming/default_signal_callback_to_self_name:
  2744. .. rst-class:: classref-property
  2745. :ref:`String<class_String>` **editor/naming/default_signal_callback_to_self_name** = ``"_on_{signal_name}"``
  2746. 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}``.
  2747. .. rst-class:: classref-item-separator
  2748. ----
  2749. .. _class_ProjectSettings_property_editor/naming/node_name_casing:
  2750. .. rst-class:: classref-property
  2751. :ref:`int<class_int>` **editor/naming/node_name_casing** = ``0``
  2752. When creating node names automatically, set the type of casing in this project. This is mostly an editor setting.
  2753. .. rst-class:: classref-item-separator
  2754. ----
  2755. .. _class_ProjectSettings_property_editor/naming/node_name_num_separator:
  2756. .. rst-class:: classref-property
  2757. :ref:`int<class_int>` **editor/naming/node_name_num_separator** = ``0``
  2758. What to use to separate node name from number. This is mostly an editor setting.
  2759. .. rst-class:: classref-item-separator
  2760. ----
  2761. .. _class_ProjectSettings_property_editor/naming/scene_name_casing:
  2762. .. rst-class:: classref-property
  2763. :ref:`int<class_int>` **editor/naming/scene_name_casing** = ``2``
  2764. When generating file names from scene root node, set the type of casing in this project. This is mostly an editor setting.
  2765. .. rst-class:: classref-item-separator
  2766. ----
  2767. .. _class_ProjectSettings_property_editor/run/main_run_args:
  2768. .. rst-class:: classref-property
  2769. :ref:`String<class_String>` **editor/run/main_run_args** = ``""``
  2770. The command-line arguments to append to Godot's own command line when running the project. This doesn't affect the editor itself.
  2771. 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.
  2772. For example, this can be used to force the project to run on the dedicated GPU in a NVIDIA Optimus system on Linux:
  2773. ::
  2774. prime-run %command%
  2775. .. rst-class:: classref-item-separator
  2776. ----
  2777. .. _class_ProjectSettings_property_editor/script/search_in_file_extensions:
  2778. .. rst-class:: classref-property
  2779. :ref:`PackedStringArray<class_PackedStringArray>` **editor/script/search_in_file_extensions** = ``PackedStringArray("gd", "gdshader")``
  2780. 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.
  2781. .. rst-class:: classref-item-separator
  2782. ----
  2783. .. _class_ProjectSettings_property_editor/script/templates_search_path:
  2784. .. rst-class:: classref-property
  2785. :ref:`String<class_String>` **editor/script/templates_search_path** = ``"res://script_templates"``
  2786. 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.
  2787. .. rst-class:: classref-item-separator
  2788. ----
  2789. .. _class_ProjectSettings_property_editor/version_control/autoload_on_startup:
  2790. .. rst-class:: classref-property
  2791. :ref:`bool<class_bool>` **editor/version_control/autoload_on_startup** = ``false``
  2792. .. container:: contribute
  2793. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2794. .. rst-class:: classref-item-separator
  2795. ----
  2796. .. _class_ProjectSettings_property_editor/version_control/plugin_name:
  2797. .. rst-class:: classref-property
  2798. :ref:`String<class_String>` **editor/version_control/plugin_name** = ``""``
  2799. .. container:: contribute
  2800. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2801. .. rst-class:: classref-item-separator
  2802. ----
  2803. .. _class_ProjectSettings_property_filesystem/import/blender/enabled:
  2804. .. rst-class:: classref-property
  2805. :ref:`bool<class_bool>` **filesystem/import/blender/enabled** = ``true``
  2806. If ``true``, Blender 3D scene files with the ``.blend`` extension will be imported by converting them to glTF 2.0.
  2807. 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.
  2808. .. rst-class:: classref-item-separator
  2809. ----
  2810. .. _class_ProjectSettings_property_filesystem/import/blender/enabled.android:
  2811. .. rst-class:: classref-property
  2812. :ref:`bool<class_bool>` **filesystem/import/blender/enabled.android** = ``false``
  2813. 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.
  2814. .. rst-class:: classref-item-separator
  2815. ----
  2816. .. _class_ProjectSettings_property_filesystem/import/blender/enabled.web:
  2817. .. rst-class:: classref-property
  2818. :ref:`bool<class_bool>` **filesystem/import/blender/enabled.web** = ``false``
  2819. 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.
  2820. .. rst-class:: classref-item-separator
  2821. ----
  2822. .. _class_ProjectSettings_property_filesystem/import/fbx/enabled:
  2823. .. rst-class:: classref-property
  2824. :ref:`bool<class_bool>` **filesystem/import/fbx/enabled** = ``true``
  2825. If ``true``, Autodesk FBX 3D scene files with the ``.fbx`` extension will be imported by converting them to glTF 2.0.
  2826. This requires configuring a path to a FBX2glTF executable in the editor settings at ``filesystem/import/fbx/fbx2gltf_path``.
  2827. .. rst-class:: classref-item-separator
  2828. ----
  2829. .. _class_ProjectSettings_property_filesystem/import/fbx/enabled.android:
  2830. .. rst-class:: classref-property
  2831. :ref:`bool<class_bool>` **filesystem/import/fbx/enabled.android** = ``false``
  2832. 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.
  2833. .. rst-class:: classref-item-separator
  2834. ----
  2835. .. _class_ProjectSettings_property_filesystem/import/fbx/enabled.web:
  2836. .. rst-class:: classref-property
  2837. :ref:`bool<class_bool>` **filesystem/import/fbx/enabled.web** = ``false``
  2838. 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.
  2839. .. rst-class:: classref-item-separator
  2840. ----
  2841. .. _class_ProjectSettings_property_gui/common/default_scroll_deadzone:
  2842. .. rst-class:: classref-property
  2843. :ref:`int<class_int>` **gui/common/default_scroll_deadzone** = ``0``
  2844. 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.
  2845. .. rst-class:: classref-item-separator
  2846. ----
  2847. .. _class_ProjectSettings_property_gui/common/snap_controls_to_pixels:
  2848. .. rst-class:: classref-property
  2849. :ref:`bool<class_bool>` **gui/common/snap_controls_to_pixels** = ``true``
  2850. 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.
  2851. .. rst-class:: classref-item-separator
  2852. ----
  2853. .. _class_ProjectSettings_property_gui/common/swap_cancel_ok:
  2854. .. rst-class:: classref-property
  2855. :ref:`bool<class_bool>` **gui/common/swap_cancel_ok**
  2856. If ``true``, swaps **Cancel** and **OK** buttons in dialogs on Windows and UWP 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.
  2857. \ **Note:** This doesn't affect native dialogs such as the ones spawned by :ref:`DisplayServer.dialog_show<class_DisplayServer_method_dialog_show>`.
  2858. .. rst-class:: classref-item-separator
  2859. ----
  2860. .. _class_ProjectSettings_property_gui/common/text_edit_undo_stack_max_size:
  2861. .. rst-class:: classref-property
  2862. :ref:`int<class_int>` **gui/common/text_edit_undo_stack_max_size** = ``1024``
  2863. Maximum undo/redo history size for :ref:`TextEdit<class_TextEdit>` fields.
  2864. .. rst-class:: classref-item-separator
  2865. ----
  2866. .. _class_ProjectSettings_property_gui/fonts/dynamic_fonts/use_oversampling:
  2867. .. rst-class:: classref-property
  2868. :ref:`bool<class_bool>` **gui/fonts/dynamic_fonts/use_oversampling** = ``true``
  2869. .. container:: contribute
  2870. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  2871. .. rst-class:: classref-item-separator
  2872. ----
  2873. .. _class_ProjectSettings_property_gui/theme/custom:
  2874. .. rst-class:: classref-property
  2875. :ref:`String<class_String>` **gui/theme/custom** = ``""``
  2876. Path to a custom :ref:`Theme<class_Theme>` resource file to use for the project (``.theme`` or generic ``.tres``/``.res`` extension).
  2877. .. rst-class:: classref-item-separator
  2878. ----
  2879. .. _class_ProjectSettings_property_gui/theme/custom_font:
  2880. .. rst-class:: classref-property
  2881. :ref:`String<class_String>` **gui/theme/custom_font** = ``""``
  2882. Path to a custom :ref:`Font<class_Font>` resource to use as default for all GUI elements of the project.
  2883. .. rst-class:: classref-item-separator
  2884. ----
  2885. .. _class_ProjectSettings_property_gui/theme/default_font_antialiasing:
  2886. .. rst-class:: classref-property
  2887. :ref:`int<class_int>` **gui/theme/default_font_antialiasing** = ``1``
  2888. Font anti-aliasing mode. See :ref:`FontFile.antialiasing<class_FontFile_property_antialiasing>`.
  2889. .. rst-class:: classref-item-separator
  2890. ----
  2891. .. _class_ProjectSettings_property_gui/theme/default_font_generate_mipmaps:
  2892. .. rst-class:: classref-property
  2893. :ref:`bool<class_bool>` **gui/theme/default_font_generate_mipmaps** = ``false``
  2894. 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).
  2895. 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.
  2896. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project.
  2897. .. rst-class:: classref-item-separator
  2898. ----
  2899. .. _class_ProjectSettings_property_gui/theme/default_font_hinting:
  2900. .. rst-class:: classref-property
  2901. :ref:`int<class_int>` **gui/theme/default_font_hinting** = ``1``
  2902. Default font hinting mode. See :ref:`FontFile.hinting<class_FontFile_property_hinting>`.
  2903. .. rst-class:: classref-item-separator
  2904. ----
  2905. .. _class_ProjectSettings_property_gui/theme/default_font_multichannel_signed_distance_field:
  2906. .. rst-class:: classref-property
  2907. :ref:`bool<class_bool>` **gui/theme/default_font_multichannel_signed_distance_field** = ``false``
  2908. 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).
  2909. 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.
  2910. \ **Note:** This setting does not affect custom :ref:`Font<class_Font>`\ s used within the project.
  2911. .. rst-class:: classref-item-separator
  2912. ----
  2913. .. _class_ProjectSettings_property_gui/theme/default_font_subpixel_positioning:
  2914. .. rst-class:: classref-property
  2915. :ref:`int<class_int>` **gui/theme/default_font_subpixel_positioning** = ``1``
  2916. Default font glyph subpixel positioning mode. See :ref:`FontFile.subpixel_positioning<class_FontFile_property_subpixel_positioning>`.
  2917. .. rst-class:: classref-item-separator
  2918. ----
  2919. .. _class_ProjectSettings_property_gui/theme/default_theme_scale:
  2920. .. rst-class:: classref-property
  2921. :ref:`float<class_float>` **gui/theme/default_theme_scale** = ``1.0``
  2922. The default scale factor for :ref:`Control<class_Control>`\ s, when not overridden by a :ref:`Theme<class_Theme>`.
  2923. \ **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.
  2924. .. rst-class:: classref-item-separator
  2925. ----
  2926. .. _class_ProjectSettings_property_gui/theme/lcd_subpixel_layout:
  2927. .. rst-class:: classref-property
  2928. :ref:`int<class_int>` **gui/theme/lcd_subpixel_layout** = ``1``
  2929. LCD subpixel layout used for font anti-aliasing. See :ref:`FontLCDSubpixelLayout<enum_TextServer_FontLCDSubpixelLayout>`.
  2930. .. rst-class:: classref-item-separator
  2931. ----
  2932. .. _class_ProjectSettings_property_gui/timers/button_shortcut_feedback_highlight_time:
  2933. .. rst-class:: classref-property
  2934. :ref:`float<class_float>` **gui/timers/button_shortcut_feedback_highlight_time** = ``0.2``
  2935. 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.
  2936. .. rst-class:: classref-item-separator
  2937. ----
  2938. .. _class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec:
  2939. .. rst-class:: classref-property
  2940. :ref:`int<class_int>` **gui/timers/incremental_search_max_interval_msec** = ``2000``
  2941. Timer setting for incremental search in :ref:`Tree<class_Tree>`, :ref:`ItemList<class_ItemList>`, etc. controls (in milliseconds).
  2942. .. rst-class:: classref-item-separator
  2943. ----
  2944. .. _class_ProjectSettings_property_gui/timers/text_edit_idle_detect_sec:
  2945. .. rst-class:: classref-property
  2946. :ref:`float<class_float>` **gui/timers/text_edit_idle_detect_sec** = ``3``
  2947. Timer for detecting idle in :ref:`TextEdit<class_TextEdit>` (in seconds).
  2948. .. rst-class:: classref-item-separator
  2949. ----
  2950. .. _class_ProjectSettings_property_gui/timers/tooltip_delay_sec:
  2951. .. rst-class:: classref-property
  2952. :ref:`float<class_float>` **gui/timers/tooltip_delay_sec** = ``0.5``
  2953. Default delay for tooltips (in seconds).
  2954. .. rst-class:: classref-item-separator
  2955. ----
  2956. .. _class_ProjectSettings_property_input/ui_accept:
  2957. .. rst-class:: classref-property
  2958. :ref:`Dictionary<class_Dictionary>` **input/ui_accept**
  2959. Default :ref:`InputEventAction<class_InputEventAction>` to confirm a focused button, menu or list item, or validate input.
  2960. \ **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.
  2961. .. rst-class:: classref-item-separator
  2962. ----
  2963. .. _class_ProjectSettings_property_input/ui_cancel:
  2964. .. rst-class:: classref-property
  2965. :ref:`Dictionary<class_Dictionary>` **input/ui_cancel**
  2966. Default :ref:`InputEventAction<class_InputEventAction>` to discard a modal or pending input.
  2967. \ **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.
  2968. .. rst-class:: classref-item-separator
  2969. ----
  2970. .. _class_ProjectSettings_property_input/ui_copy:
  2971. .. rst-class:: classref-property
  2972. :ref:`Dictionary<class_Dictionary>` **input/ui_copy**
  2973. Default :ref:`InputEventAction<class_InputEventAction>` to copy a selection to the clipboard.
  2974. \ **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.
  2975. .. rst-class:: classref-item-separator
  2976. ----
  2977. .. _class_ProjectSettings_property_input/ui_cut:
  2978. .. rst-class:: classref-property
  2979. :ref:`Dictionary<class_Dictionary>` **input/ui_cut**
  2980. Default :ref:`InputEventAction<class_InputEventAction>` to cut a selection to the clipboard.
  2981. \ **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.
  2982. .. rst-class:: classref-item-separator
  2983. ----
  2984. .. _class_ProjectSettings_property_input/ui_down:
  2985. .. rst-class:: classref-property
  2986. :ref:`Dictionary<class_Dictionary>` **input/ui_down**
  2987. Default :ref:`InputEventAction<class_InputEventAction>` to move down in the UI.
  2988. \ **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.
  2989. .. rst-class:: classref-item-separator
  2990. ----
  2991. .. _class_ProjectSettings_property_input/ui_end:
  2992. .. rst-class:: classref-property
  2993. :ref:`Dictionary<class_Dictionary>` **input/ui_end**
  2994. 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.
  2995. \ **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.
  2996. .. rst-class:: classref-item-separator
  2997. ----
  2998. .. _class_ProjectSettings_property_input/ui_filedialog_refresh:
  2999. .. rst-class:: classref-property
  3000. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_refresh**
  3001. Default :ref:`InputEventAction<class_InputEventAction>` to refresh the contents of the current directory of a :ref:`FileDialog<class_FileDialog>`.
  3002. \ **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.
  3003. .. rst-class:: classref-item-separator
  3004. ----
  3005. .. _class_ProjectSettings_property_input/ui_filedialog_show_hidden:
  3006. .. rst-class:: classref-property
  3007. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_show_hidden**
  3008. Default :ref:`InputEventAction<class_InputEventAction>` to toggle showing hidden files and directories in a :ref:`FileDialog<class_FileDialog>`.
  3009. \ **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.
  3010. .. rst-class:: classref-item-separator
  3011. ----
  3012. .. _class_ProjectSettings_property_input/ui_filedialog_up_one_level:
  3013. .. rst-class:: classref-property
  3014. :ref:`Dictionary<class_Dictionary>` **input/ui_filedialog_up_one_level**
  3015. Default :ref:`InputEventAction<class_InputEventAction>` to go up one directory in a :ref:`FileDialog<class_FileDialog>`.
  3016. \ **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.
  3017. .. rst-class:: classref-item-separator
  3018. ----
  3019. .. _class_ProjectSettings_property_input/ui_focus_next:
  3020. .. rst-class:: classref-property
  3021. :ref:`Dictionary<class_Dictionary>` **input/ui_focus_next**
  3022. 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>`.
  3023. \ **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.
  3024. .. rst-class:: classref-item-separator
  3025. ----
  3026. .. _class_ProjectSettings_property_input/ui_focus_prev:
  3027. .. rst-class:: classref-property
  3028. :ref:`Dictionary<class_Dictionary>` **input/ui_focus_prev**
  3029. 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>`.
  3030. \ **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.
  3031. .. rst-class:: classref-item-separator
  3032. ----
  3033. .. _class_ProjectSettings_property_input/ui_graph_delete:
  3034. .. rst-class:: classref-property
  3035. :ref:`Dictionary<class_Dictionary>` **input/ui_graph_delete**
  3036. Default :ref:`InputEventAction<class_InputEventAction>` to delete a :ref:`GraphNode<class_GraphNode>` in a :ref:`GraphEdit<class_GraphEdit>`.
  3037. \ **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.
  3038. .. rst-class:: classref-item-separator
  3039. ----
  3040. .. _class_ProjectSettings_property_input/ui_graph_duplicate:
  3041. .. rst-class:: classref-property
  3042. :ref:`Dictionary<class_Dictionary>` **input/ui_graph_duplicate**
  3043. Default :ref:`InputEventAction<class_InputEventAction>` to duplicate a :ref:`GraphNode<class_GraphNode>` in a :ref:`GraphEdit<class_GraphEdit>`.
  3044. \ **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.
  3045. .. rst-class:: classref-item-separator
  3046. ----
  3047. .. _class_ProjectSettings_property_input/ui_home:
  3048. .. rst-class:: classref-property
  3049. :ref:`Dictionary<class_Dictionary>` **input/ui_home**
  3050. 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.
  3051. \ **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.
  3052. .. rst-class:: classref-item-separator
  3053. ----
  3054. .. _class_ProjectSettings_property_input/ui_left:
  3055. .. rst-class:: classref-property
  3056. :ref:`Dictionary<class_Dictionary>` **input/ui_left**
  3057. Default :ref:`InputEventAction<class_InputEventAction>` to move left in the UI.
  3058. \ **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.
  3059. .. rst-class:: classref-item-separator
  3060. ----
  3061. .. _class_ProjectSettings_property_input/ui_menu:
  3062. .. rst-class:: classref-property
  3063. :ref:`Dictionary<class_Dictionary>` **input/ui_menu**
  3064. Default :ref:`InputEventAction<class_InputEventAction>` to open a context menu in a text field.
  3065. \ **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.
  3066. .. rst-class:: classref-item-separator
  3067. ----
  3068. .. _class_ProjectSettings_property_input/ui_page_down:
  3069. .. rst-class:: classref-property
  3070. :ref:`Dictionary<class_Dictionary>` **input/ui_page_down**
  3071. 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.
  3072. \ **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.
  3073. .. rst-class:: classref-item-separator
  3074. ----
  3075. .. _class_ProjectSettings_property_input/ui_page_up:
  3076. .. rst-class:: classref-property
  3077. :ref:`Dictionary<class_Dictionary>` **input/ui_page_up**
  3078. 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.
  3079. \ **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.
  3080. .. rst-class:: classref-item-separator
  3081. ----
  3082. .. _class_ProjectSettings_property_input/ui_paste:
  3083. .. rst-class:: classref-property
  3084. :ref:`Dictionary<class_Dictionary>` **input/ui_paste**
  3085. Default :ref:`InputEventAction<class_InputEventAction>` to paste from the clipboard.
  3086. \ **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.
  3087. .. rst-class:: classref-item-separator
  3088. ----
  3089. .. _class_ProjectSettings_property_input/ui_redo:
  3090. .. rst-class:: classref-property
  3091. :ref:`Dictionary<class_Dictionary>` **input/ui_redo**
  3092. Default :ref:`InputEventAction<class_InputEventAction>` to redo an undone action.
  3093. \ **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.
  3094. .. rst-class:: classref-item-separator
  3095. ----
  3096. .. _class_ProjectSettings_property_input/ui_right:
  3097. .. rst-class:: classref-property
  3098. :ref:`Dictionary<class_Dictionary>` **input/ui_right**
  3099. Default :ref:`InputEventAction<class_InputEventAction>` to move right in the UI.
  3100. \ **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.
  3101. .. rst-class:: classref-item-separator
  3102. ----
  3103. .. _class_ProjectSettings_property_input/ui_select:
  3104. .. rst-class:: classref-property
  3105. :ref:`Dictionary<class_Dictionary>` **input/ui_select**
  3106. 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>`).
  3107. \ **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.
  3108. .. rst-class:: classref-item-separator
  3109. ----
  3110. .. _class_ProjectSettings_property_input/ui_swap_input_direction:
  3111. .. rst-class:: classref-property
  3112. :ref:`Dictionary<class_Dictionary>` **input/ui_swap_input_direction**
  3113. 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>`).
  3114. .. rst-class:: classref-item-separator
  3115. ----
  3116. .. _class_ProjectSettings_property_input/ui_text_add_selection_for_next_occurrence:
  3117. .. rst-class:: classref-property
  3118. :ref:`Dictionary<class_Dictionary>` **input/ui_text_add_selection_for_next_occurrence**
  3119. 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.
  3120. If no selection is currently active with the last caret in text fields, selects the word currently under the caret.
  3121. The action can be performed sequentially for all occurrences of the selection of the last caret and for all existing carets.
  3122. The viewport is adjusted to the latest newly added caret.
  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_text_backspace:
  3127. .. rst-class:: classref-property
  3128. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace**
  3129. Default :ref:`InputEventAction<class_InputEventAction>` to delete the character before the text cursor.
  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_text_backspace_all_to_left:
  3134. .. rst-class:: classref-property
  3135. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_all_to_left**
  3136. Default :ref:`InputEventAction<class_InputEventAction>` to delete **all** text before the text cursor.
  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_text_backspace_all_to_left.macos:
  3141. .. rst-class:: classref-property
  3142. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_all_to_left.macos**
  3143. macOS specific override for the shortcut to delete all text before the text cursor.
  3144. .. rst-class:: classref-item-separator
  3145. ----
  3146. .. _class_ProjectSettings_property_input/ui_text_backspace_word:
  3147. .. rst-class:: classref-property
  3148. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_word**
  3149. Default :ref:`InputEventAction<class_InputEventAction>` to delete all characters before the cursor up until a whitespace or punctuation character.
  3150. \ **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.
  3151. .. rst-class:: classref-item-separator
  3152. ----
  3153. .. _class_ProjectSettings_property_input/ui_text_backspace_word.macos:
  3154. .. rst-class:: classref-property
  3155. :ref:`Dictionary<class_Dictionary>` **input/ui_text_backspace_word.macos**
  3156. macOS specific override for the shortcut to delete a word.
  3157. .. rst-class:: classref-item-separator
  3158. ----
  3159. .. _class_ProjectSettings_property_input/ui_text_caret_add_above:
  3160. .. rst-class:: classref-property
  3161. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_above**
  3162. Default :ref:`InputEventAction<class_InputEventAction>` to add an additional caret above every caret of a text.
  3163. .. rst-class:: classref-item-separator
  3164. ----
  3165. .. _class_ProjectSettings_property_input/ui_text_caret_add_above.macos:
  3166. .. rst-class:: classref-property
  3167. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_above.macos**
  3168. macOS specific override for the shortcut to add a caret above every caret.
  3169. .. rst-class:: classref-item-separator
  3170. ----
  3171. .. _class_ProjectSettings_property_input/ui_text_caret_add_below:
  3172. .. rst-class:: classref-property
  3173. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_below**
  3174. Default :ref:`InputEventAction<class_InputEventAction>` to add an additional caret below every caret of a text.
  3175. .. rst-class:: classref-item-separator
  3176. ----
  3177. .. _class_ProjectSettings_property_input/ui_text_caret_add_below.macos:
  3178. .. rst-class:: classref-property
  3179. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_add_below.macos**
  3180. macOS specific override for the shortcut to add a caret below every caret.
  3181. .. rst-class:: classref-item-separator
  3182. ----
  3183. .. _class_ProjectSettings_property_input/ui_text_caret_document_end:
  3184. .. rst-class:: classref-property
  3185. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_end**
  3186. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the end of the text.
  3187. \ **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.
  3188. .. rst-class:: classref-item-separator
  3189. ----
  3190. .. _class_ProjectSettings_property_input/ui_text_caret_document_end.macos:
  3191. .. rst-class:: classref-property
  3192. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_end.macos**
  3193. macOS specific override for the shortcut to move the text cursor to the end of the text.
  3194. .. rst-class:: classref-item-separator
  3195. ----
  3196. .. _class_ProjectSettings_property_input/ui_text_caret_document_start:
  3197. .. rst-class:: classref-property
  3198. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_start**
  3199. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the start of the text.
  3200. \ **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.
  3201. .. rst-class:: classref-item-separator
  3202. ----
  3203. .. _class_ProjectSettings_property_input/ui_text_caret_document_start.macos:
  3204. .. rst-class:: classref-property
  3205. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_document_start.macos**
  3206. macOS specific override for the shortcut to move the text cursor to the start of the text.
  3207. .. rst-class:: classref-item-separator
  3208. ----
  3209. .. _class_ProjectSettings_property_input/ui_text_caret_down:
  3210. .. rst-class:: classref-property
  3211. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_down**
  3212. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor down.
  3213. \ **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.
  3214. .. rst-class:: classref-item-separator
  3215. ----
  3216. .. _class_ProjectSettings_property_input/ui_text_caret_left:
  3217. .. rst-class:: classref-property
  3218. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_left**
  3219. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor left.
  3220. \ **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.
  3221. .. rst-class:: classref-item-separator
  3222. ----
  3223. .. _class_ProjectSettings_property_input/ui_text_caret_line_end:
  3224. .. rst-class:: classref-property
  3225. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_end**
  3226. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the end of the line.
  3227. \ **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.
  3228. .. rst-class:: classref-item-separator
  3229. ----
  3230. .. _class_ProjectSettings_property_input/ui_text_caret_line_end.macos:
  3231. .. rst-class:: classref-property
  3232. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_end.macos**
  3233. macOS specific override for the shortcut to move the text cursor to the end of the line.
  3234. .. rst-class:: classref-item-separator
  3235. ----
  3236. .. _class_ProjectSettings_property_input/ui_text_caret_line_start:
  3237. .. rst-class:: classref-property
  3238. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_start**
  3239. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor to the start of the line.
  3240. \ **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.
  3241. .. rst-class:: classref-item-separator
  3242. ----
  3243. .. _class_ProjectSettings_property_input/ui_text_caret_line_start.macos:
  3244. .. rst-class:: classref-property
  3245. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_line_start.macos**
  3246. macOS specific override for the shortcut to move the text cursor to the start of the line.
  3247. .. rst-class:: classref-item-separator
  3248. ----
  3249. .. _class_ProjectSettings_property_input/ui_text_caret_page_down:
  3250. .. rst-class:: classref-property
  3251. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_page_down**
  3252. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor down one page.
  3253. \ **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.
  3254. .. rst-class:: classref-item-separator
  3255. ----
  3256. .. _class_ProjectSettings_property_input/ui_text_caret_page_up:
  3257. .. rst-class:: classref-property
  3258. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_page_up**
  3259. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor up one page.
  3260. \ **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.
  3261. .. rst-class:: classref-item-separator
  3262. ----
  3263. .. _class_ProjectSettings_property_input/ui_text_caret_right:
  3264. .. rst-class:: classref-property
  3265. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_right**
  3266. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor right.
  3267. \ **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.
  3268. .. rst-class:: classref-item-separator
  3269. ----
  3270. .. _class_ProjectSettings_property_input/ui_text_caret_up:
  3271. .. rst-class:: classref-property
  3272. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_up**
  3273. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor up.
  3274. \ **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.
  3275. .. rst-class:: classref-item-separator
  3276. ----
  3277. .. _class_ProjectSettings_property_input/ui_text_caret_word_left:
  3278. .. rst-class:: classref-property
  3279. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_left**
  3280. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor left to the next whitespace or punctuation.
  3281. \ **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.
  3282. .. rst-class:: classref-item-separator
  3283. ----
  3284. .. _class_ProjectSettings_property_input/ui_text_caret_word_left.macos:
  3285. .. rst-class:: classref-property
  3286. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_left.macos**
  3287. macOS specific override for the shortcut to move the text cursor back one word.
  3288. .. rst-class:: classref-item-separator
  3289. ----
  3290. .. _class_ProjectSettings_property_input/ui_text_caret_word_right:
  3291. .. rst-class:: classref-property
  3292. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_right**
  3293. Default :ref:`InputEventAction<class_InputEventAction>` to move the text cursor right to the next whitespace or punctuation.
  3294. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3295. .. rst-class:: classref-item-separator
  3296. ----
  3297. .. _class_ProjectSettings_property_input/ui_text_caret_word_right.macos:
  3298. .. rst-class:: classref-property
  3299. :ref:`Dictionary<class_Dictionary>` **input/ui_text_caret_word_right.macos**
  3300. macOS specific override for the shortcut to move the text cursor forward one word.
  3301. .. rst-class:: classref-item-separator
  3302. ----
  3303. .. _class_ProjectSettings_property_input/ui_text_clear_carets_and_selection:
  3304. .. rst-class:: classref-property
  3305. :ref:`Dictionary<class_Dictionary>` **input/ui_text_clear_carets_and_selection**
  3306. If there's only one caret active and with a selection, clears the selection.
  3307. In case there's more than one caret active, removes the secondary carets and clears their selections.
  3308. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3309. .. rst-class:: classref-item-separator
  3310. ----
  3311. .. _class_ProjectSettings_property_input/ui_text_completion_accept:
  3312. .. rst-class:: classref-property
  3313. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_accept**
  3314. Default :ref:`InputEventAction<class_InputEventAction>` to accept an autocompetion hint.
  3315. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3316. .. rst-class:: classref-item-separator
  3317. ----
  3318. .. _class_ProjectSettings_property_input/ui_text_completion_query:
  3319. .. rst-class:: classref-property
  3320. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_query**
  3321. Default :ref:`InputEventAction<class_InputEventAction>` to request autocompetion.
  3322. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3323. .. rst-class:: classref-item-separator
  3324. ----
  3325. .. _class_ProjectSettings_property_input/ui_text_completion_replace:
  3326. .. rst-class:: classref-property
  3327. :ref:`Dictionary<class_Dictionary>` **input/ui_text_completion_replace**
  3328. Default :ref:`InputEventAction<class_InputEventAction>` to accept an autocompetion hint, replacing existing text.
  3329. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3330. .. rst-class:: classref-item-separator
  3331. ----
  3332. .. _class_ProjectSettings_property_input/ui_text_dedent:
  3333. .. rst-class:: classref-property
  3334. :ref:`Dictionary<class_Dictionary>` **input/ui_text_dedent**
  3335. Default :ref:`InputEventAction<class_InputEventAction>` to unindent text.
  3336. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3337. .. rst-class:: classref-item-separator
  3338. ----
  3339. .. _class_ProjectSettings_property_input/ui_text_delete:
  3340. .. rst-class:: classref-property
  3341. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete**
  3342. Default :ref:`InputEventAction<class_InputEventAction>` to delete the character after the text cursor.
  3343. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3344. .. rst-class:: classref-item-separator
  3345. ----
  3346. .. _class_ProjectSettings_property_input/ui_text_delete_all_to_right:
  3347. .. rst-class:: classref-property
  3348. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_all_to_right**
  3349. Default :ref:`InputEventAction<class_InputEventAction>` to delete **all** text after the text cursor.
  3350. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3351. .. rst-class:: classref-item-separator
  3352. ----
  3353. .. _class_ProjectSettings_property_input/ui_text_delete_all_to_right.macos:
  3354. .. rst-class:: classref-property
  3355. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_all_to_right.macos**
  3356. macOS specific override for the shortcut to delete all text after the text cursor.
  3357. .. rst-class:: classref-item-separator
  3358. ----
  3359. .. _class_ProjectSettings_property_input/ui_text_delete_word:
  3360. .. rst-class:: classref-property
  3361. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_word**
  3362. Default :ref:`InputEventAction<class_InputEventAction>` to delete all characters after the cursor up until a whitespace or punctuation character.
  3363. \ **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.
  3364. .. rst-class:: classref-item-separator
  3365. ----
  3366. .. _class_ProjectSettings_property_input/ui_text_delete_word.macos:
  3367. .. rst-class:: classref-property
  3368. :ref:`Dictionary<class_Dictionary>` **input/ui_text_delete_word.macos**
  3369. macOS specific override for the shortcut to delete a word after the text cursor.
  3370. .. rst-class:: classref-item-separator
  3371. ----
  3372. .. _class_ProjectSettings_property_input/ui_text_indent:
  3373. .. rst-class:: classref-property
  3374. :ref:`Dictionary<class_Dictionary>` **input/ui_text_indent**
  3375. Default :ref:`InputEventAction<class_InputEventAction>` to indent the current line.
  3376. \ **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.
  3377. .. rst-class:: classref-item-separator
  3378. ----
  3379. .. _class_ProjectSettings_property_input/ui_text_newline:
  3380. .. rst-class:: classref-property
  3381. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline**
  3382. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line at the position of the text cursor.
  3383. \ **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.
  3384. .. rst-class:: classref-item-separator
  3385. ----
  3386. .. _class_ProjectSettings_property_input/ui_text_newline_above:
  3387. .. rst-class:: classref-property
  3388. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline_above**
  3389. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line before the current one.
  3390. \ **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.
  3391. .. rst-class:: classref-item-separator
  3392. ----
  3393. .. _class_ProjectSettings_property_input/ui_text_newline_blank:
  3394. .. rst-class:: classref-property
  3395. :ref:`Dictionary<class_Dictionary>` **input/ui_text_newline_blank**
  3396. Default :ref:`InputEventAction<class_InputEventAction>` to insert a new line after the current one.
  3397. \ **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.
  3398. .. rst-class:: classref-item-separator
  3399. ----
  3400. .. _class_ProjectSettings_property_input/ui_text_scroll_down:
  3401. .. rst-class:: classref-property
  3402. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_down**
  3403. Default :ref:`InputEventAction<class_InputEventAction>` to scroll down one line of text.
  3404. \ **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.
  3405. .. rst-class:: classref-item-separator
  3406. ----
  3407. .. _class_ProjectSettings_property_input/ui_text_scroll_down.macos:
  3408. .. rst-class:: classref-property
  3409. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_down.macos**
  3410. macOS specific override for the shortcut to scroll down one line.
  3411. .. rst-class:: classref-item-separator
  3412. ----
  3413. .. _class_ProjectSettings_property_input/ui_text_scroll_up:
  3414. .. rst-class:: classref-property
  3415. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_up**
  3416. Default :ref:`InputEventAction<class_InputEventAction>` to scroll up one line of text.
  3417. \ **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.
  3418. .. rst-class:: classref-item-separator
  3419. ----
  3420. .. _class_ProjectSettings_property_input/ui_text_scroll_up.macos:
  3421. .. rst-class:: classref-property
  3422. :ref:`Dictionary<class_Dictionary>` **input/ui_text_scroll_up.macos**
  3423. macOS specific override for the shortcut to scroll up one line.
  3424. .. rst-class:: classref-item-separator
  3425. ----
  3426. .. _class_ProjectSettings_property_input/ui_text_select_all:
  3427. .. rst-class:: classref-property
  3428. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_all**
  3429. Default :ref:`InputEventAction<class_InputEventAction>` to select all text.
  3430. \ **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.
  3431. .. rst-class:: classref-item-separator
  3432. ----
  3433. .. _class_ProjectSettings_property_input/ui_text_select_word_under_caret:
  3434. .. rst-class:: classref-property
  3435. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_word_under_caret**
  3436. 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.
  3437. \ **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.
  3438. .. rst-class:: classref-item-separator
  3439. ----
  3440. .. _class_ProjectSettings_property_input/ui_text_select_word_under_caret.macos:
  3441. .. rst-class:: classref-property
  3442. :ref:`Dictionary<class_Dictionary>` **input/ui_text_select_word_under_caret.macos**
  3443. macOS specific override for the shortcut to select the word currently under the caret.
  3444. .. rst-class:: classref-item-separator
  3445. ----
  3446. .. _class_ProjectSettings_property_input/ui_text_submit:
  3447. .. rst-class:: classref-property
  3448. :ref:`Dictionary<class_Dictionary>` **input/ui_text_submit**
  3449. Default :ref:`InputEventAction<class_InputEventAction>` to submit a text field.
  3450. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3451. .. rst-class:: classref-item-separator
  3452. ----
  3453. .. _class_ProjectSettings_property_input/ui_text_toggle_insert_mode:
  3454. .. rst-class:: classref-property
  3455. :ref:`Dictionary<class_Dictionary>` **input/ui_text_toggle_insert_mode**
  3456. 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.
  3457. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3458. .. rst-class:: classref-item-separator
  3459. ----
  3460. .. _class_ProjectSettings_property_input/ui_undo:
  3461. .. rst-class:: classref-property
  3462. :ref:`Dictionary<class_Dictionary>` **input/ui_undo**
  3463. Default :ref:`InputEventAction<class_InputEventAction>` to undo the most recent action.
  3464. \ **Note:** Default ``ui_*`` actions cannot be removed as they are necessary for the internal logic of several :ref:`Control<class_Control>`\ s. The events assigned to the action can however be modified.
  3465. .. rst-class:: classref-item-separator
  3466. ----
  3467. .. _class_ProjectSettings_property_input/ui_up:
  3468. .. rst-class:: classref-property
  3469. :ref:`Dictionary<class_Dictionary>` **input/ui_up**
  3470. Default :ref:`InputEventAction<class_InputEventAction>` to move up in the UI.
  3471. \ **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.
  3472. .. rst-class:: classref-item-separator
  3473. ----
  3474. .. _class_ProjectSettings_property_input_devices/buffering/agile_event_flushing:
  3475. .. rst-class:: classref-property
  3476. :ref:`bool<class_bool>` **input_devices/buffering/agile_event_flushing** = ``false``
  3477. If ``true``, key/touch/joystick events will be flushed just before every idle and physics frame.
  3478. If ``false``, such events will be flushed only once per process frame, between iterations of the engine.
  3479. 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.
  3480. \ **Note:** Currently implemented only on Android.
  3481. .. rst-class:: classref-item-separator
  3482. ----
  3483. .. _class_ProjectSettings_property_input_devices/compatibility/legacy_just_pressed_behavior:
  3484. .. rst-class:: classref-property
  3485. :ref:`bool<class_bool>` **input_devices/compatibility/legacy_just_pressed_behavior** = ``false``
  3486. 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.
  3487. If ``false``, no input will be lost.
  3488. \ **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.
  3489. .. rst-class:: classref-item-separator
  3490. ----
  3491. .. _class_ProjectSettings_property_input_devices/pen_tablet/driver:
  3492. .. rst-class:: classref-property
  3493. :ref:`String<class_String>` **input_devices/pen_tablet/driver**
  3494. Specifies the tablet driver to use. If left empty, the default driver will be used.
  3495. \ **Note:** The driver in use can be overridden at runtime via the ``--tablet-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3496. .. rst-class:: classref-item-separator
  3497. ----
  3498. .. _class_ProjectSettings_property_input_devices/pen_tablet/driver.windows:
  3499. .. rst-class:: classref-property
  3500. :ref:`String<class_String>` **input_devices/pen_tablet/driver.windows**
  3501. Override for :ref:`input_devices/pen_tablet/driver<class_ProjectSettings_property_input_devices/pen_tablet/driver>` on Windows.
  3502. .. rst-class:: classref-item-separator
  3503. ----
  3504. .. _class_ProjectSettings_property_input_devices/pointing/emulate_mouse_from_touch:
  3505. .. rst-class:: classref-property
  3506. :ref:`bool<class_bool>` **input_devices/pointing/emulate_mouse_from_touch** = ``true``
  3507. If ``true``, sends mouse input events when tapping or swiping on the touchscreen.
  3508. .. rst-class:: classref-item-separator
  3509. ----
  3510. .. _class_ProjectSettings_property_input_devices/pointing/emulate_touch_from_mouse:
  3511. .. rst-class:: classref-property
  3512. :ref:`bool<class_bool>` **input_devices/pointing/emulate_touch_from_mouse** = ``false``
  3513. If ``true``, sends touch input events when clicking or dragging the mouse.
  3514. .. rst-class:: classref-item-separator
  3515. ----
  3516. .. _class_ProjectSettings_property_internationalization/locale/fallback:
  3517. .. rst-class:: classref-property
  3518. :ref:`String<class_String>` **internationalization/locale/fallback** = ``"en"``
  3519. The locale to fall back to if a translation isn't available in a given language. If left empty, ``en`` (English) will be used.
  3520. .. rst-class:: classref-item-separator
  3521. ----
  3522. .. _class_ProjectSettings_property_internationalization/locale/include_text_server_data:
  3523. .. rst-class:: classref-property
  3524. :ref:`bool<class_bool>` **internationalization/locale/include_text_server_data** = ``false``
  3525. If ``true``, text server break iteration rule sets, dictionaries and other optional data are included in the exported project.
  3526. \ **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.
  3527. \ **Note:** "Fallback" text server does not use additional data.
  3528. .. rst-class:: classref-item-separator
  3529. ----
  3530. .. _class_ProjectSettings_property_internationalization/locale/test:
  3531. .. rst-class:: classref-property
  3532. :ref:`String<class_String>` **internationalization/locale/test** = ``""``
  3533. If non-empty, this locale will be used when running the project from the editor.
  3534. .. rst-class:: classref-item-separator
  3535. ----
  3536. .. _class_ProjectSettings_property_internationalization/pseudolocalization/double_vowels:
  3537. .. rst-class:: classref-property
  3538. :ref:`bool<class_bool>` **internationalization/pseudolocalization/double_vowels** = ``false``
  3539. Double vowels in strings during pseudolocalization to simulate the lengthening of text due to localization.
  3540. .. rst-class:: classref-item-separator
  3541. ----
  3542. .. _class_ProjectSettings_property_internationalization/pseudolocalization/expansion_ratio:
  3543. .. rst-class:: classref-property
  3544. :ref:`float<class_float>` **internationalization/pseudolocalization/expansion_ratio** = ``0.0``
  3545. 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%.
  3546. .. rst-class:: classref-item-separator
  3547. ----
  3548. .. _class_ProjectSettings_property_internationalization/pseudolocalization/fake_bidi:
  3549. .. rst-class:: classref-property
  3550. :ref:`bool<class_bool>` **internationalization/pseudolocalization/fake_bidi** = ``false``
  3551. 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.
  3552. .. rst-class:: classref-item-separator
  3553. ----
  3554. .. _class_ProjectSettings_property_internationalization/pseudolocalization/override:
  3555. .. rst-class:: classref-property
  3556. :ref:`bool<class_bool>` **internationalization/pseudolocalization/override** = ``false``
  3557. Replace all characters in the string with ``*``. Useful for finding non-localizable strings.
  3558. .. rst-class:: classref-item-separator
  3559. ----
  3560. .. _class_ProjectSettings_property_internationalization/pseudolocalization/prefix:
  3561. .. rst-class:: classref-property
  3562. :ref:`String<class_String>` **internationalization/pseudolocalization/prefix** = ``"["``
  3563. Prefix that will be prepended to the pseudolocalized string.
  3564. .. rst-class:: classref-item-separator
  3565. ----
  3566. .. _class_ProjectSettings_property_internationalization/pseudolocalization/replace_with_accents:
  3567. .. rst-class:: classref-property
  3568. :ref:`bool<class_bool>` **internationalization/pseudolocalization/replace_with_accents** = ``true``
  3569. Replace all characters with their accented variants during pseudolocalization.
  3570. .. rst-class:: classref-item-separator
  3571. ----
  3572. .. _class_ProjectSettings_property_internationalization/pseudolocalization/skip_placeholders:
  3573. .. rst-class:: classref-property
  3574. :ref:`bool<class_bool>` **internationalization/pseudolocalization/skip_placeholders** = ``true``
  3575. Skip placeholders for string formatting like ``%s`` or ``%f`` during pseudolocalization. Useful to identify strings which need additional control characters to display correctly.
  3576. .. rst-class:: classref-item-separator
  3577. ----
  3578. .. _class_ProjectSettings_property_internationalization/pseudolocalization/suffix:
  3579. .. rst-class:: classref-property
  3580. :ref:`String<class_String>` **internationalization/pseudolocalization/suffix** = ``"]"``
  3581. Suffix that will be appended to the pseudolocalized string.
  3582. .. rst-class:: classref-item-separator
  3583. ----
  3584. .. _class_ProjectSettings_property_internationalization/pseudolocalization/use_pseudolocalization:
  3585. .. rst-class:: classref-property
  3586. :ref:`bool<class_bool>` **internationalization/pseudolocalization/use_pseudolocalization** = ``false``
  3587. 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.
  3588. \ **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.
  3589. .. rst-class:: classref-item-separator
  3590. ----
  3591. .. _class_ProjectSettings_property_internationalization/rendering/force_right_to_left_layout_direction:
  3592. .. rst-class:: classref-property
  3593. :ref:`bool<class_bool>` **internationalization/rendering/force_right_to_left_layout_direction** = ``false``
  3594. Force layout direction and text writing direction to RTL for all controls.
  3595. .. rst-class:: classref-item-separator
  3596. ----
  3597. .. _class_ProjectSettings_property_internationalization/rendering/root_node_layout_direction:
  3598. .. rst-class:: classref-property
  3599. :ref:`int<class_int>` **internationalization/rendering/root_node_layout_direction** = ``0``
  3600. Root node default layout direction.
  3601. .. rst-class:: classref-item-separator
  3602. ----
  3603. .. _class_ProjectSettings_property_internationalization/rendering/text_driver:
  3604. .. rst-class:: classref-property
  3605. :ref:`String<class_String>` **internationalization/rendering/text_driver** = ``""``
  3606. Specifies the :ref:`TextServer<class_TextServer>` to use. If left empty, the default will be used.
  3607. "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.
  3608. \ **Note:** The driver in use can be overridden at runtime via the ``--text-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  3609. \ **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>`.
  3610. .. rst-class:: classref-item-separator
  3611. ----
  3612. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_1:
  3613. .. rst-class:: classref-property
  3614. :ref:`String<class_String>` **layer_names/2d_navigation/layer_1** = ``""``
  3615. Optional name for the 2D navigation layer 1. If left empty, the layer will display as "Layer 1".
  3616. .. rst-class:: classref-item-separator
  3617. ----
  3618. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_2:
  3619. .. rst-class:: classref-property
  3620. :ref:`String<class_String>` **layer_names/2d_navigation/layer_2** = ``""``
  3621. Optional name for the 2D navigation layer 2. If left empty, the layer will display as "Layer 2".
  3622. .. rst-class:: classref-item-separator
  3623. ----
  3624. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_3:
  3625. .. rst-class:: classref-property
  3626. :ref:`String<class_String>` **layer_names/2d_navigation/layer_3** = ``""``
  3627. Optional name for the 2D navigation layer 3. If left empty, the layer will display as "Layer 3".
  3628. .. rst-class:: classref-item-separator
  3629. ----
  3630. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_4:
  3631. .. rst-class:: classref-property
  3632. :ref:`String<class_String>` **layer_names/2d_navigation/layer_4** = ``""``
  3633. Optional name for the 2D navigation layer 4. If left empty, the layer will display as "Layer 4".
  3634. .. rst-class:: classref-item-separator
  3635. ----
  3636. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_5:
  3637. .. rst-class:: classref-property
  3638. :ref:`String<class_String>` **layer_names/2d_navigation/layer_5** = ``""``
  3639. Optional name for the 2D navigation layer 5. If left empty, the layer will display as "Layer 5".
  3640. .. rst-class:: classref-item-separator
  3641. ----
  3642. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_6:
  3643. .. rst-class:: classref-property
  3644. :ref:`String<class_String>` **layer_names/2d_navigation/layer_6** = ``""``
  3645. Optional name for the 2D navigation layer 6. If left empty, the layer will display as "Layer 6".
  3646. .. rst-class:: classref-item-separator
  3647. ----
  3648. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_7:
  3649. .. rst-class:: classref-property
  3650. :ref:`String<class_String>` **layer_names/2d_navigation/layer_7** = ``""``
  3651. Optional name for the 2D navigation layer 7. If left empty, the layer will display as "Layer 7".
  3652. .. rst-class:: classref-item-separator
  3653. ----
  3654. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_8:
  3655. .. rst-class:: classref-property
  3656. :ref:`String<class_String>` **layer_names/2d_navigation/layer_8** = ``""``
  3657. Optional name for the 2D navigation layer 8. If left empty, the layer will display as "Layer 8".
  3658. .. rst-class:: classref-item-separator
  3659. ----
  3660. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_9:
  3661. .. rst-class:: classref-property
  3662. :ref:`String<class_String>` **layer_names/2d_navigation/layer_9** = ``""``
  3663. Optional name for the 2D navigation layer 9. If left empty, the layer will display as "Layer 9".
  3664. .. rst-class:: classref-item-separator
  3665. ----
  3666. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_10:
  3667. .. rst-class:: classref-property
  3668. :ref:`String<class_String>` **layer_names/2d_navigation/layer_10** = ``""``
  3669. Optional name for the 2D navigation layer 10. If left empty, the layer will display as "Layer 10".
  3670. .. rst-class:: classref-item-separator
  3671. ----
  3672. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_11:
  3673. .. rst-class:: classref-property
  3674. :ref:`String<class_String>` **layer_names/2d_navigation/layer_11** = ``""``
  3675. Optional name for the 2D navigation layer 11. If left empty, the layer will display as "Layer 11".
  3676. .. rst-class:: classref-item-separator
  3677. ----
  3678. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_12:
  3679. .. rst-class:: classref-property
  3680. :ref:`String<class_String>` **layer_names/2d_navigation/layer_12** = ``""``
  3681. Optional name for the 2D navigation layer 12. If left empty, the layer will display as "Layer 12".
  3682. .. rst-class:: classref-item-separator
  3683. ----
  3684. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_13:
  3685. .. rst-class:: classref-property
  3686. :ref:`String<class_String>` **layer_names/2d_navigation/layer_13** = ``""``
  3687. Optional name for the 2D navigation layer 13. If left empty, the layer will display as "Layer 13".
  3688. .. rst-class:: classref-item-separator
  3689. ----
  3690. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_14:
  3691. .. rst-class:: classref-property
  3692. :ref:`String<class_String>` **layer_names/2d_navigation/layer_14** = ``""``
  3693. Optional name for the 2D navigation layer 14. If left empty, the layer will display as "Layer 14".
  3694. .. rst-class:: classref-item-separator
  3695. ----
  3696. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_15:
  3697. .. rst-class:: classref-property
  3698. :ref:`String<class_String>` **layer_names/2d_navigation/layer_15** = ``""``
  3699. Optional name for the 2D navigation layer 15. If left empty, the layer will display as "Layer 15".
  3700. .. rst-class:: classref-item-separator
  3701. ----
  3702. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_16:
  3703. .. rst-class:: classref-property
  3704. :ref:`String<class_String>` **layer_names/2d_navigation/layer_16** = ``""``
  3705. Optional name for the 2D navigation layer 16. If left empty, the layer will display as "Layer 16".
  3706. .. rst-class:: classref-item-separator
  3707. ----
  3708. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_17:
  3709. .. rst-class:: classref-property
  3710. :ref:`String<class_String>` **layer_names/2d_navigation/layer_17** = ``""``
  3711. Optional name for the 2D navigation layer 17. If left empty, the layer will display as "Layer 17".
  3712. .. rst-class:: classref-item-separator
  3713. ----
  3714. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_18:
  3715. .. rst-class:: classref-property
  3716. :ref:`String<class_String>` **layer_names/2d_navigation/layer_18** = ``""``
  3717. Optional name for the 2D navigation layer 18. If left empty, the layer will display as "Layer 18".
  3718. .. rst-class:: classref-item-separator
  3719. ----
  3720. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_19:
  3721. .. rst-class:: classref-property
  3722. :ref:`String<class_String>` **layer_names/2d_navigation/layer_19** = ``""``
  3723. Optional name for the 2D navigation layer 19. If left empty, the layer will display as "Layer 19".
  3724. .. rst-class:: classref-item-separator
  3725. ----
  3726. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_20:
  3727. .. rst-class:: classref-property
  3728. :ref:`String<class_String>` **layer_names/2d_navigation/layer_20** = ``""``
  3729. Optional name for the 2D navigation layer 20. If left empty, the layer will display as "Layer 20".
  3730. .. rst-class:: classref-item-separator
  3731. ----
  3732. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_21:
  3733. .. rst-class:: classref-property
  3734. :ref:`String<class_String>` **layer_names/2d_navigation/layer_21** = ``""``
  3735. Optional name for the 2D navigation layer 21. If left empty, the layer will display as "Layer 21".
  3736. .. rst-class:: classref-item-separator
  3737. ----
  3738. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_22:
  3739. .. rst-class:: classref-property
  3740. :ref:`String<class_String>` **layer_names/2d_navigation/layer_22** = ``""``
  3741. Optional name for the 2D navigation layer 22. If left empty, the layer will display as "Layer 22".
  3742. .. rst-class:: classref-item-separator
  3743. ----
  3744. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_23:
  3745. .. rst-class:: classref-property
  3746. :ref:`String<class_String>` **layer_names/2d_navigation/layer_23** = ``""``
  3747. Optional name for the 2D navigation layer 23. If left empty, the layer will display as "Layer 23".
  3748. .. rst-class:: classref-item-separator
  3749. ----
  3750. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_24:
  3751. .. rst-class:: classref-property
  3752. :ref:`String<class_String>` **layer_names/2d_navigation/layer_24** = ``""``
  3753. Optional name for the 2D navigation layer 24. If left empty, the layer will display as "Layer 24".
  3754. .. rst-class:: classref-item-separator
  3755. ----
  3756. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_25:
  3757. .. rst-class:: classref-property
  3758. :ref:`String<class_String>` **layer_names/2d_navigation/layer_25** = ``""``
  3759. Optional name for the 2D navigation layer 25. If left empty, the layer will display as "Layer 25".
  3760. .. rst-class:: classref-item-separator
  3761. ----
  3762. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_26:
  3763. .. rst-class:: classref-property
  3764. :ref:`String<class_String>` **layer_names/2d_navigation/layer_26** = ``""``
  3765. Optional name for the 2D navigation layer 26. If left empty, the layer will display as "Layer 26".
  3766. .. rst-class:: classref-item-separator
  3767. ----
  3768. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_27:
  3769. .. rst-class:: classref-property
  3770. :ref:`String<class_String>` **layer_names/2d_navigation/layer_27** = ``""``
  3771. Optional name for the 2D navigation layer 27. If left empty, the layer will display as "Layer 27".
  3772. .. rst-class:: classref-item-separator
  3773. ----
  3774. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_28:
  3775. .. rst-class:: classref-property
  3776. :ref:`String<class_String>` **layer_names/2d_navigation/layer_28** = ``""``
  3777. Optional name for the 2D navigation layer 28. If left empty, the layer will display as "Layer 28".
  3778. .. rst-class:: classref-item-separator
  3779. ----
  3780. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_29:
  3781. .. rst-class:: classref-property
  3782. :ref:`String<class_String>` **layer_names/2d_navigation/layer_29** = ``""``
  3783. Optional name for the 2D navigation layer 29. If left empty, the layer will display as "Layer 29".
  3784. .. rst-class:: classref-item-separator
  3785. ----
  3786. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_30:
  3787. .. rst-class:: classref-property
  3788. :ref:`String<class_String>` **layer_names/2d_navigation/layer_30** = ``""``
  3789. Optional name for the 2D navigation layer 30. If left empty, the layer will display as "Layer 30".
  3790. .. rst-class:: classref-item-separator
  3791. ----
  3792. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_31:
  3793. .. rst-class:: classref-property
  3794. :ref:`String<class_String>` **layer_names/2d_navigation/layer_31** = ``""``
  3795. Optional name for the 2D navigation layer 31. If left empty, the layer will display as "Layer 31".
  3796. .. rst-class:: classref-item-separator
  3797. ----
  3798. .. _class_ProjectSettings_property_layer_names/2d_navigation/layer_32:
  3799. .. rst-class:: classref-property
  3800. :ref:`String<class_String>` **layer_names/2d_navigation/layer_32** = ``""``
  3801. Optional name for the 2D navigation layer 32. If left empty, the layer will display as "Layer 32".
  3802. .. rst-class:: classref-item-separator
  3803. ----
  3804. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_1:
  3805. .. rst-class:: classref-property
  3806. :ref:`String<class_String>` **layer_names/2d_physics/layer_1** = ``""``
  3807. Optional name for the 2D physics layer 1. If left empty, the layer will display as "Layer 1".
  3808. .. rst-class:: classref-item-separator
  3809. ----
  3810. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_2:
  3811. .. rst-class:: classref-property
  3812. :ref:`String<class_String>` **layer_names/2d_physics/layer_2** = ``""``
  3813. Optional name for the 2D physics layer 2. If left empty, the layer will display as "Layer 2".
  3814. .. rst-class:: classref-item-separator
  3815. ----
  3816. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_3:
  3817. .. rst-class:: classref-property
  3818. :ref:`String<class_String>` **layer_names/2d_physics/layer_3** = ``""``
  3819. Optional name for the 2D physics layer 3. If left empty, the layer will display as "Layer 3".
  3820. .. rst-class:: classref-item-separator
  3821. ----
  3822. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_4:
  3823. .. rst-class:: classref-property
  3824. :ref:`String<class_String>` **layer_names/2d_physics/layer_4** = ``""``
  3825. Optional name for the 2D physics layer 4. If left empty, the layer will display as "Layer 4".
  3826. .. rst-class:: classref-item-separator
  3827. ----
  3828. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_5:
  3829. .. rst-class:: classref-property
  3830. :ref:`String<class_String>` **layer_names/2d_physics/layer_5** = ``""``
  3831. Optional name for the 2D physics layer 5. If left empty, the layer will display as "Layer 5".
  3832. .. rst-class:: classref-item-separator
  3833. ----
  3834. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_6:
  3835. .. rst-class:: classref-property
  3836. :ref:`String<class_String>` **layer_names/2d_physics/layer_6** = ``""``
  3837. Optional name for the 2D physics layer 6. If left empty, the layer will display as "Layer 6".
  3838. .. rst-class:: classref-item-separator
  3839. ----
  3840. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_7:
  3841. .. rst-class:: classref-property
  3842. :ref:`String<class_String>` **layer_names/2d_physics/layer_7** = ``""``
  3843. Optional name for the 2D physics layer 7. If left empty, the layer will display as "Layer 7".
  3844. .. rst-class:: classref-item-separator
  3845. ----
  3846. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_8:
  3847. .. rst-class:: classref-property
  3848. :ref:`String<class_String>` **layer_names/2d_physics/layer_8** = ``""``
  3849. Optional name for the 2D physics layer 8. If left empty, the layer will display as "Layer 8".
  3850. .. rst-class:: classref-item-separator
  3851. ----
  3852. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_9:
  3853. .. rst-class:: classref-property
  3854. :ref:`String<class_String>` **layer_names/2d_physics/layer_9** = ``""``
  3855. Optional name for the 2D physics layer 9. If left empty, the layer will display as "Layer 9".
  3856. .. rst-class:: classref-item-separator
  3857. ----
  3858. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_10:
  3859. .. rst-class:: classref-property
  3860. :ref:`String<class_String>` **layer_names/2d_physics/layer_10** = ``""``
  3861. Optional name for the 2D physics layer 10. If left empty, the layer will display as "Layer 10".
  3862. .. rst-class:: classref-item-separator
  3863. ----
  3864. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_11:
  3865. .. rst-class:: classref-property
  3866. :ref:`String<class_String>` **layer_names/2d_physics/layer_11** = ``""``
  3867. Optional name for the 2D physics layer 11. If left empty, the layer will display as "Layer 11".
  3868. .. rst-class:: classref-item-separator
  3869. ----
  3870. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_12:
  3871. .. rst-class:: classref-property
  3872. :ref:`String<class_String>` **layer_names/2d_physics/layer_12** = ``""``
  3873. Optional name for the 2D physics layer 12. If left empty, the layer will display as "Layer 12".
  3874. .. rst-class:: classref-item-separator
  3875. ----
  3876. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_13:
  3877. .. rst-class:: classref-property
  3878. :ref:`String<class_String>` **layer_names/2d_physics/layer_13** = ``""``
  3879. Optional name for the 2D physics layer 13. If left empty, the layer will display as "Layer 13".
  3880. .. rst-class:: classref-item-separator
  3881. ----
  3882. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_14:
  3883. .. rst-class:: classref-property
  3884. :ref:`String<class_String>` **layer_names/2d_physics/layer_14** = ``""``
  3885. Optional name for the 2D physics layer 14. If left empty, the layer will display as "Layer 14".
  3886. .. rst-class:: classref-item-separator
  3887. ----
  3888. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_15:
  3889. .. rst-class:: classref-property
  3890. :ref:`String<class_String>` **layer_names/2d_physics/layer_15** = ``""``
  3891. Optional name for the 2D physics layer 15. If left empty, the layer will display as "Layer 15".
  3892. .. rst-class:: classref-item-separator
  3893. ----
  3894. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_16:
  3895. .. rst-class:: classref-property
  3896. :ref:`String<class_String>` **layer_names/2d_physics/layer_16** = ``""``
  3897. Optional name for the 2D physics layer 16. If left empty, the layer will display as "Layer 16".
  3898. .. rst-class:: classref-item-separator
  3899. ----
  3900. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_17:
  3901. .. rst-class:: classref-property
  3902. :ref:`String<class_String>` **layer_names/2d_physics/layer_17** = ``""``
  3903. Optional name for the 2D physics layer 17. If left empty, the layer will display as "Layer 17".
  3904. .. rst-class:: classref-item-separator
  3905. ----
  3906. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_18:
  3907. .. rst-class:: classref-property
  3908. :ref:`String<class_String>` **layer_names/2d_physics/layer_18** = ``""``
  3909. Optional name for the 2D physics layer 18. If left empty, the layer will display as "Layer 18".
  3910. .. rst-class:: classref-item-separator
  3911. ----
  3912. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_19:
  3913. .. rst-class:: classref-property
  3914. :ref:`String<class_String>` **layer_names/2d_physics/layer_19** = ``""``
  3915. Optional name for the 2D physics layer 19. If left empty, the layer will display as "Layer 19".
  3916. .. rst-class:: classref-item-separator
  3917. ----
  3918. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_20:
  3919. .. rst-class:: classref-property
  3920. :ref:`String<class_String>` **layer_names/2d_physics/layer_20** = ``""``
  3921. Optional name for the 2D physics layer 20. If left empty, the layer will display as "Layer 20".
  3922. .. rst-class:: classref-item-separator
  3923. ----
  3924. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_21:
  3925. .. rst-class:: classref-property
  3926. :ref:`String<class_String>` **layer_names/2d_physics/layer_21** = ``""``
  3927. Optional name for the 2D physics layer 21. If left empty, the layer will display as "Layer 21".
  3928. .. rst-class:: classref-item-separator
  3929. ----
  3930. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_22:
  3931. .. rst-class:: classref-property
  3932. :ref:`String<class_String>` **layer_names/2d_physics/layer_22** = ``""``
  3933. Optional name for the 2D physics layer 22. If left empty, the layer will display as "Layer 22".
  3934. .. rst-class:: classref-item-separator
  3935. ----
  3936. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_23:
  3937. .. rst-class:: classref-property
  3938. :ref:`String<class_String>` **layer_names/2d_physics/layer_23** = ``""``
  3939. Optional name for the 2D physics layer 23. If left empty, the layer will display as "Layer 23".
  3940. .. rst-class:: classref-item-separator
  3941. ----
  3942. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_24:
  3943. .. rst-class:: classref-property
  3944. :ref:`String<class_String>` **layer_names/2d_physics/layer_24** = ``""``
  3945. Optional name for the 2D physics layer 24. If left empty, the layer will display as "Layer 24".
  3946. .. rst-class:: classref-item-separator
  3947. ----
  3948. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_25:
  3949. .. rst-class:: classref-property
  3950. :ref:`String<class_String>` **layer_names/2d_physics/layer_25** = ``""``
  3951. Optional name for the 2D physics layer 25. If left empty, the layer will display as "Layer 25".
  3952. .. rst-class:: classref-item-separator
  3953. ----
  3954. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_26:
  3955. .. rst-class:: classref-property
  3956. :ref:`String<class_String>` **layer_names/2d_physics/layer_26** = ``""``
  3957. Optional name for the 2D physics layer 26. If left empty, the layer will display as "Layer 26".
  3958. .. rst-class:: classref-item-separator
  3959. ----
  3960. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_27:
  3961. .. rst-class:: classref-property
  3962. :ref:`String<class_String>` **layer_names/2d_physics/layer_27** = ``""``
  3963. Optional name for the 2D physics layer 27. If left empty, the layer will display as "Layer 27".
  3964. .. rst-class:: classref-item-separator
  3965. ----
  3966. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_28:
  3967. .. rst-class:: classref-property
  3968. :ref:`String<class_String>` **layer_names/2d_physics/layer_28** = ``""``
  3969. Optional name for the 2D physics layer 28. If left empty, the layer will display as "Layer 28".
  3970. .. rst-class:: classref-item-separator
  3971. ----
  3972. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_29:
  3973. .. rst-class:: classref-property
  3974. :ref:`String<class_String>` **layer_names/2d_physics/layer_29** = ``""``
  3975. Optional name for the 2D physics layer 29. If left empty, the layer will display as "Layer 29".
  3976. .. rst-class:: classref-item-separator
  3977. ----
  3978. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_30:
  3979. .. rst-class:: classref-property
  3980. :ref:`String<class_String>` **layer_names/2d_physics/layer_30** = ``""``
  3981. Optional name for the 2D physics layer 30. If left empty, the layer will display as "Layer 30".
  3982. .. rst-class:: classref-item-separator
  3983. ----
  3984. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_31:
  3985. .. rst-class:: classref-property
  3986. :ref:`String<class_String>` **layer_names/2d_physics/layer_31** = ``""``
  3987. Optional name for the 2D physics layer 31. If left empty, the layer will display as "Layer 31".
  3988. .. rst-class:: classref-item-separator
  3989. ----
  3990. .. _class_ProjectSettings_property_layer_names/2d_physics/layer_32:
  3991. .. rst-class:: classref-property
  3992. :ref:`String<class_String>` **layer_names/2d_physics/layer_32** = ``""``
  3993. Optional name for the 2D physics layer 32. If left empty, the layer will display as "Layer 32".
  3994. .. rst-class:: classref-item-separator
  3995. ----
  3996. .. _class_ProjectSettings_property_layer_names/2d_render/layer_1:
  3997. .. rst-class:: classref-property
  3998. :ref:`String<class_String>` **layer_names/2d_render/layer_1** = ``""``
  3999. Optional name for the 2D render layer 1. If left empty, the layer will display as "Layer 1".
  4000. .. rst-class:: classref-item-separator
  4001. ----
  4002. .. _class_ProjectSettings_property_layer_names/2d_render/layer_2:
  4003. .. rst-class:: classref-property
  4004. :ref:`String<class_String>` **layer_names/2d_render/layer_2** = ``""``
  4005. Optional name for the 2D render layer 2. If left empty, the layer will display as "Layer 2".
  4006. .. rst-class:: classref-item-separator
  4007. ----
  4008. .. _class_ProjectSettings_property_layer_names/2d_render/layer_3:
  4009. .. rst-class:: classref-property
  4010. :ref:`String<class_String>` **layer_names/2d_render/layer_3** = ``""``
  4011. Optional name for the 2D render layer 3. If left empty, the layer will display as "Layer 3".
  4012. .. rst-class:: classref-item-separator
  4013. ----
  4014. .. _class_ProjectSettings_property_layer_names/2d_render/layer_4:
  4015. .. rst-class:: classref-property
  4016. :ref:`String<class_String>` **layer_names/2d_render/layer_4** = ``""``
  4017. Optional name for the 2D render layer 4. If left empty, the layer will display as "Layer 4".
  4018. .. rst-class:: classref-item-separator
  4019. ----
  4020. .. _class_ProjectSettings_property_layer_names/2d_render/layer_5:
  4021. .. rst-class:: classref-property
  4022. :ref:`String<class_String>` **layer_names/2d_render/layer_5** = ``""``
  4023. Optional name for the 2D render layer 5. If left empty, the layer will display as "Layer 5".
  4024. .. rst-class:: classref-item-separator
  4025. ----
  4026. .. _class_ProjectSettings_property_layer_names/2d_render/layer_6:
  4027. .. rst-class:: classref-property
  4028. :ref:`String<class_String>` **layer_names/2d_render/layer_6** = ``""``
  4029. Optional name for the 2D render layer 6. If left empty, the layer will display as "Layer 6".
  4030. .. rst-class:: classref-item-separator
  4031. ----
  4032. .. _class_ProjectSettings_property_layer_names/2d_render/layer_7:
  4033. .. rst-class:: classref-property
  4034. :ref:`String<class_String>` **layer_names/2d_render/layer_7** = ``""``
  4035. Optional name for the 2D render layer 7. If left empty, the layer will display as "Layer 7".
  4036. .. rst-class:: classref-item-separator
  4037. ----
  4038. .. _class_ProjectSettings_property_layer_names/2d_render/layer_8:
  4039. .. rst-class:: classref-property
  4040. :ref:`String<class_String>` **layer_names/2d_render/layer_8** = ``""``
  4041. Optional name for the 2D render layer 8. If left empty, the layer will display as "Layer 8".
  4042. .. rst-class:: classref-item-separator
  4043. ----
  4044. .. _class_ProjectSettings_property_layer_names/2d_render/layer_9:
  4045. .. rst-class:: classref-property
  4046. :ref:`String<class_String>` **layer_names/2d_render/layer_9** = ``""``
  4047. Optional name for the 2D render layer 9. If left empty, the layer will display as "Layer 9".
  4048. .. rst-class:: classref-item-separator
  4049. ----
  4050. .. _class_ProjectSettings_property_layer_names/2d_render/layer_10:
  4051. .. rst-class:: classref-property
  4052. :ref:`String<class_String>` **layer_names/2d_render/layer_10** = ``""``
  4053. Optional name for the 2D render layer 10. If left empty, the layer will display as "Layer 10".
  4054. .. rst-class:: classref-item-separator
  4055. ----
  4056. .. _class_ProjectSettings_property_layer_names/2d_render/layer_11:
  4057. .. rst-class:: classref-property
  4058. :ref:`String<class_String>` **layer_names/2d_render/layer_11** = ``""``
  4059. Optional name for the 2D render layer 11. If left empty, the layer will display as "Layer 11".
  4060. .. rst-class:: classref-item-separator
  4061. ----
  4062. .. _class_ProjectSettings_property_layer_names/2d_render/layer_12:
  4063. .. rst-class:: classref-property
  4064. :ref:`String<class_String>` **layer_names/2d_render/layer_12** = ``""``
  4065. Optional name for the 2D render layer 12. If left empty, the layer will display as "Layer 12".
  4066. .. rst-class:: classref-item-separator
  4067. ----
  4068. .. _class_ProjectSettings_property_layer_names/2d_render/layer_13:
  4069. .. rst-class:: classref-property
  4070. :ref:`String<class_String>` **layer_names/2d_render/layer_13** = ``""``
  4071. Optional name for the 2D render layer 13. If left empty, the layer will display as "Layer 13".
  4072. .. rst-class:: classref-item-separator
  4073. ----
  4074. .. _class_ProjectSettings_property_layer_names/2d_render/layer_14:
  4075. .. rst-class:: classref-property
  4076. :ref:`String<class_String>` **layer_names/2d_render/layer_14** = ``""``
  4077. Optional name for the 2D render layer 14. If left empty, the layer will display as "Layer 14".
  4078. .. rst-class:: classref-item-separator
  4079. ----
  4080. .. _class_ProjectSettings_property_layer_names/2d_render/layer_15:
  4081. .. rst-class:: classref-property
  4082. :ref:`String<class_String>` **layer_names/2d_render/layer_15** = ``""``
  4083. Optional name for the 2D render layer 15. If left empty, the layer will display as "Layer 15".
  4084. .. rst-class:: classref-item-separator
  4085. ----
  4086. .. _class_ProjectSettings_property_layer_names/2d_render/layer_16:
  4087. .. rst-class:: classref-property
  4088. :ref:`String<class_String>` **layer_names/2d_render/layer_16** = ``""``
  4089. Optional name for the 2D render layer 16. If left empty, the layer will display as "Layer 16".
  4090. .. rst-class:: classref-item-separator
  4091. ----
  4092. .. _class_ProjectSettings_property_layer_names/2d_render/layer_17:
  4093. .. rst-class:: classref-property
  4094. :ref:`String<class_String>` **layer_names/2d_render/layer_17** = ``""``
  4095. Optional name for the 2D render layer 17. If left empty, the layer will display as "Layer 17".
  4096. .. rst-class:: classref-item-separator
  4097. ----
  4098. .. _class_ProjectSettings_property_layer_names/2d_render/layer_18:
  4099. .. rst-class:: classref-property
  4100. :ref:`String<class_String>` **layer_names/2d_render/layer_18** = ``""``
  4101. Optional name for the 2D render layer 18. If left empty, the layer will display as "Layer 18".
  4102. .. rst-class:: classref-item-separator
  4103. ----
  4104. .. _class_ProjectSettings_property_layer_names/2d_render/layer_19:
  4105. .. rst-class:: classref-property
  4106. :ref:`String<class_String>` **layer_names/2d_render/layer_19** = ``""``
  4107. Optional name for the 2D render layer 19. If left empty, the layer will display as "Layer 19".
  4108. .. rst-class:: classref-item-separator
  4109. ----
  4110. .. _class_ProjectSettings_property_layer_names/2d_render/layer_20:
  4111. .. rst-class:: classref-property
  4112. :ref:`String<class_String>` **layer_names/2d_render/layer_20** = ``""``
  4113. Optional name for the 2D render layer 20. If left empty, the layer will display as "Layer 20".
  4114. .. rst-class:: classref-item-separator
  4115. ----
  4116. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_1:
  4117. .. rst-class:: classref-property
  4118. :ref:`String<class_String>` **layer_names/3d_navigation/layer_1** = ``""``
  4119. Optional name for the 3D navigation layer 1. If left empty, the layer will display as "Layer 1".
  4120. .. rst-class:: classref-item-separator
  4121. ----
  4122. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_2:
  4123. .. rst-class:: classref-property
  4124. :ref:`String<class_String>` **layer_names/3d_navigation/layer_2** = ``""``
  4125. Optional name for the 3D navigation layer 2. If left empty, the layer will display as "Layer 2".
  4126. .. rst-class:: classref-item-separator
  4127. ----
  4128. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_3:
  4129. .. rst-class:: classref-property
  4130. :ref:`String<class_String>` **layer_names/3d_navigation/layer_3** = ``""``
  4131. Optional name for the 3D navigation layer 3. If left empty, the layer will display as "Layer 3".
  4132. .. rst-class:: classref-item-separator
  4133. ----
  4134. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_4:
  4135. .. rst-class:: classref-property
  4136. :ref:`String<class_String>` **layer_names/3d_navigation/layer_4** = ``""``
  4137. Optional name for the 3D navigation layer 4. If left empty, the layer will display as "Layer 4".
  4138. .. rst-class:: classref-item-separator
  4139. ----
  4140. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_5:
  4141. .. rst-class:: classref-property
  4142. :ref:`String<class_String>` **layer_names/3d_navigation/layer_5** = ``""``
  4143. Optional name for the 3D navigation layer 5. If left empty, the layer will display as "Layer 5".
  4144. .. rst-class:: classref-item-separator
  4145. ----
  4146. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_6:
  4147. .. rst-class:: classref-property
  4148. :ref:`String<class_String>` **layer_names/3d_navigation/layer_6** = ``""``
  4149. Optional name for the 3D navigation layer 6. If left empty, the layer will display as "Layer 6".
  4150. .. rst-class:: classref-item-separator
  4151. ----
  4152. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_7:
  4153. .. rst-class:: classref-property
  4154. :ref:`String<class_String>` **layer_names/3d_navigation/layer_7** = ``""``
  4155. Optional name for the 3D navigation layer 7. If left empty, the layer will display as "Layer 7".
  4156. .. rst-class:: classref-item-separator
  4157. ----
  4158. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_8:
  4159. .. rst-class:: classref-property
  4160. :ref:`String<class_String>` **layer_names/3d_navigation/layer_8** = ``""``
  4161. Optional name for the 3D navigation layer 8. If left empty, the layer will display as "Layer 8".
  4162. .. rst-class:: classref-item-separator
  4163. ----
  4164. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_9:
  4165. .. rst-class:: classref-property
  4166. :ref:`String<class_String>` **layer_names/3d_navigation/layer_9** = ``""``
  4167. Optional name for the 3D navigation layer 9. If left empty, the layer will display as "Layer 9".
  4168. .. rst-class:: classref-item-separator
  4169. ----
  4170. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_10:
  4171. .. rst-class:: classref-property
  4172. :ref:`String<class_String>` **layer_names/3d_navigation/layer_10** = ``""``
  4173. Optional name for the 3D navigation layer 10. If left empty, the layer will display as "Layer 10".
  4174. .. rst-class:: classref-item-separator
  4175. ----
  4176. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_11:
  4177. .. rst-class:: classref-property
  4178. :ref:`String<class_String>` **layer_names/3d_navigation/layer_11** = ``""``
  4179. Optional name for the 3D navigation layer 11. If left empty, the layer will display as "Layer 11".
  4180. .. rst-class:: classref-item-separator
  4181. ----
  4182. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_12:
  4183. .. rst-class:: classref-property
  4184. :ref:`String<class_String>` **layer_names/3d_navigation/layer_12** = ``""``
  4185. Optional name for the 3D navigation layer 12. If left empty, the layer will display as "Layer 12".
  4186. .. rst-class:: classref-item-separator
  4187. ----
  4188. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_13:
  4189. .. rst-class:: classref-property
  4190. :ref:`String<class_String>` **layer_names/3d_navigation/layer_13** = ``""``
  4191. Optional name for the 3D navigation layer 13. If left empty, the layer will display as "Layer 13".
  4192. .. rst-class:: classref-item-separator
  4193. ----
  4194. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_14:
  4195. .. rst-class:: classref-property
  4196. :ref:`String<class_String>` **layer_names/3d_navigation/layer_14** = ``""``
  4197. Optional name for the 3D navigation layer 14. If left empty, the layer will display as "Layer 14".
  4198. .. rst-class:: classref-item-separator
  4199. ----
  4200. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_15:
  4201. .. rst-class:: classref-property
  4202. :ref:`String<class_String>` **layer_names/3d_navigation/layer_15** = ``""``
  4203. Optional name for the 3D navigation layer 15. If left empty, the layer will display as "Layer 15".
  4204. .. rst-class:: classref-item-separator
  4205. ----
  4206. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_16:
  4207. .. rst-class:: classref-property
  4208. :ref:`String<class_String>` **layer_names/3d_navigation/layer_16** = ``""``
  4209. Optional name for the 3D navigation layer 16. If left empty, the layer will display as "Layer 16".
  4210. .. rst-class:: classref-item-separator
  4211. ----
  4212. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_17:
  4213. .. rst-class:: classref-property
  4214. :ref:`String<class_String>` **layer_names/3d_navigation/layer_17** = ``""``
  4215. Optional name for the 3D navigation layer 17. If left empty, the layer will display as "Layer 17".
  4216. .. rst-class:: classref-item-separator
  4217. ----
  4218. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_18:
  4219. .. rst-class:: classref-property
  4220. :ref:`String<class_String>` **layer_names/3d_navigation/layer_18** = ``""``
  4221. Optional name for the 3D navigation layer 18. If left empty, the layer will display as "Layer 18".
  4222. .. rst-class:: classref-item-separator
  4223. ----
  4224. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_19:
  4225. .. rst-class:: classref-property
  4226. :ref:`String<class_String>` **layer_names/3d_navigation/layer_19** = ``""``
  4227. Optional name for the 3D navigation layer 19. If left empty, the layer will display as "Layer 19".
  4228. .. rst-class:: classref-item-separator
  4229. ----
  4230. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_20:
  4231. .. rst-class:: classref-property
  4232. :ref:`String<class_String>` **layer_names/3d_navigation/layer_20** = ``""``
  4233. Optional name for the 3D navigation layer 20. If left empty, the layer will display as "Layer 20".
  4234. .. rst-class:: classref-item-separator
  4235. ----
  4236. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_21:
  4237. .. rst-class:: classref-property
  4238. :ref:`String<class_String>` **layer_names/3d_navigation/layer_21** = ``""``
  4239. Optional name for the 3D navigation layer 21. If left empty, the layer will display as "Layer 21".
  4240. .. rst-class:: classref-item-separator
  4241. ----
  4242. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_22:
  4243. .. rst-class:: classref-property
  4244. :ref:`String<class_String>` **layer_names/3d_navigation/layer_22** = ``""``
  4245. Optional name for the 3D navigation layer 22. If left empty, the layer will display as "Layer 22".
  4246. .. rst-class:: classref-item-separator
  4247. ----
  4248. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_23:
  4249. .. rst-class:: classref-property
  4250. :ref:`String<class_String>` **layer_names/3d_navigation/layer_23** = ``""``
  4251. Optional name for the 3D navigation layer 23. If left empty, the layer will display as "Layer 23".
  4252. .. rst-class:: classref-item-separator
  4253. ----
  4254. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_24:
  4255. .. rst-class:: classref-property
  4256. :ref:`String<class_String>` **layer_names/3d_navigation/layer_24** = ``""``
  4257. Optional name for the 3D navigation layer 24. If left empty, the layer will display as "Layer 24".
  4258. .. rst-class:: classref-item-separator
  4259. ----
  4260. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_25:
  4261. .. rst-class:: classref-property
  4262. :ref:`String<class_String>` **layer_names/3d_navigation/layer_25** = ``""``
  4263. Optional name for the 3D navigation layer 25. If left empty, the layer will display as "Layer 25".
  4264. .. rst-class:: classref-item-separator
  4265. ----
  4266. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_26:
  4267. .. rst-class:: classref-property
  4268. :ref:`String<class_String>` **layer_names/3d_navigation/layer_26** = ``""``
  4269. Optional name for the 3D navigation layer 26. If left empty, the layer will display as "Layer 26".
  4270. .. rst-class:: classref-item-separator
  4271. ----
  4272. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_27:
  4273. .. rst-class:: classref-property
  4274. :ref:`String<class_String>` **layer_names/3d_navigation/layer_27** = ``""``
  4275. Optional name for the 3D navigation layer 27. If left empty, the layer will display as "Layer 27".
  4276. .. rst-class:: classref-item-separator
  4277. ----
  4278. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_28:
  4279. .. rst-class:: classref-property
  4280. :ref:`String<class_String>` **layer_names/3d_navigation/layer_28** = ``""``
  4281. Optional name for the 3D navigation layer 28. If left empty, the layer will display as "Layer 28".
  4282. .. rst-class:: classref-item-separator
  4283. ----
  4284. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_29:
  4285. .. rst-class:: classref-property
  4286. :ref:`String<class_String>` **layer_names/3d_navigation/layer_29** = ``""``
  4287. Optional name for the 3D navigation layer 29. If left empty, the layer will display as "Layer 29".
  4288. .. rst-class:: classref-item-separator
  4289. ----
  4290. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_30:
  4291. .. rst-class:: classref-property
  4292. :ref:`String<class_String>` **layer_names/3d_navigation/layer_30** = ``""``
  4293. Optional name for the 3D navigation layer 30. If left empty, the layer will display as "Layer 30".
  4294. .. rst-class:: classref-item-separator
  4295. ----
  4296. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_31:
  4297. .. rst-class:: classref-property
  4298. :ref:`String<class_String>` **layer_names/3d_navigation/layer_31** = ``""``
  4299. Optional name for the 3D navigation layer 31. If left empty, the layer will display as "Layer 31".
  4300. .. rst-class:: classref-item-separator
  4301. ----
  4302. .. _class_ProjectSettings_property_layer_names/3d_navigation/layer_32:
  4303. .. rst-class:: classref-property
  4304. :ref:`String<class_String>` **layer_names/3d_navigation/layer_32** = ``""``
  4305. Optional name for the 3D navigation layer 32. If left empty, the layer will display as "Layer 32".
  4306. .. rst-class:: classref-item-separator
  4307. ----
  4308. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_1:
  4309. .. rst-class:: classref-property
  4310. :ref:`String<class_String>` **layer_names/3d_physics/layer_1** = ``""``
  4311. Optional name for the 3D physics layer 1. If left empty, the layer will display as "Layer 1".
  4312. .. rst-class:: classref-item-separator
  4313. ----
  4314. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_2:
  4315. .. rst-class:: classref-property
  4316. :ref:`String<class_String>` **layer_names/3d_physics/layer_2** = ``""``
  4317. Optional name for the 3D physics layer 2. If left empty, the layer will display as "Layer 2".
  4318. .. rst-class:: classref-item-separator
  4319. ----
  4320. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_3:
  4321. .. rst-class:: classref-property
  4322. :ref:`String<class_String>` **layer_names/3d_physics/layer_3** = ``""``
  4323. Optional name for the 3D physics layer 3. If left empty, the layer will display as "Layer 3".
  4324. .. rst-class:: classref-item-separator
  4325. ----
  4326. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_4:
  4327. .. rst-class:: classref-property
  4328. :ref:`String<class_String>` **layer_names/3d_physics/layer_4** = ``""``
  4329. Optional name for the 3D physics layer 4. If left empty, the layer will display as "Layer 4".
  4330. .. rst-class:: classref-item-separator
  4331. ----
  4332. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_5:
  4333. .. rst-class:: classref-property
  4334. :ref:`String<class_String>` **layer_names/3d_physics/layer_5** = ``""``
  4335. Optional name for the 3D physics layer 5. If left empty, the layer will display as "Layer 5".
  4336. .. rst-class:: classref-item-separator
  4337. ----
  4338. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_6:
  4339. .. rst-class:: classref-property
  4340. :ref:`String<class_String>` **layer_names/3d_physics/layer_6** = ``""``
  4341. Optional name for the 3D physics layer 6. If left empty, the layer will display as "Layer 6".
  4342. .. rst-class:: classref-item-separator
  4343. ----
  4344. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_7:
  4345. .. rst-class:: classref-property
  4346. :ref:`String<class_String>` **layer_names/3d_physics/layer_7** = ``""``
  4347. Optional name for the 3D physics layer 7. If left empty, the layer will display as "Layer 7".
  4348. .. rst-class:: classref-item-separator
  4349. ----
  4350. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_8:
  4351. .. rst-class:: classref-property
  4352. :ref:`String<class_String>` **layer_names/3d_physics/layer_8** = ``""``
  4353. Optional name for the 3D physics layer 8. If left empty, the layer will display as "Layer 8".
  4354. .. rst-class:: classref-item-separator
  4355. ----
  4356. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_9:
  4357. .. rst-class:: classref-property
  4358. :ref:`String<class_String>` **layer_names/3d_physics/layer_9** = ``""``
  4359. Optional name for the 3D physics layer 9. If left empty, the layer will display as "Layer 9".
  4360. .. rst-class:: classref-item-separator
  4361. ----
  4362. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_10:
  4363. .. rst-class:: classref-property
  4364. :ref:`String<class_String>` **layer_names/3d_physics/layer_10** = ``""``
  4365. Optional name for the 3D physics layer 10. If left empty, the layer will display as "Layer 10".
  4366. .. rst-class:: classref-item-separator
  4367. ----
  4368. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_11:
  4369. .. rst-class:: classref-property
  4370. :ref:`String<class_String>` **layer_names/3d_physics/layer_11** = ``""``
  4371. Optional name for the 3D physics layer 11. If left empty, the layer will display as "Layer 11".
  4372. .. rst-class:: classref-item-separator
  4373. ----
  4374. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_12:
  4375. .. rst-class:: classref-property
  4376. :ref:`String<class_String>` **layer_names/3d_physics/layer_12** = ``""``
  4377. Optional name for the 3D physics layer 12. If left empty, the layer will display as "Layer 12".
  4378. .. rst-class:: classref-item-separator
  4379. ----
  4380. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_13:
  4381. .. rst-class:: classref-property
  4382. :ref:`String<class_String>` **layer_names/3d_physics/layer_13** = ``""``
  4383. Optional name for the 3D physics layer 13. If left empty, the layer will display as "Layer 13".
  4384. .. rst-class:: classref-item-separator
  4385. ----
  4386. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_14:
  4387. .. rst-class:: classref-property
  4388. :ref:`String<class_String>` **layer_names/3d_physics/layer_14** = ``""``
  4389. Optional name for the 3D physics layer 14. If left empty, the layer will display as "Layer 14".
  4390. .. rst-class:: classref-item-separator
  4391. ----
  4392. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_15:
  4393. .. rst-class:: classref-property
  4394. :ref:`String<class_String>` **layer_names/3d_physics/layer_15** = ``""``
  4395. Optional name for the 3D physics layer 15. If left empty, the layer will display as "Layer 15".
  4396. .. rst-class:: classref-item-separator
  4397. ----
  4398. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_16:
  4399. .. rst-class:: classref-property
  4400. :ref:`String<class_String>` **layer_names/3d_physics/layer_16** = ``""``
  4401. Optional name for the 3D physics layer 16. If left empty, the layer will display as "Layer 16".
  4402. .. rst-class:: classref-item-separator
  4403. ----
  4404. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_17:
  4405. .. rst-class:: classref-property
  4406. :ref:`String<class_String>` **layer_names/3d_physics/layer_17** = ``""``
  4407. Optional name for the 3D physics layer 17. If left empty, the layer will display as "Layer 17".
  4408. .. rst-class:: classref-item-separator
  4409. ----
  4410. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_18:
  4411. .. rst-class:: classref-property
  4412. :ref:`String<class_String>` **layer_names/3d_physics/layer_18** = ``""``
  4413. Optional name for the 3D physics layer 18. If left empty, the layer will display as "Layer 18".
  4414. .. rst-class:: classref-item-separator
  4415. ----
  4416. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_19:
  4417. .. rst-class:: classref-property
  4418. :ref:`String<class_String>` **layer_names/3d_physics/layer_19** = ``""``
  4419. Optional name for the 3D physics layer 19. If left empty, the layer will display as "Layer 19".
  4420. .. rst-class:: classref-item-separator
  4421. ----
  4422. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_20:
  4423. .. rst-class:: classref-property
  4424. :ref:`String<class_String>` **layer_names/3d_physics/layer_20** = ``""``
  4425. Optional name for the 3D physics layer 20. If left empty, the layer will display as "Layer 20".
  4426. .. rst-class:: classref-item-separator
  4427. ----
  4428. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_21:
  4429. .. rst-class:: classref-property
  4430. :ref:`String<class_String>` **layer_names/3d_physics/layer_21** = ``""``
  4431. Optional name for the 3D physics layer 21. If left empty, the layer will display as "Layer 21".
  4432. .. rst-class:: classref-item-separator
  4433. ----
  4434. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_22:
  4435. .. rst-class:: classref-property
  4436. :ref:`String<class_String>` **layer_names/3d_physics/layer_22** = ``""``
  4437. Optional name for the 3D physics layer 22. If left empty, the layer will display as "Layer 22".
  4438. .. rst-class:: classref-item-separator
  4439. ----
  4440. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_23:
  4441. .. rst-class:: classref-property
  4442. :ref:`String<class_String>` **layer_names/3d_physics/layer_23** = ``""``
  4443. Optional name for the 3D physics layer 23. If left empty, the layer will display as "Layer 23".
  4444. .. rst-class:: classref-item-separator
  4445. ----
  4446. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_24:
  4447. .. rst-class:: classref-property
  4448. :ref:`String<class_String>` **layer_names/3d_physics/layer_24** = ``""``
  4449. Optional name for the 3D physics layer 24. If left empty, the layer will display as "Layer 24".
  4450. .. rst-class:: classref-item-separator
  4451. ----
  4452. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_25:
  4453. .. rst-class:: classref-property
  4454. :ref:`String<class_String>` **layer_names/3d_physics/layer_25** = ``""``
  4455. Optional name for the 3D physics layer 25. If left empty, the layer will display as "Layer 25".
  4456. .. rst-class:: classref-item-separator
  4457. ----
  4458. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_26:
  4459. .. rst-class:: classref-property
  4460. :ref:`String<class_String>` **layer_names/3d_physics/layer_26** = ``""``
  4461. Optional name for the 3D physics layer 26. If left empty, the layer will display as "Layer 26".
  4462. .. rst-class:: classref-item-separator
  4463. ----
  4464. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_27:
  4465. .. rst-class:: classref-property
  4466. :ref:`String<class_String>` **layer_names/3d_physics/layer_27** = ``""``
  4467. Optional name for the 3D physics layer 27. If left empty, the layer will display as "Layer 27".
  4468. .. rst-class:: classref-item-separator
  4469. ----
  4470. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_28:
  4471. .. rst-class:: classref-property
  4472. :ref:`String<class_String>` **layer_names/3d_physics/layer_28** = ``""``
  4473. Optional name for the 3D physics layer 28. If left empty, the layer will display as "Layer 28".
  4474. .. rst-class:: classref-item-separator
  4475. ----
  4476. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_29:
  4477. .. rst-class:: classref-property
  4478. :ref:`String<class_String>` **layer_names/3d_physics/layer_29** = ``""``
  4479. Optional name for the 3D physics layer 29. If left empty, the layer will display as "Layer 29".
  4480. .. rst-class:: classref-item-separator
  4481. ----
  4482. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_30:
  4483. .. rst-class:: classref-property
  4484. :ref:`String<class_String>` **layer_names/3d_physics/layer_30** = ``""``
  4485. Optional name for the 3D physics layer 30. If left empty, the layer will display as "Layer 30".
  4486. .. rst-class:: classref-item-separator
  4487. ----
  4488. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_31:
  4489. .. rst-class:: classref-property
  4490. :ref:`String<class_String>` **layer_names/3d_physics/layer_31** = ``""``
  4491. Optional name for the 3D physics layer 31. If left empty, the layer will display as "Layer 31".
  4492. .. rst-class:: classref-item-separator
  4493. ----
  4494. .. _class_ProjectSettings_property_layer_names/3d_physics/layer_32:
  4495. .. rst-class:: classref-property
  4496. :ref:`String<class_String>` **layer_names/3d_physics/layer_32** = ``""``
  4497. Optional name for the 3D physics layer 32. If left empty, the layer will display as "Layer 32".
  4498. .. rst-class:: classref-item-separator
  4499. ----
  4500. .. _class_ProjectSettings_property_layer_names/3d_render/layer_1:
  4501. .. rst-class:: classref-property
  4502. :ref:`String<class_String>` **layer_names/3d_render/layer_1** = ``""``
  4503. Optional name for the 3D render layer 1. If left empty, the layer will display as "Layer 1".
  4504. .. rst-class:: classref-item-separator
  4505. ----
  4506. .. _class_ProjectSettings_property_layer_names/3d_render/layer_2:
  4507. .. rst-class:: classref-property
  4508. :ref:`String<class_String>` **layer_names/3d_render/layer_2** = ``""``
  4509. Optional name for the 3D render layer 2. If left empty, the layer will display as "Layer 2".
  4510. .. rst-class:: classref-item-separator
  4511. ----
  4512. .. _class_ProjectSettings_property_layer_names/3d_render/layer_3:
  4513. .. rst-class:: classref-property
  4514. :ref:`String<class_String>` **layer_names/3d_render/layer_3** = ``""``
  4515. Optional name for the 3D render layer 3. If left empty, the layer will display as "Layer 3".
  4516. .. rst-class:: classref-item-separator
  4517. ----
  4518. .. _class_ProjectSettings_property_layer_names/3d_render/layer_4:
  4519. .. rst-class:: classref-property
  4520. :ref:`String<class_String>` **layer_names/3d_render/layer_4** = ``""``
  4521. Optional name for the 3D render layer 4. If left empty, the layer will display as "Layer 4".
  4522. .. rst-class:: classref-item-separator
  4523. ----
  4524. .. _class_ProjectSettings_property_layer_names/3d_render/layer_5:
  4525. .. rst-class:: classref-property
  4526. :ref:`String<class_String>` **layer_names/3d_render/layer_5** = ``""``
  4527. Optional name for the 3D render layer 5. If left empty, the layer will display as "Layer 5".
  4528. .. rst-class:: classref-item-separator
  4529. ----
  4530. .. _class_ProjectSettings_property_layer_names/3d_render/layer_6:
  4531. .. rst-class:: classref-property
  4532. :ref:`String<class_String>` **layer_names/3d_render/layer_6** = ``""``
  4533. Optional name for the 3D render layer 6. If left empty, the layer will display as "Layer 6".
  4534. .. rst-class:: classref-item-separator
  4535. ----
  4536. .. _class_ProjectSettings_property_layer_names/3d_render/layer_7:
  4537. .. rst-class:: classref-property
  4538. :ref:`String<class_String>` **layer_names/3d_render/layer_7** = ``""``
  4539. Optional name for the 3D render layer 7. If left empty, the layer will display as "Layer 7".
  4540. .. rst-class:: classref-item-separator
  4541. ----
  4542. .. _class_ProjectSettings_property_layer_names/3d_render/layer_8:
  4543. .. rst-class:: classref-property
  4544. :ref:`String<class_String>` **layer_names/3d_render/layer_8** = ``""``
  4545. Optional name for the 3D render layer 8. If left empty, the layer will display as "Layer 8".
  4546. .. rst-class:: classref-item-separator
  4547. ----
  4548. .. _class_ProjectSettings_property_layer_names/3d_render/layer_9:
  4549. .. rst-class:: classref-property
  4550. :ref:`String<class_String>` **layer_names/3d_render/layer_9** = ``""``
  4551. Optional name for the 3D render layer 9. If left empty, the layer will display as "Layer 9".
  4552. .. rst-class:: classref-item-separator
  4553. ----
  4554. .. _class_ProjectSettings_property_layer_names/3d_render/layer_10:
  4555. .. rst-class:: classref-property
  4556. :ref:`String<class_String>` **layer_names/3d_render/layer_10** = ``""``
  4557. Optional name for the 3D render layer 10. If left empty, the layer will display as "Layer 10".
  4558. .. rst-class:: classref-item-separator
  4559. ----
  4560. .. _class_ProjectSettings_property_layer_names/3d_render/layer_11:
  4561. .. rst-class:: classref-property
  4562. :ref:`String<class_String>` **layer_names/3d_render/layer_11** = ``""``
  4563. Optional name for the 3D render layer 11. If left empty, the layer will display as "Layer 11".
  4564. .. rst-class:: classref-item-separator
  4565. ----
  4566. .. _class_ProjectSettings_property_layer_names/3d_render/layer_12:
  4567. .. rst-class:: classref-property
  4568. :ref:`String<class_String>` **layer_names/3d_render/layer_12** = ``""``
  4569. Optional name for the 3D render layer 12. If left empty, the layer will display as "Layer 12".
  4570. .. rst-class:: classref-item-separator
  4571. ----
  4572. .. _class_ProjectSettings_property_layer_names/3d_render/layer_13:
  4573. .. rst-class:: classref-property
  4574. :ref:`String<class_String>` **layer_names/3d_render/layer_13** = ``""``
  4575. Optional name for the 3D render layer 13. If left empty, the layer will display as "Layer 13".
  4576. .. rst-class:: classref-item-separator
  4577. ----
  4578. .. _class_ProjectSettings_property_layer_names/3d_render/layer_14:
  4579. .. rst-class:: classref-property
  4580. :ref:`String<class_String>` **layer_names/3d_render/layer_14** = ``""``
  4581. Optional name for the 3D render layer 14. If left empty, the layer will display as "Layer 14".
  4582. .. rst-class:: classref-item-separator
  4583. ----
  4584. .. _class_ProjectSettings_property_layer_names/3d_render/layer_15:
  4585. .. rst-class:: classref-property
  4586. :ref:`String<class_String>` **layer_names/3d_render/layer_15** = ``""``
  4587. Optional name for the 3D render layer 15. If left empty, the layer will display as "Layer 15".
  4588. .. rst-class:: classref-item-separator
  4589. ----
  4590. .. _class_ProjectSettings_property_layer_names/3d_render/layer_16:
  4591. .. rst-class:: classref-property
  4592. :ref:`String<class_String>` **layer_names/3d_render/layer_16** = ``""``
  4593. Optional name for the 3D render layer 16. If left empty, the layer will display as "Layer 16".
  4594. .. rst-class:: classref-item-separator
  4595. ----
  4596. .. _class_ProjectSettings_property_layer_names/3d_render/layer_17:
  4597. .. rst-class:: classref-property
  4598. :ref:`String<class_String>` **layer_names/3d_render/layer_17** = ``""``
  4599. Optional name for the 3D render layer 17. If left empty, the layer will display as "Layer 17".
  4600. .. rst-class:: classref-item-separator
  4601. ----
  4602. .. _class_ProjectSettings_property_layer_names/3d_render/layer_18:
  4603. .. rst-class:: classref-property
  4604. :ref:`String<class_String>` **layer_names/3d_render/layer_18** = ``""``
  4605. Optional name for the 3D render layer 18. If left empty, the layer will display as "Layer 18".
  4606. .. rst-class:: classref-item-separator
  4607. ----
  4608. .. _class_ProjectSettings_property_layer_names/3d_render/layer_19:
  4609. .. rst-class:: classref-property
  4610. :ref:`String<class_String>` **layer_names/3d_render/layer_19** = ``""``
  4611. Optional name for the 3D render layer 19. If left empty, the layer will display as "Layer 19".
  4612. .. rst-class:: classref-item-separator
  4613. ----
  4614. .. _class_ProjectSettings_property_layer_names/3d_render/layer_20:
  4615. .. rst-class:: classref-property
  4616. :ref:`String<class_String>` **layer_names/3d_render/layer_20** = ``""``
  4617. Optional name for the 3D render layer 20. If left empty, the layer will display as "Layer 20".
  4618. .. rst-class:: classref-item-separator
  4619. ----
  4620. .. _class_ProjectSettings_property_layer_names/avoidance/layer_1:
  4621. .. rst-class:: classref-property
  4622. :ref:`String<class_String>` **layer_names/avoidance/layer_1** = ``""``
  4623. Optional name for the navigation avoidance layer 1. If left empty, the layer will display as "Layer 1".
  4624. .. rst-class:: classref-item-separator
  4625. ----
  4626. .. _class_ProjectSettings_property_layer_names/avoidance/layer_2:
  4627. .. rst-class:: classref-property
  4628. :ref:`String<class_String>` **layer_names/avoidance/layer_2** = ``""``
  4629. Optional name for the navigation avoidance layer 2. If left empty, the layer will display as "Layer 2".
  4630. .. rst-class:: classref-item-separator
  4631. ----
  4632. .. _class_ProjectSettings_property_layer_names/avoidance/layer_3:
  4633. .. rst-class:: classref-property
  4634. :ref:`String<class_String>` **layer_names/avoidance/layer_3** = ``""``
  4635. Optional name for the navigation avoidance layer 3. If left empty, the layer will display as "Layer 3".
  4636. .. rst-class:: classref-item-separator
  4637. ----
  4638. .. _class_ProjectSettings_property_layer_names/avoidance/layer_4:
  4639. .. rst-class:: classref-property
  4640. :ref:`String<class_String>` **layer_names/avoidance/layer_4** = ``""``
  4641. Optional name for the navigation avoidance layer 4. If left empty, the layer will display as "Layer 4".
  4642. .. rst-class:: classref-item-separator
  4643. ----
  4644. .. _class_ProjectSettings_property_layer_names/avoidance/layer_5:
  4645. .. rst-class:: classref-property
  4646. :ref:`String<class_String>` **layer_names/avoidance/layer_5** = ``""``
  4647. Optional name for the navigation avoidance layer 5. If left empty, the layer will display as "Layer 5".
  4648. .. rst-class:: classref-item-separator
  4649. ----
  4650. .. _class_ProjectSettings_property_layer_names/avoidance/layer_6:
  4651. .. rst-class:: classref-property
  4652. :ref:`String<class_String>` **layer_names/avoidance/layer_6** = ``""``
  4653. Optional name for the navigation avoidance layer 6. If left empty, the layer will display as "Layer 6".
  4654. .. rst-class:: classref-item-separator
  4655. ----
  4656. .. _class_ProjectSettings_property_layer_names/avoidance/layer_7:
  4657. .. rst-class:: classref-property
  4658. :ref:`String<class_String>` **layer_names/avoidance/layer_7** = ``""``
  4659. Optional name for the navigation avoidance layer 7. If left empty, the layer will display as "Layer 7".
  4660. .. rst-class:: classref-item-separator
  4661. ----
  4662. .. _class_ProjectSettings_property_layer_names/avoidance/layer_8:
  4663. .. rst-class:: classref-property
  4664. :ref:`String<class_String>` **layer_names/avoidance/layer_8** = ``""``
  4665. Optional name for the navigation avoidance layer 8. If left empty, the layer will display as "Layer 8".
  4666. .. rst-class:: classref-item-separator
  4667. ----
  4668. .. _class_ProjectSettings_property_layer_names/avoidance/layer_9:
  4669. .. rst-class:: classref-property
  4670. :ref:`String<class_String>` **layer_names/avoidance/layer_9** = ``""``
  4671. Optional name for the navigation avoidance layer 9. If left empty, the layer will display as "Layer 9".
  4672. .. rst-class:: classref-item-separator
  4673. ----
  4674. .. _class_ProjectSettings_property_layer_names/avoidance/layer_10:
  4675. .. rst-class:: classref-property
  4676. :ref:`String<class_String>` **layer_names/avoidance/layer_10** = ``""``
  4677. Optional name for the navigation avoidance layer 10. If left empty, the layer will display as "Layer 10".
  4678. .. rst-class:: classref-item-separator
  4679. ----
  4680. .. _class_ProjectSettings_property_layer_names/avoidance/layer_11:
  4681. .. rst-class:: classref-property
  4682. :ref:`String<class_String>` **layer_names/avoidance/layer_11** = ``""``
  4683. Optional name for the navigation avoidance layer 11. If left empty, the layer will display as "Layer 11".
  4684. .. rst-class:: classref-item-separator
  4685. ----
  4686. .. _class_ProjectSettings_property_layer_names/avoidance/layer_12:
  4687. .. rst-class:: classref-property
  4688. :ref:`String<class_String>` **layer_names/avoidance/layer_12** = ``""``
  4689. Optional name for the navigation avoidance layer 12. If left empty, the layer will display as "Layer 12".
  4690. .. rst-class:: classref-item-separator
  4691. ----
  4692. .. _class_ProjectSettings_property_layer_names/avoidance/layer_13:
  4693. .. rst-class:: classref-property
  4694. :ref:`String<class_String>` **layer_names/avoidance/layer_13** = ``""``
  4695. Optional name for the navigation avoidance layer 13. If left empty, the layer will display as "Layer 13".
  4696. .. rst-class:: classref-item-separator
  4697. ----
  4698. .. _class_ProjectSettings_property_layer_names/avoidance/layer_14:
  4699. .. rst-class:: classref-property
  4700. :ref:`String<class_String>` **layer_names/avoidance/layer_14** = ``""``
  4701. Optional name for the navigation avoidance layer 14. If left empty, the layer will display as "Layer 14".
  4702. .. rst-class:: classref-item-separator
  4703. ----
  4704. .. _class_ProjectSettings_property_layer_names/avoidance/layer_15:
  4705. .. rst-class:: classref-property
  4706. :ref:`String<class_String>` **layer_names/avoidance/layer_15** = ``""``
  4707. Optional name for the navigation avoidance layer 15. If left empty, the layer will display as "Layer 15".
  4708. .. rst-class:: classref-item-separator
  4709. ----
  4710. .. _class_ProjectSettings_property_layer_names/avoidance/layer_16:
  4711. .. rst-class:: classref-property
  4712. :ref:`String<class_String>` **layer_names/avoidance/layer_16** = ``""``
  4713. Optional name for the navigation avoidance layer 16. If left empty, the layer will display as "Layer 16".
  4714. .. rst-class:: classref-item-separator
  4715. ----
  4716. .. _class_ProjectSettings_property_layer_names/avoidance/layer_17:
  4717. .. rst-class:: classref-property
  4718. :ref:`String<class_String>` **layer_names/avoidance/layer_17** = ``""``
  4719. Optional name for the navigation avoidance layer 17. If left empty, the layer will display as "Layer 17".
  4720. .. rst-class:: classref-item-separator
  4721. ----
  4722. .. _class_ProjectSettings_property_layer_names/avoidance/layer_18:
  4723. .. rst-class:: classref-property
  4724. :ref:`String<class_String>` **layer_names/avoidance/layer_18** = ``""``
  4725. Optional name for the navigation avoidance layer 18. If left empty, the layer will display as "Layer 18".
  4726. .. rst-class:: classref-item-separator
  4727. ----
  4728. .. _class_ProjectSettings_property_layer_names/avoidance/layer_19:
  4729. .. rst-class:: classref-property
  4730. :ref:`String<class_String>` **layer_names/avoidance/layer_19** = ``""``
  4731. Optional name for the navigation avoidance layer 19. If left empty, the layer will display as "Layer 19".
  4732. .. rst-class:: classref-item-separator
  4733. ----
  4734. .. _class_ProjectSettings_property_layer_names/avoidance/layer_20:
  4735. .. rst-class:: classref-property
  4736. :ref:`String<class_String>` **layer_names/avoidance/layer_20** = ``""``
  4737. Optional name for the navigation avoidance layer 20. If left empty, the layer will display as "Layer 20".
  4738. .. rst-class:: classref-item-separator
  4739. ----
  4740. .. _class_ProjectSettings_property_layer_names/avoidance/layer_21:
  4741. .. rst-class:: classref-property
  4742. :ref:`String<class_String>` **layer_names/avoidance/layer_21** = ``""``
  4743. Optional name for the navigation avoidance layer 21. If left empty, the layer will display as "Layer 21".
  4744. .. rst-class:: classref-item-separator
  4745. ----
  4746. .. _class_ProjectSettings_property_layer_names/avoidance/layer_22:
  4747. .. rst-class:: classref-property
  4748. :ref:`String<class_String>` **layer_names/avoidance/layer_22** = ``""``
  4749. Optional name for the navigation avoidance layer 22. If left empty, the layer will display as "Layer 22".
  4750. .. rst-class:: classref-item-separator
  4751. ----
  4752. .. _class_ProjectSettings_property_layer_names/avoidance/layer_23:
  4753. .. rst-class:: classref-property
  4754. :ref:`String<class_String>` **layer_names/avoidance/layer_23** = ``""``
  4755. Optional name for the navigation avoidance layer 23. If left empty, the layer will display as "Layer 23".
  4756. .. rst-class:: classref-item-separator
  4757. ----
  4758. .. _class_ProjectSettings_property_layer_names/avoidance/layer_24:
  4759. .. rst-class:: classref-property
  4760. :ref:`String<class_String>` **layer_names/avoidance/layer_24** = ``""``
  4761. Optional name for the navigation avoidance layer 24. If left empty, the layer will display as "Layer 24".
  4762. .. rst-class:: classref-item-separator
  4763. ----
  4764. .. _class_ProjectSettings_property_layer_names/avoidance/layer_25:
  4765. .. rst-class:: classref-property
  4766. :ref:`String<class_String>` **layer_names/avoidance/layer_25** = ``""``
  4767. Optional name for the navigation avoidance layer 25. If left empty, the layer will display as "Layer 25".
  4768. .. rst-class:: classref-item-separator
  4769. ----
  4770. .. _class_ProjectSettings_property_layer_names/avoidance/layer_26:
  4771. .. rst-class:: classref-property
  4772. :ref:`String<class_String>` **layer_names/avoidance/layer_26** = ``""``
  4773. Optional name for the navigation avoidance layer 26. If left empty, the layer will display as "Layer 26".
  4774. .. rst-class:: classref-item-separator
  4775. ----
  4776. .. _class_ProjectSettings_property_layer_names/avoidance/layer_27:
  4777. .. rst-class:: classref-property
  4778. :ref:`String<class_String>` **layer_names/avoidance/layer_27** = ``""``
  4779. Optional name for the navigation avoidance layer 27. If left empty, the layer will display as "Layer 27".
  4780. .. rst-class:: classref-item-separator
  4781. ----
  4782. .. _class_ProjectSettings_property_layer_names/avoidance/layer_28:
  4783. .. rst-class:: classref-property
  4784. :ref:`String<class_String>` **layer_names/avoidance/layer_28** = ``""``
  4785. Optional name for the navigation avoidance layer 28. If left empty, the layer will display as "Layer 28".
  4786. .. rst-class:: classref-item-separator
  4787. ----
  4788. .. _class_ProjectSettings_property_layer_names/avoidance/layer_29:
  4789. .. rst-class:: classref-property
  4790. :ref:`String<class_String>` **layer_names/avoidance/layer_29** = ``""``
  4791. Optional name for the navigation avoidance layer 29. If left empty, the layer will display as "Layer 29".
  4792. .. rst-class:: classref-item-separator
  4793. ----
  4794. .. _class_ProjectSettings_property_layer_names/avoidance/layer_30:
  4795. .. rst-class:: classref-property
  4796. :ref:`String<class_String>` **layer_names/avoidance/layer_30** = ``""``
  4797. Optional name for the navigation avoidance layer 30. If left empty, the layer will display as "Layer 30".
  4798. .. rst-class:: classref-item-separator
  4799. ----
  4800. .. _class_ProjectSettings_property_layer_names/avoidance/layer_31:
  4801. .. rst-class:: classref-property
  4802. :ref:`String<class_String>` **layer_names/avoidance/layer_31** = ``""``
  4803. Optional name for the navigation avoidance layer 31. If left empty, the layer will display as "Layer 31".
  4804. .. rst-class:: classref-item-separator
  4805. ----
  4806. .. _class_ProjectSettings_property_layer_names/avoidance/layer_32:
  4807. .. rst-class:: classref-property
  4808. :ref:`String<class_String>` **layer_names/avoidance/layer_32** = ``""``
  4809. Optional name for the navigation avoidance layer 32. If left empty, the layer will display as "Layer 32".
  4810. .. rst-class:: classref-item-separator
  4811. ----
  4812. .. _class_ProjectSettings_property_memory/limits/message_queue/max_size_mb:
  4813. .. rst-class:: classref-property
  4814. :ref:`int<class_int>` **memory/limits/message_queue/max_size_mb** = ``32``
  4815. 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.
  4816. .. rst-class:: classref-item-separator
  4817. ----
  4818. .. _class_ProjectSettings_property_memory/limits/multithreaded_server/rid_pool_prealloc:
  4819. .. rst-class:: classref-property
  4820. :ref:`int<class_int>` **memory/limits/multithreaded_server/rid_pool_prealloc** = ``60``
  4821. 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.
  4822. .. rst-class:: classref-item-separator
  4823. ----
  4824. .. _class_ProjectSettings_property_navigation/2d/default_cell_size:
  4825. .. rst-class:: classref-property
  4826. :ref:`int<class_int>` **navigation/2d/default_cell_size** = ``1``
  4827. Default cell size for 2D navigation maps. See :ref:`NavigationServer2D.map_set_cell_size<class_NavigationServer2D_method_map_set_cell_size>`.
  4828. .. rst-class:: classref-item-separator
  4829. ----
  4830. .. _class_ProjectSettings_property_navigation/2d/default_edge_connection_margin:
  4831. .. rst-class:: classref-property
  4832. :ref:`int<class_int>` **navigation/2d/default_edge_connection_margin** = ``1``
  4833. Default edge connection margin for 2D navigation maps. See :ref:`NavigationServer2D.map_set_edge_connection_margin<class_NavigationServer2D_method_map_set_edge_connection_margin>`.
  4834. .. rst-class:: classref-item-separator
  4835. ----
  4836. .. _class_ProjectSettings_property_navigation/2d/default_link_connection_radius:
  4837. .. rst-class:: classref-property
  4838. :ref:`int<class_int>` **navigation/2d/default_link_connection_radius** = ``4``
  4839. Default link connection radius for 2D navigation maps. See :ref:`NavigationServer2D.map_set_link_connection_radius<class_NavigationServer2D_method_map_set_link_connection_radius>`.
  4840. .. rst-class:: classref-item-separator
  4841. ----
  4842. .. _class_ProjectSettings_property_navigation/2d/use_edge_connections:
  4843. .. rst-class:: classref-property
  4844. :ref:`bool<class_bool>` **navigation/2d/use_edge_connections** = ``true``
  4845. 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.
  4846. .. rst-class:: classref-item-separator
  4847. ----
  4848. .. _class_ProjectSettings_property_navigation/3d/default_cell_height:
  4849. .. rst-class:: classref-property
  4850. :ref:`float<class_float>` **navigation/3d/default_cell_height** = ``0.25``
  4851. Default cell height for 3D navigation maps. See :ref:`NavigationServer3D.map_set_cell_height<class_NavigationServer3D_method_map_set_cell_height>`.
  4852. .. rst-class:: classref-item-separator
  4853. ----
  4854. .. _class_ProjectSettings_property_navigation/3d/default_cell_size:
  4855. .. rst-class:: classref-property
  4856. :ref:`float<class_float>` **navigation/3d/default_cell_size** = ``0.25``
  4857. Default cell size for 3D navigation maps. See :ref:`NavigationServer3D.map_set_cell_size<class_NavigationServer3D_method_map_set_cell_size>`.
  4858. .. rst-class:: classref-item-separator
  4859. ----
  4860. .. _class_ProjectSettings_property_navigation/3d/default_edge_connection_margin:
  4861. .. rst-class:: classref-property
  4862. :ref:`float<class_float>` **navigation/3d/default_edge_connection_margin** = ``0.25``
  4863. Default edge connection margin for 3D navigation maps. See :ref:`NavigationServer3D.map_set_edge_connection_margin<class_NavigationServer3D_method_map_set_edge_connection_margin>`.
  4864. .. rst-class:: classref-item-separator
  4865. ----
  4866. .. _class_ProjectSettings_property_navigation/3d/default_link_connection_radius:
  4867. .. rst-class:: classref-property
  4868. :ref:`float<class_float>` **navigation/3d/default_link_connection_radius** = ``1.0``
  4869. Default link connection radius for 3D navigation maps. See :ref:`NavigationServer3D.map_set_link_connection_radius<class_NavigationServer3D_method_map_set_link_connection_radius>`.
  4870. .. rst-class:: classref-item-separator
  4871. ----
  4872. .. _class_ProjectSettings_property_navigation/3d/use_edge_connections:
  4873. .. rst-class:: classref-property
  4874. :ref:`bool<class_bool>` **navigation/3d/use_edge_connections** = ``true``
  4875. 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.
  4876. .. rst-class:: classref-item-separator
  4877. ----
  4878. .. _class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_high_priority_threads:
  4879. .. rst-class:: classref-property
  4880. :ref:`bool<class_bool>` **navigation/avoidance/thread_model/avoidance_use_high_priority_threads** = ``true``
  4881. If enabled and avoidance calculations use multiple threads the threads run with high priority.
  4882. .. rst-class:: classref-item-separator
  4883. ----
  4884. .. _class_ProjectSettings_property_navigation/avoidance/thread_model/avoidance_use_multiple_threads:
  4885. .. rst-class:: classref-property
  4886. :ref:`bool<class_bool>` **navigation/avoidance/thread_model/avoidance_use_multiple_threads** = ``true``
  4887. If enabled the avoidance calculations use multiple threads.
  4888. .. rst-class:: classref-item-separator
  4889. ----
  4890. .. _class_ProjectSettings_property_network/limits/debugger/max_chars_per_second:
  4891. .. rst-class:: classref-property
  4892. :ref:`int<class_int>` **network/limits/debugger/max_chars_per_second** = ``32768``
  4893. 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.
  4894. .. rst-class:: classref-item-separator
  4895. ----
  4896. .. _class_ProjectSettings_property_network/limits/debugger/max_errors_per_second:
  4897. .. rst-class:: classref-property
  4898. :ref:`int<class_int>` **network/limits/debugger/max_errors_per_second** = ``400``
  4899. 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.
  4900. .. rst-class:: classref-item-separator
  4901. ----
  4902. .. _class_ProjectSettings_property_network/limits/debugger/max_queued_messages:
  4903. .. rst-class:: classref-property
  4904. :ref:`int<class_int>` **network/limits/debugger/max_queued_messages** = ``2048``
  4905. Maximum number of messages in the debugger queue. Over this value, content is dropped. This helps to limit the debugger memory usage.
  4906. .. rst-class:: classref-item-separator
  4907. ----
  4908. .. _class_ProjectSettings_property_network/limits/debugger/max_warnings_per_second:
  4909. .. rst-class:: classref-property
  4910. :ref:`int<class_int>` **network/limits/debugger/max_warnings_per_second** = ``400``
  4911. 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.
  4912. .. rst-class:: classref-item-separator
  4913. ----
  4914. .. _class_ProjectSettings_property_network/limits/packet_peer_stream/max_buffer_po2:
  4915. .. rst-class:: classref-property
  4916. :ref:`int<class_int>` **network/limits/packet_peer_stream/max_buffer_po2** = ``16``
  4917. 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.
  4918. .. rst-class:: classref-item-separator
  4919. ----
  4920. .. _class_ProjectSettings_property_network/limits/tcp/connect_timeout_seconds:
  4921. .. rst-class:: classref-property
  4922. :ref:`int<class_int>` **network/limits/tcp/connect_timeout_seconds** = ``30``
  4923. Timeout (in seconds) for connection attempts using TCP.
  4924. .. rst-class:: classref-item-separator
  4925. ----
  4926. .. _class_ProjectSettings_property_network/limits/webrtc/max_channel_in_buffer_kb:
  4927. .. rst-class:: classref-property
  4928. :ref:`int<class_int>` **network/limits/webrtc/max_channel_in_buffer_kb** = ``64``
  4929. Maximum size (in kiB) for the :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` input buffer.
  4930. .. rst-class:: classref-item-separator
  4931. ----
  4932. .. _class_ProjectSettings_property_network/tls/certificate_bundle_override:
  4933. .. rst-class:: classref-property
  4934. :ref:`String<class_String>` **network/tls/certificate_bundle_override** = ``""``
  4935. 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.
  4936. If in doubt, leave this setting empty.
  4937. .. rst-class:: classref-item-separator
  4938. ----
  4939. .. _class_ProjectSettings_property_physics/2d/default_angular_damp:
  4940. .. rst-class:: classref-property
  4941. :ref:`float<class_float>` **physics/2d/default_angular_damp** = ``1.0``
  4942. The default angular damp in 2D.
  4943. \ **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.
  4944. .. rst-class:: classref-item-separator
  4945. ----
  4946. .. _class_ProjectSettings_property_physics/2d/default_gravity:
  4947. .. rst-class:: classref-property
  4948. :ref:`float<class_float>` **physics/2d/default_gravity** = ``980.0``
  4949. The default gravity strength in 2D (in pixels per second squared).
  4950. \ **Note:** This property is only read when the project starts. To change the default gravity at runtime, use the following code sample:
  4951. .. tabs::
  4952. .. code-tab:: gdscript
  4953. # Set the default gravity strength to 980.
  4954. PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY, 980)
  4955. .. code-tab:: csharp
  4956. // Set the default gravity strength to 980.
  4957. PhysicsServer2D.AreaSetParam(GetViewport().FindWorld2D().Space, PhysicsServer2D.AreaParameter.Gravity, 980);
  4958. .. rst-class:: classref-item-separator
  4959. ----
  4960. .. _class_ProjectSettings_property_physics/2d/default_gravity_vector:
  4961. .. rst-class:: classref-property
  4962. :ref:`Vector2<class_Vector2>` **physics/2d/default_gravity_vector** = ``Vector2(0, 1)``
  4963. The default gravity direction in 2D.
  4964. \ **Note:** This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample:
  4965. .. tabs::
  4966. .. code-tab:: gdscript
  4967. # Set the default gravity direction to `Vector2(0, 1)`.
  4968. PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY_VECTOR, Vector2.DOWN)
  4969. .. code-tab:: csharp
  4970. // Set the default gravity direction to `Vector2(0, 1)`.
  4971. PhysicsServer2D.AreaSetParam(GetViewport().FindWorld2D().Space, PhysicsServer2D.AreaParameter.GravityVector, Vector2.Down)
  4972. .. rst-class:: classref-item-separator
  4973. ----
  4974. .. _class_ProjectSettings_property_physics/2d/default_linear_damp:
  4975. .. rst-class:: classref-property
  4976. :ref:`float<class_float>` **physics/2d/default_linear_damp** = ``0.1``
  4977. The default linear damp in 2D.
  4978. \ **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.
  4979. .. rst-class:: classref-item-separator
  4980. ----
  4981. .. _class_ProjectSettings_property_physics/2d/physics_engine:
  4982. .. rst-class:: classref-property
  4983. :ref:`String<class_String>` **physics/2d/physics_engine** = ``"DEFAULT"``
  4984. Sets which physics engine to use for 2D physics.
  4985. "DEFAULT" and "GodotPhysics2D" are the same, as there is currently no alternative 2D physics server implemented.
  4986. .. rst-class:: classref-item-separator
  4987. ----
  4988. .. _class_ProjectSettings_property_physics/2d/run_on_separate_thread:
  4989. .. rst-class:: classref-property
  4990. :ref:`bool<class_bool>` **physics/2d/run_on_separate_thread** = ``false``
  4991. 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.
  4992. .. rst-class:: classref-item-separator
  4993. ----
  4994. .. _class_ProjectSettings_property_physics/2d/sleep_threshold_angular:
  4995. .. rst-class:: classref-property
  4996. :ref:`float<class_float>` **physics/2d/sleep_threshold_angular** = ``0.139626``
  4997. 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>`.
  4998. .. rst-class:: classref-item-separator
  4999. ----
  5000. .. _class_ProjectSettings_property_physics/2d/sleep_threshold_linear:
  5001. .. rst-class:: classref-property
  5002. :ref:`float<class_float>` **physics/2d/sleep_threshold_linear** = ``2.0``
  5003. 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>`.
  5004. .. rst-class:: classref-item-separator
  5005. ----
  5006. .. _class_ProjectSettings_property_physics/2d/solver/contact_max_allowed_penetration:
  5007. .. rst-class:: classref-property
  5008. :ref:`float<class_float>` **physics/2d/solver/contact_max_allowed_penetration** = ``0.3``
  5009. 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>`.
  5010. .. rst-class:: classref-item-separator
  5011. ----
  5012. .. _class_ProjectSettings_property_physics/2d/solver/contact_max_separation:
  5013. .. rst-class:: classref-property
  5014. :ref:`float<class_float>` **physics/2d/solver/contact_max_separation** = ``1.5``
  5015. 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>`.
  5016. .. rst-class:: classref-item-separator
  5017. ----
  5018. .. _class_ProjectSettings_property_physics/2d/solver/contact_recycle_radius:
  5019. .. rst-class:: classref-property
  5020. :ref:`float<class_float>` **physics/2d/solver/contact_recycle_radius** = ``1.0``
  5021. 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>`.
  5022. .. rst-class:: classref-item-separator
  5023. ----
  5024. .. _class_ProjectSettings_property_physics/2d/solver/default_constraint_bias:
  5025. .. rst-class:: classref-property
  5026. :ref:`float<class_float>` **physics/2d/solver/default_constraint_bias** = ``0.2``
  5027. 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>`.
  5028. Individual constraints can have a specific bias value (see :ref:`Joint2D.bias<class_Joint2D_property_bias>`).
  5029. .. rst-class:: classref-item-separator
  5030. ----
  5031. .. _class_ProjectSettings_property_physics/2d/solver/default_contact_bias:
  5032. .. rst-class:: classref-property
  5033. :ref:`float<class_float>` **physics/2d/solver/default_contact_bias** = ``0.8``
  5034. 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>`.
  5035. Individual shapes can have a specific bias value (see :ref:`Shape2D.custom_solver_bias<class_Shape2D_property_custom_solver_bias>`).
  5036. .. rst-class:: classref-item-separator
  5037. ----
  5038. .. _class_ProjectSettings_property_physics/2d/solver/solver_iterations:
  5039. .. rst-class:: classref-property
  5040. :ref:`int<class_int>` **physics/2d/solver/solver_iterations** = ``16``
  5041. 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>`.
  5042. .. rst-class:: classref-item-separator
  5043. ----
  5044. .. _class_ProjectSettings_property_physics/2d/time_before_sleep:
  5045. .. rst-class:: classref-property
  5046. :ref:`float<class_float>` **physics/2d/time_before_sleep** = ``0.5``
  5047. 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>`.
  5048. .. rst-class:: classref-item-separator
  5049. ----
  5050. .. _class_ProjectSettings_property_physics/3d/default_angular_damp:
  5051. .. rst-class:: classref-property
  5052. :ref:`float<class_float>` **physics/3d/default_angular_damp** = ``0.1``
  5053. The default angular damp in 3D.
  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/3d/default_gravity:
  5058. .. rst-class:: classref-property
  5059. :ref:`float<class_float>` **physics/3d/default_gravity** = ``9.8``
  5060. The default gravity strength in 3D (in meters per second squared).
  5061. \ **Note:** This property is only read when the project starts. To change the default gravity at runtime, use the following code sample:
  5062. .. tabs::
  5063. .. code-tab:: gdscript
  5064. # Set the default gravity strength to 9.8.
  5065. PhysicsServer3D.area_set_param(get_viewport().find_world().space, PhysicsServer3D.AREA_PARAM_GRAVITY, 9.8)
  5066. .. code-tab:: csharp
  5067. // Set the default gravity strength to 9.8.
  5068. PhysicsServer3D.AreaSetParam(GetViewport().FindWorld().Space, PhysicsServer3D.AreaParameter.Gravity, 9.8);
  5069. .. rst-class:: classref-item-separator
  5070. ----
  5071. .. _class_ProjectSettings_property_physics/3d/default_gravity_vector:
  5072. .. rst-class:: classref-property
  5073. :ref:`Vector3<class_Vector3>` **physics/3d/default_gravity_vector** = ``Vector3(0, -1, 0)``
  5074. The default gravity direction in 3D.
  5075. \ **Note:** This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample:
  5076. .. tabs::
  5077. .. code-tab:: gdscript
  5078. # Set the default gravity direction to `Vector3(0, -1, 0)`.
  5079. PhysicsServer3D.area_set_param(get_viewport().find_world().get_space(), PhysicsServer3D.AREA_PARAM_GRAVITY_VECTOR, Vector3.DOWN)
  5080. .. code-tab:: csharp
  5081. // Set the default gravity direction to `Vector3(0, -1, 0)`.
  5082. PhysicsServer3D.AreaSetParam(GetViewport().FindWorld().Space, PhysicsServer3D.AreaParameter.GravityVector, Vector3.Down)
  5083. .. rst-class:: classref-item-separator
  5084. ----
  5085. .. _class_ProjectSettings_property_physics/3d/default_linear_damp:
  5086. .. rst-class:: classref-property
  5087. :ref:`float<class_float>` **physics/3d/default_linear_damp** = ``0.1``
  5088. The default linear damp in 3D.
  5089. \ **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.
  5090. .. rst-class:: classref-item-separator
  5091. ----
  5092. .. _class_ProjectSettings_property_physics/3d/physics_engine:
  5093. .. rst-class:: classref-property
  5094. :ref:`String<class_String>` **physics/3d/physics_engine** = ``"DEFAULT"``
  5095. Sets which physics engine to use for 3D physics.
  5096. "DEFAULT" and "GodotPhysics3D" are the same, as there is currently no alternative 3D physics server implemented.
  5097. .. rst-class:: classref-item-separator
  5098. ----
  5099. .. _class_ProjectSettings_property_physics/3d/run_on_separate_thread:
  5100. .. rst-class:: classref-property
  5101. :ref:`bool<class_bool>` **physics/3d/run_on_separate_thread** = ``false``
  5102. 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.
  5103. .. rst-class:: classref-item-separator
  5104. ----
  5105. .. _class_ProjectSettings_property_physics/3d/sleep_threshold_angular:
  5106. .. rst-class:: classref-property
  5107. :ref:`float<class_float>` **physics/3d/sleep_threshold_angular** = ``0.139626``
  5108. 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>`.
  5109. .. rst-class:: classref-item-separator
  5110. ----
  5111. .. _class_ProjectSettings_property_physics/3d/sleep_threshold_linear:
  5112. .. rst-class:: classref-property
  5113. :ref:`float<class_float>` **physics/3d/sleep_threshold_linear** = ``0.1``
  5114. 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>`.
  5115. .. rst-class:: classref-item-separator
  5116. ----
  5117. .. _class_ProjectSettings_property_physics/3d/solver/contact_max_allowed_penetration:
  5118. .. rst-class:: classref-property
  5119. :ref:`float<class_float>` **physics/3d/solver/contact_max_allowed_penetration** = ``0.01``
  5120. 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>`.
  5121. .. rst-class:: classref-item-separator
  5122. ----
  5123. .. _class_ProjectSettings_property_physics/3d/solver/contact_max_separation:
  5124. .. rst-class:: classref-property
  5125. :ref:`float<class_float>` **physics/3d/solver/contact_max_separation** = ``0.05``
  5126. 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>`.
  5127. .. rst-class:: classref-item-separator
  5128. ----
  5129. .. _class_ProjectSettings_property_physics/3d/solver/contact_recycle_radius:
  5130. .. rst-class:: classref-property
  5131. :ref:`float<class_float>` **physics/3d/solver/contact_recycle_radius** = ``0.01``
  5132. 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>`.
  5133. .. rst-class:: classref-item-separator
  5134. ----
  5135. .. _class_ProjectSettings_property_physics/3d/solver/default_contact_bias:
  5136. .. rst-class:: classref-property
  5137. :ref:`float<class_float>` **physics/3d/solver/default_contact_bias** = ``0.8``
  5138. 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>`.
  5139. Individual shapes can have a specific bias value (see :ref:`Shape3D.custom_solver_bias<class_Shape3D_property_custom_solver_bias>`).
  5140. .. rst-class:: classref-item-separator
  5141. ----
  5142. .. _class_ProjectSettings_property_physics/3d/solver/solver_iterations:
  5143. .. rst-class:: classref-property
  5144. :ref:`int<class_int>` **physics/3d/solver/solver_iterations** = ``16``
  5145. 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>`.
  5146. .. rst-class:: classref-item-separator
  5147. ----
  5148. .. _class_ProjectSettings_property_physics/3d/time_before_sleep:
  5149. .. rst-class:: classref-property
  5150. :ref:`float<class_float>` **physics/3d/time_before_sleep** = ``0.5``
  5151. 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>`.
  5152. .. rst-class:: classref-item-separator
  5153. ----
  5154. .. _class_ProjectSettings_property_physics/common/enable_object_picking:
  5155. .. rst-class:: classref-property
  5156. :ref:`bool<class_bool>` **physics/common/enable_object_picking** = ``true``
  5157. Enables :ref:`Viewport.physics_object_picking<class_Viewport_property_physics_object_picking>` on the root viewport.
  5158. .. rst-class:: classref-item-separator
  5159. ----
  5160. .. _class_ProjectSettings_property_physics/common/max_physics_steps_per_frame:
  5161. .. rst-class:: classref-property
  5162. :ref:`int<class_int>` **physics/common/max_physics_steps_per_frame** = ``8``
  5163. 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.
  5164. \ **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.
  5165. .. rst-class:: classref-item-separator
  5166. ----
  5167. .. _class_ProjectSettings_property_physics/common/physics_jitter_fix:
  5168. .. rst-class:: classref-property
  5169. :ref:`float<class_float>` **physics/common/physics_jitter_fix** = ``0.5``
  5170. 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.
  5171. \ **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``.
  5172. \ **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.
  5173. .. rst-class:: classref-item-separator
  5174. ----
  5175. .. _class_ProjectSettings_property_physics/common/physics_ticks_per_second:
  5176. .. rst-class:: classref-property
  5177. :ref:`int<class_int>` **physics/common/physics_ticks_per_second** = ``60``
  5178. 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>`.
  5179. \ **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.
  5180. \ **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.
  5181. .. rst-class:: classref-item-separator
  5182. ----
  5183. .. _class_ProjectSettings_property_rendering/2d/sdf/oversize:
  5184. .. rst-class:: classref-property
  5185. :ref:`int<class_int>` **rendering/2d/sdf/oversize** = ``1``
  5186. 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.
  5187. 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).
  5188. \ **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.
  5189. .. rst-class:: classref-item-separator
  5190. ----
  5191. .. _class_ProjectSettings_property_rendering/2d/sdf/scale:
  5192. .. rst-class:: classref-property
  5193. :ref:`int<class_int>` **rendering/2d/sdf/scale** = ``1``
  5194. 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.
  5195. \ **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.
  5196. .. rst-class:: classref-item-separator
  5197. ----
  5198. .. _class_ProjectSettings_property_rendering/2d/shadow_atlas/size:
  5199. .. rst-class:: classref-property
  5200. :ref:`int<class_int>` **rendering/2d/shadow_atlas/size** = ``2048``
  5201. 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.
  5202. \ **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.
  5203. .. rst-class:: classref-item-separator
  5204. ----
  5205. .. _class_ProjectSettings_property_rendering/2d/snap/snap_2d_transforms_to_pixel:
  5206. .. rst-class:: classref-property
  5207. :ref:`bool<class_bool>` **rendering/2d/snap/snap_2d_transforms_to_pixel** = ``false``
  5208. 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.
  5209. \ **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.
  5210. \ **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>`.
  5211. .. rst-class:: classref-item-separator
  5212. ----
  5213. .. _class_ProjectSettings_property_rendering/2d/snap/snap_2d_vertices_to_pixel:
  5214. .. rst-class:: classref-property
  5215. :ref:`bool<class_bool>` **rendering/2d/snap/snap_2d_vertices_to_pixel** = ``false``
  5216. 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.
  5217. \ **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.
  5218. \ **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>`.
  5219. .. rst-class:: classref-item-separator
  5220. ----
  5221. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d:
  5222. .. rst-class:: classref-property
  5223. :ref:`int<class_int>` **rendering/anti_aliasing/quality/msaa_2d** = ``0``
  5224. 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.
  5225. \ **Note:** MSAA is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5226. .. rst-class:: classref-item-separator
  5227. ----
  5228. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d:
  5229. .. rst-class:: classref-property
  5230. :ref:`int<class_int>` **rendering/anti_aliasing/quality/msaa_3d** = ``0``
  5231. 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.
  5232. \ **Note:** MSAA is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5233. .. rst-class:: classref-item-separator
  5234. ----
  5235. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa:
  5236. .. rst-class:: classref-property
  5237. :ref:`int<class_int>` **rendering/anti_aliasing/quality/screen_space_aa** = ``0``
  5238. 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>`).
  5239. 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>`.
  5240. \ **Note:** Screen-space antialiasing is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5241. .. rst-class:: classref-item-separator
  5242. ----
  5243. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding:
  5244. .. rst-class:: classref-property
  5245. :ref:`bool<class_bool>` **rendering/anti_aliasing/quality/use_debanding** = ``false``
  5246. 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>`.
  5247. 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.
  5248. \ **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.
  5249. .. rst-class:: classref-item-separator
  5250. ----
  5251. .. _class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa:
  5252. .. rst-class:: classref-property
  5253. :ref:`bool<class_bool>` **rendering/anti_aliasing/quality/use_taa** = ``false``
  5254. 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>`).
  5255. \ **Note:** The implementation is not complete yet. Some visual instances such as particles and skinned meshes may show ghosting artifacts in motion.
  5256. \ **Note:** TAA is only supported in the Forward+ rendering method, not Mobile or Compatibility.
  5257. .. rst-class:: classref-item-separator
  5258. ----
  5259. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/amount:
  5260. .. rst-class:: classref-property
  5261. :ref:`float<class_float>` **rendering/anti_aliasing/screen_space_roughness_limiter/amount** = ``0.25``
  5262. **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.
  5263. .. rst-class:: classref-item-separator
  5264. ----
  5265. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/enabled:
  5266. .. rst-class:: classref-property
  5267. :ref:`bool<class_bool>` **rendering/anti_aliasing/screen_space_roughness_limiter/enabled** = ``true``
  5268. 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.
  5269. \ **Note:** The screen-space roughness limiter is only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  5270. \ **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.
  5271. .. rst-class:: classref-item-separator
  5272. ----
  5273. .. _class_ProjectSettings_property_rendering/anti_aliasing/screen_space_roughness_limiter/limit:
  5274. .. rst-class:: classref-property
  5275. :ref:`float<class_float>` **rendering/anti_aliasing/screen_space_roughness_limiter/limit** = ``0.18``
  5276. **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.
  5277. .. rst-class:: classref-item-separator
  5278. ----
  5279. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_quality:
  5280. .. rst-class:: classref-property
  5281. :ref:`int<class_int>` **rendering/camera/depth_of_field/depth_of_field_bokeh_quality** = ``1``
  5282. Sets the quality of the depth of field effect. Higher quality takes more samples, which is slower but looks smoother.
  5283. .. rst-class:: classref-item-separator
  5284. ----
  5285. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_bokeh_shape:
  5286. .. rst-class:: classref-property
  5287. :ref:`int<class_int>` **rendering/camera/depth_of_field/depth_of_field_bokeh_shape** = ``1``
  5288. 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.
  5289. .. rst-class:: classref-item-separator
  5290. ----
  5291. .. _class_ProjectSettings_property_rendering/camera/depth_of_field/depth_of_field_use_jitter:
  5292. .. rst-class:: classref-property
  5293. :ref:`bool<class_bool>` **rendering/camera/depth_of_field/depth_of_field_use_jitter** = ``false``
  5294. 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.
  5295. .. rst-class:: classref-item-separator
  5296. ----
  5297. .. _class_ProjectSettings_property_rendering/driver/depth_prepass/disable_for_vendors:
  5298. .. rst-class:: classref-property
  5299. :ref:`String<class_String>` **rendering/driver/depth_prepass/disable_for_vendors** = ``"PowerVR,Mali,Adreno,Apple"``
  5300. 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.
  5301. .. rst-class:: classref-item-separator
  5302. ----
  5303. .. _class_ProjectSettings_property_rendering/driver/depth_prepass/enable:
  5304. .. rst-class:: classref-property
  5305. :ref:`bool<class_bool>` **rendering/driver/depth_prepass/enable** = ``true``
  5306. 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.
  5307. \ **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.
  5308. .. rst-class:: classref-item-separator
  5309. ----
  5310. .. _class_ProjectSettings_property_rendering/driver/threads/thread_model:
  5311. .. rst-class:: classref-property
  5312. :ref:`int<class_int>` **rendering/driver/threads/thread_model** = ``1``
  5313. 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.
  5314. \ **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.
  5315. .. rst-class:: classref-item-separator
  5316. ----
  5317. .. _class_ProjectSettings_property_rendering/environment/defaults/default_clear_color:
  5318. .. rst-class:: classref-property
  5319. :ref:`Color<class_Color>` **rendering/environment/defaults/default_clear_color** = ``Color(0.3, 0.3, 0.3, 1)``
  5320. 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>`.
  5321. .. rst-class:: classref-item-separator
  5322. ----
  5323. .. _class_ProjectSettings_property_rendering/environment/defaults/default_environment:
  5324. .. rst-class:: classref-property
  5325. :ref:`String<class_String>` **rendering/environment/defaults/default_environment** = ``""``
  5326. :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.
  5327. .. rst-class:: classref-item-separator
  5328. ----
  5329. .. _class_ProjectSettings_property_rendering/environment/glow/upscale_mode:
  5330. .. rst-class:: classref-property
  5331. :ref:`int<class_int>` **rendering/environment/glow/upscale_mode** = ``1``
  5332. 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.
  5333. .. rst-class:: classref-item-separator
  5334. ----
  5335. .. _class_ProjectSettings_property_rendering/environment/glow/upscale_mode.mobile:
  5336. .. rst-class:: classref-property
  5337. :ref:`int<class_int>` **rendering/environment/glow/upscale_mode.mobile** = ``0``
  5338. 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.
  5339. .. rst-class:: classref-item-separator
  5340. ----
  5341. .. _class_ProjectSettings_property_rendering/environment/screen_space_reflection/roughness_quality:
  5342. .. rst-class:: classref-property
  5343. :ref:`int<class_int>` **rendering/environment/screen_space_reflection/roughness_quality** = ``1``
  5344. 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.
  5345. .. rst-class:: classref-item-separator
  5346. ----
  5347. .. _class_ProjectSettings_property_rendering/environment/ssao/adaptive_target:
  5348. .. rst-class:: classref-property
  5349. :ref:`float<class_float>` **rendering/environment/ssao/adaptive_target** = ``0.5``
  5350. 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.
  5351. .. rst-class:: classref-item-separator
  5352. ----
  5353. .. _class_ProjectSettings_property_rendering/environment/ssao/blur_passes:
  5354. .. rst-class:: classref-property
  5355. :ref:`int<class_int>` **rendering/environment/ssao/blur_passes** = ``2``
  5356. 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.
  5357. .. rst-class:: classref-item-separator
  5358. ----
  5359. .. _class_ProjectSettings_property_rendering/environment/ssao/fadeout_from:
  5360. .. rst-class:: classref-property
  5361. :ref:`float<class_float>` **rendering/environment/ssao/fadeout_from** = ``50.0``
  5362. Distance at which the screen-space ambient occlusion effect starts to fade out. Use this hide ambient occlusion at great distances.
  5363. .. rst-class:: classref-item-separator
  5364. ----
  5365. .. _class_ProjectSettings_property_rendering/environment/ssao/fadeout_to:
  5366. .. rst-class:: classref-property
  5367. :ref:`float<class_float>` **rendering/environment/ssao/fadeout_to** = ``300.0``
  5368. Distance at which the screen-space ambient occlusion is fully faded out. Use this hide ambient occlusion at great distances.
  5369. .. rst-class:: classref-item-separator
  5370. ----
  5371. .. _class_ProjectSettings_property_rendering/environment/ssao/half_size:
  5372. .. rst-class:: classref-property
  5373. :ref:`bool<class_bool>` **rendering/environment/ssao/half_size** = ``true``
  5374. 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.
  5375. .. rst-class:: classref-item-separator
  5376. ----
  5377. .. _class_ProjectSettings_property_rendering/environment/ssao/quality:
  5378. .. rst-class:: classref-property
  5379. :ref:`int<class_int>` **rendering/environment/ssao/quality** = ``2``
  5380. 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.
  5381. .. rst-class:: classref-item-separator
  5382. ----
  5383. .. _class_ProjectSettings_property_rendering/environment/ssil/adaptive_target:
  5384. .. rst-class:: classref-property
  5385. :ref:`float<class_float>` **rendering/environment/ssil/adaptive_target** = ``0.5``
  5386. 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.
  5387. .. rst-class:: classref-item-separator
  5388. ----
  5389. .. _class_ProjectSettings_property_rendering/environment/ssil/blur_passes:
  5390. .. rst-class:: classref-property
  5391. :ref:`int<class_int>` **rendering/environment/ssil/blur_passes** = ``4``
  5392. 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.
  5393. .. rst-class:: classref-item-separator
  5394. ----
  5395. .. _class_ProjectSettings_property_rendering/environment/ssil/fadeout_from:
  5396. .. rst-class:: classref-property
  5397. :ref:`float<class_float>` **rendering/environment/ssil/fadeout_from** = ``50.0``
  5398. Distance at which the screen-space indirect lighting effect starts to fade out. Use this hide screen-space indirect lighting at great distances.
  5399. .. rst-class:: classref-item-separator
  5400. ----
  5401. .. _class_ProjectSettings_property_rendering/environment/ssil/fadeout_to:
  5402. .. rst-class:: classref-property
  5403. :ref:`float<class_float>` **rendering/environment/ssil/fadeout_to** = ``300.0``
  5404. Distance at which the screen-space indirect lighting is fully faded out. Use this hide screen-space indirect lighting at great distances.
  5405. .. rst-class:: classref-item-separator
  5406. ----
  5407. .. _class_ProjectSettings_property_rendering/environment/ssil/half_size:
  5408. .. rst-class:: classref-property
  5409. :ref:`bool<class_bool>` **rendering/environment/ssil/half_size** = ``true``
  5410. 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.
  5411. .. rst-class:: classref-item-separator
  5412. ----
  5413. .. _class_ProjectSettings_property_rendering/environment/ssil/quality:
  5414. .. rst-class:: classref-property
  5415. :ref:`int<class_int>` **rendering/environment/ssil/quality** = ``2``
  5416. 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.
  5417. .. rst-class:: classref-item-separator
  5418. ----
  5419. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale:
  5420. .. rst-class:: classref-property
  5421. :ref:`float<class_float>` **rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale** = ``0.01``
  5422. 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>`.
  5423. \ **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.
  5424. .. rst-class:: classref-item-separator
  5425. ----
  5426. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_quality:
  5427. .. rst-class:: classref-property
  5428. :ref:`int<class_int>` **rendering/environment/subsurface_scattering/subsurface_scattering_quality** = ``1``
  5429. 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``.
  5430. \ **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.
  5431. .. rst-class:: classref-item-separator
  5432. ----
  5433. .. _class_ProjectSettings_property_rendering/environment/subsurface_scattering/subsurface_scattering_scale:
  5434. .. rst-class:: classref-property
  5435. :ref:`float<class_float>` **rendering/environment/subsurface_scattering/subsurface_scattering_scale** = ``0.05``
  5436. 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>`.
  5437. \ **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.
  5438. .. rst-class:: classref-item-separator
  5439. ----
  5440. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/use_filter:
  5441. .. rst-class:: classref-property
  5442. :ref:`int<class_int>` **rendering/environment/volumetric_fog/use_filter** = ``1``
  5443. 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.
  5444. .. rst-class:: classref-item-separator
  5445. ----
  5446. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_depth:
  5447. .. rst-class:: classref-property
  5448. :ref:`int<class_int>` **rendering/environment/volumetric_fog/volume_depth** = ``64``
  5449. 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>`.
  5450. .. rst-class:: classref-item-separator
  5451. ----
  5452. .. _class_ProjectSettings_property_rendering/environment/volumetric_fog/volume_size:
  5453. .. rst-class:: classref-property
  5454. :ref:`int<class_int>` **rendering/environment/volumetric_fog/volume_size** = ``64``
  5455. 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.
  5456. .. rst-class:: classref-item-separator
  5457. ----
  5458. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver:
  5459. .. rst-class:: classref-property
  5460. :ref:`String<class_String>` **rendering/gl_compatibility/driver** = ``"opengl3"``
  5461. 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.
  5462. .. rst-class:: classref-item-separator
  5463. ----
  5464. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.android:
  5465. .. rst-class:: classref-property
  5466. :ref:`String<class_String>` **rendering/gl_compatibility/driver.android** = ``"opengl3"``
  5467. Android override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5468. .. rst-class:: classref-item-separator
  5469. ----
  5470. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.ios:
  5471. .. rst-class:: classref-property
  5472. :ref:`String<class_String>` **rendering/gl_compatibility/driver.ios** = ``"opengl3"``
  5473. iOS override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5474. .. rst-class:: classref-item-separator
  5475. ----
  5476. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.linuxbsd:
  5477. .. rst-class:: classref-property
  5478. :ref:`String<class_String>` **rendering/gl_compatibility/driver.linuxbsd** = ``"opengl3"``
  5479. LinuxBSD override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5480. .. rst-class:: classref-item-separator
  5481. ----
  5482. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.macos:
  5483. .. rst-class:: classref-property
  5484. :ref:`String<class_String>` **rendering/gl_compatibility/driver.macos** = ``"opengl3"``
  5485. macOS override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5486. .. rst-class:: classref-item-separator
  5487. ----
  5488. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.web:
  5489. .. rst-class:: classref-property
  5490. :ref:`String<class_String>` **rendering/gl_compatibility/driver.web** = ``"opengl3"``
  5491. Web override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5492. .. rst-class:: classref-item-separator
  5493. ----
  5494. .. _class_ProjectSettings_property_rendering/gl_compatibility/driver.windows:
  5495. .. rst-class:: classref-property
  5496. :ref:`String<class_String>` **rendering/gl_compatibility/driver.windows** = ``"opengl3"``
  5497. Windows override for :ref:`rendering/gl_compatibility/driver<class_ProjectSettings_property_rendering/gl_compatibility/driver>`.
  5498. .. rst-class:: classref-item-separator
  5499. ----
  5500. .. _class_ProjectSettings_property_rendering/gl_compatibility/item_buffer_size:
  5501. .. rst-class:: classref-property
  5502. :ref:`int<class_int>` **rendering/gl_compatibility/item_buffer_size** = ``16384``
  5503. 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.
  5504. .. rst-class:: classref-item-separator
  5505. ----
  5506. .. _class_ProjectSettings_property_rendering/gl_compatibility/nvidia_disable_threaded_optimization:
  5507. .. rst-class:: classref-property
  5508. :ref:`bool<class_bool>` **rendering/gl_compatibility/nvidia_disable_threaded_optimization** = ``true``
  5509. If ``true``, disables the threaded optimization feature from the NVIDIA drivers, which are known to cause stuttering in most OpenGL applications.
  5510. \ **Note:** This setting only works on Windows, as threaded optimization is disabled by default on other platforms.
  5511. .. rst-class:: classref-item-separator
  5512. ----
  5513. .. _class_ProjectSettings_property_rendering/global_illumination/gi/use_half_resolution:
  5514. .. rst-class:: classref-property
  5515. :ref:`bool<class_bool>` **rendering/global_illumination/gi/use_half_resolution** = ``false``
  5516. 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.
  5517. \ **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.
  5518. .. rst-class:: classref-item-separator
  5519. ----
  5520. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_converge:
  5521. .. rst-class:: classref-property
  5522. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/frames_to_converge** = ``5``
  5523. 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>`.
  5524. \ **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.
  5525. .. rst-class:: classref-item-separator
  5526. ----
  5527. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/frames_to_update_lights:
  5528. .. rst-class:: classref-property
  5529. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/frames_to_update_lights** = ``2``
  5530. 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>`.
  5531. \ **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.
  5532. \ **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.
  5533. .. rst-class:: classref-item-separator
  5534. ----
  5535. .. _class_ProjectSettings_property_rendering/global_illumination/sdfgi/probe_ray_count:
  5536. .. rst-class:: classref-property
  5537. :ref:`int<class_int>` **rendering/global_illumination/sdfgi/probe_ray_count** = ``1``
  5538. 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>`.
  5539. \ **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.
  5540. .. rst-class:: classref-item-separator
  5541. ----
  5542. .. _class_ProjectSettings_property_rendering/global_illumination/voxel_gi/quality:
  5543. .. rst-class:: classref-property
  5544. :ref:`int<class_int>` **rendering/global_illumination/voxel_gi/quality** = ``0``
  5545. 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.
  5546. \ **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.
  5547. .. rst-class:: classref-item-separator
  5548. ----
  5549. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_pass:
  5550. .. rst-class:: classref-property
  5551. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/max_rays_per_pass** = ``32``
  5552. 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.
  5553. .. rst-class:: classref-item-separator
  5554. ----
  5555. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/max_rays_per_probe_pass:
  5556. .. rst-class:: classref-property
  5557. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/max_rays_per_probe_pass** = ``64``
  5558. 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.
  5559. .. rst-class:: classref-item-separator
  5560. ----
  5561. .. _class_ProjectSettings_property_rendering/lightmapping/bake_performance/region_size:
  5562. .. rst-class:: classref-property
  5563. :ref:`int<class_int>` **rendering/lightmapping/bake_performance/region_size** = ``512``
  5564. The region size to use when baking lightmaps with :ref:`LightmapGI<class_LightmapGI>`.
  5565. .. rst-class:: classref-item-separator
  5566. ----
  5567. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_probe_ray_count:
  5568. .. rst-class:: classref-property
  5569. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/high_quality_probe_ray_count** = ``512``
  5570. 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>`.
  5571. .. rst-class:: classref-item-separator
  5572. ----
  5573. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/high_quality_ray_count:
  5574. .. rst-class:: classref-property
  5575. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/high_quality_ray_count** = ``256``
  5576. 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>`.
  5577. .. rst-class:: classref-item-separator
  5578. ----
  5579. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_probe_ray_count:
  5580. .. rst-class:: classref-property
  5581. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/low_quality_probe_ray_count** = ``64``
  5582. 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>`.
  5583. .. rst-class:: classref-item-separator
  5584. ----
  5585. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/low_quality_ray_count:
  5586. .. rst-class:: classref-property
  5587. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/low_quality_ray_count** = ``16``
  5588. 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>`.
  5589. .. rst-class:: classref-item-separator
  5590. ----
  5591. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_probe_ray_count:
  5592. .. rst-class:: classref-property
  5593. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/medium_quality_probe_ray_count** = ``256``
  5594. 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>`.
  5595. .. rst-class:: classref-item-separator
  5596. ----
  5597. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/medium_quality_ray_count:
  5598. .. rst-class:: classref-property
  5599. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/medium_quality_ray_count** = ``64``
  5600. 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>`.
  5601. .. rst-class:: classref-item-separator
  5602. ----
  5603. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count:
  5604. .. rst-class:: classref-property
  5605. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/ultra_quality_probe_ray_count** = ``2048``
  5606. 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>`.
  5607. .. rst-class:: classref-item-separator
  5608. ----
  5609. .. _class_ProjectSettings_property_rendering/lightmapping/bake_quality/ultra_quality_ray_count:
  5610. .. rst-class:: classref-property
  5611. :ref:`int<class_int>` **rendering/lightmapping/bake_quality/ultra_quality_ray_count** = ``1024``
  5612. 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>`.
  5613. .. rst-class:: classref-item-separator
  5614. ----
  5615. .. _class_ProjectSettings_property_rendering/lightmapping/primitive_meshes/texel_size:
  5616. .. rst-class:: classref-property
  5617. :ref:`float<class_float>` **rendering/lightmapping/primitive_meshes/texel_size** = ``0.2``
  5618. 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.
  5619. .. rst-class:: classref-item-separator
  5620. ----
  5621. .. _class_ProjectSettings_property_rendering/lightmapping/probe_capture/update_speed:
  5622. .. rst-class:: classref-property
  5623. :ref:`float<class_float>` **rendering/lightmapping/probe_capture/update_speed** = ``15``
  5624. 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.
  5625. .. rst-class:: classref-item-separator
  5626. ----
  5627. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/16_bits:
  5628. .. rst-class:: classref-property
  5629. :ref:`bool<class_bool>` **rendering/lights_and_shadows/directional_shadow/16_bits** = ``true``
  5630. 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.
  5631. .. rst-class:: classref-item-separator
  5632. ----
  5633. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size:
  5634. .. rst-class:: classref-property
  5635. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/size** = ``4096``
  5636. 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.
  5637. .. rst-class:: classref-item-separator
  5638. ----
  5639. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/size.mobile:
  5640. .. rst-class:: classref-property
  5641. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/size.mobile** = ``2048``
  5642. 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.
  5643. .. rst-class:: classref-item-separator
  5644. ----
  5645. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality:
  5646. .. rst-class:: classref-property
  5647. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality** = ``2``
  5648. 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.
  5649. \ **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>`.
  5650. \ **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.
  5651. .. rst-class:: classref-item-separator
  5652. ----
  5653. .. _class_ProjectSettings_property_rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile:
  5654. .. rst-class:: classref-property
  5655. :ref:`int<class_int>` **rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile** = ``0``
  5656. 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.
  5657. .. rst-class:: classref-item-separator
  5658. ----
  5659. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_16_bits:
  5660. .. rst-class:: classref-property
  5661. :ref:`bool<class_bool>` **rendering/lights_and_shadows/positional_shadow/atlas_16_bits** = ``true``
  5662. 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.
  5663. .. rst-class:: classref-item-separator
  5664. ----
  5665. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv:
  5666. .. rst-class:: classref-property
  5667. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_0_subdiv** = ``2``
  5668. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5669. .. rst-class:: classref-item-separator
  5670. ----
  5671. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv:
  5672. .. rst-class:: classref-property
  5673. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_1_subdiv** = ``2``
  5674. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5675. .. rst-class:: classref-item-separator
  5676. ----
  5677. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv:
  5678. .. rst-class:: classref-property
  5679. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_2_subdiv** = ``3``
  5680. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5681. .. rst-class:: classref-item-separator
  5682. ----
  5683. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv:
  5684. .. rst-class:: classref-property
  5685. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_quadrant_3_subdiv** = ``4``
  5686. Subdivision quadrant size for shadow mapping. See shadow mapping documentation.
  5687. .. rst-class:: classref-item-separator
  5688. ----
  5689. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size:
  5690. .. rst-class:: classref-property
  5691. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_size** = ``4096``
  5692. Size for shadow atlas (used for OmniLights and SpotLights). See documentation.
  5693. .. rst-class:: classref-item-separator
  5694. ----
  5695. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/atlas_size.mobile:
  5696. .. rst-class:: classref-property
  5697. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/atlas_size.mobile** = ``2048``
  5698. 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.
  5699. .. rst-class:: classref-item-separator
  5700. ----
  5701. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality:
  5702. .. rst-class:: classref-property
  5703. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality** = ``2``
  5704. 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.
  5705. \ **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>`.
  5706. \ **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.
  5707. .. rst-class:: classref-item-separator
  5708. ----
  5709. .. _class_ProjectSettings_property_rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile:
  5710. .. rst-class:: classref-property
  5711. :ref:`int<class_int>` **rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile** = ``0``
  5712. 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.
  5713. .. rst-class:: classref-item-separator
  5714. ----
  5715. .. _class_ProjectSettings_property_rendering/lights_and_shadows/use_physical_light_units:
  5716. .. rst-class:: classref-property
  5717. :ref:`bool<class_bool>` **rendering/lights_and_shadows/use_physical_light_units** = ``false``
  5718. 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.
  5719. .. rst-class:: classref-item-separator
  5720. ----
  5721. .. _class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements:
  5722. .. rst-class:: classref-property
  5723. :ref:`float<class_float>` **rendering/limits/cluster_builder/max_clustered_elements** = ``512``
  5724. 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.
  5725. Decreasing this value may improve GPU performance on certain setups, even if the maximum number of clustered elements is never reached in the project.
  5726. \ **Note:** This setting is only effective when using the Forward+ rendering method, not Mobile and Compatibility.
  5727. .. rst-class:: classref-item-separator
  5728. ----
  5729. .. _class_ProjectSettings_property_rendering/limits/forward_renderer/threaded_render_minimum_instances:
  5730. .. rst-class:: classref-property
  5731. :ref:`int<class_int>` **rendering/limits/forward_renderer/threaded_render_minimum_instances** = ``500``
  5732. .. container:: contribute
  5733. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5734. .. rst-class:: classref-item-separator
  5735. ----
  5736. .. _class_ProjectSettings_property_rendering/limits/global_shader_variables/buffer_size:
  5737. .. rst-class:: classref-property
  5738. :ref:`int<class_int>` **rendering/limits/global_shader_variables/buffer_size** = ``65536``
  5739. .. container:: contribute
  5740. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5741. .. rst-class:: classref-item-separator
  5742. ----
  5743. .. _class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object:
  5744. .. rst-class:: classref-property
  5745. :ref:`int<class_int>` **rendering/limits/opengl/max_lights_per_object** = ``8``
  5746. 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.
  5747. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  5748. .. rst-class:: classref-item-separator
  5749. ----
  5750. .. _class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements:
  5751. .. rst-class:: classref-property
  5752. :ref:`int<class_int>` **rendering/limits/opengl/max_renderable_elements** = ``65536``
  5753. 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.
  5754. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  5755. .. rst-class:: classref-item-separator
  5756. ----
  5757. .. _class_ProjectSettings_property_rendering/limits/opengl/max_renderable_lights:
  5758. .. rst-class:: classref-property
  5759. :ref:`int<class_int>` **rendering/limits/opengl/max_renderable_lights** = ``32``
  5760. 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.
  5761. \ **Note:** This setting is only effective when using the Compatibility rendering method, not Forward+ and Mobile.
  5762. .. rst-class:: classref-item-separator
  5763. ----
  5764. .. _class_ProjectSettings_property_rendering/limits/spatial_indexer/threaded_cull_minimum_instances:
  5765. .. rst-class:: classref-property
  5766. :ref:`int<class_int>` **rendering/limits/spatial_indexer/threaded_cull_minimum_instances** = ``1000``
  5767. The minimum number of instances that must be present in a scene to enable culling computations on multiple threads. If a scene has fewer instances than this number, culling is done on a single thread.
  5768. .. rst-class:: classref-item-separator
  5769. ----
  5770. .. _class_ProjectSettings_property_rendering/limits/spatial_indexer/update_iterations_per_frame:
  5771. .. rst-class:: classref-property
  5772. :ref:`int<class_int>` **rendering/limits/spatial_indexer/update_iterations_per_frame** = ``10``
  5773. .. container:: contribute
  5774. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5775. .. rst-class:: classref-item-separator
  5776. ----
  5777. .. _class_ProjectSettings_property_rendering/limits/time/time_rollover_secs:
  5778. .. rst-class:: classref-property
  5779. :ref:`float<class_float>` **rendering/limits/time/time_rollover_secs** = ``3600``
  5780. .. container:: contribute
  5781. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5782. .. rst-class:: classref-item-separator
  5783. ----
  5784. .. _class_ProjectSettings_property_rendering/mesh_lod/lod_change/threshold_pixels:
  5785. .. rst-class:: classref-property
  5786. :ref:`float<class_float>` **rendering/mesh_lod/lod_change/threshold_pixels** = ``1.0``
  5787. 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.
  5788. \ **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).
  5789. \ **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>`.
  5790. .. rst-class:: classref-item-separator
  5791. ----
  5792. .. _class_ProjectSettings_property_rendering/occlusion_culling/bvh_build_quality:
  5793. .. rst-class:: classref-property
  5794. :ref:`int<class_int>` **rendering/occlusion_culling/bvh_build_quality** = ``2``
  5795. 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>`.
  5796. \ **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>`.
  5797. .. rst-class:: classref-item-separator
  5798. ----
  5799. .. _class_ProjectSettings_property_rendering/occlusion_culling/occlusion_rays_per_thread:
  5800. .. rst-class:: classref-property
  5801. :ref:`int<class_int>` **rendering/occlusion_culling/occlusion_rays_per_thread** = ``512``
  5802. 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>`.
  5803. \ **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>`.
  5804. .. rst-class:: classref-item-separator
  5805. ----
  5806. .. _class_ProjectSettings_property_rendering/occlusion_culling/use_occlusion_culling:
  5807. .. rst-class:: classref-property
  5808. :ref:`bool<class_bool>` **rendering/occlusion_culling/use_occlusion_culling** = ``false``
  5809. 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.
  5810. \ **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.
  5811. \ **Note:** Due to memory constraints, occlusion culling is not supported by default in Web export templates. It can be enabled by compiling custom Web export templates with ``module_raycast_enabled=yes``.
  5812. .. rst-class:: classref-item-separator
  5813. ----
  5814. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_count:
  5815. .. rst-class:: classref-property
  5816. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_count** = ``64``
  5817. 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.
  5818. .. rst-class:: classref-item-separator
  5819. ----
  5820. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size:
  5821. .. rst-class:: classref-property
  5822. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_size** = ``256``
  5823. Size of cubemap faces for :ref:`ReflectionProbe<class_ReflectionProbe>`\ s. A higher number requires more VRAM and may make reflection probe updating slower.
  5824. .. rst-class:: classref-item-separator
  5825. ----
  5826. .. _class_ProjectSettings_property_rendering/reflections/reflection_atlas/reflection_size.mobile:
  5827. .. rst-class:: classref-property
  5828. :ref:`int<class_int>` **rendering/reflections/reflection_atlas/reflection_size.mobile** = ``128``
  5829. 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.
  5830. .. rst-class:: classref-item-separator
  5831. ----
  5832. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/fast_filter_high_quality:
  5833. .. rst-class:: classref-property
  5834. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/fast_filter_high_quality** = ``false``
  5835. 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.
  5836. .. rst-class:: classref-item-separator
  5837. ----
  5838. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples:
  5839. .. rst-class:: classref-property
  5840. :ref:`int<class_int>` **rendering/reflections/sky_reflections/ggx_samples** = ``32``
  5841. 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.
  5842. .. rst-class:: classref-item-separator
  5843. ----
  5844. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/ggx_samples.mobile:
  5845. .. rst-class:: classref-property
  5846. :ref:`int<class_int>` **rendering/reflections/sky_reflections/ggx_samples.mobile** = ``16``
  5847. 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.
  5848. .. rst-class:: classref-item-separator
  5849. ----
  5850. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/roughness_layers:
  5851. .. rst-class:: classref-property
  5852. :ref:`int<class_int>` **rendering/reflections/sky_reflections/roughness_layers** = ``8``
  5853. 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.
  5854. .. rst-class:: classref-item-separator
  5855. ----
  5856. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections:
  5857. .. rst-class:: classref-property
  5858. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/texture_array_reflections** = ``true``
  5859. 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.
  5860. .. rst-class:: classref-item-separator
  5861. ----
  5862. .. _class_ProjectSettings_property_rendering/reflections/sky_reflections/texture_array_reflections.mobile:
  5863. .. rst-class:: classref-property
  5864. :ref:`bool<class_bool>` **rendering/reflections/sky_reflections/texture_array_reflections.mobile** = ``false``
  5865. 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.
  5866. .. rst-class:: classref-item-separator
  5867. ----
  5868. .. _class_ProjectSettings_property_rendering/renderer/rendering_method:
  5869. .. rst-class:: classref-property
  5870. :ref:`String<class_String>` **rendering/renderer/rendering_method** = ``"forward_plus"``
  5871. Sets the renderer that will be used by the project. Options are:
  5872. \ **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.
  5873. \ **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.
  5874. \ **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.
  5875. .. rst-class:: classref-item-separator
  5876. ----
  5877. .. _class_ProjectSettings_property_rendering/renderer/rendering_method.mobile:
  5878. .. rst-class:: classref-property
  5879. :ref:`String<class_String>` **rendering/renderer/rendering_method.mobile** = ``"mobile"``
  5880. Override for :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` on mobile devices.
  5881. .. rst-class:: classref-item-separator
  5882. ----
  5883. .. _class_ProjectSettings_property_rendering/renderer/rendering_method.web:
  5884. .. rst-class:: classref-property
  5885. :ref:`String<class_String>` **rendering/renderer/rendering_method.web** = ``"gl_compatibility"``
  5886. Override for :ref:`rendering/renderer/rendering_method<class_ProjectSettings_property_rendering/renderer/rendering_method>` on web.
  5887. .. rst-class:: classref-item-separator
  5888. ----
  5889. .. _class_ProjectSettings_property_rendering/rendering_device/driver:
  5890. .. rst-class:: classref-property
  5891. :ref:`String<class_String>` **rendering/rendering_device/driver** = ``"vulkan"``
  5892. 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.
  5893. .. rst-class:: classref-item-separator
  5894. ----
  5895. .. _class_ProjectSettings_property_rendering/rendering_device/driver.android:
  5896. .. rst-class:: classref-property
  5897. :ref:`String<class_String>` **rendering/rendering_device/driver.android** = ``"vulkan"``
  5898. Android override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5899. .. rst-class:: classref-item-separator
  5900. ----
  5901. .. _class_ProjectSettings_property_rendering/rendering_device/driver.ios:
  5902. .. rst-class:: classref-property
  5903. :ref:`String<class_String>` **rendering/rendering_device/driver.ios** = ``"vulkan"``
  5904. iOS override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5905. .. rst-class:: classref-item-separator
  5906. ----
  5907. .. _class_ProjectSettings_property_rendering/rendering_device/driver.linuxbsd:
  5908. .. rst-class:: classref-property
  5909. :ref:`String<class_String>` **rendering/rendering_device/driver.linuxbsd** = ``"vulkan"``
  5910. LinuxBSD override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5911. .. rst-class:: classref-item-separator
  5912. ----
  5913. .. _class_ProjectSettings_property_rendering/rendering_device/driver.macos:
  5914. .. rst-class:: classref-property
  5915. :ref:`String<class_String>` **rendering/rendering_device/driver.macos** = ``"vulkan"``
  5916. macOS override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5917. .. rst-class:: classref-item-separator
  5918. ----
  5919. .. _class_ProjectSettings_property_rendering/rendering_device/driver.windows:
  5920. .. rst-class:: classref-property
  5921. :ref:`String<class_String>` **rendering/rendering_device/driver.windows** = ``"vulkan"``
  5922. Windows override for :ref:`rendering/rendering_device/driver<class_ProjectSettings_property_rendering/rendering_device/driver>`.
  5923. .. rst-class:: classref-item-separator
  5924. ----
  5925. .. _class_ProjectSettings_property_rendering/rendering_device/pipeline_cache/save_chunk_size_mb:
  5926. .. rst-class:: classref-property
  5927. :ref:`float<class_float>` **rendering/rendering_device/pipeline_cache/save_chunk_size_mb** = ``3.0``
  5928. Determines at which interval pipeline cache is saved to disk. The lower the value, the more often it is saved.
  5929. .. rst-class:: classref-item-separator
  5930. ----
  5931. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/block_size_kb:
  5932. .. rst-class:: classref-property
  5933. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/block_size_kb** = ``256``
  5934. .. container:: contribute
  5935. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5936. .. rst-class:: classref-item-separator
  5937. ----
  5938. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/max_size_mb:
  5939. .. rst-class:: classref-property
  5940. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/max_size_mb** = ``128``
  5941. .. container:: contribute
  5942. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5943. .. rst-class:: classref-item-separator
  5944. ----
  5945. .. _class_ProjectSettings_property_rendering/rendering_device/staging_buffer/texture_upload_region_size_px:
  5946. .. rst-class:: classref-property
  5947. :ref:`int<class_int>` **rendering/rendering_device/staging_buffer/texture_upload_region_size_px** = ``64``
  5948. .. container:: contribute
  5949. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5950. .. rst-class:: classref-item-separator
  5951. ----
  5952. .. _class_ProjectSettings_property_rendering/rendering_device/vulkan/max_descriptors_per_pool:
  5953. .. rst-class:: classref-property
  5954. :ref:`int<class_int>` **rendering/rendering_device/vulkan/max_descriptors_per_pool** = ``64``
  5955. .. container:: contribute
  5956. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5957. .. rst-class:: classref-item-separator
  5958. ----
  5959. .. _class_ProjectSettings_property_rendering/scaling_3d/fsr_sharpness:
  5960. .. rst-class:: classref-property
  5961. :ref:`float<class_float>` **rendering/scaling_3d/fsr_sharpness** = ``0.2``
  5962. 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.
  5963. .. rst-class:: classref-item-separator
  5964. ----
  5965. .. _class_ProjectSettings_property_rendering/scaling_3d/mode:
  5966. .. rst-class:: classref-property
  5967. :ref:`int<class_int>` **rendering/scaling_3d/mode** = ``0``
  5968. 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).
  5969. \ **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.
  5970. .. rst-class:: classref-item-separator
  5971. ----
  5972. .. _class_ProjectSettings_property_rendering/scaling_3d/scale:
  5973. .. rst-class:: classref-property
  5974. :ref:`float<class_float>` **rendering/scaling_3d/scale** = ``1.0``
  5975. 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.
  5976. .. rst-class:: classref-item-separator
  5977. ----
  5978. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/compress:
  5979. .. rst-class:: classref-property
  5980. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/compress** = ``true``
  5981. .. container:: contribute
  5982. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5983. .. rst-class:: classref-item-separator
  5984. ----
  5985. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/enabled:
  5986. .. rst-class:: classref-property
  5987. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/enabled** = ``true``
  5988. Enable the shader cache, which stores compiled shaders to disk to prevent stuttering from shader compilation the next time the shader is needed.
  5989. .. rst-class:: classref-item-separator
  5990. ----
  5991. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug:
  5992. .. rst-class:: classref-property
  5993. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/strip_debug** = ``false``
  5994. .. container:: contribute
  5995. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  5996. .. rst-class:: classref-item-separator
  5997. ----
  5998. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/strip_debug.release:
  5999. .. rst-class:: classref-property
  6000. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/strip_debug.release** = ``true``
  6001. .. container:: contribute
  6002. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6003. .. rst-class:: classref-item-separator
  6004. ----
  6005. .. _class_ProjectSettings_property_rendering/shader_compiler/shader_cache/use_zstd_compression:
  6006. .. rst-class:: classref-property
  6007. :ref:`bool<class_bool>` **rendering/shader_compiler/shader_cache/use_zstd_compression** = ``true``
  6008. .. container:: contribute
  6009. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6010. .. rst-class:: classref-item-separator
  6011. ----
  6012. .. _class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley:
  6013. .. rst-class:: classref-property
  6014. :ref:`bool<class_bool>` **rendering/shading/overrides/force_lambert_over_burley** = ``false``
  6015. If ``true``, uses faster but lower-quality Lambert material lighting model instead of Burley.
  6016. .. rst-class:: classref-item-separator
  6017. ----
  6018. .. _class_ProjectSettings_property_rendering/shading/overrides/force_lambert_over_burley.mobile:
  6019. .. rst-class:: classref-property
  6020. :ref:`bool<class_bool>` **rendering/shading/overrides/force_lambert_over_burley.mobile** = ``true``
  6021. 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.
  6022. .. rst-class:: classref-item-separator
  6023. ----
  6024. .. _class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading:
  6025. .. rst-class:: classref-property
  6026. :ref:`bool<class_bool>` **rendering/shading/overrides/force_vertex_shading** = ``false``
  6027. 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.
  6028. \ **Note:** This setting currently has no effect, as vertex shading is not implemented yet.
  6029. .. rst-class:: classref-item-separator
  6030. ----
  6031. .. _class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading.mobile:
  6032. .. rst-class:: classref-property
  6033. :ref:`bool<class_bool>` **rendering/shading/overrides/force_vertex_shading.mobile** = ``true``
  6034. 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.
  6035. \ **Note:** This setting currently has no effect, as vertex shading is not implemented yet.
  6036. .. rst-class:: classref-item-separator
  6037. ----
  6038. .. _class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_filter:
  6039. .. rst-class:: classref-property
  6040. :ref:`int<class_int>` **rendering/textures/canvas_textures/default_texture_filter** = ``1``
  6041. The default texture filtering mode to use on :ref:`CanvasItem<class_CanvasItem>`\ s.
  6042. .. rst-class:: classref-item-separator
  6043. ----
  6044. .. _class_ProjectSettings_property_rendering/textures/canvas_textures/default_texture_repeat:
  6045. .. rst-class:: classref-property
  6046. :ref:`int<class_int>` **rendering/textures/canvas_textures/default_texture_repeat** = ``0``
  6047. The default texture repeating mode to use on :ref:`CanvasItem<class_CanvasItem>`\ s.
  6048. .. rst-class:: classref-item-separator
  6049. ----
  6050. .. _class_ProjectSettings_property_rendering/textures/decals/filter:
  6051. .. rst-class:: classref-property
  6052. :ref:`int<class_int>` **rendering/textures/decals/filter** = ``3``
  6053. 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>`.
  6054. .. rst-class:: classref-item-separator
  6055. ----
  6056. .. _class_ProjectSettings_property_rendering/textures/default_filters/anisotropic_filtering_level:
  6057. .. rst-class:: classref-property
  6058. :ref:`int<class_int>` **rendering/textures/default_filters/anisotropic_filtering_level** = ``2``
  6059. 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.
  6060. 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>`.
  6061. \ **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.
  6062. \ **Note:** This property is only read when the project starts. There is currently no way to change this setting at run-time.
  6063. .. rst-class:: classref-item-separator
  6064. ----
  6065. .. _class_ProjectSettings_property_rendering/textures/default_filters/texture_mipmap_bias:
  6066. .. rst-class:: classref-property
  6067. :ref:`float<class_float>` **rendering/textures/default_filters/texture_mipmap_bias** = ``0.0``
  6068. 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).
  6069. 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.
  6070. \ **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``.
  6071. \ **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.
  6072. .. rst-class:: classref-item-separator
  6073. ----
  6074. .. _class_ProjectSettings_property_rendering/textures/default_filters/use_nearest_mipmap_filter:
  6075. .. rst-class:: classref-property
  6076. :ref:`bool<class_bool>` **rendering/textures/default_filters/use_nearest_mipmap_filter** = ``false``
  6077. 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.
  6078. \ **Note:** This property is only read when the project starts. There is currently no way to change this setting at run-time.
  6079. .. rst-class:: classref-item-separator
  6080. ----
  6081. .. _class_ProjectSettings_property_rendering/textures/light_projectors/filter:
  6082. .. rst-class:: classref-property
  6083. :ref:`int<class_int>` **rendering/textures/light_projectors/filter** = ``3``
  6084. 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>`.
  6085. .. rst-class:: classref-item-separator
  6086. ----
  6087. .. _class_ProjectSettings_property_rendering/textures/lossless_compression/force_png:
  6088. .. rst-class:: classref-property
  6089. :ref:`bool<class_bool>` **rendering/textures/lossless_compression/force_png** = ``false``
  6090. If ``true``, the texture importer will import lossless textures using the PNG format. Otherwise, it will default to using WebP.
  6091. .. rst-class:: classref-item-separator
  6092. ----
  6093. .. _class_ProjectSettings_property_rendering/textures/vram_compression/import_etc2_astc:
  6094. .. rst-class:: classref-property
  6095. :ref:`bool<class_bool>` **rendering/textures/vram_compression/import_etc2_astc** = ``false``
  6096. 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).
  6097. \ **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``.
  6098. \ **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>`).
  6099. .. rst-class:: classref-item-separator
  6100. ----
  6101. .. _class_ProjectSettings_property_rendering/textures/vram_compression/import_s3tc_bptc:
  6102. .. rst-class:: classref-property
  6103. :ref:`bool<class_bool>` **rendering/textures/vram_compression/import_s3tc_bptc** = ``false``
  6104. 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.
  6105. \ **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``.
  6106. \ **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>`).
  6107. .. rst-class:: classref-item-separator
  6108. ----
  6109. .. _class_ProjectSettings_property_rendering/textures/webp_compression/compression_method:
  6110. .. rst-class:: classref-property
  6111. :ref:`int<class_int>` **rendering/textures/webp_compression/compression_method** = ``2``
  6112. 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.
  6113. .. rst-class:: classref-item-separator
  6114. ----
  6115. .. _class_ProjectSettings_property_rendering/textures/webp_compression/lossless_compression_factor:
  6116. .. rst-class:: classref-property
  6117. :ref:`float<class_float>` **rendering/textures/webp_compression/lossless_compression_factor** = ``25``
  6118. The default compression factor for lossless WebP. Decompression speed is mostly unaffected by the compression factor. Supported values are 0 to 100.
  6119. .. rst-class:: classref-item-separator
  6120. ----
  6121. .. _class_ProjectSettings_property_rendering/viewport/transparent_background:
  6122. .. rst-class:: classref-property
  6123. :ref:`bool<class_bool>` **rendering/viewport/transparent_background** = ``false``
  6124. 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>`.
  6125. .. rst-class:: classref-item-separator
  6126. ----
  6127. .. _class_ProjectSettings_property_rendering/vrs/mode:
  6128. .. rst-class:: classref-property
  6129. :ref:`int<class_int>` **rendering/vrs/mode** = ``0``
  6130. 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.
  6131. .. rst-class:: classref-item-separator
  6132. ----
  6133. .. _class_ProjectSettings_property_rendering/vrs/texture:
  6134. .. rst-class:: classref-property
  6135. :ref:`String<class_String>` **rendering/vrs/texture** = ``""``
  6136. 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.
  6137. 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:
  6138. ::
  6139. - 1x1 = rgb(0, 0, 0) - #000000
  6140. - 1x2 = rgb(0, 85, 0) - #005500
  6141. - 2x1 = rgb(85, 0, 0) - #550000
  6142. - 2x2 = rgb(85, 85, 0) - #555500
  6143. - 2x4 = rgb(85, 170, 0) - #55aa00
  6144. - 4x2 = rgb(170, 85, 0) - #aa5500
  6145. - 4x4 = rgb(170, 170, 0) - #aaaa00
  6146. - 4x8 = rgb(170, 255, 0) - #aaff00 - Not supported on most hardware
  6147. - 8x4 = rgb(255, 170, 0) - #ffaa00 - Not supported on most hardware
  6148. - 8x8 = rgb(255, 255, 0) - #ffff00 - Not supported on most hardware
  6149. .. rst-class:: classref-item-separator
  6150. ----
  6151. .. _class_ProjectSettings_property_threading/worker_pool/low_priority_thread_ratio:
  6152. .. rst-class:: classref-property
  6153. :ref:`float<class_float>` **threading/worker_pool/low_priority_thread_ratio** = ``0.3``
  6154. .. container:: contribute
  6155. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6156. .. rst-class:: classref-item-separator
  6157. ----
  6158. .. _class_ProjectSettings_property_threading/worker_pool/max_threads:
  6159. .. rst-class:: classref-property
  6160. :ref:`int<class_int>` **threading/worker_pool/max_threads** = ``-1``
  6161. Maximum number of threads to be used by :ref:`WorkerThreadPool<class_WorkerThreadPool>`. Value of ``-1`` means no limit.
  6162. .. rst-class:: classref-item-separator
  6163. ----
  6164. .. _class_ProjectSettings_property_threading/worker_pool/use_system_threads_for_low_priority_tasks:
  6165. .. rst-class:: classref-property
  6166. :ref:`bool<class_bool>` **threading/worker_pool/use_system_threads_for_low_priority_tasks** = ``true``
  6167. .. container:: contribute
  6168. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  6169. .. rst-class:: classref-item-separator
  6170. ----
  6171. .. _class_ProjectSettings_property_xr/openxr/default_action_map:
  6172. .. rst-class:: classref-property
  6173. :ref:`String<class_String>` **xr/openxr/default_action_map** = ``"res://openxr_action_map.tres"``
  6174. Action map configuration to load by default.
  6175. .. rst-class:: classref-item-separator
  6176. ----
  6177. .. _class_ProjectSettings_property_xr/openxr/enabled:
  6178. .. rst-class:: classref-property
  6179. :ref:`bool<class_bool>` **xr/openxr/enabled** = ``false``
  6180. If ``true`` Godot will setup and initialize OpenXR on startup.
  6181. .. rst-class:: classref-item-separator
  6182. ----
  6183. .. _class_ProjectSettings_property_xr/openxr/form_factor:
  6184. .. rst-class:: classref-property
  6185. :ref:`int<class_int>` **xr/openxr/form_factor** = ``"0"``
  6186. Specify whether OpenXR should be configured for an HMD or a hand held device.
  6187. .. rst-class:: classref-item-separator
  6188. ----
  6189. .. _class_ProjectSettings_property_xr/openxr/reference_space:
  6190. .. rst-class:: classref-property
  6191. :ref:`int<class_int>` **xr/openxr/reference_space** = ``"1"``
  6192. Specify the default reference space.
  6193. .. rst-class:: classref-item-separator
  6194. ----
  6195. .. _class_ProjectSettings_property_xr/openxr/startup_alert:
  6196. .. rst-class:: classref-property
  6197. :ref:`bool<class_bool>` **xr/openxr/startup_alert** = ``true``
  6198. If ``true``, Godot will display an alert modal when OpenXR initialization fails on startup.
  6199. .. rst-class:: classref-item-separator
  6200. ----
  6201. .. _class_ProjectSettings_property_xr/openxr/submit_depth_buffer:
  6202. .. rst-class:: classref-property
  6203. :ref:`bool<class_bool>` **xr/openxr/submit_depth_buffer** = ``false``
  6204. 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.
  6205. .. rst-class:: classref-item-separator
  6206. ----
  6207. .. _class_ProjectSettings_property_xr/openxr/view_configuration:
  6208. .. rst-class:: classref-property
  6209. :ref:`int<class_int>` **xr/openxr/view_configuration** = ``"1"``
  6210. Specify the view configuration with which to configure OpenXR setting up either Mono or Stereo rendering.
  6211. .. rst-class:: classref-item-separator
  6212. ----
  6213. .. _class_ProjectSettings_property_xr/shaders/enabled:
  6214. .. rst-class:: classref-property
  6215. :ref:`bool<class_bool>` **xr/shaders/enabled** = ``false``
  6216. If ``true``, Godot will compile shaders required for XR.
  6217. .. rst-class:: classref-section-separator
  6218. ----
  6219. .. rst-class:: classref-descriptions-group
  6220. Method Descriptions
  6221. -------------------
  6222. .. _class_ProjectSettings_method_add_property_info:
  6223. .. rst-class:: classref-method
  6224. void **add_property_info** **(** :ref:`Dictionary<class_Dictionary>` hint **)**
  6225. Adds a custom property info to a property. The dictionary must contain:
  6226. - ``"name"``: :ref:`String<class_String>` (the property's name)
  6227. - ``"type"``: :ref:`int<class_int>` (see :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>`)
  6228. - optionally ``"hint"``: :ref:`int<class_int>` (see :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>`) and ``"hint_string"``: :ref:`String<class_String>`\
  6229. \ **Example:**\
  6230. .. tabs::
  6231. .. code-tab:: gdscript
  6232. ProjectSettings.set("category/property_name", 0)
  6233. var property_info = {
  6234. "name": "category/property_name",
  6235. "type": TYPE_INT,
  6236. "hint": PROPERTY_HINT_ENUM,
  6237. "hint_string": "one,two,three"
  6238. }
  6239. ProjectSettings.add_property_info(property_info)
  6240. .. code-tab:: csharp
  6241. ProjectSettings.Singleton.Set("category/property_name", 0);
  6242. var propertyInfo = new Godot.Collections.Dictionary
  6243. {
  6244. {"name", "category/propertyName"},
  6245. {"type", (int)Variant.Type.Int},
  6246. {"hint", (int)PropertyHint.Enum},
  6247. {"hint_string", "one,two,three"},
  6248. };
  6249. ProjectSettings.AddPropertyInfo(propertyInfo);
  6250. .. rst-class:: classref-item-separator
  6251. ----
  6252. .. _class_ProjectSettings_method_clear:
  6253. .. rst-class:: classref-method
  6254. void **clear** **(** :ref:`String<class_String>` name **)**
  6255. Clears the whole configuration (not recommended, may break things).
  6256. .. rst-class:: classref-item-separator
  6257. ----
  6258. .. _class_ProjectSettings_method_get_global_class_list:
  6259. .. rst-class:: classref-method
  6260. :ref:`Dictionary[]<class_Dictionary>` **get_global_class_list** **(** **)**
  6261. 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:
  6262. - ``base`` is a name of the base class;
  6263. - ``class`` is a name of the registered global class;
  6264. - ``icon`` is a path to a custom icon of the global class, if it has any;
  6265. - ``language`` is a name of a programming language in which the global class is written;
  6266. - ``path`` is a path to a file containing the global class.
  6267. \ **Note:** Both the script and the icon paths are local to the project filesystem, i.e. they start with ``res://``.
  6268. .. rst-class:: classref-item-separator
  6269. ----
  6270. .. _class_ProjectSettings_method_get_order:
  6271. .. rst-class:: classref-method
  6272. :ref:`int<class_int>` **get_order** **(** :ref:`String<class_String>` name **)** |const|
  6273. Returns the order of a configuration value (influences when saved to the config file).
  6274. .. rst-class:: classref-item-separator
  6275. ----
  6276. .. _class_ProjectSettings_method_get_setting:
  6277. .. rst-class:: classref-method
  6278. :ref:`Variant<class_Variant>` **get_setting** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` default_value=null **)** |const|
  6279. 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.
  6280. \ **Example:**\
  6281. .. tabs::
  6282. .. code-tab:: gdscript
  6283. print(ProjectSettings.get_setting("application/config/name"))
  6284. print(ProjectSettings.get_setting("application/config/custom_description", "No description specified."))
  6285. .. code-tab:: csharp
  6286. GD.Print(ProjectSettings.GetSetting("application/config/name"));
  6287. GD.Print(ProjectSettings.GetSetting("application/config/custom_description", "No description specified."));
  6288. \ **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.
  6289. .. rst-class:: classref-item-separator
  6290. ----
  6291. .. _class_ProjectSettings_method_get_setting_with_override:
  6292. .. rst-class:: classref-method
  6293. :ref:`Variant<class_Variant>` **get_setting_with_override** **(** :ref:`StringName<class_StringName>` name **)** |const|
  6294. Similar to :ref:`get_setting<class_ProjectSettings_method_get_setting>`, but applies feature tag overrides if any exists and is valid.
  6295. \ **Example:**\
  6296. If the following setting override exists "application/config/name.windows", and the following code is executed:
  6297. .. tabs::
  6298. .. code-tab:: gdscript
  6299. print(ProjectSettings.get_setting_with_override("application/config/name"))
  6300. .. code-tab:: csharp
  6301. GD.Print(ProjectSettings.GetSettingWithOverride("application/config/name"));
  6302. Then the overridden setting will be returned instead if the project is running on the *Windows* operating system.
  6303. .. rst-class:: classref-item-separator
  6304. ----
  6305. .. _class_ProjectSettings_method_globalize_path:
  6306. .. rst-class:: classref-method
  6307. :ref:`String<class_String>` **globalize_path** **(** :ref:`String<class_String>` path **)** |const|
  6308. 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>`.
  6309. \ **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:
  6310. ::
  6311. var path = ""
  6312. if OS.has_feature("editor"):
  6313. # Running from an editor binary.
  6314. # `path` will contain the absolute path to `hello.txt` located in the project root.
  6315. path = ProjectSettings.globalize_path("res://hello.txt")
  6316. else:
  6317. # Running from an exported project.
  6318. # `path` will contain the absolute path to `hello.txt` next to the executable.
  6319. # This is *not* identical to using `ProjectSettings.globalize_path()` with a `res://` path,
  6320. # but is close enough in spirit.
  6321. path = OS.get_executable_path().get_base_dir().path_join("hello.txt")
  6322. .. rst-class:: classref-item-separator
  6323. ----
  6324. .. _class_ProjectSettings_method_has_setting:
  6325. .. rst-class:: classref-method
  6326. :ref:`bool<class_bool>` **has_setting** **(** :ref:`String<class_String>` name **)** |const|
  6327. Returns ``true`` if a configuration value is present.
  6328. .. rst-class:: classref-item-separator
  6329. ----
  6330. .. _class_ProjectSettings_method_load_resource_pack:
  6331. .. rst-class:: classref-method
  6332. :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 **)**
  6333. Loads the contents of the .pck or .zip file specified by ``pack`` into the resource filesystem (``res://``). Returns ``true`` on success.
  6334. \ **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``.
  6335. \ **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.
  6336. .. rst-class:: classref-item-separator
  6337. ----
  6338. .. _class_ProjectSettings_method_localize_path:
  6339. .. rst-class:: classref-method
  6340. :ref:`String<class_String>` **localize_path** **(** :ref:`String<class_String>` path **)** |const|
  6341. Returns the localized path (starting with ``res://``) corresponding to the absolute, native OS ``path``. See also :ref:`globalize_path<class_ProjectSettings_method_globalize_path>`.
  6342. .. rst-class:: classref-item-separator
  6343. ----
  6344. .. _class_ProjectSettings_method_save:
  6345. .. rst-class:: classref-method
  6346. :ref:`Error<enum_@GlobalScope_Error>` **save** **(** **)**
  6347. Saves the configuration to the ``project.godot`` file.
  6348. \ **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.
  6349. .. rst-class:: classref-item-separator
  6350. ----
  6351. .. _class_ProjectSettings_method_save_custom:
  6352. .. rst-class:: classref-method
  6353. :ref:`Error<enum_@GlobalScope_Error>` **save_custom** **(** :ref:`String<class_String>` file **)**
  6354. 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.
  6355. .. rst-class:: classref-item-separator
  6356. ----
  6357. .. _class_ProjectSettings_method_set_as_basic:
  6358. .. rst-class:: classref-method
  6359. void **set_as_basic** **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` basic **)**
  6360. 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.
  6361. .. rst-class:: classref-item-separator
  6362. ----
  6363. .. _class_ProjectSettings_method_set_as_internal:
  6364. .. rst-class:: classref-method
  6365. void **set_as_internal** **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` internal **)**
  6366. 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.
  6367. .. rst-class:: classref-item-separator
  6368. ----
  6369. .. _class_ProjectSettings_method_set_initial_value:
  6370. .. rst-class:: classref-method
  6371. void **set_initial_value** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)**
  6372. Sets the specified setting's initial value. This is the value the setting reverts to.
  6373. .. rst-class:: classref-item-separator
  6374. ----
  6375. .. _class_ProjectSettings_method_set_order:
  6376. .. rst-class:: classref-method
  6377. void **set_order** **(** :ref:`String<class_String>` name, :ref:`int<class_int>` position **)**
  6378. Sets the order of a configuration value (influences when saved to the config file).
  6379. .. rst-class:: classref-item-separator
  6380. ----
  6381. .. _class_ProjectSettings_method_set_restart_if_changed:
  6382. .. rst-class:: classref-method
  6383. void **set_restart_if_changed** **(** :ref:`String<class_String>` name, :ref:`bool<class_bool>` restart **)**
  6384. Sets whether a setting requires restarting the editor to properly take effect.
  6385. \ **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.
  6386. .. rst-class:: classref-item-separator
  6387. ----
  6388. .. _class_ProjectSettings_method_set_setting:
  6389. .. rst-class:: classref-method
  6390. void **set_setting** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)**
  6391. Sets the value of a setting.
  6392. \ **Example:**\
  6393. .. tabs::
  6394. .. code-tab:: gdscript
  6395. ProjectSettings.set_setting("application/config/name", "Example")
  6396. .. code-tab:: csharp
  6397. ProjectSettings.SetSetting("application/config/name", "Example");
  6398. This can also be used to erase custom project settings. To do this change the setting value to ``null``.
  6399. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  6400. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  6401. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  6402. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  6403. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  6404. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  6405. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`