2
0

class_editorsettings.rst 365 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160
  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.3/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.3/doc/classes/EditorSettings.xml.
  6. .. _class_EditorSettings:
  7. EditorSettings
  8. ==============
  9. **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Object that holds the project-independent editor settings.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. Object that holds the project-independent editor settings. These settings are generally visible in the **Editor > Editor Settings** menu.
  15. Property names use slash delimiters to distinguish sections. Setting values can be of any :ref:`Variant<class_Variant>` type. It's recommended to use ``snake_case`` for editor settings to be consistent with the Godot editor itself.
  16. Accessing the settings can be done using the following methods, such as:
  17. .. tabs::
  18. .. code-tab:: gdscript
  19. var settings = EditorInterface.get_editor_settings()
  20. # `settings.set("some/property", 10)` also works as this class overrides `_set()` internally.
  21. settings.set_setting("some/property", 10)
  22. # `settings.get("some/property")` also works as this class overrides `_get()` internally.
  23. settings.get_setting("some/property")
  24. var list_of_settings = settings.get_property_list()
  25. .. code-tab:: csharp
  26. EditorSettings settings = EditorInterface.Singleton.GetEditorSettings();
  27. // `settings.set("some/property", value)` also works as this class overrides `_set()` internally.
  28. settings.SetSetting("some/property", Value);
  29. // `settings.get("some/property", value)` also works as this class overrides `_get()` internally.
  30. settings.GetSetting("some/property");
  31. Godot.Collections.Array<Godot.Collections.Dictionary> listOfSettings = settings.GetPropertyList();
  32. \ **Note:** This class shouldn't be instantiated directly. Instead, access the singleton using :ref:`EditorInterface.get_editor_settings<class_EditorInterface_method_get_editor_settings>`.
  33. .. rst-class:: classref-reftable-group
  34. Properties
  35. ----------
  36. .. table::
  37. :widths: auto
  38. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`bool<class_bool>` | :ref:`debugger/auto_switch_to_remote_scene_tree<class_EditorSettings_property_debugger/auto_switch_to_remote_scene_tree>` |
  40. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`bool<class_bool>` | :ref:`debugger/profile_native_calls<class_EditorSettings_property_debugger/profile_native_calls>` |
  42. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`int<class_int>` | :ref:`debugger/profiler_frame_history_size<class_EditorSettings_property_debugger/profiler_frame_history_size>` |
  44. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`int<class_int>` | :ref:`debugger/profiler_frame_max_functions<class_EditorSettings_property_debugger/profiler_frame_max_functions>` |
  46. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`float<class_float>` | :ref:`debugger/remote_inspect_refresh_interval<class_EditorSettings_property_debugger/remote_inspect_refresh_interval>` |
  48. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`float<class_float>` | :ref:`debugger/remote_scene_tree_refresh_interval<class_EditorSettings_property_debugger/remote_scene_tree_refresh_interval>` |
  50. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`bool<class_bool>` | :ref:`docks/filesystem/always_show_folders<class_EditorSettings_property_docks/filesystem/always_show_folders>` |
  52. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`String<class_String>` | :ref:`docks/filesystem/textfile_extensions<class_EditorSettings_property_docks/filesystem/textfile_extensions>` |
  54. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`int<class_int>` | :ref:`docks/filesystem/thumbnail_size<class_EditorSettings_property_docks/filesystem/thumbnail_size>` |
  56. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`float<class_float>` | :ref:`docks/property_editor/auto_refresh_interval<class_EditorSettings_property_docks/property_editor/auto_refresh_interval>` |
  58. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`float<class_float>` | :ref:`docks/property_editor/subresource_hue_tint<class_EditorSettings_property_docks/property_editor/subresource_hue_tint>` |
  60. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`bool<class_bool>` | :ref:`docks/scene_tree/auto_expand_to_selected<class_EditorSettings_property_docks/scene_tree/auto_expand_to_selected>` |
  62. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`bool<class_bool>` | :ref:`docks/scene_tree/center_node_on_reparent<class_EditorSettings_property_docks/scene_tree/center_node_on_reparent>` |
  64. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`bool<class_bool>` | :ref:`docks/scene_tree/start_create_dialog_fully_expanded<class_EditorSettings_property_docks/scene_tree/start_create_dialog_fully_expanded>` |
  66. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_color1<class_EditorSettings_property_editors/2d/bone_color1>` |
  68. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_color2<class_EditorSettings_property_editors/2d/bone_color2>` |
  70. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_ik_color<class_EditorSettings_property_editors/2d/bone_ik_color>` |
  72. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_outline_color<class_EditorSettings_property_editors/2d/bone_outline_color>` |
  74. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`float<class_float>` | :ref:`editors/2d/bone_outline_size<class_EditorSettings_property_editors/2d/bone_outline_size>` |
  76. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_selected_color<class_EditorSettings_property_editors/2d/bone_selected_color>` |
  78. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`float<class_float>` | :ref:`editors/2d/bone_width<class_EditorSettings_property_editors/2d/bone_width>` |
  80. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`Color<class_Color>` | :ref:`editors/2d/grid_color<class_EditorSettings_property_editors/2d/grid_color>` |
  82. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`Color<class_Color>` | :ref:`editors/2d/guides_color<class_EditorSettings_property_editors/2d/guides_color>` |
  84. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`Color<class_Color>` | :ref:`editors/2d/smart_snapping_line_color<class_EditorSettings_property_editors/2d/smart_snapping_line_color>` |
  86. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`bool<class_bool>` | :ref:`editors/2d/use_integer_zoom_by_default<class_EditorSettings_property_editors/2d/use_integer_zoom_by_default>` |
  88. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`Color<class_Color>` | :ref:`editors/2d/viewport_border_color<class_EditorSettings_property_editors/2d/viewport_border_color>` |
  90. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`float<class_float>` | :ref:`editors/3d/default_fov<class_EditorSettings_property_editors/3d/default_fov>` |
  92. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`float<class_float>` | :ref:`editors/3d/default_z_far<class_EditorSettings_property_editors/3d/default_z_far>` |
  94. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`float<class_float>` | :ref:`editors/3d/default_z_near<class_EditorSettings_property_editors/3d/default_z_near>` |
  96. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`int<class_int>` | :ref:`editors/3d/freelook/freelook_activation_modifier<class_EditorSettings_property_editors/3d/freelook/freelook_activation_modifier>` |
  98. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`float<class_float>` | :ref:`editors/3d/freelook/freelook_base_speed<class_EditorSettings_property_editors/3d/freelook/freelook_base_speed>` |
  100. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`float<class_float>` | :ref:`editors/3d/freelook/freelook_inertia<class_EditorSettings_property_editors/3d/freelook/freelook_inertia>` |
  102. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`int<class_int>` | :ref:`editors/3d/freelook/freelook_navigation_scheme<class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme>` |
  104. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`float<class_float>` | :ref:`editors/3d/freelook/freelook_sensitivity<class_EditorSettings_property_editors/3d/freelook/freelook_sensitivity>` |
  106. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`bool<class_bool>` | :ref:`editors/3d/freelook/freelook_speed_zoom_link<class_EditorSettings_property_editors/3d/freelook/freelook_speed_zoom_link>` |
  108. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | :ref:`float<class_float>` | :ref:`editors/3d/grid_division_level_bias<class_EditorSettings_property_editors/3d/grid_division_level_bias>` |
  110. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`int<class_int>` | :ref:`editors/3d/grid_division_level_max<class_EditorSettings_property_editors/3d/grid_division_level_max>` |
  112. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`int<class_int>` | :ref:`editors/3d/grid_division_level_min<class_EditorSettings_property_editors/3d/grid_division_level_min>` |
  114. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`int<class_int>` | :ref:`editors/3d/grid_size<class_EditorSettings_property_editors/3d/grid_size>` |
  116. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | :ref:`bool<class_bool>` | :ref:`editors/3d/grid_xy_plane<class_EditorSettings_property_editors/3d/grid_xy_plane>` |
  118. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`bool<class_bool>` | :ref:`editors/3d/grid_xz_plane<class_EditorSettings_property_editors/3d/grid_xz_plane>` |
  120. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`bool<class_bool>` | :ref:`editors/3d/grid_yz_plane<class_EditorSettings_property_editors/3d/grid_yz_plane>` |
  122. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/emulate_3_button_mouse<class_EditorSettings_property_editors/3d/navigation/emulate_3_button_mouse>` |
  124. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/emulate_numpad<class_EditorSettings_property_editors/3d/navigation/emulate_numpad>` |
  126. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/invert_x_axis<class_EditorSettings_property_editors/3d/navigation/invert_x_axis>` |
  128. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/invert_y_axis<class_EditorSettings_property_editors/3d/navigation/invert_y_axis>` |
  130. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/navigation_scheme<class_EditorSettings_property_editors/3d/navigation/navigation_scheme>` |
  132. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/orbit_modifier<class_EditorSettings_property_editors/3d/navigation/orbit_modifier>` |
  134. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/pan_modifier<class_EditorSettings_property_editors/3d/navigation/pan_modifier>` |
  136. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/warped_mouse_panning<class_EditorSettings_property_editors/3d/navigation/warped_mouse_panning>` |
  138. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/zoom_modifier<class_EditorSettings_property_editors/3d/navigation/zoom_modifier>` |
  140. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/zoom_style<class_EditorSettings_property_editors/3d/navigation/zoom_style>` |
  142. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/orbit_inertia<class_EditorSettings_property_editors/3d/navigation_feel/orbit_inertia>` |
  144. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/orbit_sensitivity<class_EditorSettings_property_editors/3d/navigation_feel/orbit_sensitivity>` |
  146. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/translation_inertia<class_EditorSettings_property_editors/3d/navigation_feel/translation_inertia>` |
  148. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/zoom_inertia<class_EditorSettings_property_editors/3d/navigation_feel/zoom_inertia>` |
  150. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | :ref:`Color<class_Color>` | :ref:`editors/3d/primary_grid_color<class_EditorSettings_property_editors/3d/primary_grid_color>` |
  152. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | :ref:`int<class_int>` | :ref:`editors/3d/primary_grid_steps<class_EditorSettings_property_editors/3d/primary_grid_steps>` |
  154. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | :ref:`Color<class_Color>` | :ref:`editors/3d/secondary_grid_color<class_EditorSettings_property_editors/3d/secondary_grid_color>` |
  156. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  157. | :ref:`Color<class_Color>` | :ref:`editors/3d/selection_box_color<class_EditorSettings_property_editors/3d/selection_box_color>` |
  158. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  159. | :ref:`Color<class_Color>` | :ref:`editors/3d_gizmos/gizmo_colors/aabb<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/aabb>` |
  160. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  161. | :ref:`Color<class_Color>` | :ref:`editors/3d_gizmos/gizmo_colors/instantiated<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/instantiated>` |
  162. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  163. | :ref:`Color<class_Color>` | :ref:`editors/3d_gizmos/gizmo_colors/joint<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/joint>` |
  164. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  165. | :ref:`bool<class_bool>` | :ref:`editors/animation/autorename_animation_tracks<class_EditorSettings_property_editors/animation/autorename_animation_tracks>` |
  166. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  167. | :ref:`bool<class_bool>` | :ref:`editors/animation/confirm_insert_track<class_EditorSettings_property_editors/animation/confirm_insert_track>` |
  168. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  169. | :ref:`bool<class_bool>` | :ref:`editors/animation/default_create_bezier_tracks<class_EditorSettings_property_editors/animation/default_create_bezier_tracks>` |
  170. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  171. | :ref:`bool<class_bool>` | :ref:`editors/animation/default_create_reset_tracks<class_EditorSettings_property_editors/animation/default_create_reset_tracks>` |
  172. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  173. | :ref:`Color<class_Color>` | :ref:`editors/animation/onion_layers_future_color<class_EditorSettings_property_editors/animation/onion_layers_future_color>` |
  174. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  175. | :ref:`Color<class_Color>` | :ref:`editors/animation/onion_layers_past_color<class_EditorSettings_property_editors/animation/onion_layers_past_color>` |
  176. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  177. | :ref:`float<class_float>` | :ref:`editors/grid_map/pick_distance<class_EditorSettings_property_editors/grid_map/pick_distance>` |
  178. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  179. | :ref:`int<class_int>` | :ref:`editors/panning/2d_editor_pan_speed<class_EditorSettings_property_editors/panning/2d_editor_pan_speed>` |
  180. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  181. | :ref:`int<class_int>` | :ref:`editors/panning/2d_editor_panning_scheme<class_EditorSettings_property_editors/panning/2d_editor_panning_scheme>` |
  182. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  183. | :ref:`int<class_int>` | :ref:`editors/panning/animation_editors_panning_scheme<class_EditorSettings_property_editors/panning/animation_editors_panning_scheme>` |
  184. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  185. | :ref:`bool<class_bool>` | :ref:`editors/panning/simple_panning<class_EditorSettings_property_editors/panning/simple_panning>` |
  186. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  187. | :ref:`int<class_int>` | :ref:`editors/panning/sub_editors_panning_scheme<class_EditorSettings_property_editors/panning/sub_editors_panning_scheme>` |
  188. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  189. | :ref:`bool<class_bool>` | :ref:`editors/panning/warped_mouse_panning<class_EditorSettings_property_editors/panning/warped_mouse_panning>` |
  190. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  191. | :ref:`float<class_float>` | :ref:`editors/polygon_editor/auto_bake_delay<class_EditorSettings_property_editors/polygon_editor/auto_bake_delay>` |
  192. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  193. | :ref:`int<class_int>` | :ref:`editors/polygon_editor/point_grab_radius<class_EditorSettings_property_editors/polygon_editor/point_grab_radius>` |
  194. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  195. | :ref:`bool<class_bool>` | :ref:`editors/polygon_editor/show_previous_outline<class_EditorSettings_property_editors/polygon_editor/show_previous_outline>` |
  196. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  197. | :ref:`bool<class_bool>` | :ref:`editors/shader_editor/behavior/files/restore_shaders_on_load<class_EditorSettings_property_editors/shader_editor/behavior/files/restore_shaders_on_load>` |
  198. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  199. | :ref:`bool<class_bool>` | :ref:`editors/tiles_editor/display_grid<class_EditorSettings_property_editors/tiles_editor/display_grid>` |
  200. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  201. | :ref:`Color<class_Color>` | :ref:`editors/tiles_editor/grid_color<class_EditorSettings_property_editors/tiles_editor/grid_color>` |
  202. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  203. | :ref:`bool<class_bool>` | :ref:`editors/tiles_editor/highlight_selected_layer<class_EditorSettings_property_editors/tiles_editor/highlight_selected_layer>` |
  204. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  205. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/color_color<class_EditorSettings_property_editors/visual_editors/category_colors/color_color>` |
  206. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  207. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/conditional_color<class_EditorSettings_property_editors/visual_editors/category_colors/conditional_color>` |
  208. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  209. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/input_color<class_EditorSettings_property_editors/visual_editors/category_colors/input_color>` |
  210. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  211. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/output_color<class_EditorSettings_property_editors/visual_editors/category_colors/output_color>` |
  212. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  213. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/particle_color<class_EditorSettings_property_editors/visual_editors/category_colors/particle_color>` |
  214. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  215. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/scalar_color<class_EditorSettings_property_editors/visual_editors/category_colors/scalar_color>` |
  216. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  217. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/special_color<class_EditorSettings_property_editors/visual_editors/category_colors/special_color>` |
  218. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  219. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/textures_color<class_EditorSettings_property_editors/visual_editors/category_colors/textures_color>` |
  220. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  221. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/transform_color<class_EditorSettings_property_editors/visual_editors/category_colors/transform_color>` |
  222. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  223. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/utility_color<class_EditorSettings_property_editors/visual_editors/category_colors/utility_color>` |
  224. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  225. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/category_colors/vector_color<class_EditorSettings_property_editors/visual_editors/category_colors/vector_color>` |
  226. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  227. | :ref:`String<class_String>` | :ref:`editors/visual_editors/color_theme<class_EditorSettings_property_editors/visual_editors/color_theme>` |
  228. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  229. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/boolean_color<class_EditorSettings_property_editors/visual_editors/connection_colors/boolean_color>` |
  230. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  231. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/sampler_color<class_EditorSettings_property_editors/visual_editors/connection_colors/sampler_color>` |
  232. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  233. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/scalar_color<class_EditorSettings_property_editors/visual_editors/connection_colors/scalar_color>` |
  234. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  235. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/transform_color<class_EditorSettings_property_editors/visual_editors/connection_colors/transform_color>` |
  236. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  237. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/vector2_color<class_EditorSettings_property_editors/visual_editors/connection_colors/vector2_color>` |
  238. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  239. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/vector3_color<class_EditorSettings_property_editors/visual_editors/connection_colors/vector3_color>` |
  240. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  241. | :ref:`Color<class_Color>` | :ref:`editors/visual_editors/connection_colors/vector4_color<class_EditorSettings_property_editors/visual_editors/connection_colors/vector4_color>` |
  242. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  243. | :ref:`int<class_int>` | :ref:`editors/visual_editors/grid_pattern<class_EditorSettings_property_editors/visual_editors/grid_pattern>` |
  244. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  245. | :ref:`float<class_float>` | :ref:`editors/visual_editors/lines_curvature<class_EditorSettings_property_editors/visual_editors/lines_curvature>` |
  246. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  247. | :ref:`float<class_float>` | :ref:`editors/visual_editors/minimap_opacity<class_EditorSettings_property_editors/visual_editors/minimap_opacity>` |
  248. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  249. | :ref:`int<class_int>` | :ref:`editors/visual_editors/visual_shader/port_preview_size<class_EditorSettings_property_editors/visual_editors/visual_shader/port_preview_size>` |
  250. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  251. | :ref:`String<class_String>` | :ref:`filesystem/directories/autoscan_project_path<class_EditorSettings_property_filesystem/directories/autoscan_project_path>` |
  252. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  253. | :ref:`String<class_String>` | :ref:`filesystem/directories/default_project_path<class_EditorSettings_property_filesystem/directories/default_project_path>` |
  254. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  255. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/3d_model_editor<class_EditorSettings_property_filesystem/external_programs/3d_model_editor>` |
  256. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  257. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/audio_editor<class_EditorSettings_property_filesystem/external_programs/audio_editor>` |
  258. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  259. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/raster_image_editor<class_EditorSettings_property_filesystem/external_programs/raster_image_editor>` |
  260. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  261. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/terminal_emulator<class_EditorSettings_property_filesystem/external_programs/terminal_emulator>` |
  262. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  263. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/terminal_emulator_flags<class_EditorSettings_property_filesystem/external_programs/terminal_emulator_flags>` |
  264. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  265. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/vector_image_editor<class_EditorSettings_property_filesystem/external_programs/vector_image_editor>` |
  266. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  267. | :ref:`int<class_int>` | :ref:`filesystem/file_dialog/display_mode<class_EditorSettings_property_filesystem/file_dialog/display_mode>` |
  268. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  269. | :ref:`bool<class_bool>` | :ref:`filesystem/file_dialog/show_hidden_files<class_EditorSettings_property_filesystem/file_dialog/show_hidden_files>` |
  270. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  271. | :ref:`int<class_int>` | :ref:`filesystem/file_dialog/thumbnail_size<class_EditorSettings_property_filesystem/file_dialog/thumbnail_size>` |
  272. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  273. | :ref:`String<class_String>` | :ref:`filesystem/import/blender/blender_path<class_EditorSettings_property_filesystem/import/blender/blender_path>` |
  274. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  275. | :ref:`int<class_int>` | :ref:`filesystem/import/blender/rpc_port<class_EditorSettings_property_filesystem/import/blender/rpc_port>` |
  276. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  277. | :ref:`float<class_float>` | :ref:`filesystem/import/blender/rpc_server_uptime<class_EditorSettings_property_filesystem/import/blender/rpc_server_uptime>` |
  278. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  279. | :ref:`String<class_String>` | :ref:`filesystem/import/fbx/fbx2gltf_path<class_EditorSettings_property_filesystem/import/fbx/fbx2gltf_path>` |
  280. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  281. | :ref:`bool<class_bool>` | :ref:`filesystem/on_save/compress_binary_resources<class_EditorSettings_property_filesystem/on_save/compress_binary_resources>` |
  282. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  283. | :ref:`bool<class_bool>` | :ref:`filesystem/on_save/safe_save_on_backup_then_rename<class_EditorSettings_property_filesystem/on_save/safe_save_on_backup_then_rename>` |
  284. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  285. | :ref:`String<class_String>` | :ref:`filesystem/tools/oidn/oidn_denoise_path<class_EditorSettings_property_filesystem/tools/oidn/oidn_denoise_path>` |
  286. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  287. | :ref:`bool<class_bool>` | :ref:`input/buffering/agile_event_flushing<class_EditorSettings_property_input/buffering/agile_event_flushing>` |
  288. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  289. | :ref:`bool<class_bool>` | :ref:`input/buffering/use_accumulated_input<class_EditorSettings_property_input/buffering/use_accumulated_input>` |
  290. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  291. | :ref:`int<class_int>` | :ref:`interface/editor/accept_dialog_cancel_ok_buttons<class_EditorSettings_property_interface/editor/accept_dialog_cancel_ok_buttons>` |
  292. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  293. | :ref:`bool<class_bool>` | :ref:`interface/editor/automatically_open_screenshots<class_EditorSettings_property_interface/editor/automatically_open_screenshots>` |
  294. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  295. | :ref:`String<class_String>` | :ref:`interface/editor/code_font<class_EditorSettings_property_interface/editor/code_font>` |
  296. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  297. | :ref:`int<class_int>` | :ref:`interface/editor/code_font_contextual_ligatures<class_EditorSettings_property_interface/editor/code_font_contextual_ligatures>` |
  298. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  299. | :ref:`String<class_String>` | :ref:`interface/editor/code_font_custom_opentype_features<class_EditorSettings_property_interface/editor/code_font_custom_opentype_features>` |
  300. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  301. | :ref:`String<class_String>` | :ref:`interface/editor/code_font_custom_variations<class_EditorSettings_property_interface/editor/code_font_custom_variations>` |
  302. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  303. | :ref:`int<class_int>` | :ref:`interface/editor/code_font_size<class_EditorSettings_property_interface/editor/code_font_size>` |
  304. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  305. | :ref:`float<class_float>` | :ref:`interface/editor/custom_display_scale<class_EditorSettings_property_interface/editor/custom_display_scale>` |
  306. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  307. | :ref:`int<class_int>` | :ref:`interface/editor/display_scale<class_EditorSettings_property_interface/editor/display_scale>` |
  308. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  309. | :ref:`int<class_int>` | :ref:`interface/editor/dock_tab_style<class_EditorSettings_property_interface/editor/dock_tab_style>` |
  310. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  311. | :ref:`String<class_String>` | :ref:`interface/editor/editor_language<class_EditorSettings_property_interface/editor/editor_language>` |
  312. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  313. | :ref:`int<class_int>` | :ref:`interface/editor/editor_screen<class_EditorSettings_property_interface/editor/editor_screen>` |
  314. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  315. | :ref:`bool<class_bool>` | :ref:`interface/editor/expand_to_title<class_EditorSettings_property_interface/editor/expand_to_title>` |
  316. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  317. | :ref:`int<class_int>` | :ref:`interface/editor/font_antialiasing<class_EditorSettings_property_interface/editor/font_antialiasing>` |
  318. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  319. | :ref:`bool<class_bool>` | :ref:`interface/editor/font_disable_embedded_bitmaps<class_EditorSettings_property_interface/editor/font_disable_embedded_bitmaps>` |
  320. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  321. | :ref:`int<class_int>` | :ref:`interface/editor/font_hinting<class_EditorSettings_property_interface/editor/font_hinting>` |
  322. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  323. | :ref:`int<class_int>` | :ref:`interface/editor/font_subpixel_positioning<class_EditorSettings_property_interface/editor/font_subpixel_positioning>` |
  324. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  325. | :ref:`bool<class_bool>` | :ref:`interface/editor/import_resources_when_unfocused<class_EditorSettings_property_interface/editor/import_resources_when_unfocused>` |
  326. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  327. | :ref:`bool<class_bool>` | :ref:`interface/editor/localize_settings<class_EditorSettings_property_interface/editor/localize_settings>` |
  328. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  329. | :ref:`int<class_int>` | :ref:`interface/editor/low_processor_mode_sleep_usec<class_EditorSettings_property_interface/editor/low_processor_mode_sleep_usec>` |
  330. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  331. | :ref:`String<class_String>` | :ref:`interface/editor/main_font<class_EditorSettings_property_interface/editor/main_font>` |
  332. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  333. | :ref:`String<class_String>` | :ref:`interface/editor/main_font_bold<class_EditorSettings_property_interface/editor/main_font_bold>` |
  334. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  335. | :ref:`int<class_int>` | :ref:`interface/editor/main_font_size<class_EditorSettings_property_interface/editor/main_font_size>` |
  336. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  337. | :ref:`bool<class_bool>` | :ref:`interface/editor/mouse_extra_buttons_navigate_history<class_EditorSettings_property_interface/editor/mouse_extra_buttons_navigate_history>` |
  338. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  339. | :ref:`int<class_int>` | :ref:`interface/editor/project_manager_screen<class_EditorSettings_property_interface/editor/project_manager_screen>` |
  340. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  341. | :ref:`bool<class_bool>` | :ref:`interface/editor/save_each_scene_on_quit<class_EditorSettings_property_interface/editor/save_each_scene_on_quit>` |
  342. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  343. | :ref:`bool<class_bool>` | :ref:`interface/editor/save_on_focus_loss<class_EditorSettings_property_interface/editor/save_on_focus_loss>` |
  344. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  345. | :ref:`bool<class_bool>` | :ref:`interface/editor/separate_distraction_mode<class_EditorSettings_property_interface/editor/separate_distraction_mode>` |
  346. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  347. | :ref:`int<class_int>` | :ref:`interface/editor/show_internal_errors_in_toast_notifications<class_EditorSettings_property_interface/editor/show_internal_errors_in_toast_notifications>` |
  348. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  349. | :ref:`int<class_int>` | :ref:`interface/editor/show_update_spinner<class_EditorSettings_property_interface/editor/show_update_spinner>` |
  350. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  351. | :ref:`bool<class_bool>` | :ref:`interface/editor/single_window_mode<class_EditorSettings_property_interface/editor/single_window_mode>` |
  352. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  353. | :ref:`int<class_int>` | :ref:`interface/editor/ui_layout_direction<class_EditorSettings_property_interface/editor/ui_layout_direction>` |
  354. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  355. | :ref:`int<class_int>` | :ref:`interface/editor/unfocused_low_processor_mode_sleep_usec<class_EditorSettings_property_interface/editor/unfocused_low_processor_mode_sleep_usec>` |
  356. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  357. | :ref:`bool<class_bool>` | :ref:`interface/editor/update_continuously<class_EditorSettings_property_interface/editor/update_continuously>` |
  358. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  359. | :ref:`bool<class_bool>` | :ref:`interface/editor/use_embedded_menu<class_EditorSettings_property_interface/editor/use_embedded_menu>` |
  360. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  361. | :ref:`bool<class_bool>` | :ref:`interface/editor/use_native_file_dialogs<class_EditorSettings_property_interface/editor/use_native_file_dialogs>` |
  362. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  363. | :ref:`int<class_int>` | :ref:`interface/editor/vsync_mode<class_EditorSettings_property_interface/editor/vsync_mode>` |
  364. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  365. | :ref:`bool<class_bool>` | :ref:`interface/inspector/auto_unfold_foreign_scenes<class_EditorSettings_property_interface/inspector/auto_unfold_foreign_scenes>` |
  366. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  367. | :ref:`int<class_int>` | :ref:`interface/inspector/default_color_picker_mode<class_EditorSettings_property_interface/inspector/default_color_picker_mode>` |
  368. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  369. | :ref:`int<class_int>` | :ref:`interface/inspector/default_color_picker_shape<class_EditorSettings_property_interface/inspector/default_color_picker_shape>` |
  370. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  371. | :ref:`float<class_float>` | :ref:`interface/inspector/default_float_step<class_EditorSettings_property_interface/inspector/default_float_step>` |
  372. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  373. | :ref:`int<class_int>` | :ref:`interface/inspector/default_property_name_style<class_EditorSettings_property_interface/inspector/default_property_name_style>` |
  374. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  375. | :ref:`bool<class_bool>` | :ref:`interface/inspector/delimitate_all_container_and_resources<class_EditorSettings_property_interface/inspector/delimitate_all_container_and_resources>` |
  376. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  377. | :ref:`bool<class_bool>` | :ref:`interface/inspector/disable_folding<class_EditorSettings_property_interface/inspector/disable_folding>` |
  378. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  379. | :ref:`float<class_float>` | :ref:`interface/inspector/float_drag_speed<class_EditorSettings_property_interface/inspector/float_drag_speed>` |
  380. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  381. | :ref:`bool<class_bool>` | :ref:`interface/inspector/horizontal_vector2_editing<class_EditorSettings_property_interface/inspector/horizontal_vector2_editing>` |
  382. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  383. | :ref:`bool<class_bool>` | :ref:`interface/inspector/horizontal_vector_types_editing<class_EditorSettings_property_interface/inspector/horizontal_vector_types_editing>` |
  384. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  385. | :ref:`int<class_int>` | :ref:`interface/inspector/max_array_dictionary_items_per_page<class_EditorSettings_property_interface/inspector/max_array_dictionary_items_per_page>` |
  386. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  387. | :ref:`int<class_int>` | :ref:`interface/inspector/nested_color_mode<class_EditorSettings_property_interface/inspector/nested_color_mode>` |
  388. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  389. | :ref:`bool<class_bool>` | :ref:`interface/inspector/open_resources_in_current_inspector<class_EditorSettings_property_interface/inspector/open_resources_in_current_inspector>` |
  390. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  391. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`interface/inspector/resources_to_open_in_new_inspector<class_EditorSettings_property_interface/inspector/resources_to_open_in_new_inspector>` |
  392. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  393. | :ref:`bool<class_bool>` | :ref:`interface/inspector/show_low_level_opentype_features<class_EditorSettings_property_interface/inspector/show_low_level_opentype_features>` |
  394. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  395. | :ref:`bool<class_bool>` | :ref:`interface/multi_window/enable<class_EditorSettings_property_interface/multi_window/enable>` |
  396. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  397. | :ref:`bool<class_bool>` | :ref:`interface/multi_window/maximize_window<class_EditorSettings_property_interface/multi_window/maximize_window>` |
  398. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  399. | :ref:`bool<class_bool>` | :ref:`interface/multi_window/restore_windows_on_load<class_EditorSettings_property_interface/multi_window/restore_windows_on_load>` |
  400. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  401. | :ref:`int<class_int>` | :ref:`interface/scene_tabs/display_close_button<class_EditorSettings_property_interface/scene_tabs/display_close_button>` |
  402. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  403. | :ref:`int<class_int>` | :ref:`interface/scene_tabs/maximum_width<class_EditorSettings_property_interface/scene_tabs/maximum_width>` |
  404. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  405. | :ref:`bool<class_bool>` | :ref:`interface/scene_tabs/restore_scenes_on_load<class_EditorSettings_property_interface/scene_tabs/restore_scenes_on_load>` |
  406. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  407. | :ref:`bool<class_bool>` | :ref:`interface/scene_tabs/show_script_button<class_EditorSettings_property_interface/scene_tabs/show_script_button>` |
  408. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  409. | :ref:`bool<class_bool>` | :ref:`interface/scene_tabs/show_thumbnail_on_hover<class_EditorSettings_property_interface/scene_tabs/show_thumbnail_on_hover>` |
  410. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  411. | :ref:`Color<class_Color>` | :ref:`interface/theme/accent_color<class_EditorSettings_property_interface/theme/accent_color>` |
  412. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  413. | :ref:`int<class_int>` | :ref:`interface/theme/additional_spacing<class_EditorSettings_property_interface/theme/additional_spacing>` |
  414. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  415. | :ref:`Color<class_Color>` | :ref:`interface/theme/base_color<class_EditorSettings_property_interface/theme/base_color>` |
  416. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  417. | :ref:`int<class_int>` | :ref:`interface/theme/base_spacing<class_EditorSettings_property_interface/theme/base_spacing>` |
  418. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  419. | :ref:`int<class_int>` | :ref:`interface/theme/border_size<class_EditorSettings_property_interface/theme/border_size>` |
  420. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  421. | :ref:`float<class_float>` | :ref:`interface/theme/contrast<class_EditorSettings_property_interface/theme/contrast>` |
  422. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  423. | :ref:`int<class_int>` | :ref:`interface/theme/corner_radius<class_EditorSettings_property_interface/theme/corner_radius>` |
  424. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  425. | :ref:`String<class_String>` | :ref:`interface/theme/custom_theme<class_EditorSettings_property_interface/theme/custom_theme>` |
  426. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  427. | :ref:`bool<class_bool>` | :ref:`interface/theme/draw_extra_borders<class_EditorSettings_property_interface/theme/draw_extra_borders>` |
  428. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  429. | :ref:`bool<class_bool>` | :ref:`interface/theme/follow_system_theme<class_EditorSettings_property_interface/theme/follow_system_theme>` |
  430. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  431. | :ref:`int<class_int>` | :ref:`interface/theme/icon_and_font_color<class_EditorSettings_property_interface/theme/icon_and_font_color>` |
  432. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  433. | :ref:`float<class_float>` | :ref:`interface/theme/icon_saturation<class_EditorSettings_property_interface/theme/icon_saturation>` |
  434. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  435. | :ref:`String<class_String>` | :ref:`interface/theme/preset<class_EditorSettings_property_interface/theme/preset>` |
  436. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  437. | :ref:`float<class_float>` | :ref:`interface/theme/relationship_line_opacity<class_EditorSettings_property_interface/theme/relationship_line_opacity>` |
  438. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  439. | :ref:`String<class_String>` | :ref:`interface/theme/spacing_preset<class_EditorSettings_property_interface/theme/spacing_preset>` |
  440. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  441. | :ref:`bool<class_bool>` | :ref:`interface/theme/use_system_accent_color<class_EditorSettings_property_interface/theme/use_system_accent_color>` |
  442. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  443. | :ref:`bool<class_bool>` | :ref:`interface/touchscreen/enable_long_press_as_right_click<class_EditorSettings_property_interface/touchscreen/enable_long_press_as_right_click>` |
  444. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  445. | :ref:`bool<class_bool>` | :ref:`interface/touchscreen/enable_pan_and_scale_gestures<class_EditorSettings_property_interface/touchscreen/enable_pan_and_scale_gestures>` |
  446. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  447. | :ref:`bool<class_bool>` | :ref:`interface/touchscreen/increase_scrollbar_touch_area<class_EditorSettings_property_interface/touchscreen/increase_scrollbar_touch_area>` |
  448. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  449. | :ref:`float<class_float>` | :ref:`interface/touchscreen/scale_gizmo_handles<class_EditorSettings_property_interface/touchscreen/scale_gizmo_handles>` |
  450. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  451. | :ref:`int<class_int>` | :ref:`network/connection/engine_version_update_mode<class_EditorSettings_property_network/connection/engine_version_update_mode>` |
  452. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  453. | :ref:`int<class_int>` | :ref:`network/connection/network_mode<class_EditorSettings_property_network/connection/network_mode>` |
  454. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  455. | :ref:`String<class_String>` | :ref:`network/debug/remote_host<class_EditorSettings_property_network/debug/remote_host>` |
  456. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  457. | :ref:`int<class_int>` | :ref:`network/debug/remote_port<class_EditorSettings_property_network/debug/remote_port>` |
  458. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  459. | :ref:`String<class_String>` | :ref:`network/http_proxy/host<class_EditorSettings_property_network/http_proxy/host>` |
  460. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  461. | :ref:`int<class_int>` | :ref:`network/http_proxy/port<class_EditorSettings_property_network/http_proxy/port>` |
  462. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  463. | :ref:`String<class_String>` | :ref:`network/tls/editor_tls_certificates<class_EditorSettings_property_network/tls/editor_tls_certificates>` |
  464. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  465. | :ref:`String<class_String>` | :ref:`project_manager/default_renderer<class_EditorSettings_property_project_manager/default_renderer>` |
  466. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  467. | :ref:`int<class_int>` | :ref:`project_manager/directory_naming_convention<class_EditorSettings_property_project_manager/directory_naming_convention>` |
  468. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  469. | :ref:`int<class_int>` | :ref:`project_manager/sorting_order<class_EditorSettings_property_project_manager/sorting_order>` |
  470. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  471. | :ref:`bool<class_bool>` | :ref:`run/auto_save/save_before_running<class_EditorSettings_property_run/auto_save/save_before_running>` |
  472. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  473. | :ref:`int<class_int>` | :ref:`run/bottom_panel/action_on_play<class_EditorSettings_property_run/bottom_panel/action_on_play>` |
  474. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  475. | :ref:`int<class_int>` | :ref:`run/bottom_panel/action_on_stop<class_EditorSettings_property_run/bottom_panel/action_on_stop>` |
  476. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  477. | :ref:`bool<class_bool>` | :ref:`run/output/always_clear_output_on_play<class_EditorSettings_property_run/output/always_clear_output_on_play>` |
  478. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  479. | :ref:`int<class_int>` | :ref:`run/output/font_size<class_EditorSettings_property_run/output/font_size>` |
  480. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  481. | :ref:`int<class_int>` | :ref:`run/output/max_lines<class_EditorSettings_property_run/output/max_lines>` |
  482. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  483. | :ref:`bool<class_bool>` | :ref:`run/platforms/linuxbsd/prefer_wayland<class_EditorSettings_property_run/platforms/linuxbsd/prefer_wayland>` |
  484. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  485. | :ref:`int<class_int>` | :ref:`run/window_placement/android_window<class_EditorSettings_property_run/window_placement/android_window>` |
  486. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  487. | :ref:`int<class_int>` | :ref:`run/window_placement/rect<class_EditorSettings_property_run/window_placement/rect>` |
  488. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  489. | :ref:`Vector2<class_Vector2>` | :ref:`run/window_placement/rect_custom_position<class_EditorSettings_property_run/window_placement/rect_custom_position>` |
  490. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  491. | :ref:`int<class_int>` | :ref:`run/window_placement/screen<class_EditorSettings_property_run/window_placement/screen>` |
  492. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  493. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/caret/caret_blink<class_EditorSettings_property_text_editor/appearance/caret/caret_blink>` |
  494. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  495. | :ref:`float<class_float>` | :ref:`text_editor/appearance/caret/caret_blink_interval<class_EditorSettings_property_text_editor/appearance/caret/caret_blink_interval>` |
  496. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  497. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/caret/highlight_all_occurrences<class_EditorSettings_property_text_editor/appearance/caret/highlight_all_occurrences>` |
  498. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  499. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/caret/highlight_current_line<class_EditorSettings_property_text_editor/appearance/caret/highlight_current_line>` |
  500. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  501. | :ref:`int<class_int>` | :ref:`text_editor/appearance/caret/type<class_EditorSettings_property_text_editor/appearance/caret/type>` |
  502. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  503. | :ref:`int<class_int>` | :ref:`text_editor/appearance/guidelines/line_length_guideline_hard_column<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_hard_column>` |
  504. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  505. | :ref:`int<class_int>` | :ref:`text_editor/appearance/guidelines/line_length_guideline_soft_column<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_soft_column>` |
  506. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  507. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/guidelines/show_line_length_guidelines<class_EditorSettings_property_text_editor/appearance/guidelines/show_line_length_guidelines>` |
  508. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  509. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/highlight_type_safe_lines<class_EditorSettings_property_text_editor/appearance/gutters/highlight_type_safe_lines>` |
  510. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  511. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/line_numbers_zero_padded<class_EditorSettings_property_text_editor/appearance/gutters/line_numbers_zero_padded>` |
  512. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  513. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/show_info_gutter<class_EditorSettings_property_text_editor/appearance/gutters/show_info_gutter>` |
  514. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  515. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/show_line_numbers<class_EditorSettings_property_text_editor/appearance/gutters/show_line_numbers>` |
  516. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  517. | :ref:`int<class_int>` | :ref:`text_editor/appearance/lines/autowrap_mode<class_EditorSettings_property_text_editor/appearance/lines/autowrap_mode>` |
  518. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  519. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/lines/code_folding<class_EditorSettings_property_text_editor/appearance/lines/code_folding>` |
  520. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  521. | :ref:`int<class_int>` | :ref:`text_editor/appearance/lines/word_wrap<class_EditorSettings_property_text_editor/appearance/lines/word_wrap>` |
  522. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  523. | :ref:`int<class_int>` | :ref:`text_editor/appearance/minimap/minimap_width<class_EditorSettings_property_text_editor/appearance/minimap/minimap_width>` |
  524. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  525. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/minimap/show_minimap<class_EditorSettings_property_text_editor/appearance/minimap/show_minimap>` |
  526. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  527. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/whitespace/draw_spaces<class_EditorSettings_property_text_editor/appearance/whitespace/draw_spaces>` |
  528. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  529. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/whitespace/draw_tabs<class_EditorSettings_property_text_editor/appearance/whitespace/draw_tabs>` |
  530. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  531. | :ref:`int<class_int>` | :ref:`text_editor/appearance/whitespace/line_spacing<class_EditorSettings_property_text_editor/appearance/whitespace/line_spacing>` |
  532. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  533. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/auto_reload_scripts_on_external_change<class_EditorSettings_property_text_editor/behavior/files/auto_reload_scripts_on_external_change>` |
  534. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  535. | :ref:`int<class_int>` | :ref:`text_editor/behavior/files/autosave_interval_secs<class_EditorSettings_property_text_editor/behavior/files/autosave_interval_secs>` |
  536. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  537. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/convert_indent_on_save<class_EditorSettings_property_text_editor/behavior/files/convert_indent_on_save>` |
  538. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  539. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/restore_scripts_on_load<class_EditorSettings_property_text_editor/behavior/files/restore_scripts_on_load>` |
  540. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  541. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/trim_final_newlines_on_save<class_EditorSettings_property_text_editor/behavior/files/trim_final_newlines_on_save>` |
  542. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  543. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/trim_trailing_whitespace_on_save<class_EditorSettings_property_text_editor/behavior/files/trim_trailing_whitespace_on_save>` |
  544. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  545. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/indent/auto_indent<class_EditorSettings_property_text_editor/behavior/indent/auto_indent>` |
  546. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  547. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/indent/indent_wrapped_lines<class_EditorSettings_property_text_editor/behavior/indent/indent_wrapped_lines>` |
  548. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  549. | :ref:`int<class_int>` | :ref:`text_editor/behavior/indent/size<class_EditorSettings_property_text_editor/behavior/indent/size>` |
  550. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  551. | :ref:`int<class_int>` | :ref:`text_editor/behavior/indent/type<class_EditorSettings_property_text_editor/behavior/indent/type>` |
  552. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  553. | :ref:`String<class_String>` | :ref:`text_editor/behavior/navigation/custom_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/custom_word_separators>` |
  554. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  555. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/drag_and_drop_selection<class_EditorSettings_property_text_editor/behavior/navigation/drag_and_drop_selection>` |
  556. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  557. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/move_caret_on_right_click<class_EditorSettings_property_text_editor/behavior/navigation/move_caret_on_right_click>` |
  558. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  559. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/open_script_when_connecting_signal_to_existing_method<class_EditorSettings_property_text_editor/behavior/navigation/open_script_when_connecting_signal_to_existing_method>` |
  560. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  561. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/scroll_past_end_of_file<class_EditorSettings_property_text_editor/behavior/navigation/scroll_past_end_of_file>` |
  562. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  563. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/smooth_scrolling<class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling>` |
  564. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  565. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/stay_in_script_editor_on_node_selected<class_EditorSettings_property_text_editor/behavior/navigation/stay_in_script_editor_on_node_selected>` |
  566. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  567. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/use_custom_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/use_custom_word_separators>` |
  568. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  569. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/use_default_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/use_default_word_separators>` |
  570. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  571. | :ref:`int<class_int>` | :ref:`text_editor/behavior/navigation/v_scroll_speed<class_EditorSettings_property_text_editor/behavior/navigation/v_scroll_speed>` |
  572. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  573. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/add_node_path_literals<class_EditorSettings_property_text_editor/completion/add_node_path_literals>` |
  574. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  575. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/add_string_name_literals<class_EditorSettings_property_text_editor/completion/add_string_name_literals>` |
  576. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  577. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/add_type_hints<class_EditorSettings_property_text_editor/completion/add_type_hints>` |
  578. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  579. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/auto_brace_complete<class_EditorSettings_property_text_editor/completion/auto_brace_complete>` |
  580. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  581. | :ref:`float<class_float>` | :ref:`text_editor/completion/code_complete_delay<class_EditorSettings_property_text_editor/completion/code_complete_delay>` |
  582. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  583. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/code_complete_enabled<class_EditorSettings_property_text_editor/completion/code_complete_enabled>` |
  584. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  585. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/colorize_suggestions<class_EditorSettings_property_text_editor/completion/colorize_suggestions>` |
  586. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  587. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/complete_file_paths<class_EditorSettings_property_text_editor/completion/complete_file_paths>` |
  588. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  589. | :ref:`float<class_float>` | :ref:`text_editor/completion/idle_parse_delay<class_EditorSettings_property_text_editor/completion/idle_parse_delay>` |
  590. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  591. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/put_callhint_tooltip_below_current_line<class_EditorSettings_property_text_editor/completion/put_callhint_tooltip_below_current_line>` |
  592. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  593. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/use_single_quotes<class_EditorSettings_property_text_editor/completion/use_single_quotes>` |
  594. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  595. | :ref:`int<class_int>` | :ref:`text_editor/help/class_reference_examples<class_EditorSettings_property_text_editor/help/class_reference_examples>` |
  596. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  597. | :ref:`int<class_int>` | :ref:`text_editor/help/help_font_size<class_EditorSettings_property_text_editor/help/help_font_size>` |
  598. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  599. | :ref:`int<class_int>` | :ref:`text_editor/help/help_source_font_size<class_EditorSettings_property_text_editor/help/help_source_font_size>` |
  600. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  601. | :ref:`int<class_int>` | :ref:`text_editor/help/help_title_font_size<class_EditorSettings_property_text_editor/help/help_title_font_size>` |
  602. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  603. | :ref:`bool<class_bool>` | :ref:`text_editor/help/show_help_index<class_EditorSettings_property_text_editor/help/show_help_index>` |
  604. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  605. | :ref:`bool<class_bool>` | :ref:`text_editor/script_list/show_members_overview<class_EditorSettings_property_text_editor/script_list/show_members_overview>` |
  606. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  607. | :ref:`bool<class_bool>` | :ref:`text_editor/script_list/sort_members_outline_alphabetically<class_EditorSettings_property_text_editor/script_list/sort_members_outline_alphabetically>` |
  608. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  609. | :ref:`String<class_String>` | :ref:`text_editor/theme/color_theme<class_EditorSettings_property_text_editor/theme/color_theme>` |
  610. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  611. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/background_color<class_EditorSettings_property_text_editor/theme/highlighting/background_color>` |
  612. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  613. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/base_type_color<class_EditorSettings_property_text_editor/theme/highlighting/base_type_color>` |
  614. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  615. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/bookmark_color<class_EditorSettings_property_text_editor/theme/highlighting/bookmark_color>` |
  616. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  617. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/brace_mismatch_color<class_EditorSettings_property_text_editor/theme/highlighting/brace_mismatch_color>` |
  618. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  619. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/breakpoint_color<class_EditorSettings_property_text_editor/theme/highlighting/breakpoint_color>` |
  620. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  621. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/caret_background_color<class_EditorSettings_property_text_editor/theme/highlighting/caret_background_color>` |
  622. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  623. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/caret_color<class_EditorSettings_property_text_editor/theme/highlighting/caret_color>` |
  624. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  625. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/code_folding_color<class_EditorSettings_property_text_editor/theme/highlighting/code_folding_color>` |
  626. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  627. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/comment_color<class_EditorSettings_property_text_editor/theme/highlighting/comment_color>` |
  628. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  629. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_background_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_background_color>` |
  630. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  631. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_existing_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_existing_color>` |
  632. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  633. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_font_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_font_color>` |
  634. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  635. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_scroll_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_color>` |
  636. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  637. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_scroll_hovered_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_hovered_color>` |
  638. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  639. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_selected_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_selected_color>` |
  640. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  641. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/control_flow_keyword_color<class_EditorSettings_property_text_editor/theme/highlighting/control_flow_keyword_color>` |
  642. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  643. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/current_line_color<class_EditorSettings_property_text_editor/theme/highlighting/current_line_color>` |
  644. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  645. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/doc_comment_color<class_EditorSettings_property_text_editor/theme/highlighting/doc_comment_color>` |
  646. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  647. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/engine_type_color<class_EditorSettings_property_text_editor/theme/highlighting/engine_type_color>` |
  648. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  649. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/executing_line_color<class_EditorSettings_property_text_editor/theme/highlighting/executing_line_color>` |
  650. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  651. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/folded_code_region_color<class_EditorSettings_property_text_editor/theme/highlighting/folded_code_region_color>` |
  652. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  653. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/function_color<class_EditorSettings_property_text_editor/theme/highlighting/function_color>` |
  654. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  655. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/keyword_color<class_EditorSettings_property_text_editor/theme/highlighting/keyword_color>` |
  656. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  657. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/line_length_guideline_color<class_EditorSettings_property_text_editor/theme/highlighting/line_length_guideline_color>` |
  658. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  659. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/line_number_color>` |
  660. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  661. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/mark_color<class_EditorSettings_property_text_editor/theme/highlighting/mark_color>` |
  662. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  663. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/member_variable_color<class_EditorSettings_property_text_editor/theme/highlighting/member_variable_color>` |
  664. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  665. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/number_color<class_EditorSettings_property_text_editor/theme/highlighting/number_color>` |
  666. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  667. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/safe_line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color>` |
  668. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  669. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/search_result_border_color<class_EditorSettings_property_text_editor/theme/highlighting/search_result_border_color>` |
  670. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  671. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/search_result_color<class_EditorSettings_property_text_editor/theme/highlighting/search_result_color>` |
  672. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  673. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/selection_color<class_EditorSettings_property_text_editor/theme/highlighting/selection_color>` |
  674. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  675. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/string_color<class_EditorSettings_property_text_editor/theme/highlighting/string_color>` |
  676. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  677. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/symbol_color<class_EditorSettings_property_text_editor/theme/highlighting/symbol_color>` |
  678. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  679. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/text_color<class_EditorSettings_property_text_editor/theme/highlighting/text_color>` |
  680. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  681. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/text_selected_color<class_EditorSettings_property_text_editor/theme/highlighting/text_selected_color>` |
  682. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  683. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/user_type_color<class_EditorSettings_property_text_editor/theme/highlighting/user_type_color>` |
  684. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  685. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/word_highlighted_color<class_EditorSettings_property_text_editor/theme/highlighting/word_highlighted_color>` |
  686. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  687. .. rst-class:: classref-reftable-group
  688. Methods
  689. -------
  690. .. table::
  691. :widths: auto
  692. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  693. | |void| | :ref:`add_property_info<class_EditorSettings_method_add_property_info>`\ (\ info\: :ref:`Dictionary<class_Dictionary>`\ ) |
  694. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  695. | :ref:`bool<class_bool>` | :ref:`check_changed_settings_in_group<class_EditorSettings_method_check_changed_settings_in_group>`\ (\ setting_prefix\: :ref:`String<class_String>`\ ) |const| |
  696. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  697. | |void| | :ref:`erase<class_EditorSettings_method_erase>`\ (\ property\: :ref:`String<class_String>`\ ) |
  698. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  699. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_changed_settings<class_EditorSettings_method_get_changed_settings>`\ (\ ) |const| |
  700. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  701. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_favorites<class_EditorSettings_method_get_favorites>`\ (\ ) |const| |
  702. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  703. | :ref:`Variant<class_Variant>` | :ref:`get_project_metadata<class_EditorSettings_method_get_project_metadata>`\ (\ section\: :ref:`String<class_String>`, key\: :ref:`String<class_String>`, default\: :ref:`Variant<class_Variant>` = null\ ) |const| |
  704. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  705. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_recent_dirs<class_EditorSettings_method_get_recent_dirs>`\ (\ ) |const| |
  706. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  707. | :ref:`Variant<class_Variant>` | :ref:`get_setting<class_EditorSettings_method_get_setting>`\ (\ name\: :ref:`String<class_String>`\ ) |const| |
  708. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  709. | :ref:`bool<class_bool>` | :ref:`has_setting<class_EditorSettings_method_has_setting>`\ (\ name\: :ref:`String<class_String>`\ ) |const| |
  710. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  711. | |void| | :ref:`mark_setting_changed<class_EditorSettings_method_mark_setting_changed>`\ (\ setting\: :ref:`String<class_String>`\ ) |
  712. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  713. | |void| | :ref:`set_builtin_action_override<class_EditorSettings_method_set_builtin_action_override>`\ (\ name\: :ref:`String<class_String>`, actions_list\: :ref:`Array<class_Array>`\[:ref:`InputEvent<class_InputEvent>`\]\ ) |
  714. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  715. | |void| | :ref:`set_favorites<class_EditorSettings_method_set_favorites>`\ (\ dirs\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  716. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  717. | |void| | :ref:`set_initial_value<class_EditorSettings_method_set_initial_value>`\ (\ name\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`, update_current\: :ref:`bool<class_bool>`\ ) |
  718. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  719. | |void| | :ref:`set_project_metadata<class_EditorSettings_method_set_project_metadata>`\ (\ section\: :ref:`String<class_String>`, key\: :ref:`String<class_String>`, data\: :ref:`Variant<class_Variant>`\ ) |
  720. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  721. | |void| | :ref:`set_recent_dirs<class_EditorSettings_method_set_recent_dirs>`\ (\ dirs\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  722. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  723. | |void| | :ref:`set_setting<class_EditorSettings_method_set_setting>`\ (\ name\: :ref:`String<class_String>`, value\: :ref:`Variant<class_Variant>`\ ) |
  724. +---------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  725. .. rst-class:: classref-section-separator
  726. ----
  727. .. rst-class:: classref-descriptions-group
  728. Signals
  729. -------
  730. .. _class_EditorSettings_signal_settings_changed:
  731. .. rst-class:: classref-signal
  732. **settings_changed**\ (\ ) :ref:`🔗<class_EditorSettings_signal_settings_changed>`
  733. Emitted after any editor setting has changed.
  734. .. rst-class:: classref-section-separator
  735. ----
  736. .. rst-class:: classref-descriptions-group
  737. Constants
  738. ---------
  739. .. _class_EditorSettings_constant_NOTIFICATION_EDITOR_SETTINGS_CHANGED:
  740. .. rst-class:: classref-constant
  741. **NOTIFICATION_EDITOR_SETTINGS_CHANGED** = ``10000`` :ref:`🔗<class_EditorSettings_constant_NOTIFICATION_EDITOR_SETTINGS_CHANGED>`
  742. Emitted after any editor setting has changed. It's used by various editor plugins to update their visuals on theme changes or logic on configuration changes.
  743. .. rst-class:: classref-section-separator
  744. ----
  745. .. rst-class:: classref-descriptions-group
  746. Property Descriptions
  747. ---------------------
  748. .. _class_EditorSettings_property_debugger/auto_switch_to_remote_scene_tree:
  749. .. rst-class:: classref-property
  750. :ref:`bool<class_bool>` **debugger/auto_switch_to_remote_scene_tree** :ref:`🔗<class_EditorSettings_property_debugger/auto_switch_to_remote_scene_tree>`
  751. If ``true``, automatically switches to the **Remote** scene tree when running the project from the editor. If ``false``, stays on the **Local** scene tree when running the project from the editor.
  752. .. rst-class:: classref-item-separator
  753. ----
  754. .. _class_EditorSettings_property_debugger/profile_native_calls:
  755. .. rst-class:: classref-property
  756. :ref:`bool<class_bool>` **debugger/profile_native_calls** :ref:`🔗<class_EditorSettings_property_debugger/profile_native_calls>`
  757. If ``true``, enables collection of profiling data from non-GDScript Godot functions, such as engine class methods. Enabling this slows execution while profiling further.
  758. .. rst-class:: classref-item-separator
  759. ----
  760. .. _class_EditorSettings_property_debugger/profiler_frame_history_size:
  761. .. rst-class:: classref-property
  762. :ref:`int<class_int>` **debugger/profiler_frame_history_size** :ref:`🔗<class_EditorSettings_property_debugger/profiler_frame_history_size>`
  763. The size of the profiler's frame history. The default value (3600) allows seeing up to 60 seconds of profiling if the project renders at a constant 60 FPS. Higher values allow viewing longer periods of profiling in the graphs, especially when the project is running at high framerates.
  764. .. rst-class:: classref-item-separator
  765. ----
  766. .. _class_EditorSettings_property_debugger/profiler_frame_max_functions:
  767. .. rst-class:: classref-property
  768. :ref:`int<class_int>` **debugger/profiler_frame_max_functions** :ref:`🔗<class_EditorSettings_property_debugger/profiler_frame_max_functions>`
  769. The maximum number of script functions that can be displayed per frame in the profiler. If there are more script functions called in a given profiler frame, these functions will be discarded from the profiling results entirely.
  770. \ **Note:** This setting is only read when the profiler is first started, so changing it during profiling will have no effect.
  771. .. rst-class:: classref-item-separator
  772. ----
  773. .. _class_EditorSettings_property_debugger/remote_inspect_refresh_interval:
  774. .. rst-class:: classref-property
  775. :ref:`float<class_float>` **debugger/remote_inspect_refresh_interval** :ref:`🔗<class_EditorSettings_property_debugger/remote_inspect_refresh_interval>`
  776. The refresh interval for the remote inspector's properties (in seconds). Lower values are more reactive, but may cause stuttering while the project is running from the editor and the **Remote** scene tree is selected in the Scene tree dock.
  777. .. rst-class:: classref-item-separator
  778. ----
  779. .. _class_EditorSettings_property_debugger/remote_scene_tree_refresh_interval:
  780. .. rst-class:: classref-property
  781. :ref:`float<class_float>` **debugger/remote_scene_tree_refresh_interval** :ref:`🔗<class_EditorSettings_property_debugger/remote_scene_tree_refresh_interval>`
  782. The refresh interval for the remote scene tree (in seconds). Lower values are more reactive, but may cause stuttering while the project is running from the editor and the **Remote** scene tree is selected in the Scene tree dock.
  783. .. rst-class:: classref-item-separator
  784. ----
  785. .. _class_EditorSettings_property_docks/filesystem/always_show_folders:
  786. .. rst-class:: classref-property
  787. :ref:`bool<class_bool>` **docks/filesystem/always_show_folders** :ref:`🔗<class_EditorSettings_property_docks/filesystem/always_show_folders>`
  788. If ``true``, displays folders in the FileSystem dock's bottom pane when split mode is enabled. If ``false``, only files will be displayed in the bottom pane. Split mode can be toggled by pressing the icon next to the ``res://`` folder path.
  789. \ **Note:** This setting has no effect when split mode is disabled (which is the default).
  790. .. rst-class:: classref-item-separator
  791. ----
  792. .. _class_EditorSettings_property_docks/filesystem/textfile_extensions:
  793. .. rst-class:: classref-property
  794. :ref:`String<class_String>` **docks/filesystem/textfile_extensions** :ref:`🔗<class_EditorSettings_property_docks/filesystem/textfile_extensions>`
  795. List of file extensions to consider as editable text files in the FileSystem dock (by double-clicking on the files).
  796. .. rst-class:: classref-item-separator
  797. ----
  798. .. _class_EditorSettings_property_docks/filesystem/thumbnail_size:
  799. .. rst-class:: classref-property
  800. :ref:`int<class_int>` **docks/filesystem/thumbnail_size** :ref:`🔗<class_EditorSettings_property_docks/filesystem/thumbnail_size>`
  801. The thumbnail size to use in the FileSystem dock (in pixels). See also :ref:`filesystem/file_dialog/thumbnail_size<class_EditorSettings_property_filesystem/file_dialog/thumbnail_size>`.
  802. .. rst-class:: classref-item-separator
  803. ----
  804. .. _class_EditorSettings_property_docks/property_editor/auto_refresh_interval:
  805. .. rst-class:: classref-property
  806. :ref:`float<class_float>` **docks/property_editor/auto_refresh_interval** :ref:`🔗<class_EditorSettings_property_docks/property_editor/auto_refresh_interval>`
  807. The refresh interval to use for the Inspector dock's properties. The effect of this setting is mainly noticeable when adjusting gizmos in the 2D/3D editor and looking at the inspector at the same time. Lower values make the inspector refresh more often, but take up more CPU time.
  808. .. rst-class:: classref-item-separator
  809. ----
  810. .. _class_EditorSettings_property_docks/property_editor/subresource_hue_tint:
  811. .. rst-class:: classref-property
  812. :ref:`float<class_float>` **docks/property_editor/subresource_hue_tint** :ref:`🔗<class_EditorSettings_property_docks/property_editor/subresource_hue_tint>`
  813. The tint intensity to use for the subresources background in the Inspector dock. The tint is used to distinguish between different subresources in the inspector. Higher values result in a more noticeable background color difference.
  814. .. rst-class:: classref-item-separator
  815. ----
  816. .. _class_EditorSettings_property_docks/scene_tree/auto_expand_to_selected:
  817. .. rst-class:: classref-property
  818. :ref:`bool<class_bool>` **docks/scene_tree/auto_expand_to_selected** :ref:`🔗<class_EditorSettings_property_docks/scene_tree/auto_expand_to_selected>`
  819. If ``true``, the scene tree dock will automatically unfold nodes when a node that has folded parents is selected.
  820. .. rst-class:: classref-item-separator
  821. ----
  822. .. _class_EditorSettings_property_docks/scene_tree/center_node_on_reparent:
  823. .. rst-class:: classref-property
  824. :ref:`bool<class_bool>` **docks/scene_tree/center_node_on_reparent** :ref:`🔗<class_EditorSettings_property_docks/scene_tree/center_node_on_reparent>`
  825. If ``true``, new node created when reparenting node(s) will be positioned at the average position of the selected node(s).
  826. .. rst-class:: classref-item-separator
  827. ----
  828. .. _class_EditorSettings_property_docks/scene_tree/start_create_dialog_fully_expanded:
  829. .. rst-class:: classref-property
  830. :ref:`bool<class_bool>` **docks/scene_tree/start_create_dialog_fully_expanded** :ref:`🔗<class_EditorSettings_property_docks/scene_tree/start_create_dialog_fully_expanded>`
  831. If ``true``, the Create dialog (Create New Node/Create New Resource) will start with all its sections expanded. Otherwise, sections will be collapsed until the user starts searching (which will automatically expand sections as needed).
  832. .. rst-class:: classref-item-separator
  833. ----
  834. .. _class_EditorSettings_property_editors/2d/bone_color1:
  835. .. rst-class:: classref-property
  836. :ref:`Color<class_Color>` **editors/2d/bone_color1** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_color1>`
  837. The "start" stop of the color gradient to use for bones in the 2D skeleton editor.
  838. .. rst-class:: classref-item-separator
  839. ----
  840. .. _class_EditorSettings_property_editors/2d/bone_color2:
  841. .. rst-class:: classref-property
  842. :ref:`Color<class_Color>` **editors/2d/bone_color2** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_color2>`
  843. The "end" stop of the color gradient to use for bones in the 2D skeleton editor.
  844. .. rst-class:: classref-item-separator
  845. ----
  846. .. _class_EditorSettings_property_editors/2d/bone_ik_color:
  847. .. rst-class:: classref-property
  848. :ref:`Color<class_Color>` **editors/2d/bone_ik_color** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_ik_color>`
  849. The color to use for inverse kinematics-enabled bones in the 2D skeleton editor.
  850. .. rst-class:: classref-item-separator
  851. ----
  852. .. _class_EditorSettings_property_editors/2d/bone_outline_color:
  853. .. rst-class:: classref-property
  854. :ref:`Color<class_Color>` **editors/2d/bone_outline_color** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_outline_color>`
  855. The outline color to use for non-selected bones in the 2D skeleton editor. See also :ref:`editors/2d/bone_selected_color<class_EditorSettings_property_editors/2d/bone_selected_color>`.
  856. .. rst-class:: classref-item-separator
  857. ----
  858. .. _class_EditorSettings_property_editors/2d/bone_outline_size:
  859. .. rst-class:: classref-property
  860. :ref:`float<class_float>` **editors/2d/bone_outline_size** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_outline_size>`
  861. The outline size in the 2D skeleton editor (in pixels). See also :ref:`editors/2d/bone_width<class_EditorSettings_property_editors/2d/bone_width>`.
  862. \ **Note:** Changes to this value only apply after modifying a :ref:`Bone2D<class_Bone2D>` node in any way, or closing and reopening the scene.
  863. .. rst-class:: classref-item-separator
  864. ----
  865. .. _class_EditorSettings_property_editors/2d/bone_selected_color:
  866. .. rst-class:: classref-property
  867. :ref:`Color<class_Color>` **editors/2d/bone_selected_color** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_selected_color>`
  868. The color to use for selected bones in the 2D skeleton editor. See also :ref:`editors/2d/bone_outline_color<class_EditorSettings_property_editors/2d/bone_outline_color>`.
  869. .. rst-class:: classref-item-separator
  870. ----
  871. .. _class_EditorSettings_property_editors/2d/bone_width:
  872. .. rst-class:: classref-property
  873. :ref:`float<class_float>` **editors/2d/bone_width** :ref:`🔗<class_EditorSettings_property_editors/2d/bone_width>`
  874. The bone width in the 2D skeleton editor (in pixels). See also :ref:`editors/2d/bone_outline_size<class_EditorSettings_property_editors/2d/bone_outline_size>`.
  875. \ **Note:** Changes to this value only apply after modifying a :ref:`Bone2D<class_Bone2D>` node in any way, or closing and reopening the scene.
  876. .. rst-class:: classref-item-separator
  877. ----
  878. .. _class_EditorSettings_property_editors/2d/grid_color:
  879. .. rst-class:: classref-property
  880. :ref:`Color<class_Color>` **editors/2d/grid_color** :ref:`🔗<class_EditorSettings_property_editors/2d/grid_color>`
  881. The grid color to use in the 2D editor.
  882. .. rst-class:: classref-item-separator
  883. ----
  884. .. _class_EditorSettings_property_editors/2d/guides_color:
  885. .. rst-class:: classref-property
  886. :ref:`Color<class_Color>` **editors/2d/guides_color** :ref:`🔗<class_EditorSettings_property_editors/2d/guides_color>`
  887. The guides color to use in the 2D editor. Guides can be created by dragging the mouse cursor from the rulers.
  888. .. rst-class:: classref-item-separator
  889. ----
  890. .. _class_EditorSettings_property_editors/2d/smart_snapping_line_color:
  891. .. rst-class:: classref-property
  892. :ref:`Color<class_Color>` **editors/2d/smart_snapping_line_color** :ref:`🔗<class_EditorSettings_property_editors/2d/smart_snapping_line_color>`
  893. The color to use when drawing smart snapping lines in the 2D editor. The smart snapping lines will automatically display when moving 2D nodes if smart snapping is enabled in the Snapping Options menu at the top of the 2D editor viewport.
  894. .. rst-class:: classref-item-separator
  895. ----
  896. .. _class_EditorSettings_property_editors/2d/use_integer_zoom_by_default:
  897. .. rst-class:: classref-property
  898. :ref:`bool<class_bool>` **editors/2d/use_integer_zoom_by_default** :ref:`🔗<class_EditorSettings_property_editors/2d/use_integer_zoom_by_default>`
  899. If ``true``, the 2D editor will snap to integer zoom values while not holding the :kbd:`Alt` key and powers of two while holding it. If ``false``, this behavior is swapped.
  900. .. rst-class:: classref-item-separator
  901. ----
  902. .. _class_EditorSettings_property_editors/2d/viewport_border_color:
  903. .. rst-class:: classref-property
  904. :ref:`Color<class_Color>` **editors/2d/viewport_border_color** :ref:`🔗<class_EditorSettings_property_editors/2d/viewport_border_color>`
  905. The color of the viewport border in the 2D editor. This border represents the viewport's size at the base resolution defined in the Project Settings. Objects placed outside this border will not be visible unless a :ref:`Camera2D<class_Camera2D>` node is used, or unless the window is resized and the stretch mode is set to ``disabled``.
  906. .. rst-class:: classref-item-separator
  907. ----
  908. .. _class_EditorSettings_property_editors/3d/default_fov:
  909. .. rst-class:: classref-property
  910. :ref:`float<class_float>` **editors/3d/default_fov** :ref:`🔗<class_EditorSettings_property_editors/3d/default_fov>`
  911. The default camera vertical field of view to use in the 3D editor (in degrees). The camera field of view can be adjusted on a per-scene basis using the **View** menu at the top of the 3D editor. If a scene had its camera field of view adjusted using the **View** menu, this setting is ignored in the scene in question. This setting is also ignored while a :ref:`Camera3D<class_Camera3D>` node is being previewed in the editor.
  912. \ **Note:** The editor camera always uses the **Keep Height** aspect mode.
  913. .. rst-class:: classref-item-separator
  914. ----
  915. .. _class_EditorSettings_property_editors/3d/default_z_far:
  916. .. rst-class:: classref-property
  917. :ref:`float<class_float>` **editors/3d/default_z_far** :ref:`🔗<class_EditorSettings_property_editors/3d/default_z_far>`
  918. The default camera far clip distance to use in the 3D editor (in degrees). Higher values make it possible to view objects placed further away from the camera, at the cost of lower precision in the depth buffer (which can result in visible Z-fighting in the distance). The camera far clip distance can be adjusted on a per-scene basis using the **View** menu at the top of the 3D editor. If a scene had its camera far clip distance adjusted using the **View** menu, this setting is ignored in the scene in question. This setting is also ignored while a :ref:`Camera3D<class_Camera3D>` node is being previewed in the editor.
  919. .. rst-class:: classref-item-separator
  920. ----
  921. .. _class_EditorSettings_property_editors/3d/default_z_near:
  922. .. rst-class:: classref-property
  923. :ref:`float<class_float>` **editors/3d/default_z_near** :ref:`🔗<class_EditorSettings_property_editors/3d/default_z_near>`
  924. The default camera near clip distance to use in the 3D editor (in degrees). Lower values make it possible to view objects placed closer to the camera, at the cost of lower precision in the depth buffer (which can result in visible Z-fighting in the distance). The camera near clip distance can be adjusted on a per-scene basis using the **View** menu at the top of the 3D editor. If a scene had its camera near clip distance adjusted using the **View** menu, this setting is ignored in the scene in question. This setting is also ignored while a :ref:`Camera3D<class_Camera3D>` node is being previewed in the editor.
  925. .. rst-class:: classref-item-separator
  926. ----
  927. .. _class_EditorSettings_property_editors/3d/freelook/freelook_activation_modifier:
  928. .. rst-class:: classref-property
  929. :ref:`int<class_int>` **editors/3d/freelook/freelook_activation_modifier** :ref:`🔗<class_EditorSettings_property_editors/3d/freelook/freelook_activation_modifier>`
  930. The modifier key to use to enable freelook in the 3D editor (on top of pressing the right mouse button).
  931. \ **Note:** Regardless of this setting, the freelook toggle keyboard shortcut (:kbd:`Shift + F` by default) is always available.
  932. \ **Note:** On certain window managers on Linux, the :kbd:`Alt` key will be intercepted by the window manager when clicking a mouse button at the same time. This means Godot will not see the modifier key as being pressed.
  933. .. rst-class:: classref-item-separator
  934. ----
  935. .. _class_EditorSettings_property_editors/3d/freelook/freelook_base_speed:
  936. .. rst-class:: classref-property
  937. :ref:`float<class_float>` **editors/3d/freelook/freelook_base_speed** :ref:`🔗<class_EditorSettings_property_editors/3d/freelook/freelook_base_speed>`
  938. The base 3D freelook speed in units per second. This can be adjusted by using the mouse wheel while in freelook mode, or by holding down the "fast" or "slow" modifier keys (:kbd:`Shift` and :kbd:`Alt` by default, respectively).
  939. .. rst-class:: classref-item-separator
  940. ----
  941. .. _class_EditorSettings_property_editors/3d/freelook/freelook_inertia:
  942. .. rst-class:: classref-property
  943. :ref:`float<class_float>` **editors/3d/freelook/freelook_inertia** :ref:`🔗<class_EditorSettings_property_editors/3d/freelook/freelook_inertia>`
  944. The inertia of the 3D freelook camera. Higher values make the camera start and stop slower, which looks smoother but adds latency.
  945. .. rst-class:: classref-item-separator
  946. ----
  947. .. _class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme:
  948. .. rst-class:: classref-property
  949. :ref:`int<class_int>` **editors/3d/freelook/freelook_navigation_scheme** :ref:`🔗<class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme>`
  950. The navigation scheme to use when freelook is enabled in the 3D editor. Some of the navigation schemes below may be more convenient when designing specific levels in the 3D editor.
  951. - **Default:** The "Freelook Forward", "Freelook Backward", "Freelook Up" and "Freelook Down" keys will move relative to the camera, taking its pitch angle into account for the movement.
  952. - **Partially Axis-Locked:** The "Freelook Forward" and "Freelook Backward" keys will move relative to the camera, taking its pitch angle into account for the movement. The "Freelook Up" and "Freelook Down" keys will move in an "absolute" manner, *not* taking the camera's pitch angle into account for the movement.
  953. - **Fully Axis-Locked:** The "Freelook Forward", "Freelook Backward", "Freelook Up" and "Freelook Down" keys will move in an "absolute" manner, *not* taking the camera's pitch angle into account for the movement.
  954. See also :ref:`editors/3d/navigation/navigation_scheme<class_EditorSettings_property_editors/3d/navigation/navigation_scheme>`.
  955. .. rst-class:: classref-item-separator
  956. ----
  957. .. _class_EditorSettings_property_editors/3d/freelook/freelook_sensitivity:
  958. .. rst-class:: classref-property
  959. :ref:`float<class_float>` **editors/3d/freelook/freelook_sensitivity** :ref:`🔗<class_EditorSettings_property_editors/3d/freelook/freelook_sensitivity>`
  960. The mouse sensitivity to use while freelook mode is active in the 3D editor. See also :ref:`editors/3d/navigation_feel/orbit_sensitivity<class_EditorSettings_property_editors/3d/navigation_feel/orbit_sensitivity>`.
  961. .. rst-class:: classref-item-separator
  962. ----
  963. .. _class_EditorSettings_property_editors/3d/freelook/freelook_speed_zoom_link:
  964. .. rst-class:: classref-property
  965. :ref:`bool<class_bool>` **editors/3d/freelook/freelook_speed_zoom_link** :ref:`🔗<class_EditorSettings_property_editors/3d/freelook/freelook_speed_zoom_link>`
  966. If ``true``, freelook speed is linked to the zoom value used in the camera orbit mode in the 3D editor.
  967. .. rst-class:: classref-item-separator
  968. ----
  969. .. _class_EditorSettings_property_editors/3d/grid_division_level_bias:
  970. .. rst-class:: classref-property
  971. :ref:`float<class_float>` **editors/3d/grid_division_level_bias** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_division_level_bias>`
  972. The grid division bias to use in the 3D editor. Negative values will cause small grid divisions to appear earlier, whereas positive values will cause small grid divisions to appear later.
  973. .. rst-class:: classref-item-separator
  974. ----
  975. .. _class_EditorSettings_property_editors/3d/grid_division_level_max:
  976. .. rst-class:: classref-property
  977. :ref:`int<class_int>` **editors/3d/grid_division_level_max** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_division_level_max>`
  978. The largest grid division to use in the 3D editor. Together with :ref:`editors/3d/primary_grid_steps<class_EditorSettings_property_editors/3d/primary_grid_steps>`, this determines how large the grid divisions can be. The grid divisions will not be able to get larger than ``primary_grid_steps ^ grid_division_level_max`` units. By default, when :ref:`editors/3d/primary_grid_steps<class_EditorSettings_property_editors/3d/primary_grid_steps>` is ``8``, this means grid divisions cannot get larger than ``64`` units each (so primary grid lines are ``512`` units apart), no matter how far away the camera is from the grid.
  979. .. rst-class:: classref-item-separator
  980. ----
  981. .. _class_EditorSettings_property_editors/3d/grid_division_level_min:
  982. .. rst-class:: classref-property
  983. :ref:`int<class_int>` **editors/3d/grid_division_level_min** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_division_level_min>`
  984. The smallest grid division to use in the 3D editor. Together with :ref:`editors/3d/primary_grid_steps<class_EditorSettings_property_editors/3d/primary_grid_steps>`, this determines how small the grid divisions can be. The grid divisions will not be able to get smaller than ``primary_grid_steps ^ grid_division_level_min`` units. By default, this means grid divisions cannot get smaller than 1 unit each, no matter how close the camera is from the grid.
  985. .. rst-class:: classref-item-separator
  986. ----
  987. .. _class_EditorSettings_property_editors/3d/grid_size:
  988. .. rst-class:: classref-property
  989. :ref:`int<class_int>` **editors/3d/grid_size** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_size>`
  990. The grid size in units. Higher values prevent the grid from appearing "cut off" at certain angles, but make the grid more demanding to render. Depending on the camera's position, the grid may not be fully visible since a shader is used to fade it progressively.
  991. .. rst-class:: classref-item-separator
  992. ----
  993. .. _class_EditorSettings_property_editors/3d/grid_xy_plane:
  994. .. rst-class:: classref-property
  995. :ref:`bool<class_bool>` **editors/3d/grid_xy_plane** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_xy_plane>`
  996. If ``true``, render the grid on an XY plane. This can be useful for 3D side-scrolling games.
  997. .. rst-class:: classref-item-separator
  998. ----
  999. .. _class_EditorSettings_property_editors/3d/grid_xz_plane:
  1000. .. rst-class:: classref-property
  1001. :ref:`bool<class_bool>` **editors/3d/grid_xz_plane** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_xz_plane>`
  1002. If ``true``, render the grid on an XZ plane.
  1003. .. rst-class:: classref-item-separator
  1004. ----
  1005. .. _class_EditorSettings_property_editors/3d/grid_yz_plane:
  1006. .. rst-class:: classref-property
  1007. :ref:`bool<class_bool>` **editors/3d/grid_yz_plane** :ref:`🔗<class_EditorSettings_property_editors/3d/grid_yz_plane>`
  1008. If ``true``, render the grid on a YZ plane. This can be useful for 3D side-scrolling games.
  1009. .. rst-class:: classref-item-separator
  1010. ----
  1011. .. _class_EditorSettings_property_editors/3d/navigation/emulate_3_button_mouse:
  1012. .. rst-class:: classref-property
  1013. :ref:`bool<class_bool>` **editors/3d/navigation/emulate_3_button_mouse** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/emulate_3_button_mouse>`
  1014. If ``true``, enables 3-button mouse emulation mode. This is useful on laptops when using a trackpad.
  1015. When 3-button mouse emulation mode is enabled, the pan, zoom and orbit modifiers can always be used in the 3D editor viewport, even when not holding down any mouse button.
  1016. \ **Note:** No matter the orbit modifier configured in :ref:`editors/3d/navigation/orbit_modifier<class_EditorSettings_property_editors/3d/navigation/orbit_modifier>`, :kbd:`Alt` will always remain usable for orbiting in this mode to improve usability with graphics tablets.
  1017. .. rst-class:: classref-item-separator
  1018. ----
  1019. .. _class_EditorSettings_property_editors/3d/navigation/emulate_numpad:
  1020. .. rst-class:: classref-property
  1021. :ref:`bool<class_bool>` **editors/3d/navigation/emulate_numpad** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/emulate_numpad>`
  1022. If ``true``, allows using the top row :kbd:`0`-:kbd:`9` keys to function as their equivalent numpad keys for 3D editor navigation. This should be enabled on keyboards that have no numeric keypad available.
  1023. .. rst-class:: classref-item-separator
  1024. ----
  1025. .. _class_EditorSettings_property_editors/3d/navigation/invert_x_axis:
  1026. .. rst-class:: classref-property
  1027. :ref:`bool<class_bool>` **editors/3d/navigation/invert_x_axis** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/invert_x_axis>`
  1028. If ``true``, invert the horizontal mouse axis when panning or orbiting in the 3D editor. This setting does *not* apply to freelook mode.
  1029. .. rst-class:: classref-item-separator
  1030. ----
  1031. .. _class_EditorSettings_property_editors/3d/navigation/invert_y_axis:
  1032. .. rst-class:: classref-property
  1033. :ref:`bool<class_bool>` **editors/3d/navigation/invert_y_axis** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/invert_y_axis>`
  1034. If ``true``, invert the vertical mouse axis when panning, orbiting, or using freelook mode in the 3D editor.
  1035. .. rst-class:: classref-item-separator
  1036. ----
  1037. .. _class_EditorSettings_property_editors/3d/navigation/navigation_scheme:
  1038. .. rst-class:: classref-property
  1039. :ref:`int<class_int>` **editors/3d/navigation/navigation_scheme** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/navigation_scheme>`
  1040. The navigation scheme to use in the 3D editor. Changing this setting will affect the mouse buttons that must be held down to perform certain operations in the 3D editor viewport.
  1041. - **Godot** Middle mouse button to orbit, :kbd:`Shift + Middle mouse button` to pan. :kbd:`Mouse wheel` to zoom.
  1042. - **Maya:** :kbd:`Alt + Left mouse button` to orbit. :kbd:`Middle mouse button` to pan, :kbd:`Shift + Middle mouse button` to pan 10 times faster. :kbd:`Mouse wheel` to zoom.
  1043. - **Modo:** :kbd:`Alt + Left mouse button` to orbit. :kbd:`Alt + Shift + Left mouse button` to pan. :kbd:`Ctrl + Alt + Left mouse button` to zoom.
  1044. See also :ref:`editors/3d/freelook/freelook_navigation_scheme<class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme>`.
  1045. \ **Note:** On certain window managers on Linux, the :kbd:`Alt` key will be intercepted by the window manager when clicking a mouse button at the same time. This means Godot will not see the modifier key as being pressed.
  1046. .. rst-class:: classref-item-separator
  1047. ----
  1048. .. _class_EditorSettings_property_editors/3d/navigation/orbit_modifier:
  1049. .. rst-class:: classref-property
  1050. :ref:`int<class_int>` **editors/3d/navigation/orbit_modifier** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/orbit_modifier>`
  1051. The modifier key that must be held to orbit in the 3D editor.
  1052. \ **Note:** If :ref:`editors/3d/navigation/emulate_3_button_mouse<class_EditorSettings_property_editors/3d/navigation/emulate_3_button_mouse>` is ``true``, :kbd:`Alt` will always remain usable for orbiting to improve usability with graphics tablets.
  1053. \ **Note:** On certain window managers on Linux, the :kbd:`Alt` key will be intercepted by the window manager when clicking a mouse button at the same time. This means Godot will not see the modifier key as being pressed.
  1054. .. rst-class:: classref-item-separator
  1055. ----
  1056. .. _class_EditorSettings_property_editors/3d/navigation/pan_modifier:
  1057. .. rst-class:: classref-property
  1058. :ref:`int<class_int>` **editors/3d/navigation/pan_modifier** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/pan_modifier>`
  1059. The modifier key that must be held to pan in the 3D editor.
  1060. \ **Note:** On certain window managers on Linux, the :kbd:`Alt` key will be intercepted by the window manager when clicking a mouse button at the same time. This means Godot will not see the modifier key as being pressed.
  1061. .. rst-class:: classref-item-separator
  1062. ----
  1063. .. _class_EditorSettings_property_editors/3d/navigation/warped_mouse_panning:
  1064. .. rst-class:: classref-property
  1065. :ref:`bool<class_bool>` **editors/3d/navigation/warped_mouse_panning** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/warped_mouse_panning>`
  1066. If ``true``, warps the mouse around the 3D viewport while panning in the 3D editor. This makes it possible to pan over a large area without having to exit panning and adjust the mouse cursor.
  1067. .. rst-class:: classref-item-separator
  1068. ----
  1069. .. _class_EditorSettings_property_editors/3d/navigation/zoom_modifier:
  1070. .. rst-class:: classref-property
  1071. :ref:`int<class_int>` **editors/3d/navigation/zoom_modifier** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/zoom_modifier>`
  1072. The modifier key that must be held to zoom in the 3D editor.
  1073. \ **Note:** On certain window managers on Linux, the :kbd:`Alt` key will be intercepted by the window manager when clicking a mouse button at the same time. This means Godot will not see the modifier key as being pressed.
  1074. .. rst-class:: classref-item-separator
  1075. ----
  1076. .. _class_EditorSettings_property_editors/3d/navigation/zoom_style:
  1077. .. rst-class:: classref-property
  1078. :ref:`int<class_int>` **editors/3d/navigation/zoom_style** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation/zoom_style>`
  1079. The mouse cursor movement direction to use when zooming by moving the mouse. This does not affect zooming with the mouse wheel.
  1080. .. rst-class:: classref-item-separator
  1081. ----
  1082. .. _class_EditorSettings_property_editors/3d/navigation_feel/orbit_inertia:
  1083. .. rst-class:: classref-property
  1084. :ref:`float<class_float>` **editors/3d/navigation_feel/orbit_inertia** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation_feel/orbit_inertia>`
  1085. The inertia to use when orbiting in the 3D editor. Higher values make the camera start and stop slower, which looks smoother but adds latency.
  1086. .. rst-class:: classref-item-separator
  1087. ----
  1088. .. _class_EditorSettings_property_editors/3d/navigation_feel/orbit_sensitivity:
  1089. .. rst-class:: classref-property
  1090. :ref:`float<class_float>` **editors/3d/navigation_feel/orbit_sensitivity** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation_feel/orbit_sensitivity>`
  1091. The mouse sensitivity to use when orbiting in the 3D editor. See also :ref:`editors/3d/freelook/freelook_sensitivity<class_EditorSettings_property_editors/3d/freelook/freelook_sensitivity>`.
  1092. .. rst-class:: classref-item-separator
  1093. ----
  1094. .. _class_EditorSettings_property_editors/3d/navigation_feel/translation_inertia:
  1095. .. rst-class:: classref-property
  1096. :ref:`float<class_float>` **editors/3d/navigation_feel/translation_inertia** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation_feel/translation_inertia>`
  1097. The inertia to use when panning in the 3D editor. Higher values make the camera start and stop slower, which looks smoother but adds latency.
  1098. .. rst-class:: classref-item-separator
  1099. ----
  1100. .. _class_EditorSettings_property_editors/3d/navigation_feel/zoom_inertia:
  1101. .. rst-class:: classref-property
  1102. :ref:`float<class_float>` **editors/3d/navigation_feel/zoom_inertia** :ref:`🔗<class_EditorSettings_property_editors/3d/navigation_feel/zoom_inertia>`
  1103. The inertia to use when zooming in the 3D editor. Higher values make the camera start and stop slower, which looks smoother but adds latency.
  1104. .. rst-class:: classref-item-separator
  1105. ----
  1106. .. _class_EditorSettings_property_editors/3d/primary_grid_color:
  1107. .. rst-class:: classref-property
  1108. :ref:`Color<class_Color>` **editors/3d/primary_grid_color** :ref:`🔗<class_EditorSettings_property_editors/3d/primary_grid_color>`
  1109. The color to use for the primary 3D grid. The color's alpha channel affects the grid's opacity.
  1110. .. rst-class:: classref-item-separator
  1111. ----
  1112. .. _class_EditorSettings_property_editors/3d/primary_grid_steps:
  1113. .. rst-class:: classref-property
  1114. :ref:`int<class_int>` **editors/3d/primary_grid_steps** :ref:`🔗<class_EditorSettings_property_editors/3d/primary_grid_steps>`
  1115. If set above 0, where a primary grid line should be drawn. By default, primary lines are configured to be more visible than secondary lines. This helps with measurements in the 3D editor. See also :ref:`editors/3d/primary_grid_color<class_EditorSettings_property_editors/3d/primary_grid_color>` and :ref:`editors/3d/secondary_grid_color<class_EditorSettings_property_editors/3d/secondary_grid_color>`.
  1116. .. rst-class:: classref-item-separator
  1117. ----
  1118. .. _class_EditorSettings_property_editors/3d/secondary_grid_color:
  1119. .. rst-class:: classref-property
  1120. :ref:`Color<class_Color>` **editors/3d/secondary_grid_color** :ref:`🔗<class_EditorSettings_property_editors/3d/secondary_grid_color>`
  1121. The color to use for the secondary 3D grid. This is generally a less visible color than :ref:`editors/3d/primary_grid_color<class_EditorSettings_property_editors/3d/primary_grid_color>`. The color's alpha channel affects the grid's opacity.
  1122. .. rst-class:: classref-item-separator
  1123. ----
  1124. .. _class_EditorSettings_property_editors/3d/selection_box_color:
  1125. .. rst-class:: classref-property
  1126. :ref:`Color<class_Color>` **editors/3d/selection_box_color** :ref:`🔗<class_EditorSettings_property_editors/3d/selection_box_color>`
  1127. The color to use for the selection box that surrounds selected nodes in the 3D editor viewport. The color's alpha channel influences the selection box's opacity.
  1128. .. rst-class:: classref-item-separator
  1129. ----
  1130. .. _class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/aabb:
  1131. .. rst-class:: classref-property
  1132. :ref:`Color<class_Color>` **editors/3d_gizmos/gizmo_colors/aabb** :ref:`🔗<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/aabb>`
  1133. The color to use for the AABB gizmo that displays the :ref:`GeometryInstance3D<class_GeometryInstance3D>`'s custom :ref:`AABB<class_AABB>`.
  1134. .. rst-class:: classref-item-separator
  1135. ----
  1136. .. _class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/instantiated:
  1137. .. rst-class:: classref-property
  1138. :ref:`Color<class_Color>` **editors/3d_gizmos/gizmo_colors/instantiated** :ref:`🔗<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/instantiated>`
  1139. The color override to use for 3D editor gizmos if the :ref:`Node3D<class_Node3D>` in question is part of an instantiated scene file (from the perspective of the current scene).
  1140. .. rst-class:: classref-item-separator
  1141. ----
  1142. .. _class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/joint:
  1143. .. rst-class:: classref-property
  1144. :ref:`Color<class_Color>` **editors/3d_gizmos/gizmo_colors/joint** :ref:`🔗<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/joint>`
  1145. The 3D editor gizmo color for :ref:`Joint3D<class_Joint3D>`\ s and :ref:`PhysicalBone3D<class_PhysicalBone3D>`\ s.
  1146. .. rst-class:: classref-item-separator
  1147. ----
  1148. .. _class_EditorSettings_property_editors/animation/autorename_animation_tracks:
  1149. .. rst-class:: classref-property
  1150. :ref:`bool<class_bool>` **editors/animation/autorename_animation_tracks** :ref:`🔗<class_EditorSettings_property_editors/animation/autorename_animation_tracks>`
  1151. If ``true``, automatically updates animation tracks' target paths when renaming or reparenting nodes in the Scene tree dock.
  1152. .. rst-class:: classref-item-separator
  1153. ----
  1154. .. _class_EditorSettings_property_editors/animation/confirm_insert_track:
  1155. .. rst-class:: classref-property
  1156. :ref:`bool<class_bool>` **editors/animation/confirm_insert_track** :ref:`🔗<class_EditorSettings_property_editors/animation/confirm_insert_track>`
  1157. If ``true``, display a confirmation dialog when adding a new track to an animation by pressing the "key" icon next to a property. Holding Shift will bypass the dialog.
  1158. If ``false``, the behavior is reversed, i.e. the dialog only appears when Shift is held.
  1159. .. rst-class:: classref-item-separator
  1160. ----
  1161. .. _class_EditorSettings_property_editors/animation/default_create_bezier_tracks:
  1162. .. rst-class:: classref-property
  1163. :ref:`bool<class_bool>` **editors/animation/default_create_bezier_tracks** :ref:`🔗<class_EditorSettings_property_editors/animation/default_create_bezier_tracks>`
  1164. If ``true``, create a Bezier track instead of a standard track when pressing the "key" icon next to a property. Bezier tracks provide more control over animation curves, but are more difficult to adjust quickly.
  1165. .. rst-class:: classref-item-separator
  1166. ----
  1167. .. _class_EditorSettings_property_editors/animation/default_create_reset_tracks:
  1168. .. rst-class:: classref-property
  1169. :ref:`bool<class_bool>` **editors/animation/default_create_reset_tracks** :ref:`🔗<class_EditorSettings_property_editors/animation/default_create_reset_tracks>`
  1170. If ``true``, create a ``RESET`` track when creating a new animation track. This track can be used to restore the animation to a "default" state.
  1171. .. rst-class:: classref-item-separator
  1172. ----
  1173. .. _class_EditorSettings_property_editors/animation/onion_layers_future_color:
  1174. .. rst-class:: classref-property
  1175. :ref:`Color<class_Color>` **editors/animation/onion_layers_future_color** :ref:`🔗<class_EditorSettings_property_editors/animation/onion_layers_future_color>`
  1176. The modulate color to use for "future" frames displayed in the animation editor's onion skinning feature.
  1177. .. rst-class:: classref-item-separator
  1178. ----
  1179. .. _class_EditorSettings_property_editors/animation/onion_layers_past_color:
  1180. .. rst-class:: classref-property
  1181. :ref:`Color<class_Color>` **editors/animation/onion_layers_past_color** :ref:`🔗<class_EditorSettings_property_editors/animation/onion_layers_past_color>`
  1182. The modulate color to use for "past" frames displayed in the animation editor's onion skinning feature.
  1183. .. rst-class:: classref-item-separator
  1184. ----
  1185. .. _class_EditorSettings_property_editors/grid_map/pick_distance:
  1186. .. rst-class:: classref-property
  1187. :ref:`float<class_float>` **editors/grid_map/pick_distance** :ref:`🔗<class_EditorSettings_property_editors/grid_map/pick_distance>`
  1188. The maximum distance at which tiles can be placed on a GridMap, relative to the camera position (in 3D units).
  1189. .. rst-class:: classref-item-separator
  1190. ----
  1191. .. _class_EditorSettings_property_editors/panning/2d_editor_pan_speed:
  1192. .. rst-class:: classref-property
  1193. :ref:`int<class_int>` **editors/panning/2d_editor_pan_speed** :ref:`🔗<class_EditorSettings_property_editors/panning/2d_editor_pan_speed>`
  1194. The panning speed when using the mouse wheel or touchscreen events in the 2D editor. This setting does not apply to panning by holding down the middle or right mouse buttons.
  1195. .. rst-class:: classref-item-separator
  1196. ----
  1197. .. _class_EditorSettings_property_editors/panning/2d_editor_panning_scheme:
  1198. .. rst-class:: classref-property
  1199. :ref:`int<class_int>` **editors/panning/2d_editor_panning_scheme** :ref:`🔗<class_EditorSettings_property_editors/panning/2d_editor_panning_scheme>`
  1200. Controls whether the mouse wheel scroll zooms or pans in the 2D editor. See also :ref:`editors/panning/sub_editors_panning_scheme<class_EditorSettings_property_editors/panning/sub_editors_panning_scheme>` and :ref:`editors/panning/animation_editors_panning_scheme<class_EditorSettings_property_editors/panning/animation_editors_panning_scheme>`.
  1201. .. rst-class:: classref-item-separator
  1202. ----
  1203. .. _class_EditorSettings_property_editors/panning/animation_editors_panning_scheme:
  1204. .. rst-class:: classref-property
  1205. :ref:`int<class_int>` **editors/panning/animation_editors_panning_scheme** :ref:`🔗<class_EditorSettings_property_editors/panning/animation_editors_panning_scheme>`
  1206. Controls whether the mouse wheel scroll zooms or pans in the animation track and Bezier editors. See also :ref:`editors/panning/2d_editor_panning_scheme<class_EditorSettings_property_editors/panning/2d_editor_panning_scheme>` and :ref:`editors/panning/sub_editors_panning_scheme<class_EditorSettings_property_editors/panning/sub_editors_panning_scheme>` (which controls the animation blend tree editor's pan behavior).
  1207. .. rst-class:: classref-item-separator
  1208. ----
  1209. .. _class_EditorSettings_property_editors/panning/simple_panning:
  1210. .. rst-class:: classref-property
  1211. :ref:`bool<class_bool>` **editors/panning/simple_panning** :ref:`🔗<class_EditorSettings_property_editors/panning/simple_panning>`
  1212. If ``true``, allows panning by holding down :kbd:`Space` in the 2D editor viewport (in addition to panning with the middle or right mouse buttons). If ``false``, the left mouse button must be held down while holding down :kbd:`Space` to pan in the 2D editor viewport.
  1213. .. rst-class:: classref-item-separator
  1214. ----
  1215. .. _class_EditorSettings_property_editors/panning/sub_editors_panning_scheme:
  1216. .. rst-class:: classref-property
  1217. :ref:`int<class_int>` **editors/panning/sub_editors_panning_scheme** :ref:`🔗<class_EditorSettings_property_editors/panning/sub_editors_panning_scheme>`
  1218. Controls whether the mouse wheel scroll zooms or pans in subeditors. The list of affected subeditors is: animation blend tree editor, :ref:`Polygon2D<class_Polygon2D>` editor, tileset editor, texture region editor and visual shader editor. See also :ref:`editors/panning/2d_editor_panning_scheme<class_EditorSettings_property_editors/panning/2d_editor_panning_scheme>` and :ref:`editors/panning/animation_editors_panning_scheme<class_EditorSettings_property_editors/panning/animation_editors_panning_scheme>`.
  1219. .. rst-class:: classref-item-separator
  1220. ----
  1221. .. _class_EditorSettings_property_editors/panning/warped_mouse_panning:
  1222. .. rst-class:: classref-property
  1223. :ref:`bool<class_bool>` **editors/panning/warped_mouse_panning** :ref:`🔗<class_EditorSettings_property_editors/panning/warped_mouse_panning>`
  1224. If ``true``, warps the mouse around the 2D viewport while panning in the 2D editor. This makes it possible to pan over a large area without having to exit panning and adjust the mouse cursor.
  1225. .. rst-class:: classref-item-separator
  1226. ----
  1227. .. _class_EditorSettings_property_editors/polygon_editor/auto_bake_delay:
  1228. .. rst-class:: classref-property
  1229. :ref:`float<class_float>` **editors/polygon_editor/auto_bake_delay** :ref:`🔗<class_EditorSettings_property_editors/polygon_editor/auto_bake_delay>`
  1230. The delay in seconds until more complex and performance costly polygon editors commit their outlines, e.g. the 2D navigation polygon editor rebakes the navigation mesh polygons. A negative value stops the auto bake.
  1231. .. rst-class:: classref-item-separator
  1232. ----
  1233. .. _class_EditorSettings_property_editors/polygon_editor/point_grab_radius:
  1234. .. rst-class:: classref-property
  1235. :ref:`int<class_int>` **editors/polygon_editor/point_grab_radius** :ref:`🔗<class_EditorSettings_property_editors/polygon_editor/point_grab_radius>`
  1236. The radius in which points can be selected in the :ref:`Polygon2D<class_Polygon2D>` and :ref:`CollisionPolygon2D<class_CollisionPolygon2D>` editors (in pixels). Higher values make it easier to select points quickly, but can make it more difficult to select the expected point when several points are located close to each other.
  1237. .. rst-class:: classref-item-separator
  1238. ----
  1239. .. _class_EditorSettings_property_editors/polygon_editor/show_previous_outline:
  1240. .. rst-class:: classref-property
  1241. :ref:`bool<class_bool>` **editors/polygon_editor/show_previous_outline** :ref:`🔗<class_EditorSettings_property_editors/polygon_editor/show_previous_outline>`
  1242. If ``true``, displays the polygon's previous shape in the 2D polygon editors with an opaque gray outline. This outline is displayed while dragging a point until the left mouse button is released.
  1243. .. rst-class:: classref-item-separator
  1244. ----
  1245. .. _class_EditorSettings_property_editors/shader_editor/behavior/files/restore_shaders_on_load:
  1246. .. rst-class:: classref-property
  1247. :ref:`bool<class_bool>` **editors/shader_editor/behavior/files/restore_shaders_on_load** :ref:`🔗<class_EditorSettings_property_editors/shader_editor/behavior/files/restore_shaders_on_load>`
  1248. If ``true``, reopens shader files that were open in the shader editor when the project was last closed.
  1249. .. rst-class:: classref-item-separator
  1250. ----
  1251. .. _class_EditorSettings_property_editors/tiles_editor/display_grid:
  1252. .. rst-class:: classref-property
  1253. :ref:`bool<class_bool>` **editors/tiles_editor/display_grid** :ref:`🔗<class_EditorSettings_property_editors/tiles_editor/display_grid>`
  1254. If ``true``, displays a grid while the TileMap editor is active. See also :ref:`editors/tiles_editor/grid_color<class_EditorSettings_property_editors/tiles_editor/grid_color>`.
  1255. .. rst-class:: classref-item-separator
  1256. ----
  1257. .. _class_EditorSettings_property_editors/tiles_editor/grid_color:
  1258. .. rst-class:: classref-property
  1259. :ref:`Color<class_Color>` **editors/tiles_editor/grid_color** :ref:`🔗<class_EditorSettings_property_editors/tiles_editor/grid_color>`
  1260. The color to use for the TileMap editor's grid.
  1261. \ **Note:** Only effective if :ref:`editors/tiles_editor/display_grid<class_EditorSettings_property_editors/tiles_editor/display_grid>` is ``true``.
  1262. .. rst-class:: classref-item-separator
  1263. ----
  1264. .. _class_EditorSettings_property_editors/tiles_editor/highlight_selected_layer:
  1265. .. rst-class:: classref-property
  1266. :ref:`bool<class_bool>` **editors/tiles_editor/highlight_selected_layer** :ref:`🔗<class_EditorSettings_property_editors/tiles_editor/highlight_selected_layer>`
  1267. Highlight the currently selected TileMapLayer by dimming the other ones in the scene.
  1268. .. rst-class:: classref-item-separator
  1269. ----
  1270. .. _class_EditorSettings_property_editors/visual_editors/category_colors/color_color:
  1271. .. rst-class:: classref-property
  1272. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/color_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/color_color>`
  1273. The color of a graph node's header when it belongs to the "Color" category.
  1274. .. rst-class:: classref-item-separator
  1275. ----
  1276. .. _class_EditorSettings_property_editors/visual_editors/category_colors/conditional_color:
  1277. .. rst-class:: classref-property
  1278. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/conditional_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/conditional_color>`
  1279. The color of a graph node's header when it belongs to the "Conditional" category.
  1280. .. rst-class:: classref-item-separator
  1281. ----
  1282. .. _class_EditorSettings_property_editors/visual_editors/category_colors/input_color:
  1283. .. rst-class:: classref-property
  1284. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/input_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/input_color>`
  1285. The color of a graph node's header when it belongs to the "Input" category.
  1286. .. rst-class:: classref-item-separator
  1287. ----
  1288. .. _class_EditorSettings_property_editors/visual_editors/category_colors/output_color:
  1289. .. rst-class:: classref-property
  1290. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/output_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/output_color>`
  1291. The color of a graph node's header when it belongs to the "Output" category.
  1292. .. rst-class:: classref-item-separator
  1293. ----
  1294. .. _class_EditorSettings_property_editors/visual_editors/category_colors/particle_color:
  1295. .. rst-class:: classref-property
  1296. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/particle_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/particle_color>`
  1297. The color of a graph node's header when it belongs to the "Particle" category.
  1298. .. rst-class:: classref-item-separator
  1299. ----
  1300. .. _class_EditorSettings_property_editors/visual_editors/category_colors/scalar_color:
  1301. .. rst-class:: classref-property
  1302. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/scalar_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/scalar_color>`
  1303. The color of a graph node's header when it belongs to the "Scalar" category.
  1304. .. rst-class:: classref-item-separator
  1305. ----
  1306. .. _class_EditorSettings_property_editors/visual_editors/category_colors/special_color:
  1307. .. rst-class:: classref-property
  1308. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/special_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/special_color>`
  1309. The color of a graph node's header when it belongs to the "Special" category.
  1310. .. rst-class:: classref-item-separator
  1311. ----
  1312. .. _class_EditorSettings_property_editors/visual_editors/category_colors/textures_color:
  1313. .. rst-class:: classref-property
  1314. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/textures_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/textures_color>`
  1315. The color of a graph node's header when it belongs to the "Textures" category.
  1316. .. rst-class:: classref-item-separator
  1317. ----
  1318. .. _class_EditorSettings_property_editors/visual_editors/category_colors/transform_color:
  1319. .. rst-class:: classref-property
  1320. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/transform_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/transform_color>`
  1321. The color of a graph node's header when it belongs to the "Transform" category.
  1322. .. rst-class:: classref-item-separator
  1323. ----
  1324. .. _class_EditorSettings_property_editors/visual_editors/category_colors/utility_color:
  1325. .. rst-class:: classref-property
  1326. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/utility_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/utility_color>`
  1327. The color of a graph node's header when it belongs to the "Utility" category.
  1328. .. rst-class:: classref-item-separator
  1329. ----
  1330. .. _class_EditorSettings_property_editors/visual_editors/category_colors/vector_color:
  1331. .. rst-class:: classref-property
  1332. :ref:`Color<class_Color>` **editors/visual_editors/category_colors/vector_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/category_colors/vector_color>`
  1333. The color of a graph node's header when it belongs to the "Vector" category.
  1334. .. rst-class:: classref-item-separator
  1335. ----
  1336. .. _class_EditorSettings_property_editors/visual_editors/color_theme:
  1337. .. rst-class:: classref-property
  1338. :ref:`String<class_String>` **editors/visual_editors/color_theme** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/color_theme>`
  1339. The color theme to use in the visual shader editor.
  1340. .. rst-class:: classref-item-separator
  1341. ----
  1342. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/boolean_color:
  1343. .. rst-class:: classref-property
  1344. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/boolean_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/boolean_color>`
  1345. The color of a port/connection of boolean type.
  1346. .. rst-class:: classref-item-separator
  1347. ----
  1348. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/sampler_color:
  1349. .. rst-class:: classref-property
  1350. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/sampler_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/sampler_color>`
  1351. The color of a port/connection of sampler type.
  1352. .. rst-class:: classref-item-separator
  1353. ----
  1354. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/scalar_color:
  1355. .. rst-class:: classref-property
  1356. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/scalar_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/scalar_color>`
  1357. The color of a port/connection of scalar type (float, int, unsigned int).
  1358. .. rst-class:: classref-item-separator
  1359. ----
  1360. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/transform_color:
  1361. .. rst-class:: classref-property
  1362. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/transform_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/transform_color>`
  1363. The color of a port/connection of transform type.
  1364. .. rst-class:: classref-item-separator
  1365. ----
  1366. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/vector2_color:
  1367. .. rst-class:: classref-property
  1368. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/vector2_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/vector2_color>`
  1369. The color of a port/connection of Vector2 type.
  1370. .. rst-class:: classref-item-separator
  1371. ----
  1372. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/vector3_color:
  1373. .. rst-class:: classref-property
  1374. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/vector3_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/vector3_color>`
  1375. The color of a port/connection of Vector3 type.
  1376. .. rst-class:: classref-item-separator
  1377. ----
  1378. .. _class_EditorSettings_property_editors/visual_editors/connection_colors/vector4_color:
  1379. .. rst-class:: classref-property
  1380. :ref:`Color<class_Color>` **editors/visual_editors/connection_colors/vector4_color** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/connection_colors/vector4_color>`
  1381. The color of a port/connection of Vector4 type.
  1382. .. rst-class:: classref-item-separator
  1383. ----
  1384. .. _class_EditorSettings_property_editors/visual_editors/grid_pattern:
  1385. .. rst-class:: classref-property
  1386. :ref:`int<class_int>` **editors/visual_editors/grid_pattern** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/grid_pattern>`
  1387. The pattern used for the background grid.
  1388. .. rst-class:: classref-item-separator
  1389. ----
  1390. .. _class_EditorSettings_property_editors/visual_editors/lines_curvature:
  1391. .. rst-class:: classref-property
  1392. :ref:`float<class_float>` **editors/visual_editors/lines_curvature** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/lines_curvature>`
  1393. The curvature to use for connection lines in the visual shader editor. Higher values will make connection lines appear more curved, with values above ``0.5`` resulting in more "angular" turns in the middle of connection lines.
  1394. .. rst-class:: classref-item-separator
  1395. ----
  1396. .. _class_EditorSettings_property_editors/visual_editors/minimap_opacity:
  1397. .. rst-class:: classref-property
  1398. :ref:`float<class_float>` **editors/visual_editors/minimap_opacity** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/minimap_opacity>`
  1399. The opacity of the minimap displayed in the bottom-right corner of the visual shader editor.
  1400. .. rst-class:: classref-item-separator
  1401. ----
  1402. .. _class_EditorSettings_property_editors/visual_editors/visual_shader/port_preview_size:
  1403. .. rst-class:: classref-property
  1404. :ref:`int<class_int>` **editors/visual_editors/visual_shader/port_preview_size** :ref:`🔗<class_EditorSettings_property_editors/visual_editors/visual_shader/port_preview_size>`
  1405. The size to use for port previews in the visual shader uniforms (toggled by clicking the "eye" icon next to an output). The value is defined in pixels at 100% zoom, and will scale with zoom automatically.
  1406. .. rst-class:: classref-item-separator
  1407. ----
  1408. .. _class_EditorSettings_property_filesystem/directories/autoscan_project_path:
  1409. .. rst-class:: classref-property
  1410. :ref:`String<class_String>` **filesystem/directories/autoscan_project_path** :ref:`🔗<class_EditorSettings_property_filesystem/directories/autoscan_project_path>`
  1411. The folder where projects should be scanned for (recursively), in a way similar to the project manager's **Scan** button. This can be set to the same value as :ref:`filesystem/directories/default_project_path<class_EditorSettings_property_filesystem/directories/default_project_path>` for convenience.
  1412. \ **Note:** Setting this path to a folder with very large amounts of files/folders can slow down the project manager startup significantly. To keep the project manager quick to start up, it is recommended to set this value to a folder as "specific" as possible.
  1413. .. rst-class:: classref-item-separator
  1414. ----
  1415. .. _class_EditorSettings_property_filesystem/directories/default_project_path:
  1416. .. rst-class:: classref-property
  1417. :ref:`String<class_String>` **filesystem/directories/default_project_path** :ref:`🔗<class_EditorSettings_property_filesystem/directories/default_project_path>`
  1418. The folder where new projects should be created by default when clicking the project manager's **New Project** button. This can be set to the same value as :ref:`filesystem/directories/autoscan_project_path<class_EditorSettings_property_filesystem/directories/autoscan_project_path>` for convenience.
  1419. .. rst-class:: classref-item-separator
  1420. ----
  1421. .. _class_EditorSettings_property_filesystem/external_programs/3d_model_editor:
  1422. .. rst-class:: classref-property
  1423. :ref:`String<class_String>` **filesystem/external_programs/3d_model_editor** :ref:`🔗<class_EditorSettings_property_filesystem/external_programs/3d_model_editor>`
  1424. The program that opens 3D model scene files when clicking "Open in External Program" option in Filesystem Dock. If not specified, the file will be opened in the system's default program.
  1425. .. rst-class:: classref-item-separator
  1426. ----
  1427. .. _class_EditorSettings_property_filesystem/external_programs/audio_editor:
  1428. .. rst-class:: classref-property
  1429. :ref:`String<class_String>` **filesystem/external_programs/audio_editor** :ref:`🔗<class_EditorSettings_property_filesystem/external_programs/audio_editor>`
  1430. The program that opens audio files when clicking "Open in External Program" option in Filesystem Dock. If not specified, the file will be opened in the system's default program.
  1431. .. rst-class:: classref-item-separator
  1432. ----
  1433. .. _class_EditorSettings_property_filesystem/external_programs/raster_image_editor:
  1434. .. rst-class:: classref-property
  1435. :ref:`String<class_String>` **filesystem/external_programs/raster_image_editor** :ref:`🔗<class_EditorSettings_property_filesystem/external_programs/raster_image_editor>`
  1436. The program that opens raster image files when clicking "Open in External Program" option in Filesystem Dock. If not specified, the file will be opened in the system's default program.
  1437. .. rst-class:: classref-item-separator
  1438. ----
  1439. .. _class_EditorSettings_property_filesystem/external_programs/terminal_emulator:
  1440. .. rst-class:: classref-property
  1441. :ref:`String<class_String>` **filesystem/external_programs/terminal_emulator** :ref:`🔗<class_EditorSettings_property_filesystem/external_programs/terminal_emulator>`
  1442. The terminal emulator program to use when using **Open in Terminal** context menu action in the FileSystem dock. You can enter an absolute path to a program binary, or a path to a program that is present in the ``PATH`` environment variable.
  1443. If left empty, Godot will use the default terminal emulator for the system:
  1444. - **Windows:** PowerShell
  1445. - **macOS:** Terminal.app
  1446. - **Linux:** The first terminal found on the system in this order: gnome-terminal, konsole, xfce4-terminal, lxterminal, kitty, alacritty, urxvt, xterm.
  1447. To use Command Prompt (cmd) instead of PowerShell on Windows, enter ``cmd`` in this field and the correct flags will automatically be used.
  1448. On macOS, make sure to point to the actual program binary located within the ``Programs/MacOS`` folder of the .app bundle, rather than the .app bundle directory.
  1449. If specifying a custom terminal emulator, you may need to override :ref:`filesystem/external_programs/terminal_emulator_flags<class_EditorSettings_property_filesystem/external_programs/terminal_emulator_flags>` so it opens in the correct folder.
  1450. .. rst-class:: classref-item-separator
  1451. ----
  1452. .. _class_EditorSettings_property_filesystem/external_programs/terminal_emulator_flags:
  1453. .. rst-class:: classref-property
  1454. :ref:`String<class_String>` **filesystem/external_programs/terminal_emulator_flags** :ref:`🔗<class_EditorSettings_property_filesystem/external_programs/terminal_emulator_flags>`
  1455. The command-line arguments to pass to the terminal emulator that is run when using **Open in Terminal** context menu action in the FileSystem dock. See also :ref:`filesystem/external_programs/terminal_emulator<class_EditorSettings_property_filesystem/external_programs/terminal_emulator>`.
  1456. If left empty, the default flags are ``{directory}``, which is replaced by the absolute path to the directory that is being opened in the terminal.
  1457. \ **Note:** If the terminal emulator is set to PowerShell, cmd, or Konsole, Godot will automatically prepend arguments to this list, as these terminals require nonstandard arguments to open in the correct folder.
  1458. .. rst-class:: classref-item-separator
  1459. ----
  1460. .. _class_EditorSettings_property_filesystem/external_programs/vector_image_editor:
  1461. .. rst-class:: classref-property
  1462. :ref:`String<class_String>` **filesystem/external_programs/vector_image_editor** :ref:`🔗<class_EditorSettings_property_filesystem/external_programs/vector_image_editor>`
  1463. The program that opens vector image files when clicking "Open in External Program" option in Filesystem Dock. If not specified, the file will be opened in the system's default program.
  1464. .. rst-class:: classref-item-separator
  1465. ----
  1466. .. _class_EditorSettings_property_filesystem/file_dialog/display_mode:
  1467. .. rst-class:: classref-property
  1468. :ref:`int<class_int>` **filesystem/file_dialog/display_mode** :ref:`🔗<class_EditorSettings_property_filesystem/file_dialog/display_mode>`
  1469. The display mode to use in the editor's file dialogs.
  1470. - **Thumbnails** takes more space, but displays dynamic resource thumbnails, making resources easier to preview without having to open them.
  1471. - **List** is more compact but doesn't display dynamic resource thumbnails. Instead, it displays static icons based on the file extension.
  1472. .. rst-class:: classref-item-separator
  1473. ----
  1474. .. _class_EditorSettings_property_filesystem/file_dialog/show_hidden_files:
  1475. .. rst-class:: classref-property
  1476. :ref:`bool<class_bool>` **filesystem/file_dialog/show_hidden_files** :ref:`🔗<class_EditorSettings_property_filesystem/file_dialog/show_hidden_files>`
  1477. If ``true``, display hidden files in the editor's file dialogs. Files that have names starting with ``.`` are considered hidden (e.g. ``.hidden_file``).
  1478. .. rst-class:: classref-item-separator
  1479. ----
  1480. .. _class_EditorSettings_property_filesystem/file_dialog/thumbnail_size:
  1481. .. rst-class:: classref-property
  1482. :ref:`int<class_int>` **filesystem/file_dialog/thumbnail_size** :ref:`🔗<class_EditorSettings_property_filesystem/file_dialog/thumbnail_size>`
  1483. The thumbnail size to use in the editor's file dialogs (in pixels). See also :ref:`docks/filesystem/thumbnail_size<class_EditorSettings_property_docks/filesystem/thumbnail_size>`.
  1484. .. rst-class:: classref-item-separator
  1485. ----
  1486. .. _class_EditorSettings_property_filesystem/import/blender/blender_path:
  1487. .. rst-class:: classref-property
  1488. :ref:`String<class_String>` **filesystem/import/blender/blender_path** :ref:`🔗<class_EditorSettings_property_filesystem/import/blender/blender_path>`
  1489. The path to the directory containing the Blender executable used for converting the Blender 3D scene files ``.blend`` to glTF 2.0 format during import. Blender 3.0 or later is required.
  1490. To enable this feature for your specific project, use :ref:`ProjectSettings.filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>`.
  1491. .. rst-class:: classref-item-separator
  1492. ----
  1493. .. _class_EditorSettings_property_filesystem/import/blender/rpc_port:
  1494. .. rst-class:: classref-property
  1495. :ref:`int<class_int>` **filesystem/import/blender/rpc_port** :ref:`🔗<class_EditorSettings_property_filesystem/import/blender/rpc_port>`
  1496. The port number used for Remote Procedure Call (RPC) communication with Godot's created process of the blender executable.
  1497. Setting this to 0 effectively disables communication with Godot and the blender process, making performance slower.
  1498. .. rst-class:: classref-item-separator
  1499. ----
  1500. .. _class_EditorSettings_property_filesystem/import/blender/rpc_server_uptime:
  1501. .. rst-class:: classref-property
  1502. :ref:`float<class_float>` **filesystem/import/blender/rpc_server_uptime** :ref:`🔗<class_EditorSettings_property_filesystem/import/blender/rpc_server_uptime>`
  1503. The maximum idle uptime (in seconds) of the Blender process.
  1504. This prevents Godot from having to create a new process for each import within the given seconds.
  1505. .. rst-class:: classref-item-separator
  1506. ----
  1507. .. _class_EditorSettings_property_filesystem/import/fbx/fbx2gltf_path:
  1508. .. rst-class:: classref-property
  1509. :ref:`String<class_String>` **filesystem/import/fbx/fbx2gltf_path** :ref:`🔗<class_EditorSettings_property_filesystem/import/fbx/fbx2gltf_path>`
  1510. The path to the FBX2glTF executable used for converting Autodesk FBX 3D scene files ``.fbx`` to glTF 2.0 format during import.
  1511. To enable this feature for your specific project, use :ref:`ProjectSettings.filesystem/import/fbx2gltf/enabled<class_ProjectSettings_property_filesystem/import/fbx2gltf/enabled>`.
  1512. .. rst-class:: classref-item-separator
  1513. ----
  1514. .. _class_EditorSettings_property_filesystem/on_save/compress_binary_resources:
  1515. .. rst-class:: classref-property
  1516. :ref:`bool<class_bool>` **filesystem/on_save/compress_binary_resources** :ref:`🔗<class_EditorSettings_property_filesystem/on_save/compress_binary_resources>`
  1517. If ``true``, uses lossless compression for binary resources.
  1518. .. rst-class:: classref-item-separator
  1519. ----
  1520. .. _class_EditorSettings_property_filesystem/on_save/safe_save_on_backup_then_rename:
  1521. .. rst-class:: classref-property
  1522. :ref:`bool<class_bool>` **filesystem/on_save/safe_save_on_backup_then_rename** :ref:`🔗<class_EditorSettings_property_filesystem/on_save/safe_save_on_backup_then_rename>`
  1523. If ``true``, when saving a file, the editor will rename the old file to a different name, save a new file, then only remove the old file once the new file has been saved. This makes loss of data less likely to happen if the editor or operating system exits unexpectedly while saving (e.g. due to a crash or power outage).
  1524. \ **Note:** On Windows, this feature can interact negatively with certain antivirus programs. In this case, you may have to set this to ``false`` to prevent file locking issues.
  1525. .. rst-class:: classref-item-separator
  1526. ----
  1527. .. _class_EditorSettings_property_filesystem/tools/oidn/oidn_denoise_path:
  1528. .. rst-class:: classref-property
  1529. :ref:`String<class_String>` **filesystem/tools/oidn/oidn_denoise_path** :ref:`🔗<class_EditorSettings_property_filesystem/tools/oidn/oidn_denoise_path>`
  1530. The path to the directory containing the Open Image Denoise (OIDN) executable, used optionally for denoising lightmaps. It can be downloaded from `openimagedenoise.org <https://www.openimagedenoise.org/downloads.html>`__.
  1531. To enable this feature for your specific project, use :ref:`ProjectSettings.rendering/lightmapping/denoising/denoiser<class_ProjectSettings_property_rendering/lightmapping/denoising/denoiser>`.
  1532. .. rst-class:: classref-item-separator
  1533. ----
  1534. .. _class_EditorSettings_property_input/buffering/agile_event_flushing:
  1535. .. rst-class:: classref-property
  1536. :ref:`bool<class_bool>` **input/buffering/agile_event_flushing** :ref:`🔗<class_EditorSettings_property_input/buffering/agile_event_flushing>`
  1537. If ``true``, input events will be flushed just before every idle and physics frame.
  1538. If ``false``, these events will be flushed only once per process frame, between iterations of the engine.
  1539. Enabling this setting can greatly improve input responsiveness, especially in devices that struggle to run at the project's intended frame rate.
  1540. .. rst-class:: classref-item-separator
  1541. ----
  1542. .. _class_EditorSettings_property_input/buffering/use_accumulated_input:
  1543. .. rst-class:: classref-property
  1544. :ref:`bool<class_bool>` **input/buffering/use_accumulated_input** :ref:`🔗<class_EditorSettings_property_input/buffering/use_accumulated_input>`
  1545. If ``true``, similar input events sent by the operating system are accumulated. When input accumulation is enabled, all input events generated during a frame will be merged and emitted when the frame is done rendering. Therefore, this limits the number of input method calls per second to the rendering FPS.
  1546. Input accumulation can be disabled to get slightly more precise/reactive input at the cost of increased CPU usage.
  1547. \ **Note:** Input accumulation is *enabled* by default.
  1548. .. rst-class:: classref-item-separator
  1549. ----
  1550. .. _class_EditorSettings_property_interface/editor/accept_dialog_cancel_ok_buttons:
  1551. .. rst-class:: classref-property
  1552. :ref:`int<class_int>` **interface/editor/accept_dialog_cancel_ok_buttons** :ref:`🔗<class_EditorSettings_property_interface/editor/accept_dialog_cancel_ok_buttons>`
  1553. How to position the Cancel and OK buttons in the editor's :ref:`AcceptDialog<class_AcceptDialog>`\ s. Different platforms have different standard behaviors for this, which can be overridden using this setting. This is useful if you use Godot both on Windows and macOS/Linux and your Godot muscle memory is stronger than your OS specific one.
  1554. - **Auto** follows the platform convention: Cancel first on macOS and Linux, OK first on Windows.
  1555. - **Cancel First** forces the ordering Cancel/OK.
  1556. - **OK First** forces the ordering OK/Cancel.
  1557. .. rst-class:: classref-item-separator
  1558. ----
  1559. .. _class_EditorSettings_property_interface/editor/automatically_open_screenshots:
  1560. .. rst-class:: classref-property
  1561. :ref:`bool<class_bool>` **interface/editor/automatically_open_screenshots** :ref:`🔗<class_EditorSettings_property_interface/editor/automatically_open_screenshots>`
  1562. If ``true``, automatically opens screenshots with the default program associated to ``.png`` files after a screenshot is taken using the **Editor > Take Screenshot** action.
  1563. .. rst-class:: classref-item-separator
  1564. ----
  1565. .. _class_EditorSettings_property_interface/editor/code_font:
  1566. .. rst-class:: classref-property
  1567. :ref:`String<class_String>` **interface/editor/code_font** :ref:`🔗<class_EditorSettings_property_interface/editor/code_font>`
  1568. The font to use for the script editor. Must be a resource of a :ref:`Font<class_Font>` type such as a ``.ttf`` or ``.otf`` font file.
  1569. .. rst-class:: classref-item-separator
  1570. ----
  1571. .. _class_EditorSettings_property_interface/editor/code_font_contextual_ligatures:
  1572. .. rst-class:: classref-property
  1573. :ref:`int<class_int>` **interface/editor/code_font_contextual_ligatures** :ref:`🔗<class_EditorSettings_property_interface/editor/code_font_contextual_ligatures>`
  1574. The font ligatures to enable for the currently configured code font. Not all fonts include support for ligatures.
  1575. \ **Note:** The default editor code font (`JetBrains Mono <https://www.jetbrains.com/lp/mono/>`__) has contextual ligatures in its font file.
  1576. .. rst-class:: classref-item-separator
  1577. ----
  1578. .. _class_EditorSettings_property_interface/editor/code_font_custom_opentype_features:
  1579. .. rst-class:: classref-property
  1580. :ref:`String<class_String>` **interface/editor/code_font_custom_opentype_features** :ref:`🔗<class_EditorSettings_property_interface/editor/code_font_custom_opentype_features>`
  1581. List of custom OpenType features to use, if supported by the currently configured code font. Not all fonts include support for custom OpenType features. The string should follow the OpenType specification.
  1582. \ **Note:** The default editor code font (`JetBrains Mono <https://www.jetbrains.com/lp/mono/>`__) has custom OpenType features in its font file, but there is no documented list yet.
  1583. .. rst-class:: classref-item-separator
  1584. ----
  1585. .. _class_EditorSettings_property_interface/editor/code_font_custom_variations:
  1586. .. rst-class:: classref-property
  1587. :ref:`String<class_String>` **interface/editor/code_font_custom_variations** :ref:`🔗<class_EditorSettings_property_interface/editor/code_font_custom_variations>`
  1588. List of alternative characters to use, if supported by the currently configured code font. Not all fonts include support for custom variations. The string should follow the OpenType specification.
  1589. \ **Note:** The default editor code font (`JetBrains Mono <https://www.jetbrains.com/lp/mono/>`__) has alternate characters in its font file, but there is no documented list yet.
  1590. .. rst-class:: classref-item-separator
  1591. ----
  1592. .. _class_EditorSettings_property_interface/editor/code_font_size:
  1593. .. rst-class:: classref-property
  1594. :ref:`int<class_int>` **interface/editor/code_font_size** :ref:`🔗<class_EditorSettings_property_interface/editor/code_font_size>`
  1595. The size of the font in the script editor. This setting does not impact the font size of the Output panel (see :ref:`run/output/font_size<class_EditorSettings_property_run/output/font_size>`).
  1596. .. rst-class:: classref-item-separator
  1597. ----
  1598. .. _class_EditorSettings_property_interface/editor/custom_display_scale:
  1599. .. rst-class:: classref-property
  1600. :ref:`float<class_float>` **interface/editor/custom_display_scale** :ref:`🔗<class_EditorSettings_property_interface/editor/custom_display_scale>`
  1601. The custom editor scale factor to use. This can be used for displays with very high DPI where a scale factor of 200% is not sufficient.
  1602. \ **Note:** Only effective if :ref:`interface/editor/display_scale<class_EditorSettings_property_interface/editor/display_scale>` is set to **Custom**.
  1603. .. rst-class:: classref-item-separator
  1604. ----
  1605. .. _class_EditorSettings_property_interface/editor/display_scale:
  1606. .. rst-class:: classref-property
  1607. :ref:`int<class_int>` **interface/editor/display_scale** :ref:`🔗<class_EditorSettings_property_interface/editor/display_scale>`
  1608. The display scale factor to use for the editor interface. Higher values are more suited to hiDPI/Retina displays.
  1609. If set to **Auto**, the editor scale is automatically determined based on the screen resolution and reported display DPI. This heuristic is not always ideal, which means you can get better results by setting the editor scale manually.
  1610. If set to **Custom**, the scaling value in :ref:`interface/editor/custom_display_scale<class_EditorSettings_property_interface/editor/custom_display_scale>` will be used.
  1611. .. rst-class:: classref-item-separator
  1612. ----
  1613. .. _class_EditorSettings_property_interface/editor/dock_tab_style:
  1614. .. rst-class:: classref-property
  1615. :ref:`int<class_int>` **interface/editor/dock_tab_style** :ref:`🔗<class_EditorSettings_property_interface/editor/dock_tab_style>`
  1616. Tab style of editor docks.
  1617. .. rst-class:: classref-item-separator
  1618. ----
  1619. .. _class_EditorSettings_property_interface/editor/editor_language:
  1620. .. rst-class:: classref-property
  1621. :ref:`String<class_String>` **interface/editor/editor_language** :ref:`🔗<class_EditorSettings_property_interface/editor/editor_language>`
  1622. The language to use for the editor interface.
  1623. Translations are provided by the community. If you spot a mistake, :doc:`contribute to editor translations on Weblate! <../contributing/documentation/editor_and_docs_localization>`
  1624. .. rst-class:: classref-item-separator
  1625. ----
  1626. .. _class_EditorSettings_property_interface/editor/editor_screen:
  1627. .. rst-class:: classref-property
  1628. :ref:`int<class_int>` **interface/editor/editor_screen** :ref:`🔗<class_EditorSettings_property_interface/editor/editor_screen>`
  1629. The preferred monitor to display the editor.
  1630. .. rst-class:: classref-item-separator
  1631. ----
  1632. .. _class_EditorSettings_property_interface/editor/expand_to_title:
  1633. .. rst-class:: classref-property
  1634. :ref:`bool<class_bool>` **interface/editor/expand_to_title** :ref:`🔗<class_EditorSettings_property_interface/editor/expand_to_title>`
  1635. Expanding main editor window content to the title, if supported by :ref:`DisplayServer<class_DisplayServer>`. See :ref:`DisplayServer.WINDOW_FLAG_EXTEND_TO_TITLE<class_DisplayServer_constant_WINDOW_FLAG_EXTEND_TO_TITLE>`.
  1636. Specific to the macOS platform.
  1637. .. rst-class:: classref-item-separator
  1638. ----
  1639. .. _class_EditorSettings_property_interface/editor/font_antialiasing:
  1640. .. rst-class:: classref-property
  1641. :ref:`int<class_int>` **interface/editor/font_antialiasing** :ref:`🔗<class_EditorSettings_property_interface/editor/font_antialiasing>`
  1642. FreeType's font anti-aliasing mode used to render the editor fonts. Most fonts are not designed to look good with anti-aliasing disabled, so it's recommended to leave this enabled unless you're using a pixel art font.
  1643. .. rst-class:: classref-item-separator
  1644. ----
  1645. .. _class_EditorSettings_property_interface/editor/font_disable_embedded_bitmaps:
  1646. .. rst-class:: classref-property
  1647. :ref:`bool<class_bool>` **interface/editor/font_disable_embedded_bitmaps** :ref:`🔗<class_EditorSettings_property_interface/editor/font_disable_embedded_bitmaps>`
  1648. If set to ``true``, embedded font bitmap loading is disabled (bitmap-only and color fonts ignore this property).
  1649. .. rst-class:: classref-item-separator
  1650. ----
  1651. .. _class_EditorSettings_property_interface/editor/font_hinting:
  1652. .. rst-class:: classref-property
  1653. :ref:`int<class_int>` **interface/editor/font_hinting** :ref:`🔗<class_EditorSettings_property_interface/editor/font_hinting>`
  1654. The font hinting mode to use for the editor fonts. FreeType supports the following font hinting modes:
  1655. - **None:** Don't use font hinting when rasterizing the font. This results in a smooth font, but it can look blurry.
  1656. - **Light:** Use hinting on the X axis only. This is a compromise between font sharpness and smoothness.
  1657. - **Normal:** Use hinting on both X and Y axes. This results in a sharp font, but it doesn't look very smooth.
  1658. If set to **Auto**, the font hinting mode will be set to match the current operating system in use. This means the **Light** hinting mode will be used on Windows and Linux, and the **None** hinting mode will be used on macOS.
  1659. .. rst-class:: classref-item-separator
  1660. ----
  1661. .. _class_EditorSettings_property_interface/editor/font_subpixel_positioning:
  1662. .. rst-class:: classref-property
  1663. :ref:`int<class_int>` **interface/editor/font_subpixel_positioning** :ref:`🔗<class_EditorSettings_property_interface/editor/font_subpixel_positioning>`
  1664. The subpixel positioning mode to use when rendering editor font glyphs. This affects both the main and code fonts. **Disabled** is the fastest to render and uses the least memory. **Auto** only uses subpixel positioning for small font sizes (where the benefit is the most noticeable). **One Half of a Pixel** and **One Quarter of a Pixel** force the same subpixel positioning mode for all editor fonts, regardless of their size (with **One Quarter of a Pixel** being the highest-quality option).
  1665. .. rst-class:: classref-item-separator
  1666. ----
  1667. .. _class_EditorSettings_property_interface/editor/import_resources_when_unfocused:
  1668. .. rst-class:: classref-property
  1669. :ref:`bool<class_bool>` **interface/editor/import_resources_when_unfocused** :ref:`🔗<class_EditorSettings_property_interface/editor/import_resources_when_unfocused>`
  1670. If ``true``, (re)imports resources even if the editor window is unfocused or minimized. If ``false``, resources are only (re)imported when the editor window is focused. This can be set to ``true`` to speed up iteration by starting the import process earlier when saving files in the project folder. This also allows getting visual feedback on changes without having to click the editor window, which is useful with multi-monitor setups. The downside of setting this to ``true`` is that it increases idle CPU usage and may steal CPU time from other applications when importing resources.
  1671. .. rst-class:: classref-item-separator
  1672. ----
  1673. .. _class_EditorSettings_property_interface/editor/localize_settings:
  1674. .. rst-class:: classref-property
  1675. :ref:`bool<class_bool>` **interface/editor/localize_settings** :ref:`🔗<class_EditorSettings_property_interface/editor/localize_settings>`
  1676. If ``true``, setting names in the editor are localized when possible.
  1677. \ **Note:** This setting affects most :ref:`EditorInspector<class_EditorInspector>`\ s in the editor UI, primarily Project Settings and Editor Settings. To control names displayed in the Inspector dock, use :ref:`interface/inspector/default_property_name_style<class_EditorSettings_property_interface/inspector/default_property_name_style>` instead.
  1678. .. rst-class:: classref-item-separator
  1679. ----
  1680. .. _class_EditorSettings_property_interface/editor/low_processor_mode_sleep_usec:
  1681. .. rst-class:: classref-property
  1682. :ref:`int<class_int>` **interface/editor/low_processor_mode_sleep_usec** :ref:`🔗<class_EditorSettings_property_interface/editor/low_processor_mode_sleep_usec>`
  1683. The amount of sleeping between frames when the low-processor usage mode is enabled (in microseconds). Higher values will result in lower CPU/GPU usage, which can improve battery life on laptops. However, higher values will result in a less responsive editor. The default value is set to allow for maximum smoothness on monitors up to 144 Hz. See also :ref:`interface/editor/unfocused_low_processor_mode_sleep_usec<class_EditorSettings_property_interface/editor/unfocused_low_processor_mode_sleep_usec>`.
  1684. \ **Note:** This setting is ignored if :ref:`interface/editor/update_continuously<class_EditorSettings_property_interface/editor/update_continuously>` is ``true``, as enabling that setting disables low-processor mode.
  1685. .. rst-class:: classref-item-separator
  1686. ----
  1687. .. _class_EditorSettings_property_interface/editor/main_font:
  1688. .. rst-class:: classref-property
  1689. :ref:`String<class_String>` **interface/editor/main_font** :ref:`🔗<class_EditorSettings_property_interface/editor/main_font>`
  1690. The font to use for the editor interface. Must be a resource of a :ref:`Font<class_Font>` type such as a ``.ttf`` or ``.otf`` font file.
  1691. .. rst-class:: classref-item-separator
  1692. ----
  1693. .. _class_EditorSettings_property_interface/editor/main_font_bold:
  1694. .. rst-class:: classref-property
  1695. :ref:`String<class_String>` **interface/editor/main_font_bold** :ref:`🔗<class_EditorSettings_property_interface/editor/main_font_bold>`
  1696. The font to use for bold text in the editor interface. Must be a resource of a :ref:`Font<class_Font>` type such as a ``.ttf`` or ``.otf`` font file.
  1697. .. rst-class:: classref-item-separator
  1698. ----
  1699. .. _class_EditorSettings_property_interface/editor/main_font_size:
  1700. .. rst-class:: classref-property
  1701. :ref:`int<class_int>` **interface/editor/main_font_size** :ref:`🔗<class_EditorSettings_property_interface/editor/main_font_size>`
  1702. The size of the font in the editor interface.
  1703. .. rst-class:: classref-item-separator
  1704. ----
  1705. .. _class_EditorSettings_property_interface/editor/mouse_extra_buttons_navigate_history:
  1706. .. rst-class:: classref-property
  1707. :ref:`bool<class_bool>` **interface/editor/mouse_extra_buttons_navigate_history** :ref:`🔗<class_EditorSettings_property_interface/editor/mouse_extra_buttons_navigate_history>`
  1708. If ``true``, the mouse's additional side buttons will be usable to navigate in the script editor's file history. Set this to ``false`` if you're using the side buttons for other purposes (such as a push-to-talk button in a VoIP program).
  1709. .. rst-class:: classref-item-separator
  1710. ----
  1711. .. _class_EditorSettings_property_interface/editor/project_manager_screen:
  1712. .. rst-class:: classref-property
  1713. :ref:`int<class_int>` **interface/editor/project_manager_screen** :ref:`🔗<class_EditorSettings_property_interface/editor/project_manager_screen>`
  1714. The preferred monitor to display the project manager.
  1715. .. rst-class:: classref-item-separator
  1716. ----
  1717. .. _class_EditorSettings_property_interface/editor/save_each_scene_on_quit:
  1718. .. rst-class:: classref-property
  1719. :ref:`bool<class_bool>` **interface/editor/save_each_scene_on_quit** :ref:`🔗<class_EditorSettings_property_interface/editor/save_each_scene_on_quit>`
  1720. If ``false``, the editor will save all scenes when confirming the **Save** action when quitting the editor or quitting to the project list. If ``true``, the editor will ask to save each scene individually.
  1721. .. rst-class:: classref-item-separator
  1722. ----
  1723. .. _class_EditorSettings_property_interface/editor/save_on_focus_loss:
  1724. .. rst-class:: classref-property
  1725. :ref:`bool<class_bool>` **interface/editor/save_on_focus_loss** :ref:`🔗<class_EditorSettings_property_interface/editor/save_on_focus_loss>`
  1726. If ``true``, scenes and scripts are saved when the editor loses focus. Depending on the work flow, this behavior can be less intrusive than :ref:`text_editor/behavior/files/autosave_interval_secs<class_EditorSettings_property_text_editor/behavior/files/autosave_interval_secs>` or remembering to save manually.
  1727. .. rst-class:: classref-item-separator
  1728. ----
  1729. .. _class_EditorSettings_property_interface/editor/separate_distraction_mode:
  1730. .. rst-class:: classref-property
  1731. :ref:`bool<class_bool>` **interface/editor/separate_distraction_mode** :ref:`🔗<class_EditorSettings_property_interface/editor/separate_distraction_mode>`
  1732. If ``true``, the editor's Script tab will have a separate distraction mode setting from the 2D/3D/AssetLib tabs. If ``false``, the distraction-free mode toggle is shared between all tabs.
  1733. .. rst-class:: classref-item-separator
  1734. ----
  1735. .. _class_EditorSettings_property_interface/editor/show_internal_errors_in_toast_notifications:
  1736. .. rst-class:: classref-property
  1737. :ref:`int<class_int>` **interface/editor/show_internal_errors_in_toast_notifications** :ref:`🔗<class_EditorSettings_property_interface/editor/show_internal_errors_in_toast_notifications>`
  1738. If enabled, displays internal engine errors in toast notifications (toggleable by clicking the "bell" icon at the bottom of the editor). No matter the value of this setting, non-internal engine errors will always be visible in toast notifications.
  1739. The default **Auto** value will only enable this if the editor was compiled with the ``dev_build=yes`` SCons option (the default is ``dev_build=no``).
  1740. .. rst-class:: classref-item-separator
  1741. ----
  1742. .. _class_EditorSettings_property_interface/editor/show_update_spinner:
  1743. .. rst-class:: classref-property
  1744. :ref:`int<class_int>` **interface/editor/show_update_spinner** :ref:`🔗<class_EditorSettings_property_interface/editor/show_update_spinner>`
  1745. If enabled, displays an icon in the top-right corner of the editor that spins when the editor redraws a frame. This can be used to diagnose situations where the engine is constantly redrawing, which should be avoided as this increases CPU and GPU utilization for no good reason. To further troubleshoot these situations, start the editor with the ``--debug-canvas-item-redraw`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`.
  1746. Consider enabling this if you are developing editor plugins to ensure they only make the editor redraw when required.
  1747. The default **Auto** value will only enable this if the editor was compiled with the ``dev_build=yes`` SCons option (the default is ``dev_build=no``).
  1748. \ **Note:** If :ref:`interface/editor/update_continuously<class_EditorSettings_property_interface/editor/update_continuously>` is ``true``, the spinner icon displays in red.
  1749. \ **Note:** If the editor was started with the ``--debug-canvas-item-redraw`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`, the update spinner will *never* display regardless of this setting's value. This is to avoid confusion with what would cause redrawing in real world scenarios.
  1750. .. rst-class:: classref-item-separator
  1751. ----
  1752. .. _class_EditorSettings_property_interface/editor/single_window_mode:
  1753. .. rst-class:: classref-property
  1754. :ref:`bool<class_bool>` **interface/editor/single_window_mode** :ref:`🔗<class_EditorSettings_property_interface/editor/single_window_mode>`
  1755. If ``true``, embed modal windows such as docks inside the main editor window. When single-window mode is enabled, tooltips will also be embedded inside the main editor window, which means they can't be displayed outside of the editor window. Single-window mode can be faster as it does not need to create a separate window for every popup and tooltip, which can be a slow operation depending on the operating system and rendering method in use.
  1756. This is equivalent to :ref:`ProjectSettings.display/window/subwindows/embed_subwindows<class_ProjectSettings_property_display/window/subwindows/embed_subwindows>` in the running project, except the setting's value is inverted.
  1757. \ **Note:** To query whether the editor can use multiple windows in an editor plugin, use :ref:`EditorInterface.is_multi_window_enabled<class_EditorInterface_method_is_multi_window_enabled>` instead of querying the value of this editor setting.
  1758. .. rst-class:: classref-item-separator
  1759. ----
  1760. .. _class_EditorSettings_property_interface/editor/ui_layout_direction:
  1761. .. rst-class:: classref-property
  1762. :ref:`int<class_int>` **interface/editor/ui_layout_direction** :ref:`🔗<class_EditorSettings_property_interface/editor/ui_layout_direction>`
  1763. Editor UI default layout direction.
  1764. .. rst-class:: classref-item-separator
  1765. ----
  1766. .. _class_EditorSettings_property_interface/editor/unfocused_low_processor_mode_sleep_usec:
  1767. .. rst-class:: classref-property
  1768. :ref:`int<class_int>` **interface/editor/unfocused_low_processor_mode_sleep_usec** :ref:`🔗<class_EditorSettings_property_interface/editor/unfocused_low_processor_mode_sleep_usec>`
  1769. When the editor window is unfocused, the amount of sleeping between frames when the low-processor usage mode is enabled (in microseconds). Higher values will result in lower CPU/GPU usage, which can improve battery life on laptops (in addition to improving the running project's performance if the editor has to redraw continuously). However, higher values will result in a less responsive editor. The default value is set to limit the editor to 20 FPS when the editor window is unfocused. See also :ref:`interface/editor/low_processor_mode_sleep_usec<class_EditorSettings_property_interface/editor/low_processor_mode_sleep_usec>`.
  1770. \ **Note:** This setting is ignored if :ref:`interface/editor/update_continuously<class_EditorSettings_property_interface/editor/update_continuously>` is ``true``, as enabling that setting disables low-processor mode.
  1771. .. rst-class:: classref-item-separator
  1772. ----
  1773. .. _class_EditorSettings_property_interface/editor/update_continuously:
  1774. .. rst-class:: classref-property
  1775. :ref:`bool<class_bool>` **interface/editor/update_continuously** :ref:`🔗<class_EditorSettings_property_interface/editor/update_continuously>`
  1776. If ``true``, redraws the editor every frame even if nothing has changed on screen. When this setting is enabled, the update spinner displays in red (see :ref:`interface/editor/show_update_spinner<class_EditorSettings_property_interface/editor/show_update_spinner>`).
  1777. \ **Warning:** This greatly increases CPU and GPU utilization, leading to increased power usage. This should only be enabled for troubleshooting purposes.
  1778. .. rst-class:: classref-item-separator
  1779. ----
  1780. .. _class_EditorSettings_property_interface/editor/use_embedded_menu:
  1781. .. rst-class:: classref-property
  1782. :ref:`bool<class_bool>` **interface/editor/use_embedded_menu** :ref:`🔗<class_EditorSettings_property_interface/editor/use_embedded_menu>`
  1783. If ``true``, editor main menu is using embedded :ref:`MenuBar<class_MenuBar>` instead of system global menu.
  1784. Specific to the macOS platform.
  1785. .. rst-class:: classref-item-separator
  1786. ----
  1787. .. _class_EditorSettings_property_interface/editor/use_native_file_dialogs:
  1788. .. rst-class:: classref-property
  1789. :ref:`bool<class_bool>` **interface/editor/use_native_file_dialogs** :ref:`🔗<class_EditorSettings_property_interface/editor/use_native_file_dialogs>`
  1790. If ``true``, editor UI uses OS native file/directory selection dialogs.
  1791. .. rst-class:: classref-item-separator
  1792. ----
  1793. .. _class_EditorSettings_property_interface/editor/vsync_mode:
  1794. .. rst-class:: classref-property
  1795. :ref:`int<class_int>` **interface/editor/vsync_mode** :ref:`🔗<class_EditorSettings_property_interface/editor/vsync_mode>`
  1796. Sets the V-Sync mode for the editor. Does not affect the project when run from the editor (this is controlled by :ref:`ProjectSettings.display/window/vsync/vsync_mode<class_ProjectSettings_property_display/window/vsync/vsync_mode>`).
  1797. Depending on the platform and used renderer, the engine will fall back to **Enabled** if the desired mode is not supported.
  1798. \ **Note:** V-Sync modes other than **Enabled** are only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  1799. .. rst-class:: classref-item-separator
  1800. ----
  1801. .. _class_EditorSettings_property_interface/inspector/auto_unfold_foreign_scenes:
  1802. .. rst-class:: classref-property
  1803. :ref:`bool<class_bool>` **interface/inspector/auto_unfold_foreign_scenes** :ref:`🔗<class_EditorSettings_property_interface/inspector/auto_unfold_foreign_scenes>`
  1804. If ``true``, automatically expands property groups in the Inspector dock when opening a scene that hasn't been opened previously. If ``false``, all groups remain collapsed by default.
  1805. .. rst-class:: classref-item-separator
  1806. ----
  1807. .. _class_EditorSettings_property_interface/inspector/default_color_picker_mode:
  1808. .. rst-class:: classref-property
  1809. :ref:`int<class_int>` **interface/inspector/default_color_picker_mode** :ref:`🔗<class_EditorSettings_property_interface/inspector/default_color_picker_mode>`
  1810. The default color picker mode to use when opening :ref:`ColorPicker<class_ColorPicker>`\ s in the editor. This mode can be temporarily adjusted on the color picker itself.
  1811. .. rst-class:: classref-item-separator
  1812. ----
  1813. .. _class_EditorSettings_property_interface/inspector/default_color_picker_shape:
  1814. .. rst-class:: classref-property
  1815. :ref:`int<class_int>` **interface/inspector/default_color_picker_shape** :ref:`🔗<class_EditorSettings_property_interface/inspector/default_color_picker_shape>`
  1816. The default color picker shape to use when opening :ref:`ColorPicker<class_ColorPicker>`\ s in the editor. This shape can be temporarily adjusted on the color picker itself.
  1817. .. rst-class:: classref-item-separator
  1818. ----
  1819. .. _class_EditorSettings_property_interface/inspector/default_float_step:
  1820. .. rst-class:: classref-property
  1821. :ref:`float<class_float>` **interface/inspector/default_float_step** :ref:`🔗<class_EditorSettings_property_interface/inspector/default_float_step>`
  1822. The floating-point precision to use for properties that don't define an explicit precision step. Lower values allow entering more precise values.
  1823. .. rst-class:: classref-item-separator
  1824. ----
  1825. .. _class_EditorSettings_property_interface/inspector/default_property_name_style:
  1826. .. rst-class:: classref-property
  1827. :ref:`int<class_int>` **interface/inspector/default_property_name_style** :ref:`🔗<class_EditorSettings_property_interface/inspector/default_property_name_style>`
  1828. The default property name style to display in the Inspector dock. This style can be temporarily adjusted in the Inspector dock's menu.
  1829. - **Raw:** Displays properties in ``snake_case``.
  1830. - **Capitalized:** Displays properties capitalized.
  1831. - **Localized:** Displays the localized string for the current editor language if a translation is available for the given property. If no translation is available, falls back to **Capitalized**.
  1832. \ **Note:** To display translated setting names in Project Settings and Editor Settings, use :ref:`interface/editor/localize_settings<class_EditorSettings_property_interface/editor/localize_settings>` instead.
  1833. .. rst-class:: classref-item-separator
  1834. ----
  1835. .. _class_EditorSettings_property_interface/inspector/delimitate_all_container_and_resources:
  1836. .. rst-class:: classref-property
  1837. :ref:`bool<class_bool>` **interface/inspector/delimitate_all_container_and_resources** :ref:`🔗<class_EditorSettings_property_interface/inspector/delimitate_all_container_and_resources>`
  1838. If ``true``, add a margin around Array, Dictionary, and Resource Editors that are not already colored.
  1839. \ **Note:** If :ref:`interface/inspector/nested_color_mode<class_EditorSettings_property_interface/inspector/nested_color_mode>` is set to **Containers & Resources** this parameter will have no effect since those editors will already be colored
  1840. .. rst-class:: classref-item-separator
  1841. ----
  1842. .. _class_EditorSettings_property_interface/inspector/disable_folding:
  1843. .. rst-class:: classref-property
  1844. :ref:`bool<class_bool>` **interface/inspector/disable_folding** :ref:`🔗<class_EditorSettings_property_interface/inspector/disable_folding>`
  1845. If ``true``, forces all property groups to be expanded in the Inspector dock and prevents collapsing them.
  1846. .. rst-class:: classref-item-separator
  1847. ----
  1848. .. _class_EditorSettings_property_interface/inspector/float_drag_speed:
  1849. .. rst-class:: classref-property
  1850. :ref:`float<class_float>` **interface/inspector/float_drag_speed** :ref:`🔗<class_EditorSettings_property_interface/inspector/float_drag_speed>`
  1851. Base speed for increasing/decreasing float values by dragging them in the inspector.
  1852. .. rst-class:: classref-item-separator
  1853. ----
  1854. .. _class_EditorSettings_property_interface/inspector/horizontal_vector2_editing:
  1855. .. rst-class:: classref-property
  1856. :ref:`bool<class_bool>` **interface/inspector/horizontal_vector2_editing** :ref:`🔗<class_EditorSettings_property_interface/inspector/horizontal_vector2_editing>`
  1857. If ``true``, :ref:`Vector2<class_Vector2>` and :ref:`Vector2i<class_Vector2i>` properties are shown on a single line in the inspector instead of two lines. This is overall more compact, but it can be harder to view and edit large values without expanding the inspector horizontally.
  1858. .. rst-class:: classref-item-separator
  1859. ----
  1860. .. _class_EditorSettings_property_interface/inspector/horizontal_vector_types_editing:
  1861. .. rst-class:: classref-property
  1862. :ref:`bool<class_bool>` **interface/inspector/horizontal_vector_types_editing** :ref:`🔗<class_EditorSettings_property_interface/inspector/horizontal_vector_types_editing>`
  1863. If ``true``, :ref:`Vector3<class_Vector3>`, :ref:`Vector3i<class_Vector3i>`, :ref:`Vector4<class_Vector4>`, :ref:`Vector4i<class_Vector4i>`, :ref:`Rect2<class_Rect2>`, :ref:`Rect2i<class_Rect2i>`, :ref:`Plane<class_Plane>`, and :ref:`Quaternion<class_Quaternion>` properties are shown on a single line in the inspector instead of multiple lines. This is overall more compact, but it can be harder to view and edit large values without expanding the inspector horizontally.
  1864. .. rst-class:: classref-item-separator
  1865. ----
  1866. .. _class_EditorSettings_property_interface/inspector/max_array_dictionary_items_per_page:
  1867. .. rst-class:: classref-property
  1868. :ref:`int<class_int>` **interface/inspector/max_array_dictionary_items_per_page** :ref:`🔗<class_EditorSettings_property_interface/inspector/max_array_dictionary_items_per_page>`
  1869. The number of :ref:`Array<class_Array>` or :ref:`Dictionary<class_Dictionary>` items to display on each "page" in the inspector. Higher values allow viewing more values per page, but take more time to load. This increased load time is noticeable when selecting nodes that have array or dictionary properties in the editor.
  1870. .. rst-class:: classref-item-separator
  1871. ----
  1872. .. _class_EditorSettings_property_interface/inspector/nested_color_mode:
  1873. .. rst-class:: classref-property
  1874. :ref:`int<class_int>` **interface/inspector/nested_color_mode** :ref:`🔗<class_EditorSettings_property_interface/inspector/nested_color_mode>`
  1875. Control which property editors are colored when they are opened.
  1876. - **Containers & Resources:** Color all Array, Dictionary, and Resource Editors.
  1877. - **Resources:** Color all Resource Editors.
  1878. - **External Resources:** Color Resource Editors that edits an external resource.
  1879. .. rst-class:: classref-item-separator
  1880. ----
  1881. .. _class_EditorSettings_property_interface/inspector/open_resources_in_current_inspector:
  1882. .. rst-class:: classref-property
  1883. :ref:`bool<class_bool>` **interface/inspector/open_resources_in_current_inspector** :ref:`🔗<class_EditorSettings_property_interface/inspector/open_resources_in_current_inspector>`
  1884. If ``true``, subresources can be edited in the current inspector view. If the resource type is defined in :ref:`interface/inspector/resources_to_open_in_new_inspector<class_EditorSettings_property_interface/inspector/resources_to_open_in_new_inspector>` or if this setting is ``false``, attempting to edit a subresource always opens a new inspector view.
  1885. .. rst-class:: classref-item-separator
  1886. ----
  1887. .. _class_EditorSettings_property_interface/inspector/resources_to_open_in_new_inspector:
  1888. .. rst-class:: classref-property
  1889. :ref:`PackedStringArray<class_PackedStringArray>` **interface/inspector/resources_to_open_in_new_inspector** :ref:`🔗<class_EditorSettings_property_interface/inspector/resources_to_open_in_new_inspector>`
  1890. List of resources that should always be opened in a new inspector view, even if :ref:`interface/inspector/open_resources_in_current_inspector<class_EditorSettings_property_interface/inspector/open_resources_in_current_inspector>` is ``true``.
  1891. **Note:** The returned array is *copied* and any changes to it will not update the original property value. See :ref:`PackedStringArray<class_PackedStringArray>` for more details.
  1892. .. rst-class:: classref-item-separator
  1893. ----
  1894. .. _class_EditorSettings_property_interface/inspector/show_low_level_opentype_features:
  1895. .. rst-class:: classref-property
  1896. :ref:`bool<class_bool>` **interface/inspector/show_low_level_opentype_features** :ref:`🔗<class_EditorSettings_property_interface/inspector/show_low_level_opentype_features>`
  1897. If ``true``, display OpenType features marked as ``hidden`` by the font file in the :ref:`Font<class_Font>` editor.
  1898. .. rst-class:: classref-item-separator
  1899. ----
  1900. .. _class_EditorSettings_property_interface/multi_window/enable:
  1901. .. rst-class:: classref-property
  1902. :ref:`bool<class_bool>` **interface/multi_window/enable** :ref:`🔗<class_EditorSettings_property_interface/multi_window/enable>`
  1903. If ``true``, multiple window support in editor is enabled. The following panels can become dedicated windows (i.e. made floating): Docks, Script editor, and Shader editor.
  1904. \ **Note:** When :ref:`interface/editor/single_window_mode<class_EditorSettings_property_interface/editor/single_window_mode>` is ``true``, the multi window support is always disabled.
  1905. \ **Note:** To query whether the editor can use multiple windows in an editor plugin, use :ref:`EditorInterface.is_multi_window_enabled<class_EditorInterface_method_is_multi_window_enabled>` instead of querying the value of this editor setting.
  1906. .. rst-class:: classref-item-separator
  1907. ----
  1908. .. _class_EditorSettings_property_interface/multi_window/maximize_window:
  1909. .. rst-class:: classref-property
  1910. :ref:`bool<class_bool>` **interface/multi_window/maximize_window** :ref:`🔗<class_EditorSettings_property_interface/multi_window/maximize_window>`
  1911. If ``true``, when panels are made floating they will be maximized.
  1912. If ``false``, when panels are made floating their position and size will match the ones when they are attached (excluding window border) to the editor window.
  1913. .. rst-class:: classref-item-separator
  1914. ----
  1915. .. _class_EditorSettings_property_interface/multi_window/restore_windows_on_load:
  1916. .. rst-class:: classref-property
  1917. :ref:`bool<class_bool>` **interface/multi_window/restore_windows_on_load** :ref:`🔗<class_EditorSettings_property_interface/multi_window/restore_windows_on_load>`
  1918. If ``true``, the floating panel position, size, and screen will be saved on editor exit. On next launch the panels that were floating will be made floating in the saved positions, sizes and screens, if possible.
  1919. .. rst-class:: classref-item-separator
  1920. ----
  1921. .. _class_EditorSettings_property_interface/scene_tabs/display_close_button:
  1922. .. rst-class:: classref-property
  1923. :ref:`int<class_int>` **interface/scene_tabs/display_close_button** :ref:`🔗<class_EditorSettings_property_interface/scene_tabs/display_close_button>`
  1924. Controls when the Close (X) button is displayed on scene tabs at the top of the editor.
  1925. .. rst-class:: classref-item-separator
  1926. ----
  1927. .. _class_EditorSettings_property_interface/scene_tabs/maximum_width:
  1928. .. rst-class:: classref-property
  1929. :ref:`int<class_int>` **interface/scene_tabs/maximum_width** :ref:`🔗<class_EditorSettings_property_interface/scene_tabs/maximum_width>`
  1930. The maximum width of each scene tab at the top editor (in pixels).
  1931. .. rst-class:: classref-item-separator
  1932. ----
  1933. .. _class_EditorSettings_property_interface/scene_tabs/restore_scenes_on_load:
  1934. .. rst-class:: classref-property
  1935. :ref:`bool<class_bool>` **interface/scene_tabs/restore_scenes_on_load** :ref:`🔗<class_EditorSettings_property_interface/scene_tabs/restore_scenes_on_load>`
  1936. If ``true``, when a project is loaded, restores scenes that were opened on the last editor session.
  1937. \ **Note:** With many opened scenes, the editor may take longer to become usable. If starting the editor quickly is necessary, consider setting this to ``false``.
  1938. .. rst-class:: classref-item-separator
  1939. ----
  1940. .. _class_EditorSettings_property_interface/scene_tabs/show_script_button:
  1941. .. rst-class:: classref-property
  1942. :ref:`bool<class_bool>` **interface/scene_tabs/show_script_button** :ref:`🔗<class_EditorSettings_property_interface/scene_tabs/show_script_button>`
  1943. If ``true``, show a button next to each scene tab that opens the scene's "dominant" script when clicked. The "dominant" script is the one that is at the highest level in the scene's hierarchy.
  1944. .. rst-class:: classref-item-separator
  1945. ----
  1946. .. _class_EditorSettings_property_interface/scene_tabs/show_thumbnail_on_hover:
  1947. .. rst-class:: classref-property
  1948. :ref:`bool<class_bool>` **interface/scene_tabs/show_thumbnail_on_hover** :ref:`🔗<class_EditorSettings_property_interface/scene_tabs/show_thumbnail_on_hover>`
  1949. If ``true``, display an automatically-generated thumbnail when hovering scene tabs with the mouse. Scene thumbnails are generated when saving the scene.
  1950. .. rst-class:: classref-item-separator
  1951. ----
  1952. .. _class_EditorSettings_property_interface/theme/accent_color:
  1953. .. rst-class:: classref-property
  1954. :ref:`Color<class_Color>` **interface/theme/accent_color** :ref:`🔗<class_EditorSettings_property_interface/theme/accent_color>`
  1955. The color to use for "highlighted" user interface elements in the editor (pressed and hovered items).
  1956. .. rst-class:: classref-item-separator
  1957. ----
  1958. .. _class_EditorSettings_property_interface/theme/additional_spacing:
  1959. .. rst-class:: classref-property
  1960. :ref:`int<class_int>` **interface/theme/additional_spacing** :ref:`🔗<class_EditorSettings_property_interface/theme/additional_spacing>`
  1961. The extra spacing to add to various GUI elements in the editor (in pixels). Increasing this value is useful to improve usability on touch screens, at the cost of reducing the amount of usable screen real estate.
  1962. See also :ref:`interface/theme/spacing_preset<class_EditorSettings_property_interface/theme/spacing_preset>`.
  1963. .. rst-class:: classref-item-separator
  1964. ----
  1965. .. _class_EditorSettings_property_interface/theme/base_color:
  1966. .. rst-class:: classref-property
  1967. :ref:`Color<class_Color>` **interface/theme/base_color** :ref:`🔗<class_EditorSettings_property_interface/theme/base_color>`
  1968. The base color to use for user interface elements in the editor. Secondary colors (such as darker/lighter variants) are derived from this color.
  1969. .. rst-class:: classref-item-separator
  1970. ----
  1971. .. _class_EditorSettings_property_interface/theme/base_spacing:
  1972. .. rst-class:: classref-property
  1973. :ref:`int<class_int>` **interface/theme/base_spacing** :ref:`🔗<class_EditorSettings_property_interface/theme/base_spacing>`
  1974. The base spacing used by various GUI elements in the editor (in pixels). See also :ref:`interface/theme/spacing_preset<class_EditorSettings_property_interface/theme/spacing_preset>`.
  1975. .. rst-class:: classref-item-separator
  1976. ----
  1977. .. _class_EditorSettings_property_interface/theme/border_size:
  1978. .. rst-class:: classref-property
  1979. :ref:`int<class_int>` **interface/theme/border_size** :ref:`🔗<class_EditorSettings_property_interface/theme/border_size>`
  1980. The border size to use for interface elements (in pixels).
  1981. .. rst-class:: classref-item-separator
  1982. ----
  1983. .. _class_EditorSettings_property_interface/theme/contrast:
  1984. .. rst-class:: classref-property
  1985. :ref:`float<class_float>` **interface/theme/contrast** :ref:`🔗<class_EditorSettings_property_interface/theme/contrast>`
  1986. The contrast factor to use when deriving the editor theme's base color (see :ref:`interface/theme/base_color<class_EditorSettings_property_interface/theme/base_color>`). When using a positive values, the derived colors will be *darker* than the base color. This contrast factor can be set to a negative value, which will make the derived colors *brighter* than the base color. Negative contrast rates often look better for light themes.
  1987. .. rst-class:: classref-item-separator
  1988. ----
  1989. .. _class_EditorSettings_property_interface/theme/corner_radius:
  1990. .. rst-class:: classref-property
  1991. :ref:`int<class_int>` **interface/theme/corner_radius** :ref:`🔗<class_EditorSettings_property_interface/theme/corner_radius>`
  1992. The corner radius to use for interface elements (in pixels). ``0`` is square.
  1993. .. rst-class:: classref-item-separator
  1994. ----
  1995. .. _class_EditorSettings_property_interface/theme/custom_theme:
  1996. .. rst-class:: classref-property
  1997. :ref:`String<class_String>` **interface/theme/custom_theme** :ref:`🔗<class_EditorSettings_property_interface/theme/custom_theme>`
  1998. The custom theme resource to use for the editor. Must be a Godot theme resource in ``.tres`` or ``.res`` format.
  1999. .. rst-class:: classref-item-separator
  2000. ----
  2001. .. _class_EditorSettings_property_interface/theme/draw_extra_borders:
  2002. .. rst-class:: classref-property
  2003. :ref:`bool<class_bool>` **interface/theme/draw_extra_borders** :ref:`🔗<class_EditorSettings_property_interface/theme/draw_extra_borders>`
  2004. If ``true``, draws additional borders around interactive UI elements in the editor. This is automatically enabled when using the **Black (OLED)** theme preset, as this theme preset uses a fully black background.
  2005. .. rst-class:: classref-item-separator
  2006. ----
  2007. .. _class_EditorSettings_property_interface/theme/follow_system_theme:
  2008. .. rst-class:: classref-property
  2009. :ref:`bool<class_bool>` **interface/theme/follow_system_theme** :ref:`🔗<class_EditorSettings_property_interface/theme/follow_system_theme>`
  2010. If ``true``, the editor theme preset will attempt to automatically match the system theme.
  2011. .. rst-class:: classref-item-separator
  2012. ----
  2013. .. _class_EditorSettings_property_interface/theme/icon_and_font_color:
  2014. .. rst-class:: classref-property
  2015. :ref:`int<class_int>` **interface/theme/icon_and_font_color** :ref:`🔗<class_EditorSettings_property_interface/theme/icon_and_font_color>`
  2016. The icon and font color scheme to use in the editor.
  2017. - **Auto** determines the color scheme to use automatically based on :ref:`interface/theme/base_color<class_EditorSettings_property_interface/theme/base_color>`.
  2018. - **Dark** makes fonts and icons dark (suitable for light themes). Icon colors are automatically converted by the editor following the set of rules defined in `this file <https://github.com/godotengine/godot/blob/master/editor/themes/editor_theme_manager.cpp>`__.
  2019. - **Light** makes fonts and icons light (suitable for dark themes).
  2020. .. rst-class:: classref-item-separator
  2021. ----
  2022. .. _class_EditorSettings_property_interface/theme/icon_saturation:
  2023. .. rst-class:: classref-property
  2024. :ref:`float<class_float>` **interface/theme/icon_saturation** :ref:`🔗<class_EditorSettings_property_interface/theme/icon_saturation>`
  2025. The saturation to use for editor icons. Higher values result in more vibrant colors.
  2026. \ **Note:** The default editor icon saturation was increased by 30% in Godot 4.0 and later. To get Godot 3.x's icon saturation back, set :ref:`interface/theme/icon_saturation<class_EditorSettings_property_interface/theme/icon_saturation>` to ``0.77``.
  2027. .. rst-class:: classref-item-separator
  2028. ----
  2029. .. _class_EditorSettings_property_interface/theme/preset:
  2030. .. rst-class:: classref-property
  2031. :ref:`String<class_String>` **interface/theme/preset** :ref:`🔗<class_EditorSettings_property_interface/theme/preset>`
  2032. The editor theme preset to use.
  2033. .. rst-class:: classref-item-separator
  2034. ----
  2035. .. _class_EditorSettings_property_interface/theme/relationship_line_opacity:
  2036. .. rst-class:: classref-property
  2037. :ref:`float<class_float>` **interface/theme/relationship_line_opacity** :ref:`🔗<class_EditorSettings_property_interface/theme/relationship_line_opacity>`
  2038. The opacity to use when drawing relationship lines in the editor's :ref:`Tree<class_Tree>`-based GUIs (such as the Scene tree dock).
  2039. .. rst-class:: classref-item-separator
  2040. ----
  2041. .. _class_EditorSettings_property_interface/theme/spacing_preset:
  2042. .. rst-class:: classref-property
  2043. :ref:`String<class_String>` **interface/theme/spacing_preset** :ref:`🔗<class_EditorSettings_property_interface/theme/spacing_preset>`
  2044. The editor theme spacing preset to use. See also :ref:`interface/theme/base_spacing<class_EditorSettings_property_interface/theme/base_spacing>` and :ref:`interface/theme/additional_spacing<class_EditorSettings_property_interface/theme/additional_spacing>`.
  2045. .. rst-class:: classref-item-separator
  2046. ----
  2047. .. _class_EditorSettings_property_interface/theme/use_system_accent_color:
  2048. .. rst-class:: classref-property
  2049. :ref:`bool<class_bool>` **interface/theme/use_system_accent_color** :ref:`🔗<class_EditorSettings_property_interface/theme/use_system_accent_color>`
  2050. If ``true``, set accent color based on system settings.
  2051. \ **Note:** This setting is only effective on Windows and MacOS.
  2052. .. rst-class:: classref-item-separator
  2053. ----
  2054. .. _class_EditorSettings_property_interface/touchscreen/enable_long_press_as_right_click:
  2055. .. rst-class:: classref-property
  2056. :ref:`bool<class_bool>` **interface/touchscreen/enable_long_press_as_right_click** :ref:`🔗<class_EditorSettings_property_interface/touchscreen/enable_long_press_as_right_click>`
  2057. If ``true``, long press on touchscreen is treated as right click.
  2058. \ **Note:** Defaults to ``true`` on touchscreen devices.
  2059. .. rst-class:: classref-item-separator
  2060. ----
  2061. .. _class_EditorSettings_property_interface/touchscreen/enable_pan_and_scale_gestures:
  2062. .. rst-class:: classref-property
  2063. :ref:`bool<class_bool>` **interface/touchscreen/enable_pan_and_scale_gestures** :ref:`🔗<class_EditorSettings_property_interface/touchscreen/enable_pan_and_scale_gestures>`
  2064. If ``true``, enable two finger pan and scale gestures on touchscreen devices.
  2065. \ **Note:** Defaults to ``true`` on touchscreen devices.
  2066. .. rst-class:: classref-item-separator
  2067. ----
  2068. .. _class_EditorSettings_property_interface/touchscreen/increase_scrollbar_touch_area:
  2069. .. rst-class:: classref-property
  2070. :ref:`bool<class_bool>` **interface/touchscreen/increase_scrollbar_touch_area** :ref:`🔗<class_EditorSettings_property_interface/touchscreen/increase_scrollbar_touch_area>`
  2071. If ``true``, increases the scrollbar touch area to improve usability on touchscreen devices.
  2072. \ **Note:** Defaults to ``true`` on touchscreen devices.
  2073. .. rst-class:: classref-item-separator
  2074. ----
  2075. .. _class_EditorSettings_property_interface/touchscreen/scale_gizmo_handles:
  2076. .. rst-class:: classref-property
  2077. :ref:`float<class_float>` **interface/touchscreen/scale_gizmo_handles** :ref:`🔗<class_EditorSettings_property_interface/touchscreen/scale_gizmo_handles>`
  2078. Specify the multiplier to apply to the scale for the editor gizmo handles to improve usability on touchscreen devices.
  2079. \ **Note:** Defaults to ``1`` on non-touchscreen devices.
  2080. .. rst-class:: classref-item-separator
  2081. ----
  2082. .. _class_EditorSettings_property_network/connection/engine_version_update_mode:
  2083. .. rst-class:: classref-property
  2084. :ref:`int<class_int>` **network/connection/engine_version_update_mode** :ref:`🔗<class_EditorSettings_property_network/connection/engine_version_update_mode>`
  2085. Specifies how the engine should check for updates.
  2086. - **Disable Update Checks** will block the engine from checking updates (see also :ref:`network/connection/network_mode<class_EditorSettings_property_network/connection/network_mode>`).
  2087. - **Check Newest Preview** (default for preview versions) will check for the newest available development snapshot.
  2088. - **Check Newest Stable** (default for stable versions) will check for the newest available stable version.
  2089. - **Check Newest Patch** will check for the latest available stable version, but only within the same minor version. E.g. if your version is ``4.3.stable``, you will be notified about ``4.3.1.stable``, but not ``4.4.stable``.
  2090. All update modes will ignore builds with different major versions (e.g. Godot 4 -> Godot 5).
  2091. .. rst-class:: classref-item-separator
  2092. ----
  2093. .. _class_EditorSettings_property_network/connection/network_mode:
  2094. .. rst-class:: classref-property
  2095. :ref:`int<class_int>` **network/connection/network_mode** :ref:`🔗<class_EditorSettings_property_network/connection/network_mode>`
  2096. Determines whether online features are enabled in the editor, such as the Asset Library or update checks. Disabling these online features helps alleviate privacy concerns by preventing the editor from making HTTP requests to the Godot website or third-party platforms hosting assets from the Asset Library.
  2097. .. rst-class:: classref-item-separator
  2098. ----
  2099. .. _class_EditorSettings_property_network/debug/remote_host:
  2100. .. rst-class:: classref-property
  2101. :ref:`String<class_String>` **network/debug/remote_host** :ref:`🔗<class_EditorSettings_property_network/debug/remote_host>`
  2102. The address to listen to when starting the remote debugger. This can be set to ``0.0.0.0`` to allow external clients to connect to the remote debugger (instead of restricting the remote debugger to connections from ``localhost``).
  2103. .. rst-class:: classref-item-separator
  2104. ----
  2105. .. _class_EditorSettings_property_network/debug/remote_port:
  2106. .. rst-class:: classref-property
  2107. :ref:`int<class_int>` **network/debug/remote_port** :ref:`🔗<class_EditorSettings_property_network/debug/remote_port>`
  2108. The port to listen to when starting the remote debugger. Godot will try to use port numbers above the configured number if the configured number is already taken by another application.
  2109. .. rst-class:: classref-item-separator
  2110. ----
  2111. .. _class_EditorSettings_property_network/http_proxy/host:
  2112. .. rst-class:: classref-property
  2113. :ref:`String<class_String>` **network/http_proxy/host** :ref:`🔗<class_EditorSettings_property_network/http_proxy/host>`
  2114. The host to use to contact the HTTP and HTTPS proxy in the editor (for the asset library and export template downloads). See also :ref:`network/http_proxy/port<class_EditorSettings_property_network/http_proxy/port>`.
  2115. \ **Note:** Godot currently doesn't automatically use system proxy settings, so you have to enter them manually here if needed.
  2116. .. rst-class:: classref-item-separator
  2117. ----
  2118. .. _class_EditorSettings_property_network/http_proxy/port:
  2119. .. rst-class:: classref-property
  2120. :ref:`int<class_int>` **network/http_proxy/port** :ref:`🔗<class_EditorSettings_property_network/http_proxy/port>`
  2121. The port number to use to contact the HTTP and HTTPS proxy in the editor (for the asset library and export template downloads). See also :ref:`network/http_proxy/host<class_EditorSettings_property_network/http_proxy/host>`.
  2122. \ **Note:** Godot currently doesn't automatically use system proxy settings, so you have to enter them manually here if needed.
  2123. .. rst-class:: classref-item-separator
  2124. ----
  2125. .. _class_EditorSettings_property_network/tls/editor_tls_certificates:
  2126. .. rst-class:: classref-property
  2127. :ref:`String<class_String>` **network/tls/editor_tls_certificates** :ref:`🔗<class_EditorSettings_property_network/tls/editor_tls_certificates>`
  2128. The TLS certificate bundle to use for HTTP requests made within the editor (e.g. from the AssetLib tab). If left empty, the `included Mozilla certificate bundle <https://github.com/godotengine/godot/blob/master/thirdparty/certs/ca-certificates.crt>`__ will be used.
  2129. .. rst-class:: classref-item-separator
  2130. ----
  2131. .. _class_EditorSettings_property_project_manager/default_renderer:
  2132. .. rst-class:: classref-property
  2133. :ref:`String<class_String>` **project_manager/default_renderer** :ref:`🔗<class_EditorSettings_property_project_manager/default_renderer>`
  2134. The renderer type that will be checked off by default when creating a new project. Accepted strings are "forward_plus", "mobile" or "gl_compatibility".
  2135. .. rst-class:: classref-item-separator
  2136. ----
  2137. .. _class_EditorSettings_property_project_manager/directory_naming_convention:
  2138. .. rst-class:: classref-property
  2139. :ref:`int<class_int>` **project_manager/directory_naming_convention** :ref:`🔗<class_EditorSettings_property_project_manager/directory_naming_convention>`
  2140. Directory naming convention for the project manager. Options are "No convention" (project name is directory name), "kebab-case" (default), "snake_case", "camelCase", "PascalCase", or "Title Case".
  2141. .. rst-class:: classref-item-separator
  2142. ----
  2143. .. _class_EditorSettings_property_project_manager/sorting_order:
  2144. .. rst-class:: classref-property
  2145. :ref:`int<class_int>` **project_manager/sorting_order** :ref:`🔗<class_EditorSettings_property_project_manager/sorting_order>`
  2146. The sorting order to use in the project manager. When changing the sorting order in the project manager, this setting is set permanently in the editor settings.
  2147. .. rst-class:: classref-item-separator
  2148. ----
  2149. .. _class_EditorSettings_property_run/auto_save/save_before_running:
  2150. .. rst-class:: classref-property
  2151. :ref:`bool<class_bool>` **run/auto_save/save_before_running** :ref:`🔗<class_EditorSettings_property_run/auto_save/save_before_running>`
  2152. If ``true``, saves all scenes and scripts automatically before running the project. Setting this to ``false`` prevents the editor from saving if there are no changes which can speed up the project startup slightly, but it makes it possible to run a project that has unsaved changes. (Unsaved changes will not be visible in the running project.)
  2153. .. rst-class:: classref-item-separator
  2154. ----
  2155. .. _class_EditorSettings_property_run/bottom_panel/action_on_play:
  2156. .. rst-class:: classref-property
  2157. :ref:`int<class_int>` **run/bottom_panel/action_on_play** :ref:`🔗<class_EditorSettings_property_run/bottom_panel/action_on_play>`
  2158. The action to execute on the bottom panel when running the project.
  2159. .. rst-class:: classref-item-separator
  2160. ----
  2161. .. _class_EditorSettings_property_run/bottom_panel/action_on_stop:
  2162. .. rst-class:: classref-property
  2163. :ref:`int<class_int>` **run/bottom_panel/action_on_stop** :ref:`🔗<class_EditorSettings_property_run/bottom_panel/action_on_stop>`
  2164. The action to execute on the bottom panel when stopping the project.
  2165. .. rst-class:: classref-item-separator
  2166. ----
  2167. .. _class_EditorSettings_property_run/output/always_clear_output_on_play:
  2168. .. rst-class:: classref-property
  2169. :ref:`bool<class_bool>` **run/output/always_clear_output_on_play** :ref:`🔗<class_EditorSettings_property_run/output/always_clear_output_on_play>`
  2170. If ``true``, the editor will clear the Output panel when running the project.
  2171. .. rst-class:: classref-item-separator
  2172. ----
  2173. .. _class_EditorSettings_property_run/output/font_size:
  2174. .. rst-class:: classref-property
  2175. :ref:`int<class_int>` **run/output/font_size** :ref:`🔗<class_EditorSettings_property_run/output/font_size>`
  2176. The size of the font in the **Output** panel at the bottom of the editor. This setting does not impact the font size of the script editor (see :ref:`interface/editor/code_font_size<class_EditorSettings_property_interface/editor/code_font_size>`).
  2177. .. rst-class:: classref-item-separator
  2178. ----
  2179. .. _class_EditorSettings_property_run/output/max_lines:
  2180. .. rst-class:: classref-property
  2181. :ref:`int<class_int>` **run/output/max_lines** :ref:`🔗<class_EditorSettings_property_run/output/max_lines>`
  2182. Maximum number of lines to show at any one time in the Output panel.
  2183. .. rst-class:: classref-item-separator
  2184. ----
  2185. .. _class_EditorSettings_property_run/platforms/linuxbsd/prefer_wayland:
  2186. .. rst-class:: classref-property
  2187. :ref:`bool<class_bool>` **run/platforms/linuxbsd/prefer_wayland** :ref:`🔗<class_EditorSettings_property_run/platforms/linuxbsd/prefer_wayland>`
  2188. If ``true``, on Linux/BSD, the editor will check for Wayland first instead of X11 (if available).
  2189. .. rst-class:: classref-item-separator
  2190. ----
  2191. .. _class_EditorSettings_property_run/window_placement/android_window:
  2192. .. rst-class:: classref-property
  2193. :ref:`int<class_int>` **run/window_placement/android_window** :ref:`🔗<class_EditorSettings_property_run/window_placement/android_window>`
  2194. The Android window to display the project on when starting the project from the editor.
  2195. \ **Note:** Only available in the Android editor.
  2196. .. rst-class:: classref-item-separator
  2197. ----
  2198. .. _class_EditorSettings_property_run/window_placement/rect:
  2199. .. rst-class:: classref-property
  2200. :ref:`int<class_int>` **run/window_placement/rect** :ref:`🔗<class_EditorSettings_property_run/window_placement/rect>`
  2201. The window mode to use to display the project when starting the project from the editor.
  2202. .. rst-class:: classref-item-separator
  2203. ----
  2204. .. _class_EditorSettings_property_run/window_placement/rect_custom_position:
  2205. .. rst-class:: classref-property
  2206. :ref:`Vector2<class_Vector2>` **run/window_placement/rect_custom_position** :ref:`🔗<class_EditorSettings_property_run/window_placement/rect_custom_position>`
  2207. The custom position to use when starting the project from the editor (in pixels from the top-left corner). Only effective if :ref:`run/window_placement/rect<class_EditorSettings_property_run/window_placement/rect>` is set to **Custom Position**.
  2208. .. rst-class:: classref-item-separator
  2209. ----
  2210. .. _class_EditorSettings_property_run/window_placement/screen:
  2211. .. rst-class:: classref-property
  2212. :ref:`int<class_int>` **run/window_placement/screen** :ref:`🔗<class_EditorSettings_property_run/window_placement/screen>`
  2213. The monitor to display the project on when starting the project from the editor.
  2214. .. rst-class:: classref-item-separator
  2215. ----
  2216. .. _class_EditorSettings_property_text_editor/appearance/caret/caret_blink:
  2217. .. rst-class:: classref-property
  2218. :ref:`bool<class_bool>` **text_editor/appearance/caret/caret_blink** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/caret/caret_blink>`
  2219. If ``true``, makes the caret blink according to :ref:`text_editor/appearance/caret/caret_blink_interval<class_EditorSettings_property_text_editor/appearance/caret/caret_blink_interval>`. Disabling this setting can improve battery life on laptops if you spend long amounts of time in the script editor, since it will reduce the frequency at which the editor needs to be redrawn.
  2220. .. rst-class:: classref-item-separator
  2221. ----
  2222. .. _class_EditorSettings_property_text_editor/appearance/caret/caret_blink_interval:
  2223. .. rst-class:: classref-property
  2224. :ref:`float<class_float>` **text_editor/appearance/caret/caret_blink_interval** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/caret/caret_blink_interval>`
  2225. The interval at which the caret will blink (in seconds). See also :ref:`text_editor/appearance/caret/caret_blink<class_EditorSettings_property_text_editor/appearance/caret/caret_blink>`.
  2226. .. rst-class:: classref-item-separator
  2227. ----
  2228. .. _class_EditorSettings_property_text_editor/appearance/caret/highlight_all_occurrences:
  2229. .. rst-class:: classref-property
  2230. :ref:`bool<class_bool>` **text_editor/appearance/caret/highlight_all_occurrences** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/caret/highlight_all_occurrences>`
  2231. If ``true``, highlights all occurrences of the currently selected text in the script editor. See also :ref:`text_editor/theme/highlighting/word_highlighted_color<class_EditorSettings_property_text_editor/theme/highlighting/word_highlighted_color>`.
  2232. .. rst-class:: classref-item-separator
  2233. ----
  2234. .. _class_EditorSettings_property_text_editor/appearance/caret/highlight_current_line:
  2235. .. rst-class:: classref-property
  2236. :ref:`bool<class_bool>` **text_editor/appearance/caret/highlight_current_line** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/caret/highlight_current_line>`
  2237. If ``true``, colors the background of the line the caret is currently on with :ref:`text_editor/theme/highlighting/current_line_color<class_EditorSettings_property_text_editor/theme/highlighting/current_line_color>`.
  2238. .. rst-class:: classref-item-separator
  2239. ----
  2240. .. _class_EditorSettings_property_text_editor/appearance/caret/type:
  2241. .. rst-class:: classref-property
  2242. :ref:`int<class_int>` **text_editor/appearance/caret/type** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/caret/type>`
  2243. The shape of the caret to use in the script editor. **Line** displays a vertical line to the left of the current character, whereas **Block** displays an outline over the current character.
  2244. .. rst-class:: classref-item-separator
  2245. ----
  2246. .. _class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_hard_column:
  2247. .. rst-class:: classref-property
  2248. :ref:`int<class_int>` **text_editor/appearance/guidelines/line_length_guideline_hard_column** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_hard_column>`
  2249. The column at which to display a subtle line as a line length guideline for scripts. This should generally be greater than :ref:`text_editor/appearance/guidelines/line_length_guideline_soft_column<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_soft_column>`.
  2250. .. rst-class:: classref-item-separator
  2251. ----
  2252. .. _class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_soft_column:
  2253. .. rst-class:: classref-property
  2254. :ref:`int<class_int>` **text_editor/appearance/guidelines/line_length_guideline_soft_column** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_soft_column>`
  2255. The column at which to display a *very* subtle line as a line length guideline for scripts. This should generally be lower than :ref:`text_editor/appearance/guidelines/line_length_guideline_hard_column<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_hard_column>`.
  2256. .. rst-class:: classref-item-separator
  2257. ----
  2258. .. _class_EditorSettings_property_text_editor/appearance/guidelines/show_line_length_guidelines:
  2259. .. rst-class:: classref-property
  2260. :ref:`bool<class_bool>` **text_editor/appearance/guidelines/show_line_length_guidelines** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/guidelines/show_line_length_guidelines>`
  2261. If ``true``, displays line length guidelines to help you keep line lengths in check. See also :ref:`text_editor/appearance/guidelines/line_length_guideline_soft_column<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_soft_column>` and :ref:`text_editor/appearance/guidelines/line_length_guideline_hard_column<class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_hard_column>`.
  2262. .. rst-class:: classref-item-separator
  2263. ----
  2264. .. _class_EditorSettings_property_text_editor/appearance/gutters/highlight_type_safe_lines:
  2265. .. rst-class:: classref-property
  2266. :ref:`bool<class_bool>` **text_editor/appearance/gutters/highlight_type_safe_lines** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/gutters/highlight_type_safe_lines>`
  2267. If ``true``, highlights type-safe lines by displaying their line number color with :ref:`text_editor/theme/highlighting/safe_line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color>` instead of :ref:`text_editor/theme/highlighting/line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/line_number_color>`. Type-safe lines are lines of code where the type of all variables is known at compile-time. These type-safe lines may run faster thanks to typed instructions.
  2268. .. rst-class:: classref-item-separator
  2269. ----
  2270. .. _class_EditorSettings_property_text_editor/appearance/gutters/line_numbers_zero_padded:
  2271. .. rst-class:: classref-property
  2272. :ref:`bool<class_bool>` **text_editor/appearance/gutters/line_numbers_zero_padded** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/gutters/line_numbers_zero_padded>`
  2273. If ``true``, displays line numbers with zero padding (e.g. ``007`` instead of ``7``).
  2274. .. rst-class:: classref-item-separator
  2275. ----
  2276. .. _class_EditorSettings_property_text_editor/appearance/gutters/show_info_gutter:
  2277. .. rst-class:: classref-property
  2278. :ref:`bool<class_bool>` **text_editor/appearance/gutters/show_info_gutter** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/gutters/show_info_gutter>`
  2279. If ``true``, displays a gutter at the left containing icons for methods with signal connections and for overridden methods.
  2280. .. rst-class:: classref-item-separator
  2281. ----
  2282. .. _class_EditorSettings_property_text_editor/appearance/gutters/show_line_numbers:
  2283. .. rst-class:: classref-property
  2284. :ref:`bool<class_bool>` **text_editor/appearance/gutters/show_line_numbers** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/gutters/show_line_numbers>`
  2285. If ``true``, displays line numbers in a gutter at the left.
  2286. .. rst-class:: classref-item-separator
  2287. ----
  2288. .. _class_EditorSettings_property_text_editor/appearance/lines/autowrap_mode:
  2289. .. rst-class:: classref-property
  2290. :ref:`int<class_int>` **text_editor/appearance/lines/autowrap_mode** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/lines/autowrap_mode>`
  2291. If :ref:`text_editor/appearance/lines/word_wrap<class_EditorSettings_property_text_editor/appearance/lines/word_wrap>` is set to ``1``, sets text wrapping mode. To see how each mode behaves, see :ref:`AutowrapMode<enum_TextServer_AutowrapMode>`.
  2292. .. rst-class:: classref-item-separator
  2293. ----
  2294. .. _class_EditorSettings_property_text_editor/appearance/lines/code_folding:
  2295. .. rst-class:: classref-property
  2296. :ref:`bool<class_bool>` **text_editor/appearance/lines/code_folding** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/lines/code_folding>`
  2297. If ``true``, displays the folding arrows next to indented code sections and allows code folding. If ``false``, hides the folding arrows next to indented code sections and disallows code folding.
  2298. .. rst-class:: classref-item-separator
  2299. ----
  2300. .. _class_EditorSettings_property_text_editor/appearance/lines/word_wrap:
  2301. .. rst-class:: classref-property
  2302. :ref:`int<class_int>` **text_editor/appearance/lines/word_wrap** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/lines/word_wrap>`
  2303. If ``true``, wraps long lines over multiple lines to avoid horizontal scrolling. This is a display-only feature; it does not actually insert line breaks in your scripts.
  2304. .. rst-class:: classref-item-separator
  2305. ----
  2306. .. _class_EditorSettings_property_text_editor/appearance/minimap/minimap_width:
  2307. .. rst-class:: classref-property
  2308. :ref:`int<class_int>` **text_editor/appearance/minimap/minimap_width** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/minimap/minimap_width>`
  2309. The width of the minimap in the script editor (in pixels).
  2310. .. rst-class:: classref-item-separator
  2311. ----
  2312. .. _class_EditorSettings_property_text_editor/appearance/minimap/show_minimap:
  2313. .. rst-class:: classref-property
  2314. :ref:`bool<class_bool>` **text_editor/appearance/minimap/show_minimap** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/minimap/show_minimap>`
  2315. If ``true``, draws an overview of the script near the scroll bar. The minimap can be left-clicked to scroll directly to a location in an "absolute" manner.
  2316. .. rst-class:: classref-item-separator
  2317. ----
  2318. .. _class_EditorSettings_property_text_editor/appearance/whitespace/draw_spaces:
  2319. .. rst-class:: classref-property
  2320. :ref:`bool<class_bool>` **text_editor/appearance/whitespace/draw_spaces** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/whitespace/draw_spaces>`
  2321. If ``true``, draws space characters as centered points.
  2322. .. rst-class:: classref-item-separator
  2323. ----
  2324. .. _class_EditorSettings_property_text_editor/appearance/whitespace/draw_tabs:
  2325. .. rst-class:: classref-property
  2326. :ref:`bool<class_bool>` **text_editor/appearance/whitespace/draw_tabs** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/whitespace/draw_tabs>`
  2327. If ``true``, draws tab characters as chevrons.
  2328. .. rst-class:: classref-item-separator
  2329. ----
  2330. .. _class_EditorSettings_property_text_editor/appearance/whitespace/line_spacing:
  2331. .. rst-class:: classref-property
  2332. :ref:`int<class_int>` **text_editor/appearance/whitespace/line_spacing** :ref:`🔗<class_EditorSettings_property_text_editor/appearance/whitespace/line_spacing>`
  2333. The space to add between lines (in pixels). Greater line spacing can help improve readability at the cost of displaying fewer lines on screen.
  2334. .. rst-class:: classref-item-separator
  2335. ----
  2336. .. _class_EditorSettings_property_text_editor/behavior/files/auto_reload_scripts_on_external_change:
  2337. .. rst-class:: classref-property
  2338. :ref:`bool<class_bool>` **text_editor/behavior/files/auto_reload_scripts_on_external_change** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/files/auto_reload_scripts_on_external_change>`
  2339. If ``true``, automatically reloads scripts in the editor when they have been modified and saved by external editors.
  2340. .. rst-class:: classref-item-separator
  2341. ----
  2342. .. _class_EditorSettings_property_text_editor/behavior/files/autosave_interval_secs:
  2343. .. rst-class:: classref-property
  2344. :ref:`int<class_int>` **text_editor/behavior/files/autosave_interval_secs** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/files/autosave_interval_secs>`
  2345. If set to a value greater than ``0``, automatically saves the current script following the specified interval (in seconds). This can be used to prevent data loss if the editor crashes.
  2346. .. rst-class:: classref-item-separator
  2347. ----
  2348. .. _class_EditorSettings_property_text_editor/behavior/files/convert_indent_on_save:
  2349. .. rst-class:: classref-property
  2350. :ref:`bool<class_bool>` **text_editor/behavior/files/convert_indent_on_save** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/files/convert_indent_on_save>`
  2351. If ``true``, converts indentation to match the script editor's indentation settings when saving a script. See also :ref:`text_editor/behavior/indent/type<class_EditorSettings_property_text_editor/behavior/indent/type>`.
  2352. .. rst-class:: classref-item-separator
  2353. ----
  2354. .. _class_EditorSettings_property_text_editor/behavior/files/restore_scripts_on_load:
  2355. .. rst-class:: classref-property
  2356. :ref:`bool<class_bool>` **text_editor/behavior/files/restore_scripts_on_load** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/files/restore_scripts_on_load>`
  2357. If ``true``, reopens scripts that were opened in the last session when the editor is reopened on a given project.
  2358. .. rst-class:: classref-item-separator
  2359. ----
  2360. .. _class_EditorSettings_property_text_editor/behavior/files/trim_final_newlines_on_save:
  2361. .. rst-class:: classref-property
  2362. :ref:`bool<class_bool>` **text_editor/behavior/files/trim_final_newlines_on_save** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/files/trim_final_newlines_on_save>`
  2363. If ``true``, trims all empty newlines after the final newline when saving a script. Final newlines refer to the empty newlines found at the end of files. Since these serve no practical purpose, they can and should be removed to make version control diffs less noisy.
  2364. .. rst-class:: classref-item-separator
  2365. ----
  2366. .. _class_EditorSettings_property_text_editor/behavior/files/trim_trailing_whitespace_on_save:
  2367. .. rst-class:: classref-property
  2368. :ref:`bool<class_bool>` **text_editor/behavior/files/trim_trailing_whitespace_on_save** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/files/trim_trailing_whitespace_on_save>`
  2369. If ``true``, trims trailing whitespace when saving a script. Trailing whitespace refers to tab and space characters placed at the end of lines. Since these serve no practical purpose, they can and should be removed to make version control diffs less noisy.
  2370. .. rst-class:: classref-item-separator
  2371. ----
  2372. .. _class_EditorSettings_property_text_editor/behavior/indent/auto_indent:
  2373. .. rst-class:: classref-property
  2374. :ref:`bool<class_bool>` **text_editor/behavior/indent/auto_indent** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/indent/auto_indent>`
  2375. If ``true``, automatically indents code when pressing the :kbd:`Enter` key based on blocks above the new line.
  2376. .. rst-class:: classref-item-separator
  2377. ----
  2378. .. _class_EditorSettings_property_text_editor/behavior/indent/indent_wrapped_lines:
  2379. .. rst-class:: classref-property
  2380. :ref:`bool<class_bool>` **text_editor/behavior/indent/indent_wrapped_lines** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/indent/indent_wrapped_lines>`
  2381. If ``true``, all wrapped lines are indented to the same amount as the unwrapped line.
  2382. .. rst-class:: classref-item-separator
  2383. ----
  2384. .. _class_EditorSettings_property_text_editor/behavior/indent/size:
  2385. .. rst-class:: classref-property
  2386. :ref:`int<class_int>` **text_editor/behavior/indent/size** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/indent/size>`
  2387. When using tab indentation, determines the length of each tab. When using space indentation, determines how many spaces are inserted when pressing :kbd:`Tab` and when automatic indentation is performed.
  2388. .. rst-class:: classref-item-separator
  2389. ----
  2390. .. _class_EditorSettings_property_text_editor/behavior/indent/type:
  2391. .. rst-class:: classref-property
  2392. :ref:`int<class_int>` **text_editor/behavior/indent/type** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/indent/type>`
  2393. The indentation style to use (tabs or spaces).
  2394. \ **Note:** The :doc:`GDScript style guide <../tutorials/scripting/gdscript/gdscript_styleguide>` recommends using tabs for indentation. It is advised to change this setting only if you need to work on a project that currently uses spaces for indentation.
  2395. .. rst-class:: classref-item-separator
  2396. ----
  2397. .. _class_EditorSettings_property_text_editor/behavior/navigation/custom_word_separators:
  2398. .. rst-class:: classref-property
  2399. :ref:`String<class_String>` **text_editor/behavior/navigation/custom_word_separators** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/custom_word_separators>`
  2400. The characters to consider as word delimiters if :ref:`text_editor/behavior/navigation/use_custom_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/use_custom_word_separators>` is ``true``. This is in addition to default characters if :ref:`text_editor/behavior/navigation/use_default_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/use_default_word_separators>` is ``true``. The characters should be defined without separation, for example ``_♥=``.
  2401. .. rst-class:: classref-item-separator
  2402. ----
  2403. .. _class_EditorSettings_property_text_editor/behavior/navigation/drag_and_drop_selection:
  2404. .. rst-class:: classref-property
  2405. :ref:`bool<class_bool>` **text_editor/behavior/navigation/drag_and_drop_selection** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/drag_and_drop_selection>`
  2406. If ``true``, allows drag-and-dropping text in the script editor to move text. Disable this if you find yourself accidentally drag-and-dropping text in the script editor.
  2407. .. rst-class:: classref-item-separator
  2408. ----
  2409. .. _class_EditorSettings_property_text_editor/behavior/navigation/move_caret_on_right_click:
  2410. .. rst-class:: classref-property
  2411. :ref:`bool<class_bool>` **text_editor/behavior/navigation/move_caret_on_right_click** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/move_caret_on_right_click>`
  2412. If ``true``, the caret will be moved when right-clicking somewhere in the script editor (like when left-clicking or middle-clicking). If ``false``, the caret will only be moved when left-clicking or middle-clicking somewhere.
  2413. .. rst-class:: classref-item-separator
  2414. ----
  2415. .. _class_EditorSettings_property_text_editor/behavior/navigation/open_script_when_connecting_signal_to_existing_method:
  2416. .. rst-class:: classref-property
  2417. :ref:`bool<class_bool>` **text_editor/behavior/navigation/open_script_when_connecting_signal_to_existing_method** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/open_script_when_connecting_signal_to_existing_method>`
  2418. If ``true``, opens the script editor when connecting a signal to an existing script method from the Node dock.
  2419. .. rst-class:: classref-item-separator
  2420. ----
  2421. .. _class_EditorSettings_property_text_editor/behavior/navigation/scroll_past_end_of_file:
  2422. .. rst-class:: classref-property
  2423. :ref:`bool<class_bool>` **text_editor/behavior/navigation/scroll_past_end_of_file** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/scroll_past_end_of_file>`
  2424. If ``true``, allows scrolling past the end of the file.
  2425. .. rst-class:: classref-item-separator
  2426. ----
  2427. .. _class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling:
  2428. .. rst-class:: classref-property
  2429. :ref:`bool<class_bool>` **text_editor/behavior/navigation/smooth_scrolling** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling>`
  2430. If ``true``, enables a smooth scrolling animation when using the mouse wheel to scroll. See :ref:`text_editor/behavior/navigation/v_scroll_speed<class_EditorSettings_property_text_editor/behavior/navigation/v_scroll_speed>` for the speed of this animation.
  2431. \ **Note:** :ref:`text_editor/behavior/navigation/smooth_scrolling<class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling>` currently behaves poorly in projects where :ref:`ProjectSettings.physics/common/physics_ticks_per_second<class_ProjectSettings_property_physics/common/physics_ticks_per_second>` has been increased significantly from its default value (``60``). In this case, it is recommended to disable this setting.
  2432. .. rst-class:: classref-item-separator
  2433. ----
  2434. .. _class_EditorSettings_property_text_editor/behavior/navigation/stay_in_script_editor_on_node_selected:
  2435. .. rst-class:: classref-property
  2436. :ref:`bool<class_bool>` **text_editor/behavior/navigation/stay_in_script_editor_on_node_selected** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/stay_in_script_editor_on_node_selected>`
  2437. If ``true``, prevents automatically switching between the Script and 2D/3D screens when selecting a node in the Scene tree dock.
  2438. .. rst-class:: classref-item-separator
  2439. ----
  2440. .. _class_EditorSettings_property_text_editor/behavior/navigation/use_custom_word_separators:
  2441. .. rst-class:: classref-property
  2442. :ref:`bool<class_bool>` **text_editor/behavior/navigation/use_custom_word_separators** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/use_custom_word_separators>`
  2443. If ``true``, uses the characters in :ref:`text_editor/behavior/navigation/custom_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/custom_word_separators>` as word separators for word navigation and operations. This is in addition to the default characters if :ref:`text_editor/behavior/navigation/use_default_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/use_default_word_separators>` is also enabled. Word navigation and operations include double-clicking on a word or holding :kbd:`Ctrl` (:kbd:`Cmd` on macOS) while pressing :kbd:`left`, :kbd:`right`, :kbd:`backspace`, or :kbd:`delete`.
  2444. .. rst-class:: classref-item-separator
  2445. ----
  2446. .. _class_EditorSettings_property_text_editor/behavior/navigation/use_default_word_separators:
  2447. .. rst-class:: classref-property
  2448. :ref:`bool<class_bool>` **text_editor/behavior/navigation/use_default_word_separators** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/use_default_word_separators>`
  2449. If ``true``, uses the characters in ```!"#$%&'()*+,-./:;<=>?@[\]^`{|}~``, the Unicode General Punctuation table, and the Unicode CJK Punctuation table as word separators for word navigation and operations. If ``false``, a subset of these characters are used and does not include the characters ``<>$~^=+|``. This is in addition to custom characters if :ref:`text_editor/behavior/navigation/use_custom_word_separators<class_EditorSettings_property_text_editor/behavior/navigation/use_custom_word_separators>` is also enabled. These characters are used to determine where a word stops. Word navigation and operations include double-clicking on a word or holding :kbd:`Ctrl` (:kbd:`Cmd` on macOS) while pressing :kbd:`left`, :kbd:`right`, :kbd:`backspace`, or :kbd:`delete`.
  2450. .. rst-class:: classref-item-separator
  2451. ----
  2452. .. _class_EditorSettings_property_text_editor/behavior/navigation/v_scroll_speed:
  2453. .. rst-class:: classref-property
  2454. :ref:`int<class_int>` **text_editor/behavior/navigation/v_scroll_speed** :ref:`🔗<class_EditorSettings_property_text_editor/behavior/navigation/v_scroll_speed>`
  2455. The speed of scrolling in lines per second when :ref:`text_editor/behavior/navigation/smooth_scrolling<class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling>` is ``true``. Higher values make the script scroll by faster when using the mouse wheel.
  2456. \ **Note:** You can hold down :kbd:`Alt` while using the mouse wheel to temporarily scroll 5 times faster.
  2457. .. rst-class:: classref-item-separator
  2458. ----
  2459. .. _class_EditorSettings_property_text_editor/completion/add_node_path_literals:
  2460. .. rst-class:: classref-property
  2461. :ref:`bool<class_bool>` **text_editor/completion/add_node_path_literals** :ref:`🔗<class_EditorSettings_property_text_editor/completion/add_node_path_literals>`
  2462. If ``true``, uses :ref:`NodePath<class_NodePath>` instead of :ref:`String<class_String>` when appropriate for code autocompletion or for drag and dropping object properties into the script editor.
  2463. .. rst-class:: classref-item-separator
  2464. ----
  2465. .. _class_EditorSettings_property_text_editor/completion/add_string_name_literals:
  2466. .. rst-class:: classref-property
  2467. :ref:`bool<class_bool>` **text_editor/completion/add_string_name_literals** :ref:`🔗<class_EditorSettings_property_text_editor/completion/add_string_name_literals>`
  2468. If ``true``, uses :ref:`StringName<class_StringName>` instead of :ref:`String<class_String>` when appropriate for code autocompletion.
  2469. .. rst-class:: classref-item-separator
  2470. ----
  2471. .. _class_EditorSettings_property_text_editor/completion/add_type_hints:
  2472. .. rst-class:: classref-property
  2473. :ref:`bool<class_bool>` **text_editor/completion/add_type_hints** :ref:`🔗<class_EditorSettings_property_text_editor/completion/add_type_hints>`
  2474. If ``true``, adds :doc:`GDScript static typing <../tutorials/scripting/gdscript/static_typing>` hints such as ``-> void`` and ``: int`` when using code autocompletion or when creating onready variables by drag and dropping nodes into the script editor while pressing the :kbd:`Ctrl` key. If ``true``, newly created scripts will also automatically have type hints added to their method parameters and return types.
  2475. .. rst-class:: classref-item-separator
  2476. ----
  2477. .. _class_EditorSettings_property_text_editor/completion/auto_brace_complete:
  2478. .. rst-class:: classref-property
  2479. :ref:`bool<class_bool>` **text_editor/completion/auto_brace_complete** :ref:`🔗<class_EditorSettings_property_text_editor/completion/auto_brace_complete>`
  2480. If ``true``, automatically completes braces when making use of code completion.
  2481. .. rst-class:: classref-item-separator
  2482. ----
  2483. .. _class_EditorSettings_property_text_editor/completion/code_complete_delay:
  2484. .. rst-class:: classref-property
  2485. :ref:`float<class_float>` **text_editor/completion/code_complete_delay** :ref:`🔗<class_EditorSettings_property_text_editor/completion/code_complete_delay>`
  2486. The delay in seconds after which autocompletion suggestions should be displayed when the user stops typing.
  2487. .. rst-class:: classref-item-separator
  2488. ----
  2489. .. _class_EditorSettings_property_text_editor/completion/code_complete_enabled:
  2490. .. rst-class:: classref-property
  2491. :ref:`bool<class_bool>` **text_editor/completion/code_complete_enabled** :ref:`🔗<class_EditorSettings_property_text_editor/completion/code_complete_enabled>`
  2492. If ``true``, code completion will be triggered automatically after :ref:`text_editor/completion/code_complete_delay<class_EditorSettings_property_text_editor/completion/code_complete_delay>`. Even if ``false``, code completion can be triggered manually with the ``ui_text_completion_query`` action (by default :kbd:`Ctrl + Space` or :kbd:`Cmd + Space` on macOS).
  2493. .. rst-class:: classref-item-separator
  2494. ----
  2495. .. _class_EditorSettings_property_text_editor/completion/colorize_suggestions:
  2496. .. rst-class:: classref-property
  2497. :ref:`bool<class_bool>` **text_editor/completion/colorize_suggestions** :ref:`🔗<class_EditorSettings_property_text_editor/completion/colorize_suggestions>`
  2498. If ``true`` enables the coloring for some items in the autocompletion suggestions, like vector components.
  2499. .. rst-class:: classref-item-separator
  2500. ----
  2501. .. _class_EditorSettings_property_text_editor/completion/complete_file_paths:
  2502. .. rst-class:: classref-property
  2503. :ref:`bool<class_bool>` **text_editor/completion/complete_file_paths** :ref:`🔗<class_EditorSettings_property_text_editor/completion/complete_file_paths>`
  2504. If ``true``, provides autocompletion suggestions for file paths in methods such as ``load()`` and ``preload()``.
  2505. .. rst-class:: classref-item-separator
  2506. ----
  2507. .. _class_EditorSettings_property_text_editor/completion/idle_parse_delay:
  2508. .. rst-class:: classref-property
  2509. :ref:`float<class_float>` **text_editor/completion/idle_parse_delay** :ref:`🔗<class_EditorSettings_property_text_editor/completion/idle_parse_delay>`
  2510. The delay in seconds after which the script editor should check for errors when the user stops typing.
  2511. .. rst-class:: classref-item-separator
  2512. ----
  2513. .. _class_EditorSettings_property_text_editor/completion/put_callhint_tooltip_below_current_line:
  2514. .. rst-class:: classref-property
  2515. :ref:`bool<class_bool>` **text_editor/completion/put_callhint_tooltip_below_current_line** :ref:`🔗<class_EditorSettings_property_text_editor/completion/put_callhint_tooltip_below_current_line>`
  2516. If ``true``, the code completion tooltip will appear below the current line unless there is no space on screen below the current line. If ``false``, the code completion tooltip will appear above the current line.
  2517. .. rst-class:: classref-item-separator
  2518. ----
  2519. .. _class_EditorSettings_property_text_editor/completion/use_single_quotes:
  2520. .. rst-class:: classref-property
  2521. :ref:`bool<class_bool>` **text_editor/completion/use_single_quotes** :ref:`🔗<class_EditorSettings_property_text_editor/completion/use_single_quotes>`
  2522. If ``true``, performs string autocompletion with single quotes. If ``false``, performs string autocompletion with double quotes (which matches the :doc:`GDScript style guide <../tutorials/scripting/gdscript/gdscript_styleguide>`).
  2523. .. rst-class:: classref-item-separator
  2524. ----
  2525. .. _class_EditorSettings_property_text_editor/help/class_reference_examples:
  2526. .. rst-class:: classref-property
  2527. :ref:`int<class_int>` **text_editor/help/class_reference_examples** :ref:`🔗<class_EditorSettings_property_text_editor/help/class_reference_examples>`
  2528. Controls which multi-line code blocks should be displayed in the editor help. This setting does not affect single-line code literals in the editor help.
  2529. .. rst-class:: classref-item-separator
  2530. ----
  2531. .. _class_EditorSettings_property_text_editor/help/help_font_size:
  2532. .. rst-class:: classref-property
  2533. :ref:`int<class_int>` **text_editor/help/help_font_size** :ref:`🔗<class_EditorSettings_property_text_editor/help/help_font_size>`
  2534. The font size to use for the editor help (built-in class reference).
  2535. .. rst-class:: classref-item-separator
  2536. ----
  2537. .. _class_EditorSettings_property_text_editor/help/help_source_font_size:
  2538. .. rst-class:: classref-property
  2539. :ref:`int<class_int>` **text_editor/help/help_source_font_size** :ref:`🔗<class_EditorSettings_property_text_editor/help/help_source_font_size>`
  2540. The font size to use for code samples in the editor help (built-in class reference).
  2541. .. rst-class:: classref-item-separator
  2542. ----
  2543. .. _class_EditorSettings_property_text_editor/help/help_title_font_size:
  2544. .. rst-class:: classref-property
  2545. :ref:`int<class_int>` **text_editor/help/help_title_font_size** :ref:`🔗<class_EditorSettings_property_text_editor/help/help_title_font_size>`
  2546. The font size to use for headings in the editor help (built-in class reference).
  2547. .. rst-class:: classref-item-separator
  2548. ----
  2549. .. _class_EditorSettings_property_text_editor/help/show_help_index:
  2550. .. rst-class:: classref-property
  2551. :ref:`bool<class_bool>` **text_editor/help/show_help_index** :ref:`🔗<class_EditorSettings_property_text_editor/help/show_help_index>`
  2552. If ``true``, displays a table of contents at the left of the editor help (at the location where the members overview would appear when editing a script).
  2553. .. rst-class:: classref-item-separator
  2554. ----
  2555. .. _class_EditorSettings_property_text_editor/script_list/show_members_overview:
  2556. .. rst-class:: classref-property
  2557. :ref:`bool<class_bool>` **text_editor/script_list/show_members_overview** :ref:`🔗<class_EditorSettings_property_text_editor/script_list/show_members_overview>`
  2558. If ``true``, displays an overview of the current script's member variables and functions at the left of the script editor. See also :ref:`text_editor/script_list/sort_members_outline_alphabetically<class_EditorSettings_property_text_editor/script_list/sort_members_outline_alphabetically>`.
  2559. .. rst-class:: classref-item-separator
  2560. ----
  2561. .. _class_EditorSettings_property_text_editor/script_list/sort_members_outline_alphabetically:
  2562. .. rst-class:: classref-property
  2563. :ref:`bool<class_bool>` **text_editor/script_list/sort_members_outline_alphabetically** :ref:`🔗<class_EditorSettings_property_text_editor/script_list/sort_members_outline_alphabetically>`
  2564. If ``true``, sorts the members outline (located at the left of the script editor) using alphabetical order. If ``false``, sorts the members outline depending on the order in which members are found in the script.
  2565. \ **Note:** Only effective if :ref:`text_editor/script_list/show_members_overview<class_EditorSettings_property_text_editor/script_list/show_members_overview>` is ``true``.
  2566. .. rst-class:: classref-item-separator
  2567. ----
  2568. .. _class_EditorSettings_property_text_editor/theme/color_theme:
  2569. .. rst-class:: classref-property
  2570. :ref:`String<class_String>` **text_editor/theme/color_theme** :ref:`🔗<class_EditorSettings_property_text_editor/theme/color_theme>`
  2571. The syntax theme to use in the script editor.
  2572. You can save your own syntax theme from your current settings by using **File > Theme > Save As...** at the top of the script editor. The syntax theme will then be available locally in the list of color themes.
  2573. You can find additional syntax themes to install in the `godot-syntax-themes <https://github.com/godotengine/godot-syntax-themes>`__ repository.
  2574. .. rst-class:: classref-item-separator
  2575. ----
  2576. .. _class_EditorSettings_property_text_editor/theme/highlighting/background_color:
  2577. .. rst-class:: classref-property
  2578. :ref:`Color<class_Color>` **text_editor/theme/highlighting/background_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/background_color>`
  2579. The script editor's background color. If set to a translucent color, the editor theme's base color will be visible behind.
  2580. .. rst-class:: classref-item-separator
  2581. ----
  2582. .. _class_EditorSettings_property_text_editor/theme/highlighting/base_type_color:
  2583. .. rst-class:: classref-property
  2584. :ref:`Color<class_Color>` **text_editor/theme/highlighting/base_type_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/base_type_color>`
  2585. The script editor's base type color (used for types like :ref:`Vector2<class_Vector2>`, :ref:`Vector3<class_Vector3>`, :ref:`Color<class_Color>`, ...).
  2586. .. rst-class:: classref-item-separator
  2587. ----
  2588. .. _class_EditorSettings_property_text_editor/theme/highlighting/bookmark_color:
  2589. .. rst-class:: classref-property
  2590. :ref:`Color<class_Color>` **text_editor/theme/highlighting/bookmark_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/bookmark_color>`
  2591. The script editor's bookmark icon color (displayed in the gutter).
  2592. .. rst-class:: classref-item-separator
  2593. ----
  2594. .. _class_EditorSettings_property_text_editor/theme/highlighting/brace_mismatch_color:
  2595. .. rst-class:: classref-property
  2596. :ref:`Color<class_Color>` **text_editor/theme/highlighting/brace_mismatch_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/brace_mismatch_color>`
  2597. The script editor's brace mismatch color. Used when the caret is currently on a mismatched brace, parenthesis or bracket character.
  2598. .. rst-class:: classref-item-separator
  2599. ----
  2600. .. _class_EditorSettings_property_text_editor/theme/highlighting/breakpoint_color:
  2601. .. rst-class:: classref-property
  2602. :ref:`Color<class_Color>` **text_editor/theme/highlighting/breakpoint_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/breakpoint_color>`
  2603. The script editor's breakpoint icon color (displayed in the gutter).
  2604. .. rst-class:: classref-item-separator
  2605. ----
  2606. .. _class_EditorSettings_property_text_editor/theme/highlighting/caret_background_color:
  2607. .. rst-class:: classref-property
  2608. :ref:`Color<class_Color>` **text_editor/theme/highlighting/caret_background_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/caret_background_color>`
  2609. The script editor's caret background color.
  2610. \ **Note:** This setting has no effect as it's currently unused.
  2611. .. rst-class:: classref-item-separator
  2612. ----
  2613. .. _class_EditorSettings_property_text_editor/theme/highlighting/caret_color:
  2614. .. rst-class:: classref-property
  2615. :ref:`Color<class_Color>` **text_editor/theme/highlighting/caret_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/caret_color>`
  2616. The script editor's caret color.
  2617. .. rst-class:: classref-item-separator
  2618. ----
  2619. .. _class_EditorSettings_property_text_editor/theme/highlighting/code_folding_color:
  2620. .. rst-class:: classref-property
  2621. :ref:`Color<class_Color>` **text_editor/theme/highlighting/code_folding_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/code_folding_color>`
  2622. The script editor's color for the code folding icon (displayed in the gutter).
  2623. .. rst-class:: classref-item-separator
  2624. ----
  2625. .. _class_EditorSettings_property_text_editor/theme/highlighting/comment_color:
  2626. .. rst-class:: classref-property
  2627. :ref:`Color<class_Color>` **text_editor/theme/highlighting/comment_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/comment_color>`
  2628. The script editor's comment color.
  2629. \ **Note:** In GDScript, unlike Python, multiline strings are not considered to be comments, and will use the string highlighting color instead.
  2630. .. rst-class:: classref-item-separator
  2631. ----
  2632. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_background_color:
  2633. .. rst-class:: classref-property
  2634. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_background_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/completion_background_color>`
  2635. The script editor's autocompletion box background color.
  2636. .. rst-class:: classref-item-separator
  2637. ----
  2638. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_existing_color:
  2639. .. rst-class:: classref-property
  2640. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_existing_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/completion_existing_color>`
  2641. The script editor's autocompletion box background color to highlight existing characters in the completion results. This should be a translucent color so that :ref:`text_editor/theme/highlighting/completion_selected_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_selected_color>` can be seen behind.
  2642. .. rst-class:: classref-item-separator
  2643. ----
  2644. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_font_color:
  2645. .. rst-class:: classref-property
  2646. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_font_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/completion_font_color>`
  2647. The script editor's autocompletion box text color.
  2648. .. rst-class:: classref-item-separator
  2649. ----
  2650. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_color:
  2651. .. rst-class:: classref-property
  2652. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_scroll_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_color>`
  2653. The script editor's autocompletion box scroll bar color.
  2654. .. rst-class:: classref-item-separator
  2655. ----
  2656. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_hovered_color:
  2657. .. rst-class:: classref-property
  2658. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_scroll_hovered_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_hovered_color>`
  2659. The script editor's autocompletion box scroll bar color when hovered or pressed with the mouse.
  2660. .. rst-class:: classref-item-separator
  2661. ----
  2662. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_selected_color:
  2663. .. rst-class:: classref-property
  2664. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_selected_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/completion_selected_color>`
  2665. The script editor's autocompletion box background color for the currently selected line.
  2666. .. rst-class:: classref-item-separator
  2667. ----
  2668. .. _class_EditorSettings_property_text_editor/theme/highlighting/control_flow_keyword_color:
  2669. .. rst-class:: classref-property
  2670. :ref:`Color<class_Color>` **text_editor/theme/highlighting/control_flow_keyword_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/control_flow_keyword_color>`
  2671. The script editor's control flow keyword color (used for keywords like ``if``, ``for``, ``return``, ...).
  2672. .. rst-class:: classref-item-separator
  2673. ----
  2674. .. _class_EditorSettings_property_text_editor/theme/highlighting/current_line_color:
  2675. .. rst-class:: classref-property
  2676. :ref:`Color<class_Color>` **text_editor/theme/highlighting/current_line_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/current_line_color>`
  2677. The script editor's background color for the line the caret is currently on. This should be set to a translucent color so that it can display on top of other line color modifiers such as :ref:`text_editor/theme/highlighting/mark_color<class_EditorSettings_property_text_editor/theme/highlighting/mark_color>`.
  2678. .. rst-class:: classref-item-separator
  2679. ----
  2680. .. _class_EditorSettings_property_text_editor/theme/highlighting/doc_comment_color:
  2681. .. rst-class:: classref-property
  2682. :ref:`Color<class_Color>` **text_editor/theme/highlighting/doc_comment_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/doc_comment_color>`
  2683. The script editor's documentation comment color. In GDScript, this is used for comments starting with ``##``. In C#, this is used for comments starting with ``///`` or ``/**``.
  2684. .. rst-class:: classref-item-separator
  2685. ----
  2686. .. _class_EditorSettings_property_text_editor/theme/highlighting/engine_type_color:
  2687. .. rst-class:: classref-property
  2688. :ref:`Color<class_Color>` **text_editor/theme/highlighting/engine_type_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/engine_type_color>`
  2689. The script editor's engine type color (:ref:`Vector2<class_Vector2>`, :ref:`Vector3<class_Vector3>`, :ref:`Color<class_Color>`, ...).
  2690. .. rst-class:: classref-item-separator
  2691. ----
  2692. .. _class_EditorSettings_property_text_editor/theme/highlighting/executing_line_color:
  2693. .. rst-class:: classref-property
  2694. :ref:`Color<class_Color>` **text_editor/theme/highlighting/executing_line_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/executing_line_color>`
  2695. The script editor's color for the debugger's executing line icon (displayed in the gutter).
  2696. .. rst-class:: classref-item-separator
  2697. ----
  2698. .. _class_EditorSettings_property_text_editor/theme/highlighting/folded_code_region_color:
  2699. .. rst-class:: classref-property
  2700. :ref:`Color<class_Color>` **text_editor/theme/highlighting/folded_code_region_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/folded_code_region_color>`
  2701. The script editor's background line highlighting color for folded code region.
  2702. .. rst-class:: classref-item-separator
  2703. ----
  2704. .. _class_EditorSettings_property_text_editor/theme/highlighting/function_color:
  2705. .. rst-class:: classref-property
  2706. :ref:`Color<class_Color>` **text_editor/theme/highlighting/function_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/function_color>`
  2707. The script editor's function call color.
  2708. \ **Note:** When using the GDScript syntax highlighter, this is replaced by the function definition color configured in the syntax theme for function definitions (e.g. ``func _ready():``).
  2709. .. rst-class:: classref-item-separator
  2710. ----
  2711. .. _class_EditorSettings_property_text_editor/theme/highlighting/keyword_color:
  2712. .. rst-class:: classref-property
  2713. :ref:`Color<class_Color>` **text_editor/theme/highlighting/keyword_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/keyword_color>`
  2714. The script editor's non-control flow keyword color (used for keywords like ``var``, ``func``, ``extends``, ...).
  2715. .. rst-class:: classref-item-separator
  2716. ----
  2717. .. _class_EditorSettings_property_text_editor/theme/highlighting/line_length_guideline_color:
  2718. .. rst-class:: classref-property
  2719. :ref:`Color<class_Color>` **text_editor/theme/highlighting/line_length_guideline_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/line_length_guideline_color>`
  2720. The script editor's color for the line length guideline. The "hard" line length guideline will be drawn with this color, whereas the "soft" line length guideline will be drawn with half of its opacity.
  2721. .. rst-class:: classref-item-separator
  2722. ----
  2723. .. _class_EditorSettings_property_text_editor/theme/highlighting/line_number_color:
  2724. .. rst-class:: classref-property
  2725. :ref:`Color<class_Color>` **text_editor/theme/highlighting/line_number_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/line_number_color>`
  2726. The script editor's color for line numbers. See also :ref:`text_editor/theme/highlighting/safe_line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color>`.
  2727. .. rst-class:: classref-item-separator
  2728. ----
  2729. .. _class_EditorSettings_property_text_editor/theme/highlighting/mark_color:
  2730. .. rst-class:: classref-property
  2731. :ref:`Color<class_Color>` **text_editor/theme/highlighting/mark_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/mark_color>`
  2732. The script editor's background color for lines with errors. This should be set to a translucent color so that it can display on top of other line color modifiers such as :ref:`text_editor/theme/highlighting/current_line_color<class_EditorSettings_property_text_editor/theme/highlighting/current_line_color>`.
  2733. .. rst-class:: classref-item-separator
  2734. ----
  2735. .. _class_EditorSettings_property_text_editor/theme/highlighting/member_variable_color:
  2736. .. rst-class:: classref-property
  2737. :ref:`Color<class_Color>` **text_editor/theme/highlighting/member_variable_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/member_variable_color>`
  2738. The script editor's color for member variables on objects (e.g. ``self.some_property``).
  2739. \ **Note:** This color is not used for local variable declaration and access.
  2740. .. rst-class:: classref-item-separator
  2741. ----
  2742. .. _class_EditorSettings_property_text_editor/theme/highlighting/number_color:
  2743. .. rst-class:: classref-property
  2744. :ref:`Color<class_Color>` **text_editor/theme/highlighting/number_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/number_color>`
  2745. The script editor's color for numbers (integer and floating-point).
  2746. .. rst-class:: classref-item-separator
  2747. ----
  2748. .. _class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color:
  2749. .. rst-class:: classref-property
  2750. :ref:`Color<class_Color>` **text_editor/theme/highlighting/safe_line_number_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color>`
  2751. The script editor's color for type-safe line numbers. See also :ref:`text_editor/theme/highlighting/line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/line_number_color>`.
  2752. \ **Note:** Only displayed if :ref:`text_editor/appearance/gutters/highlight_type_safe_lines<class_EditorSettings_property_text_editor/appearance/gutters/highlight_type_safe_lines>` is ``true``.
  2753. .. rst-class:: classref-item-separator
  2754. ----
  2755. .. _class_EditorSettings_property_text_editor/theme/highlighting/search_result_border_color:
  2756. .. rst-class:: classref-property
  2757. :ref:`Color<class_Color>` **text_editor/theme/highlighting/search_result_border_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/search_result_border_color>`
  2758. The script editor's color for the border of search results. This border helps bring further attention to the search result. Set this color's opacity to 0 to disable the border.
  2759. .. rst-class:: classref-item-separator
  2760. ----
  2761. .. _class_EditorSettings_property_text_editor/theme/highlighting/search_result_color:
  2762. .. rst-class:: classref-property
  2763. :ref:`Color<class_Color>` **text_editor/theme/highlighting/search_result_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/search_result_color>`
  2764. The script editor's background color for search results.
  2765. .. rst-class:: classref-item-separator
  2766. ----
  2767. .. _class_EditorSettings_property_text_editor/theme/highlighting/selection_color:
  2768. .. rst-class:: classref-property
  2769. :ref:`Color<class_Color>` **text_editor/theme/highlighting/selection_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/selection_color>`
  2770. The script editor's background color for the currently selected text.
  2771. .. rst-class:: classref-item-separator
  2772. ----
  2773. .. _class_EditorSettings_property_text_editor/theme/highlighting/string_color:
  2774. .. rst-class:: classref-property
  2775. :ref:`Color<class_Color>` **text_editor/theme/highlighting/string_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/string_color>`
  2776. The script editor's color for strings (single-line and multi-line).
  2777. .. rst-class:: classref-item-separator
  2778. ----
  2779. .. _class_EditorSettings_property_text_editor/theme/highlighting/symbol_color:
  2780. .. rst-class:: classref-property
  2781. :ref:`Color<class_Color>` **text_editor/theme/highlighting/symbol_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/symbol_color>`
  2782. The script editor's color for operators (``( ) [ ] { } + - * /``, ...).
  2783. .. rst-class:: classref-item-separator
  2784. ----
  2785. .. _class_EditorSettings_property_text_editor/theme/highlighting/text_color:
  2786. .. rst-class:: classref-property
  2787. :ref:`Color<class_Color>` **text_editor/theme/highlighting/text_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/text_color>`
  2788. The script editor's color for text not highlighted by any syntax highlighting rule.
  2789. .. rst-class:: classref-item-separator
  2790. ----
  2791. .. _class_EditorSettings_property_text_editor/theme/highlighting/text_selected_color:
  2792. .. rst-class:: classref-property
  2793. :ref:`Color<class_Color>` **text_editor/theme/highlighting/text_selected_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/text_selected_color>`
  2794. The script editor's background color for text. This should be set to a translucent color so that it can display on top of other line color modifiers such as :ref:`text_editor/theme/highlighting/current_line_color<class_EditorSettings_property_text_editor/theme/highlighting/current_line_color>`.
  2795. .. rst-class:: classref-item-separator
  2796. ----
  2797. .. _class_EditorSettings_property_text_editor/theme/highlighting/user_type_color:
  2798. .. rst-class:: classref-property
  2799. :ref:`Color<class_Color>` **text_editor/theme/highlighting/user_type_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/user_type_color>`
  2800. The script editor's color for user-defined types (using ``class_name``).
  2801. .. rst-class:: classref-item-separator
  2802. ----
  2803. .. _class_EditorSettings_property_text_editor/theme/highlighting/word_highlighted_color:
  2804. .. rst-class:: classref-property
  2805. :ref:`Color<class_Color>` **text_editor/theme/highlighting/word_highlighted_color** :ref:`🔗<class_EditorSettings_property_text_editor/theme/highlighting/word_highlighted_color>`
  2806. The script editor's color for words highlighted by selecting them. Only visible if :ref:`text_editor/appearance/caret/highlight_all_occurrences<class_EditorSettings_property_text_editor/appearance/caret/highlight_all_occurrences>` is ``true``.
  2807. .. rst-class:: classref-section-separator
  2808. ----
  2809. .. rst-class:: classref-descriptions-group
  2810. Method Descriptions
  2811. -------------------
  2812. .. _class_EditorSettings_method_add_property_info:
  2813. .. rst-class:: classref-method
  2814. |void| **add_property_info**\ (\ info\: :ref:`Dictionary<class_Dictionary>`\ ) :ref:`🔗<class_EditorSettings_method_add_property_info>`
  2815. Adds a custom property info to a property. The dictionary must contain:
  2816. - ``name``: :ref:`String<class_String>` (the name of the property)
  2817. - ``type``: :ref:`int<class_int>` (see :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>`)
  2818. - optionally ``hint``: :ref:`int<class_int>` (see :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>`) and ``hint_string``: :ref:`String<class_String>`\
  2819. \ **Example:**\
  2820. .. tabs::
  2821. .. code-tab:: gdscript
  2822. var settings = EditorInterface.get_editor_settings()
  2823. settings.set("category/property_name", 0)
  2824. var property_info = {
  2825. "name": "category/property_name",
  2826. "type": TYPE_INT,
  2827. "hint": PROPERTY_HINT_ENUM,
  2828. "hint_string": "one,two,three"
  2829. }
  2830. settings.add_property_info(property_info)
  2831. .. code-tab:: csharp
  2832. var settings = GetEditorInterface().GetEditorSettings();
  2833. settings.Set("category/property_name", 0);
  2834. var propertyInfo = new Godot.Collections.Dictionary
  2835. {
  2836. {"name", "category/propertyName"},
  2837. {"type", Variant.Type.Int},
  2838. {"hint", PropertyHint.Enum},
  2839. {"hint_string", "one,two,three"}
  2840. };
  2841. settings.AddPropertyInfo(propertyInfo);
  2842. .. rst-class:: classref-item-separator
  2843. ----
  2844. .. _class_EditorSettings_method_check_changed_settings_in_group:
  2845. .. rst-class:: classref-method
  2846. :ref:`bool<class_bool>` **check_changed_settings_in_group**\ (\ setting_prefix\: :ref:`String<class_String>`\ ) |const| :ref:`🔗<class_EditorSettings_method_check_changed_settings_in_group>`
  2847. Checks if any settings with the prefix ``setting_prefix`` exist in the set of changed settings. See also :ref:`get_changed_settings<class_EditorSettings_method_get_changed_settings>`.
  2848. .. rst-class:: classref-item-separator
  2849. ----
  2850. .. _class_EditorSettings_method_erase:
  2851. .. rst-class:: classref-method
  2852. |void| **erase**\ (\ property\: :ref:`String<class_String>`\ ) :ref:`🔗<class_EditorSettings_method_erase>`
  2853. Erases the setting whose name is specified by ``property``.
  2854. .. rst-class:: classref-item-separator
  2855. ----
  2856. .. _class_EditorSettings_method_get_changed_settings:
  2857. .. rst-class:: classref-method
  2858. :ref:`PackedStringArray<class_PackedStringArray>` **get_changed_settings**\ (\ ) |const| :ref:`🔗<class_EditorSettings_method_get_changed_settings>`
  2859. Gets an array of the settings which have been changed since the last save. Note that internally ``changed_settings`` is cleared after a successful save, so generally the most appropriate place to use this method is when processing :ref:`NOTIFICATION_EDITOR_SETTINGS_CHANGED<class_EditorSettings_constant_NOTIFICATION_EDITOR_SETTINGS_CHANGED>`.
  2860. .. rst-class:: classref-item-separator
  2861. ----
  2862. .. _class_EditorSettings_method_get_favorites:
  2863. .. rst-class:: classref-method
  2864. :ref:`PackedStringArray<class_PackedStringArray>` **get_favorites**\ (\ ) |const| :ref:`🔗<class_EditorSettings_method_get_favorites>`
  2865. Returns the list of favorite files and directories for this project.
  2866. .. rst-class:: classref-item-separator
  2867. ----
  2868. .. _class_EditorSettings_method_get_project_metadata:
  2869. .. rst-class:: classref-method
  2870. :ref:`Variant<class_Variant>` **get_project_metadata**\ (\ section\: :ref:`String<class_String>`, key\: :ref:`String<class_String>`, default\: :ref:`Variant<class_Variant>` = null\ ) |const| :ref:`🔗<class_EditorSettings_method_get_project_metadata>`
  2871. Returns project-specific metadata for the ``section`` and ``key`` specified. If the metadata doesn't exist, ``default`` will be returned instead. See also :ref:`set_project_metadata<class_EditorSettings_method_set_project_metadata>`.
  2872. .. rst-class:: classref-item-separator
  2873. ----
  2874. .. _class_EditorSettings_method_get_recent_dirs:
  2875. .. rst-class:: classref-method
  2876. :ref:`PackedStringArray<class_PackedStringArray>` **get_recent_dirs**\ (\ ) |const| :ref:`🔗<class_EditorSettings_method_get_recent_dirs>`
  2877. Returns the list of recently visited folders in the file dialog for this project.
  2878. .. rst-class:: classref-item-separator
  2879. ----
  2880. .. _class_EditorSettings_method_get_setting:
  2881. .. rst-class:: classref-method
  2882. :ref:`Variant<class_Variant>` **get_setting**\ (\ name\: :ref:`String<class_String>`\ ) |const| :ref:`🔗<class_EditorSettings_method_get_setting>`
  2883. Returns the value of the setting specified by ``name``. This is equivalent to using :ref:`Object.get<class_Object_method_get>` on the EditorSettings instance.
  2884. .. rst-class:: classref-item-separator
  2885. ----
  2886. .. _class_EditorSettings_method_has_setting:
  2887. .. rst-class:: classref-method
  2888. :ref:`bool<class_bool>` **has_setting**\ (\ name\: :ref:`String<class_String>`\ ) |const| :ref:`🔗<class_EditorSettings_method_has_setting>`
  2889. Returns ``true`` if the setting specified by ``name`` exists, ``false`` otherwise.
  2890. .. rst-class:: classref-item-separator
  2891. ----
  2892. .. _class_EditorSettings_method_mark_setting_changed:
  2893. .. rst-class:: classref-method
  2894. |void| **mark_setting_changed**\ (\ setting\: :ref:`String<class_String>`\ ) :ref:`🔗<class_EditorSettings_method_mark_setting_changed>`
  2895. Marks the passed editor setting as being changed, see :ref:`get_changed_settings<class_EditorSettings_method_get_changed_settings>`. Only settings which exist (see :ref:`has_setting<class_EditorSettings_method_has_setting>`) will be accepted.
  2896. .. rst-class:: classref-item-separator
  2897. ----
  2898. .. _class_EditorSettings_method_set_builtin_action_override:
  2899. .. rst-class:: classref-method
  2900. |void| **set_builtin_action_override**\ (\ name\: :ref:`String<class_String>`, actions_list\: :ref:`Array<class_Array>`\[:ref:`InputEvent<class_InputEvent>`\]\ ) :ref:`🔗<class_EditorSettings_method_set_builtin_action_override>`
  2901. Overrides the built-in editor action ``name`` with the input actions defined in ``actions_list``.
  2902. .. rst-class:: classref-item-separator
  2903. ----
  2904. .. _class_EditorSettings_method_set_favorites:
  2905. .. rst-class:: classref-method
  2906. |void| **set_favorites**\ (\ dirs\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) :ref:`🔗<class_EditorSettings_method_set_favorites>`
  2907. Sets the list of favorite files and directories for this project.
  2908. .. rst-class:: classref-item-separator
  2909. ----
  2910. .. _class_EditorSettings_method_set_initial_value:
  2911. .. rst-class:: classref-method
  2912. |void| **set_initial_value**\ (\ name\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`, update_current\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_EditorSettings_method_set_initial_value>`
  2913. Sets the initial value of the setting specified by ``name`` to ``value``. This is used to provide a value for the Revert button in the Editor Settings. If ``update_current`` is true, the current value of the setting will be set to ``value`` as well.
  2914. .. rst-class:: classref-item-separator
  2915. ----
  2916. .. _class_EditorSettings_method_set_project_metadata:
  2917. .. rst-class:: classref-method
  2918. |void| **set_project_metadata**\ (\ section\: :ref:`String<class_String>`, key\: :ref:`String<class_String>`, data\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_EditorSettings_method_set_project_metadata>`
  2919. Sets project-specific metadata with the ``section``, ``key`` and ``data`` specified. This metadata is stored outside the project folder and therefore won't be checked into version control. See also :ref:`get_project_metadata<class_EditorSettings_method_get_project_metadata>`.
  2920. .. rst-class:: classref-item-separator
  2921. ----
  2922. .. _class_EditorSettings_method_set_recent_dirs:
  2923. .. rst-class:: classref-method
  2924. |void| **set_recent_dirs**\ (\ dirs\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) :ref:`🔗<class_EditorSettings_method_set_recent_dirs>`
  2925. Sets the list of recently visited folders in the file dialog for this project.
  2926. .. rst-class:: classref-item-separator
  2927. ----
  2928. .. _class_EditorSettings_method_set_setting:
  2929. .. rst-class:: classref-method
  2930. |void| **set_setting**\ (\ name\: :ref:`String<class_String>`, value\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_EditorSettings_method_set_setting>`
  2931. Sets the ``value`` of the setting specified by ``name``. This is equivalent to using :ref:`Object.set<class_Object_method_set>` on the EditorSettings instance.
  2932. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  2933. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  2934. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  2935. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  2936. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  2937. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  2938. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  2939. .. |void| replace:: :abbr:`void (No return value.)`