class_editorsettings.rst 251 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/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/start_create_dialog_fully_expanded<class_EditorSettings_property_docks/scene_tree/start_create_dialog_fully_expanded>` |
  64. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_color1<class_EditorSettings_property_editors/2d/bone_color1>` |
  66. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_color2<class_EditorSettings_property_editors/2d/bone_color2>` |
  68. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_ik_color<class_EditorSettings_property_editors/2d/bone_ik_color>` |
  70. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_outline_color<class_EditorSettings_property_editors/2d/bone_outline_color>` |
  72. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`float<class_float>` | :ref:`editors/2d/bone_outline_size<class_EditorSettings_property_editors/2d/bone_outline_size>` |
  74. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`Color<class_Color>` | :ref:`editors/2d/bone_selected_color<class_EditorSettings_property_editors/2d/bone_selected_color>` |
  76. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`float<class_float>` | :ref:`editors/2d/bone_width<class_EditorSettings_property_editors/2d/bone_width>` |
  78. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`Color<class_Color>` | :ref:`editors/2d/grid_color<class_EditorSettings_property_editors/2d/grid_color>` |
  80. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`Color<class_Color>` | :ref:`editors/2d/guides_color<class_EditorSettings_property_editors/2d/guides_color>` |
  82. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`Color<class_Color>` | :ref:`editors/2d/smart_snapping_line_color<class_EditorSettings_property_editors/2d/smart_snapping_line_color>` |
  84. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`bool<class_bool>` | :ref:`editors/2d/use_integer_zoom_by_default<class_EditorSettings_property_editors/2d/use_integer_zoom_by_default>` |
  86. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`Color<class_Color>` | :ref:`editors/2d/viewport_border_color<class_EditorSettings_property_editors/2d/viewport_border_color>` |
  88. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`float<class_float>` | :ref:`editors/3d/default_fov<class_EditorSettings_property_editors/3d/default_fov>` |
  90. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`float<class_float>` | :ref:`editors/3d/default_z_far<class_EditorSettings_property_editors/3d/default_z_far>` |
  92. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`float<class_float>` | :ref:`editors/3d/default_z_near<class_EditorSettings_property_editors/3d/default_z_near>` |
  94. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`int<class_int>` | :ref:`editors/3d/freelook/freelook_activation_modifier<class_EditorSettings_property_editors/3d/freelook/freelook_activation_modifier>` |
  96. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`float<class_float>` | :ref:`editors/3d/freelook/freelook_base_speed<class_EditorSettings_property_editors/3d/freelook/freelook_base_speed>` |
  98. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`float<class_float>` | :ref:`editors/3d/freelook/freelook_inertia<class_EditorSettings_property_editors/3d/freelook/freelook_inertia>` |
  100. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`int<class_int>` | :ref:`editors/3d/freelook/freelook_navigation_scheme<class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme>` |
  102. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`float<class_float>` | :ref:`editors/3d/freelook/freelook_sensitivity<class_EditorSettings_property_editors/3d/freelook/freelook_sensitivity>` |
  104. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`bool<class_bool>` | :ref:`editors/3d/freelook/freelook_speed_zoom_link<class_EditorSettings_property_editors/3d/freelook/freelook_speed_zoom_link>` |
  106. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`float<class_float>` | :ref:`editors/3d/grid_division_level_bias<class_EditorSettings_property_editors/3d/grid_division_level_bias>` |
  108. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | :ref:`int<class_int>` | :ref:`editors/3d/grid_division_level_max<class_EditorSettings_property_editors/3d/grid_division_level_max>` |
  110. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`int<class_int>` | :ref:`editors/3d/grid_division_level_min<class_EditorSettings_property_editors/3d/grid_division_level_min>` |
  112. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`int<class_int>` | :ref:`editors/3d/grid_size<class_EditorSettings_property_editors/3d/grid_size>` |
  114. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`editors/3d/grid_xy_plane<class_EditorSettings_property_editors/3d/grid_xy_plane>` |
  116. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | :ref:`bool<class_bool>` | :ref:`editors/3d/grid_xz_plane<class_EditorSettings_property_editors/3d/grid_xz_plane>` |
  118. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`bool<class_bool>` | :ref:`editors/3d/grid_yz_plane<class_EditorSettings_property_editors/3d/grid_yz_plane>` |
  120. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/emulate_3_button_mouse<class_EditorSettings_property_editors/3d/navigation/emulate_3_button_mouse>` |
  122. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/emulate_numpad<class_EditorSettings_property_editors/3d/navigation/emulate_numpad>` |
  124. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/invert_x_axis<class_EditorSettings_property_editors/3d/navigation/invert_x_axis>` |
  126. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/invert_y_axis<class_EditorSettings_property_editors/3d/navigation/invert_y_axis>` |
  128. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/navigation_scheme<class_EditorSettings_property_editors/3d/navigation/navigation_scheme>` |
  130. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/orbit_modifier<class_EditorSettings_property_editors/3d/navigation/orbit_modifier>` |
  132. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/pan_modifier<class_EditorSettings_property_editors/3d/navigation/pan_modifier>` |
  134. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | :ref:`bool<class_bool>` | :ref:`editors/3d/navigation/warped_mouse_panning<class_EditorSettings_property_editors/3d/navigation/warped_mouse_panning>` |
  136. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/zoom_modifier<class_EditorSettings_property_editors/3d/navigation/zoom_modifier>` |
  138. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | :ref:`int<class_int>` | :ref:`editors/3d/navigation/zoom_style<class_EditorSettings_property_editors/3d/navigation/zoom_style>` |
  140. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/orbit_inertia<class_EditorSettings_property_editors/3d/navigation_feel/orbit_inertia>` |
  142. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/orbit_sensitivity<class_EditorSettings_property_editors/3d/navigation_feel/orbit_sensitivity>` |
  144. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/translation_inertia<class_EditorSettings_property_editors/3d/navigation_feel/translation_inertia>` |
  146. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | :ref:`float<class_float>` | :ref:`editors/3d/navigation_feel/zoom_inertia<class_EditorSettings_property_editors/3d/navigation_feel/zoom_inertia>` |
  148. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | :ref:`Color<class_Color>` | :ref:`editors/3d/primary_grid_color<class_EditorSettings_property_editors/3d/primary_grid_color>` |
  150. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | :ref:`int<class_int>` | :ref:`editors/3d/primary_grid_steps<class_EditorSettings_property_editors/3d/primary_grid_steps>` |
  152. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | :ref:`Color<class_Color>` | :ref:`editors/3d/secondary_grid_color<class_EditorSettings_property_editors/3d/secondary_grid_color>` |
  154. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | :ref:`Color<class_Color>` | :ref:`editors/3d/selection_box_color<class_EditorSettings_property_editors/3d/selection_box_color>` |
  156. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  157. | :ref:`Color<class_Color>` | :ref:`editors/3d_gizmos/gizmo_colors/instantiated<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/instantiated>` |
  158. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  159. | :ref:`Color<class_Color>` | :ref:`editors/3d_gizmos/gizmo_colors/joint<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/joint>` |
  160. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  161. | :ref:`Color<class_Color>` | :ref:`editors/3d_gizmos/gizmo_colors/shape<class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/shape>` |
  162. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  163. | :ref:`bool<class_bool>` | :ref:`editors/animation/autorename_animation_tracks<class_EditorSettings_property_editors/animation/autorename_animation_tracks>` |
  164. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  165. | :ref:`bool<class_bool>` | :ref:`editors/animation/default_create_bezier_tracks<class_EditorSettings_property_editors/animation/default_create_bezier_tracks>` |
  166. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  167. | :ref:`bool<class_bool>` | :ref:`editors/animation/default_create_reset_tracks<class_EditorSettings_property_editors/animation/default_create_reset_tracks>` |
  168. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  169. | :ref:`Color<class_Color>` | :ref:`editors/animation/onion_layers_future_color<class_EditorSettings_property_editors/animation/onion_layers_future_color>` |
  170. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  171. | :ref:`Color<class_Color>` | :ref:`editors/animation/onion_layers_past_color<class_EditorSettings_property_editors/animation/onion_layers_past_color>` |
  172. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  173. | :ref:`float<class_float>` | :ref:`editors/grid_map/pick_distance<class_EditorSettings_property_editors/grid_map/pick_distance>` |
  174. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  175. | :ref:`int<class_int>` | :ref:`editors/panning/2d_editor_pan_speed<class_EditorSettings_property_editors/panning/2d_editor_pan_speed>` |
  176. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  177. | :ref:`int<class_int>` | :ref:`editors/panning/2d_editor_panning_scheme<class_EditorSettings_property_editors/panning/2d_editor_panning_scheme>` |
  178. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  179. | :ref:`int<class_int>` | :ref:`editors/panning/animation_editors_panning_scheme<class_EditorSettings_property_editors/panning/animation_editors_panning_scheme>` |
  180. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  181. | :ref:`bool<class_bool>` | :ref:`editors/panning/simple_panning<class_EditorSettings_property_editors/panning/simple_panning>` |
  182. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  183. | :ref:`int<class_int>` | :ref:`editors/panning/sub_editors_panning_scheme<class_EditorSettings_property_editors/panning/sub_editors_panning_scheme>` |
  184. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  185. | :ref:`bool<class_bool>` | :ref:`editors/panning/warped_mouse_panning<class_EditorSettings_property_editors/panning/warped_mouse_panning>` |
  186. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  187. | :ref:`int<class_int>` | :ref:`editors/polygon_editor/point_grab_radius<class_EditorSettings_property_editors/polygon_editor/point_grab_radius>` |
  188. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  189. | :ref:`bool<class_bool>` | :ref:`editors/polygon_editor/show_previous_outline<class_EditorSettings_property_editors/polygon_editor/show_previous_outline>` |
  190. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  191. | :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>` |
  192. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  193. | :ref:`bool<class_bool>` | :ref:`editors/tiles_editor/display_grid<class_EditorSettings_property_editors/tiles_editor/display_grid>` |
  194. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  195. | :ref:`Color<class_Color>` | :ref:`editors/tiles_editor/grid_color<class_EditorSettings_property_editors/tiles_editor/grid_color>` |
  196. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  197. | :ref:`float<class_float>` | :ref:`editors/visual_editors/lines_curvature<class_EditorSettings_property_editors/visual_editors/lines_curvature>` |
  198. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  199. | :ref:`float<class_float>` | :ref:`editors/visual_editors/minimap_opacity<class_EditorSettings_property_editors/visual_editors/minimap_opacity>` |
  200. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  201. | :ref:`int<class_int>` | :ref:`editors/visual_editors/visual_shader/port_preview_size<class_EditorSettings_property_editors/visual_editors/visual_shader/port_preview_size>` |
  202. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  203. | :ref:`String<class_String>` | :ref:`filesystem/directories/autoscan_project_path<class_EditorSettings_property_filesystem/directories/autoscan_project_path>` |
  204. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  205. | :ref:`String<class_String>` | :ref:`filesystem/directories/default_project_path<class_EditorSettings_property_filesystem/directories/default_project_path>` |
  206. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  207. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/3d_model_editor<class_EditorSettings_property_filesystem/external_programs/3d_model_editor>` |
  208. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  209. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/audio_editor<class_EditorSettings_property_filesystem/external_programs/audio_editor>` |
  210. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  211. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/raster_image_editor<class_EditorSettings_property_filesystem/external_programs/raster_image_editor>` |
  212. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  213. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/terminal_emulator<class_EditorSettings_property_filesystem/external_programs/terminal_emulator>` |
  214. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  215. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/terminal_emulator_flags<class_EditorSettings_property_filesystem/external_programs/terminal_emulator_flags>` |
  216. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  217. | :ref:`String<class_String>` | :ref:`filesystem/external_programs/vector_image_editor<class_EditorSettings_property_filesystem/external_programs/vector_image_editor>` |
  218. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  219. | :ref:`int<class_int>` | :ref:`filesystem/file_dialog/display_mode<class_EditorSettings_property_filesystem/file_dialog/display_mode>` |
  220. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  221. | :ref:`bool<class_bool>` | :ref:`filesystem/file_dialog/show_hidden_files<class_EditorSettings_property_filesystem/file_dialog/show_hidden_files>` |
  222. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  223. | :ref:`int<class_int>` | :ref:`filesystem/file_dialog/thumbnail_size<class_EditorSettings_property_filesystem/file_dialog/thumbnail_size>` |
  224. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  225. | :ref:`String<class_String>` | :ref:`filesystem/import/blender/blender_path<class_EditorSettings_property_filesystem/import/blender/blender_path>` |
  226. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  227. | :ref:`int<class_int>` | :ref:`filesystem/import/blender/rpc_port<class_EditorSettings_property_filesystem/import/blender/rpc_port>` |
  228. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  229. | :ref:`float<class_float>` | :ref:`filesystem/import/blender/rpc_server_uptime<class_EditorSettings_property_filesystem/import/blender/rpc_server_uptime>` |
  230. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  231. | :ref:`String<class_String>` | :ref:`filesystem/import/fbx/fbx2gltf_path<class_EditorSettings_property_filesystem/import/fbx/fbx2gltf_path>` |
  232. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  233. | :ref:`bool<class_bool>` | :ref:`filesystem/on_save/compress_binary_resources<class_EditorSettings_property_filesystem/on_save/compress_binary_resources>` |
  234. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  235. | :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>` |
  236. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  237. | :ref:`String<class_String>` | :ref:`filesystem/tools/oidn/oidn_denoise_path<class_EditorSettings_property_filesystem/tools/oidn/oidn_denoise_path>` |
  238. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  239. | :ref:`int<class_int>` | :ref:`interface/editor/accept_dialog_cancel_ok_buttons<class_EditorSettings_property_interface/editor/accept_dialog_cancel_ok_buttons>` |
  240. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  241. | :ref:`bool<class_bool>` | :ref:`interface/editor/automatically_open_screenshots<class_EditorSettings_property_interface/editor/automatically_open_screenshots>` |
  242. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  243. | :ref:`String<class_String>` | :ref:`interface/editor/code_font<class_EditorSettings_property_interface/editor/code_font>` |
  244. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  245. | :ref:`int<class_int>` | :ref:`interface/editor/code_font_contextual_ligatures<class_EditorSettings_property_interface/editor/code_font_contextual_ligatures>` |
  246. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  247. | :ref:`String<class_String>` | :ref:`interface/editor/code_font_custom_opentype_features<class_EditorSettings_property_interface/editor/code_font_custom_opentype_features>` |
  248. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  249. | :ref:`String<class_String>` | :ref:`interface/editor/code_font_custom_variations<class_EditorSettings_property_interface/editor/code_font_custom_variations>` |
  250. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  251. | :ref:`int<class_int>` | :ref:`interface/editor/code_font_size<class_EditorSettings_property_interface/editor/code_font_size>` |
  252. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  253. | :ref:`float<class_float>` | :ref:`interface/editor/custom_display_scale<class_EditorSettings_property_interface/editor/custom_display_scale>` |
  254. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  255. | :ref:`bool<class_bool>` | :ref:`interface/editor/debug/enable_pseudolocalization<class_EditorSettings_property_interface/editor/debug/enable_pseudolocalization>` |
  256. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  257. | :ref:`int<class_int>` | :ref:`interface/editor/display_scale<class_EditorSettings_property_interface/editor/display_scale>` |
  258. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  259. | :ref:`String<class_String>` | :ref:`interface/editor/editor_language<class_EditorSettings_property_interface/editor/editor_language>` |
  260. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  261. | :ref:`int<class_int>` | :ref:`interface/editor/editor_screen<class_EditorSettings_property_interface/editor/editor_screen>` |
  262. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  263. | :ref:`bool<class_bool>` | :ref:`interface/editor/expand_to_title<class_EditorSettings_property_interface/editor/expand_to_title>` |
  264. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  265. | :ref:`int<class_int>` | :ref:`interface/editor/font_antialiasing<class_EditorSettings_property_interface/editor/font_antialiasing>` |
  266. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  267. | :ref:`int<class_int>` | :ref:`interface/editor/font_hinting<class_EditorSettings_property_interface/editor/font_hinting>` |
  268. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  269. | :ref:`int<class_int>` | :ref:`interface/editor/font_subpixel_positioning<class_EditorSettings_property_interface/editor/font_subpixel_positioning>` |
  270. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  271. | :ref:`float<class_float>` | :ref:`interface/editor/low_processor_mode_sleep_usec<class_EditorSettings_property_interface/editor/low_processor_mode_sleep_usec>` |
  272. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  273. | :ref:`String<class_String>` | :ref:`interface/editor/main_font<class_EditorSettings_property_interface/editor/main_font>` |
  274. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  275. | :ref:`String<class_String>` | :ref:`interface/editor/main_font_bold<class_EditorSettings_property_interface/editor/main_font_bold>` |
  276. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  277. | :ref:`int<class_int>` | :ref:`interface/editor/main_font_size<class_EditorSettings_property_interface/editor/main_font_size>` |
  278. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  279. | :ref:`bool<class_bool>` | :ref:`interface/editor/mouse_extra_buttons_navigate_history<class_EditorSettings_property_interface/editor/mouse_extra_buttons_navigate_history>` |
  280. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  281. | :ref:`int<class_int>` | :ref:`interface/editor/project_manager_screen<class_EditorSettings_property_interface/editor/project_manager_screen>` |
  282. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  283. | :ref:`bool<class_bool>` | :ref:`interface/editor/save_each_scene_on_quit<class_EditorSettings_property_interface/editor/save_each_scene_on_quit>` |
  284. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  285. | :ref:`bool<class_bool>` | :ref:`interface/editor/separate_distraction_mode<class_EditorSettings_property_interface/editor/separate_distraction_mode>` |
  286. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  287. | :ref:`int<class_int>` | :ref:`interface/editor/show_internal_errors_in_toast_notifications<class_EditorSettings_property_interface/editor/show_internal_errors_in_toast_notifications>` |
  288. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  289. | :ref:`bool<class_bool>` | :ref:`interface/editor/single_window_mode<class_EditorSettings_property_interface/editor/single_window_mode>` |
  290. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  291. | :ref:`int<class_int>` | :ref:`interface/editor/ui_layout_direction<class_EditorSettings_property_interface/editor/ui_layout_direction>` |
  292. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  293. | :ref:`float<class_float>` | :ref:`interface/editor/unfocused_low_processor_mode_sleep_usec<class_EditorSettings_property_interface/editor/unfocused_low_processor_mode_sleep_usec>` |
  294. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  295. | :ref:`bool<class_bool>` | :ref:`interface/editor/use_embedded_menu<class_EditorSettings_property_interface/editor/use_embedded_menu>` |
  296. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  297. | :ref:`int<class_int>` | :ref:`interface/editor/vsync_mode<class_EditorSettings_property_interface/editor/vsync_mode>` |
  298. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  299. | :ref:`float<class_float>` | :ref:`interface/inspector/float_drag_speed<class_EditorSettings_property_interface/inspector/float_drag_speed>` |
  300. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  301. | :ref:`int<class_int>` | :ref:`interface/inspector/max_array_dictionary_items_per_page<class_EditorSettings_property_interface/inspector/max_array_dictionary_items_per_page>` |
  302. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  303. | :ref:`bool<class_bool>` | :ref:`interface/inspector/show_low_level_opentype_features<class_EditorSettings_property_interface/inspector/show_low_level_opentype_features>` |
  304. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  305. | :ref:`bool<class_bool>` | :ref:`interface/multi_window/enable<class_EditorSettings_property_interface/multi_window/enable>` |
  306. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  307. | :ref:`bool<class_bool>` | :ref:`interface/multi_window/maximize_window<class_EditorSettings_property_interface/multi_window/maximize_window>` |
  308. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  309. | :ref:`bool<class_bool>` | :ref:`interface/multi_window/restore_windows_on_load<class_EditorSettings_property_interface/multi_window/restore_windows_on_load>` |
  310. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  311. | :ref:`int<class_int>` | :ref:`interface/scene_tabs/display_close_button<class_EditorSettings_property_interface/scene_tabs/display_close_button>` |
  312. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  313. | :ref:`int<class_int>` | :ref:`interface/scene_tabs/maximum_width<class_EditorSettings_property_interface/scene_tabs/maximum_width>` |
  314. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  315. | :ref:`bool<class_bool>` | :ref:`interface/scene_tabs/show_script_button<class_EditorSettings_property_interface/scene_tabs/show_script_button>` |
  316. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  317. | :ref:`bool<class_bool>` | :ref:`interface/scene_tabs/show_thumbnail_on_hover<class_EditorSettings_property_interface/scene_tabs/show_thumbnail_on_hover>` |
  318. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  319. | :ref:`Color<class_Color>` | :ref:`interface/theme/accent_color<class_EditorSettings_property_interface/theme/accent_color>` |
  320. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  321. | :ref:`int<class_int>` | :ref:`interface/theme/additional_spacing<class_EditorSettings_property_interface/theme/additional_spacing>` |
  322. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  323. | :ref:`Color<class_Color>` | :ref:`interface/theme/base_color<class_EditorSettings_property_interface/theme/base_color>` |
  324. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  325. | :ref:`int<class_int>` | :ref:`interface/theme/base_spacing<class_EditorSettings_property_interface/theme/base_spacing>` |
  326. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  327. | :ref:`int<class_int>` | :ref:`interface/theme/border_size<class_EditorSettings_property_interface/theme/border_size>` |
  328. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  329. | :ref:`float<class_float>` | :ref:`interface/theme/contrast<class_EditorSettings_property_interface/theme/contrast>` |
  330. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  331. | :ref:`int<class_int>` | :ref:`interface/theme/corner_radius<class_EditorSettings_property_interface/theme/corner_radius>` |
  332. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  333. | :ref:`String<class_String>` | :ref:`interface/theme/custom_theme<class_EditorSettings_property_interface/theme/custom_theme>` |
  334. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  335. | :ref:`bool<class_bool>` | :ref:`interface/theme/draw_extra_borders<class_EditorSettings_property_interface/theme/draw_extra_borders>` |
  336. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  337. | :ref:`int<class_int>` | :ref:`interface/theme/icon_and_font_color<class_EditorSettings_property_interface/theme/icon_and_font_color>` |
  338. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  339. | :ref:`float<class_float>` | :ref:`interface/theme/icon_saturation<class_EditorSettings_property_interface/theme/icon_saturation>` |
  340. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  341. | :ref:`String<class_String>` | :ref:`interface/theme/preset<class_EditorSettings_property_interface/theme/preset>` |
  342. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  343. | :ref:`float<class_float>` | :ref:`interface/theme/relationship_line_opacity<class_EditorSettings_property_interface/theme/relationship_line_opacity>` |
  344. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  345. | :ref:`String<class_String>` | :ref:`interface/theme/spacing_preset<class_EditorSettings_property_interface/theme/spacing_preset>` |
  346. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  347. | :ref:`bool<class_bool>` | :ref:`interface/touchscreen/enable_long_press_as_right_click<class_EditorSettings_property_interface/touchscreen/enable_long_press_as_right_click>` |
  348. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  349. | :ref:`bool<class_bool>` | :ref:`interface/touchscreen/enable_pan_and_scale_gestures<class_EditorSettings_property_interface/touchscreen/enable_pan_and_scale_gestures>` |
  350. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  351. | :ref:`bool<class_bool>` | :ref:`interface/touchscreen/increase_scrollbar_touch_area<class_EditorSettings_property_interface/touchscreen/increase_scrollbar_touch_area>` |
  352. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  353. | :ref:`float<class_float>` | :ref:`interface/touchscreen/scale_gizmo_handles<class_EditorSettings_property_interface/touchscreen/scale_gizmo_handles>` |
  354. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  355. | :ref:`int<class_int>` | :ref:`network/connection/network_mode<class_EditorSettings_property_network/connection/network_mode>` |
  356. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  357. | :ref:`String<class_String>` | :ref:`network/debug/remote_host<class_EditorSettings_property_network/debug/remote_host>` |
  358. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  359. | :ref:`int<class_int>` | :ref:`network/debug/remote_port<class_EditorSettings_property_network/debug/remote_port>` |
  360. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  361. | :ref:`String<class_String>` | :ref:`network/http_proxy/host<class_EditorSettings_property_network/http_proxy/host>` |
  362. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  363. | :ref:`int<class_int>` | :ref:`network/http_proxy/port<class_EditorSettings_property_network/http_proxy/port>` |
  364. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  365. | :ref:`String<class_String>` | :ref:`network/tls/editor_tls_certificates<class_EditorSettings_property_network/tls/editor_tls_certificates>` |
  366. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  367. | :ref:`String<class_String>` | :ref:`project_manager/default_renderer<class_EditorSettings_property_project_manager/default_renderer>` |
  368. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  369. | :ref:`int<class_int>` | :ref:`project_manager/sorting_order<class_EditorSettings_property_project_manager/sorting_order>` |
  370. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  371. | :ref:`bool<class_bool>` | :ref:`run/auto_save/save_before_running<class_EditorSettings_property_run/auto_save/save_before_running>` |
  372. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  373. | :ref:`bool<class_bool>` | :ref:`run/output/always_clear_output_on_play<class_EditorSettings_property_run/output/always_clear_output_on_play>` |
  374. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  375. | :ref:`bool<class_bool>` | :ref:`run/output/always_close_output_on_stop<class_EditorSettings_property_run/output/always_close_output_on_stop>` |
  376. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  377. | :ref:`bool<class_bool>` | :ref:`run/output/always_open_output_on_play<class_EditorSettings_property_run/output/always_open_output_on_play>` |
  378. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  379. | :ref:`int<class_int>` | :ref:`run/output/font_size<class_EditorSettings_property_run/output/font_size>` |
  380. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  381. | :ref:`bool<class_bool>` | :ref:`run/platforms/linuxbsd/prefer_wayland<class_EditorSettings_property_run/platforms/linuxbsd/prefer_wayland>` |
  382. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  383. | :ref:`int<class_int>` | :ref:`run/window_placement/android_window<class_EditorSettings_property_run/window_placement/android_window>` |
  384. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  385. | :ref:`int<class_int>` | :ref:`run/window_placement/rect<class_EditorSettings_property_run/window_placement/rect>` |
  386. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  387. | :ref:`Vector2<class_Vector2>` | :ref:`run/window_placement/rect_custom_position<class_EditorSettings_property_run/window_placement/rect_custom_position>` |
  388. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  389. | :ref:`int<class_int>` | :ref:`run/window_placement/screen<class_EditorSettings_property_run/window_placement/screen>` |
  390. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  391. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/caret/caret_blink<class_EditorSettings_property_text_editor/appearance/caret/caret_blink>` |
  392. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  393. | :ref:`float<class_float>` | :ref:`text_editor/appearance/caret/caret_blink_interval<class_EditorSettings_property_text_editor/appearance/caret/caret_blink_interval>` |
  394. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  395. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/caret/highlight_all_occurrences<class_EditorSettings_property_text_editor/appearance/caret/highlight_all_occurrences>` |
  396. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  397. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/caret/highlight_current_line<class_EditorSettings_property_text_editor/appearance/caret/highlight_current_line>` |
  398. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  399. | :ref:`int<class_int>` | :ref:`text_editor/appearance/caret/type<class_EditorSettings_property_text_editor/appearance/caret/type>` |
  400. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  401. | :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>` |
  402. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  403. | :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>` |
  404. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  405. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/guidelines/show_line_length_guidelines<class_EditorSettings_property_text_editor/appearance/guidelines/show_line_length_guidelines>` |
  406. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  407. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/highlight_type_safe_lines<class_EditorSettings_property_text_editor/appearance/gutters/highlight_type_safe_lines>` |
  408. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  409. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/line_numbers_zero_padded<class_EditorSettings_property_text_editor/appearance/gutters/line_numbers_zero_padded>` |
  410. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  411. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/show_info_gutter<class_EditorSettings_property_text_editor/appearance/gutters/show_info_gutter>` |
  412. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  413. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/gutters/show_line_numbers<class_EditorSettings_property_text_editor/appearance/gutters/show_line_numbers>` |
  414. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  415. | :ref:`int<class_int>` | :ref:`text_editor/appearance/lines/autowrap_mode<class_EditorSettings_property_text_editor/appearance/lines/autowrap_mode>` |
  416. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  417. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/lines/code_folding<class_EditorSettings_property_text_editor/appearance/lines/code_folding>` |
  418. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  419. | :ref:`int<class_int>` | :ref:`text_editor/appearance/lines/word_wrap<class_EditorSettings_property_text_editor/appearance/lines/word_wrap>` |
  420. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  421. | :ref:`int<class_int>` | :ref:`text_editor/appearance/minimap/minimap_width<class_EditorSettings_property_text_editor/appearance/minimap/minimap_width>` |
  422. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  423. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/minimap/show_minimap<class_EditorSettings_property_text_editor/appearance/minimap/show_minimap>` |
  424. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  425. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/whitespace/draw_spaces<class_EditorSettings_property_text_editor/appearance/whitespace/draw_spaces>` |
  426. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  427. | :ref:`bool<class_bool>` | :ref:`text_editor/appearance/whitespace/draw_tabs<class_EditorSettings_property_text_editor/appearance/whitespace/draw_tabs>` |
  428. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  429. | :ref:`int<class_int>` | :ref:`text_editor/appearance/whitespace/line_spacing<class_EditorSettings_property_text_editor/appearance/whitespace/line_spacing>` |
  430. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  431. | :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>` |
  432. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  433. | :ref:`int<class_int>` | :ref:`text_editor/behavior/files/autosave_interval_secs<class_EditorSettings_property_text_editor/behavior/files/autosave_interval_secs>` |
  434. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  435. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/convert_indent_on_save<class_EditorSettings_property_text_editor/behavior/files/convert_indent_on_save>` |
  436. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  437. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/files/restore_scripts_on_load<class_EditorSettings_property_text_editor/behavior/files/restore_scripts_on_load>` |
  438. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  439. | :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>` |
  440. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  441. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/indent/auto_indent<class_EditorSettings_property_text_editor/behavior/indent/auto_indent>` |
  442. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  443. | :ref:`int<class_int>` | :ref:`text_editor/behavior/indent/size<class_EditorSettings_property_text_editor/behavior/indent/size>` |
  444. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  445. | :ref:`int<class_int>` | :ref:`text_editor/behavior/indent/type<class_EditorSettings_property_text_editor/behavior/indent/type>` |
  446. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  447. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/drag_and_drop_selection<class_EditorSettings_property_text_editor/behavior/navigation/drag_and_drop_selection>` |
  448. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  449. | :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>` |
  450. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  451. | :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>` |
  452. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  453. | :ref:`bool<class_bool>` | :ref:`text_editor/behavior/navigation/smooth_scrolling<class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling>` |
  454. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  455. | :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>` |
  456. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  457. | :ref:`int<class_int>` | :ref:`text_editor/behavior/navigation/v_scroll_speed<class_EditorSettings_property_text_editor/behavior/navigation/v_scroll_speed>` |
  458. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  459. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/add_type_hints<class_EditorSettings_property_text_editor/completion/add_type_hints>` |
  460. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  461. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/auto_brace_complete<class_EditorSettings_property_text_editor/completion/auto_brace_complete>` |
  462. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  463. | :ref:`float<class_float>` | :ref:`text_editor/completion/code_complete_delay<class_EditorSettings_property_text_editor/completion/code_complete_delay>` |
  464. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  465. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/code_complete_enabled<class_EditorSettings_property_text_editor/completion/code_complete_enabled>` |
  466. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  467. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/colorize_suggestions<class_EditorSettings_property_text_editor/completion/colorize_suggestions>` |
  468. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  469. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/complete_file_paths<class_EditorSettings_property_text_editor/completion/complete_file_paths>` |
  470. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  471. | :ref:`float<class_float>` | :ref:`text_editor/completion/idle_parse_delay<class_EditorSettings_property_text_editor/completion/idle_parse_delay>` |
  472. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  473. | :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>` |
  474. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  475. | :ref:`bool<class_bool>` | :ref:`text_editor/completion/use_single_quotes<class_EditorSettings_property_text_editor/completion/use_single_quotes>` |
  476. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  477. | :ref:`int<class_int>` | :ref:`text_editor/help/class_reference_examples<class_EditorSettings_property_text_editor/help/class_reference_examples>` |
  478. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  479. | :ref:`int<class_int>` | :ref:`text_editor/help/help_font_size<class_EditorSettings_property_text_editor/help/help_font_size>` |
  480. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  481. | :ref:`int<class_int>` | :ref:`text_editor/help/help_source_font_size<class_EditorSettings_property_text_editor/help/help_source_font_size>` |
  482. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  483. | :ref:`int<class_int>` | :ref:`text_editor/help/help_title_font_size<class_EditorSettings_property_text_editor/help/help_title_font_size>` |
  484. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  485. | :ref:`bool<class_bool>` | :ref:`text_editor/help/show_help_index<class_EditorSettings_property_text_editor/help/show_help_index>` |
  486. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  487. | :ref:`bool<class_bool>` | :ref:`text_editor/script_list/show_members_overview<class_EditorSettings_property_text_editor/script_list/show_members_overview>` |
  488. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  489. | :ref:`bool<class_bool>` | :ref:`text_editor/script_list/sort_members_outline_alphabetically<class_EditorSettings_property_text_editor/script_list/sort_members_outline_alphabetically>` |
  490. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  491. | :ref:`String<class_String>` | :ref:`text_editor/theme/color_theme<class_EditorSettings_property_text_editor/theme/color_theme>` |
  492. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  493. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/background_color<class_EditorSettings_property_text_editor/theme/highlighting/background_color>` |
  494. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  495. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/base_type_color<class_EditorSettings_property_text_editor/theme/highlighting/base_type_color>` |
  496. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  497. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/bookmark_color<class_EditorSettings_property_text_editor/theme/highlighting/bookmark_color>` |
  498. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  499. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/brace_mismatch_color<class_EditorSettings_property_text_editor/theme/highlighting/brace_mismatch_color>` |
  500. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  501. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/breakpoint_color<class_EditorSettings_property_text_editor/theme/highlighting/breakpoint_color>` |
  502. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  503. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/caret_background_color<class_EditorSettings_property_text_editor/theme/highlighting/caret_background_color>` |
  504. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  505. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/caret_color<class_EditorSettings_property_text_editor/theme/highlighting/caret_color>` |
  506. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  507. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/code_folding_color<class_EditorSettings_property_text_editor/theme/highlighting/code_folding_color>` |
  508. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  509. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/comment_color<class_EditorSettings_property_text_editor/theme/highlighting/comment_color>` |
  510. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  511. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_background_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_background_color>` |
  512. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  513. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_existing_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_existing_color>` |
  514. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  515. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_font_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_font_color>` |
  516. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  517. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_scroll_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_color>` |
  518. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  519. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_scroll_hovered_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_hovered_color>` |
  520. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  521. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/completion_selected_color<class_EditorSettings_property_text_editor/theme/highlighting/completion_selected_color>` |
  522. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  523. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/control_flow_keyword_color<class_EditorSettings_property_text_editor/theme/highlighting/control_flow_keyword_color>` |
  524. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  525. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/current_line_color<class_EditorSettings_property_text_editor/theme/highlighting/current_line_color>` |
  526. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  527. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/doc_comment_color<class_EditorSettings_property_text_editor/theme/highlighting/doc_comment_color>` |
  528. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  529. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/engine_type_color<class_EditorSettings_property_text_editor/theme/highlighting/engine_type_color>` |
  530. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  531. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/executing_line_color<class_EditorSettings_property_text_editor/theme/highlighting/executing_line_color>` |
  532. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  533. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/folded_code_region_color<class_EditorSettings_property_text_editor/theme/highlighting/folded_code_region_color>` |
  534. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  535. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/function_color<class_EditorSettings_property_text_editor/theme/highlighting/function_color>` |
  536. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  537. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/keyword_color<class_EditorSettings_property_text_editor/theme/highlighting/keyword_color>` |
  538. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  539. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/line_length_guideline_color<class_EditorSettings_property_text_editor/theme/highlighting/line_length_guideline_color>` |
  540. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  541. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/line_number_color>` |
  542. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  543. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/mark_color<class_EditorSettings_property_text_editor/theme/highlighting/mark_color>` |
  544. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  545. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/member_variable_color<class_EditorSettings_property_text_editor/theme/highlighting/member_variable_color>` |
  546. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  547. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/number_color<class_EditorSettings_property_text_editor/theme/highlighting/number_color>` |
  548. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  549. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/safe_line_number_color<class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color>` |
  550. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  551. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/search_result_border_color<class_EditorSettings_property_text_editor/theme/highlighting/search_result_border_color>` |
  552. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  553. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/search_result_color<class_EditorSettings_property_text_editor/theme/highlighting/search_result_color>` |
  554. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  555. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/selection_color<class_EditorSettings_property_text_editor/theme/highlighting/selection_color>` |
  556. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  557. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/string_color<class_EditorSettings_property_text_editor/theme/highlighting/string_color>` |
  558. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  559. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/symbol_color<class_EditorSettings_property_text_editor/theme/highlighting/symbol_color>` |
  560. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  561. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/text_color<class_EditorSettings_property_text_editor/theme/highlighting/text_color>` |
  562. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  563. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/text_selected_color<class_EditorSettings_property_text_editor/theme/highlighting/text_selected_color>` |
  564. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  565. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/user_type_color<class_EditorSettings_property_text_editor/theme/highlighting/user_type_color>` |
  566. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  567. | :ref:`Color<class_Color>` | :ref:`text_editor/theme/highlighting/word_highlighted_color<class_EditorSettings_property_text_editor/theme/highlighting/word_highlighted_color>` |
  568. +-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  569. .. rst-class:: classref-reftable-group
  570. Methods
  571. -------
  572. .. table::
  573. :widths: auto
  574. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  575. | void | :ref:`add_property_info<class_EditorSettings_method_add_property_info>` **(** :ref:`Dictionary<class_Dictionary>` info **)** |
  576. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  577. | :ref:`bool<class_bool>` | :ref:`check_changed_settings_in_group<class_EditorSettings_method_check_changed_settings_in_group>` **(** :ref:`String<class_String>` setting_prefix **)** |const| |
  578. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  579. | void | :ref:`erase<class_EditorSettings_method_erase>` **(** :ref:`String<class_String>` property **)** |
  580. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  581. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_changed_settings<class_EditorSettings_method_get_changed_settings>` **(** **)** |const| |
  582. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  583. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_favorites<class_EditorSettings_method_get_favorites>` **(** **)** |const| |
  584. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  585. | :ref:`Variant<class_Variant>` | :ref:`get_project_metadata<class_EditorSettings_method_get_project_metadata>` **(** :ref:`String<class_String>` section, :ref:`String<class_String>` key, :ref:`Variant<class_Variant>` default=null **)** |const| |
  586. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  587. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_recent_dirs<class_EditorSettings_method_get_recent_dirs>` **(** **)** |const| |
  588. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  589. | :ref:`Variant<class_Variant>` | :ref:`get_setting<class_EditorSettings_method_get_setting>` **(** :ref:`String<class_String>` name **)** |const| |
  590. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  591. | :ref:`bool<class_bool>` | :ref:`has_setting<class_EditorSettings_method_has_setting>` **(** :ref:`String<class_String>` name **)** |const| |
  592. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  593. | void | :ref:`mark_setting_changed<class_EditorSettings_method_mark_setting_changed>` **(** :ref:`String<class_String>` setting **)** |
  594. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  595. | void | :ref:`set_builtin_action_override<class_EditorSettings_method_set_builtin_action_override>` **(** :ref:`String<class_String>` name, :ref:`InputEvent[]<class_InputEvent>` actions_list **)** |
  596. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  597. | void | :ref:`set_favorites<class_EditorSettings_method_set_favorites>` **(** :ref:`PackedStringArray<class_PackedStringArray>` dirs **)** |
  598. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  599. | void | :ref:`set_initial_value<class_EditorSettings_method_set_initial_value>` **(** :ref:`StringName<class_StringName>` name, :ref:`Variant<class_Variant>` value, :ref:`bool<class_bool>` update_current **)** |
  600. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  601. | void | :ref:`set_project_metadata<class_EditorSettings_method_set_project_metadata>` **(** :ref:`String<class_String>` section, :ref:`String<class_String>` key, :ref:`Variant<class_Variant>` data **)** |
  602. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  603. | void | :ref:`set_recent_dirs<class_EditorSettings_method_set_recent_dirs>` **(** :ref:`PackedStringArray<class_PackedStringArray>` dirs **)** |
  604. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  605. | void | :ref:`set_setting<class_EditorSettings_method_set_setting>` **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)** |
  606. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  607. .. rst-class:: classref-section-separator
  608. ----
  609. .. rst-class:: classref-descriptions-group
  610. Signals
  611. -------
  612. .. _class_EditorSettings_signal_settings_changed:
  613. .. rst-class:: classref-signal
  614. **settings_changed** **(** **)**
  615. Emitted after any editor setting has changed.
  616. .. rst-class:: classref-section-separator
  617. ----
  618. .. rst-class:: classref-descriptions-group
  619. Constants
  620. ---------
  621. .. _class_EditorSettings_constant_NOTIFICATION_EDITOR_SETTINGS_CHANGED:
  622. .. rst-class:: classref-constant
  623. **NOTIFICATION_EDITOR_SETTINGS_CHANGED** = ``10000``
  624. 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.
  625. .. rst-class:: classref-section-separator
  626. ----
  627. .. rst-class:: classref-descriptions-group
  628. Property Descriptions
  629. ---------------------
  630. .. _class_EditorSettings_property_debugger/auto_switch_to_remote_scene_tree:
  631. .. rst-class:: classref-property
  632. :ref:`bool<class_bool>` **debugger/auto_switch_to_remote_scene_tree**
  633. 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.
  634. .. rst-class:: classref-item-separator
  635. ----
  636. .. _class_EditorSettings_property_debugger/profile_native_calls:
  637. .. rst-class:: classref-property
  638. :ref:`bool<class_bool>` **debugger/profile_native_calls**
  639. If ``true``, enables collection of profiling data from non-GDScript Godot functions, such as engine class methods. Enabling this slows execution while profiling further.
  640. .. rst-class:: classref-item-separator
  641. ----
  642. .. _class_EditorSettings_property_debugger/profiler_frame_history_size:
  643. .. rst-class:: classref-property
  644. :ref:`int<class_int>` **debugger/profiler_frame_history_size**
  645. 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.
  646. .. rst-class:: classref-item-separator
  647. ----
  648. .. _class_EditorSettings_property_debugger/profiler_frame_max_functions:
  649. .. rst-class:: classref-property
  650. :ref:`int<class_int>` **debugger/profiler_frame_max_functions**
  651. 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.
  652. \ **Note:** This setting is only read when the profiler is first started, so changing it during profiling will have no effect.
  653. .. rst-class:: classref-item-separator
  654. ----
  655. .. _class_EditorSettings_property_debugger/remote_inspect_refresh_interval:
  656. .. rst-class:: classref-property
  657. :ref:`float<class_float>` **debugger/remote_inspect_refresh_interval**
  658. 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.
  659. .. rst-class:: classref-item-separator
  660. ----
  661. .. _class_EditorSettings_property_debugger/remote_scene_tree_refresh_interval:
  662. .. rst-class:: classref-property
  663. :ref:`float<class_float>` **debugger/remote_scene_tree_refresh_interval**
  664. 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.
  665. .. rst-class:: classref-item-separator
  666. ----
  667. .. _class_EditorSettings_property_docks/filesystem/always_show_folders:
  668. .. rst-class:: classref-property
  669. :ref:`bool<class_bool>` **docks/filesystem/always_show_folders**
  670. 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.
  671. \ **Note:** This setting has no effect when split mode is disabled (which is the default).
  672. .. rst-class:: classref-item-separator
  673. ----
  674. .. _class_EditorSettings_property_docks/filesystem/textfile_extensions:
  675. .. rst-class:: classref-property
  676. :ref:`String<class_String>` **docks/filesystem/textfile_extensions**
  677. List of file extensions to consider as editable text files in the FileSystem dock (by double-clicking on the files).
  678. .. rst-class:: classref-item-separator
  679. ----
  680. .. _class_EditorSettings_property_docks/filesystem/thumbnail_size:
  681. .. rst-class:: classref-property
  682. :ref:`int<class_int>` **docks/filesystem/thumbnail_size**
  683. 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>`.
  684. .. rst-class:: classref-item-separator
  685. ----
  686. .. _class_EditorSettings_property_docks/property_editor/auto_refresh_interval:
  687. .. rst-class:: classref-property
  688. :ref:`float<class_float>` **docks/property_editor/auto_refresh_interval**
  689. 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.
  690. .. rst-class:: classref-item-separator
  691. ----
  692. .. _class_EditorSettings_property_docks/property_editor/subresource_hue_tint:
  693. .. rst-class:: classref-property
  694. :ref:`float<class_float>` **docks/property_editor/subresource_hue_tint**
  695. 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.
  696. .. rst-class:: classref-item-separator
  697. ----
  698. .. _class_EditorSettings_property_docks/scene_tree/auto_expand_to_selected:
  699. .. rst-class:: classref-property
  700. :ref:`bool<class_bool>` **docks/scene_tree/auto_expand_to_selected**
  701. If ``true``, the scene tree dock will automatically unfold nodes when a node that has folded parents is selected.
  702. .. rst-class:: classref-item-separator
  703. ----
  704. .. _class_EditorSettings_property_docks/scene_tree/start_create_dialog_fully_expanded:
  705. .. rst-class:: classref-property
  706. :ref:`bool<class_bool>` **docks/scene_tree/start_create_dialog_fully_expanded**
  707. 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).
  708. .. rst-class:: classref-item-separator
  709. ----
  710. .. _class_EditorSettings_property_editors/2d/bone_color1:
  711. .. rst-class:: classref-property
  712. :ref:`Color<class_Color>` **editors/2d/bone_color1**
  713. The "start" stop of the color gradient to use for bones in the 2D skeleton editor.
  714. .. rst-class:: classref-item-separator
  715. ----
  716. .. _class_EditorSettings_property_editors/2d/bone_color2:
  717. .. rst-class:: classref-property
  718. :ref:`Color<class_Color>` **editors/2d/bone_color2**
  719. The "end" stop of the color gradient to use for bones in the 2D skeleton editor.
  720. .. rst-class:: classref-item-separator
  721. ----
  722. .. _class_EditorSettings_property_editors/2d/bone_ik_color:
  723. .. rst-class:: classref-property
  724. :ref:`Color<class_Color>` **editors/2d/bone_ik_color**
  725. The color to use for inverse kinematics-enabled bones in the 2D skeleton editor.
  726. .. rst-class:: classref-item-separator
  727. ----
  728. .. _class_EditorSettings_property_editors/2d/bone_outline_color:
  729. .. rst-class:: classref-property
  730. :ref:`Color<class_Color>` **editors/2d/bone_outline_color**
  731. 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>`.
  732. .. rst-class:: classref-item-separator
  733. ----
  734. .. _class_EditorSettings_property_editors/2d/bone_outline_size:
  735. .. rst-class:: classref-property
  736. :ref:`float<class_float>` **editors/2d/bone_outline_size**
  737. The outline size in the 2D skeleton editor (in pixels). See also :ref:`editors/2d/bone_width<class_EditorSettings_property_editors/2d/bone_width>`.
  738. \ **Note:** Changes to this value only apply after modifying a :ref:`Bone2D<class_Bone2D>` node in any way, or closing and reopening the scene.
  739. .. rst-class:: classref-item-separator
  740. ----
  741. .. _class_EditorSettings_property_editors/2d/bone_selected_color:
  742. .. rst-class:: classref-property
  743. :ref:`Color<class_Color>` **editors/2d/bone_selected_color**
  744. 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>`.
  745. .. rst-class:: classref-item-separator
  746. ----
  747. .. _class_EditorSettings_property_editors/2d/bone_width:
  748. .. rst-class:: classref-property
  749. :ref:`float<class_float>` **editors/2d/bone_width**
  750. 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>`.
  751. \ **Note:** Changes to this value only apply after modifying a :ref:`Bone2D<class_Bone2D>` node in any way, or closing and reopening the scene.
  752. .. rst-class:: classref-item-separator
  753. ----
  754. .. _class_EditorSettings_property_editors/2d/grid_color:
  755. .. rst-class:: classref-property
  756. :ref:`Color<class_Color>` **editors/2d/grid_color**
  757. The grid color to use in the 2D editor.
  758. .. rst-class:: classref-item-separator
  759. ----
  760. .. _class_EditorSettings_property_editors/2d/guides_color:
  761. .. rst-class:: classref-property
  762. :ref:`Color<class_Color>` **editors/2d/guides_color**
  763. The guides color to use in the 2D editor. Guides can be created by dragging the mouse cursor from the rulers.
  764. .. rst-class:: classref-item-separator
  765. ----
  766. .. _class_EditorSettings_property_editors/2d/smart_snapping_line_color:
  767. .. rst-class:: classref-property
  768. :ref:`Color<class_Color>` **editors/2d/smart_snapping_line_color**
  769. 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.
  770. .. rst-class:: classref-item-separator
  771. ----
  772. .. _class_EditorSettings_property_editors/2d/use_integer_zoom_by_default:
  773. .. rst-class:: classref-property
  774. :ref:`bool<class_bool>` **editors/2d/use_integer_zoom_by_default**
  775. 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.
  776. .. rst-class:: classref-item-separator
  777. ----
  778. .. _class_EditorSettings_property_editors/2d/viewport_border_color:
  779. .. rst-class:: classref-property
  780. :ref:`Color<class_Color>` **editors/2d/viewport_border_color**
  781. 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``.
  782. .. rst-class:: classref-item-separator
  783. ----
  784. .. _class_EditorSettings_property_editors/3d/default_fov:
  785. .. rst-class:: classref-property
  786. :ref:`float<class_float>` **editors/3d/default_fov**
  787. 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.
  788. \ **Note:** The editor camera always uses the **Keep Height** aspect mode.
  789. .. rst-class:: classref-item-separator
  790. ----
  791. .. _class_EditorSettings_property_editors/3d/default_z_far:
  792. .. rst-class:: classref-property
  793. :ref:`float<class_float>` **editors/3d/default_z_far**
  794. 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.
  795. .. rst-class:: classref-item-separator
  796. ----
  797. .. _class_EditorSettings_property_editors/3d/default_z_near:
  798. .. rst-class:: classref-property
  799. :ref:`float<class_float>` **editors/3d/default_z_near**
  800. 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.
  801. .. rst-class:: classref-item-separator
  802. ----
  803. .. _class_EditorSettings_property_editors/3d/freelook/freelook_activation_modifier:
  804. .. rst-class:: classref-property
  805. :ref:`int<class_int>` **editors/3d/freelook/freelook_activation_modifier**
  806. The modifier key to use to enable freelook in the 3D editor (on top of pressing the right mouse button).
  807. \ **Note:** Regardless of this setting, the freelook toggle keyboard shortcut (:kbd:`Shift + F` by default) is always available.
  808. \ **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.
  809. .. rst-class:: classref-item-separator
  810. ----
  811. .. _class_EditorSettings_property_editors/3d/freelook/freelook_base_speed:
  812. .. rst-class:: classref-property
  813. :ref:`float<class_float>` **editors/3d/freelook/freelook_base_speed**
  814. 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).
  815. .. rst-class:: classref-item-separator
  816. ----
  817. .. _class_EditorSettings_property_editors/3d/freelook/freelook_inertia:
  818. .. rst-class:: classref-property
  819. :ref:`float<class_float>` **editors/3d/freelook/freelook_inertia**
  820. The inertia of the 3D freelook camera. Higher values make the camera start and stop slower, which looks smoother but adds latency.
  821. .. rst-class:: classref-item-separator
  822. ----
  823. .. _class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme:
  824. .. rst-class:: classref-property
  825. :ref:`int<class_int>` **editors/3d/freelook/freelook_navigation_scheme**
  826. 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.
  827. - **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.
  828. - **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.
  829. - **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.
  830. See also :ref:`editors/3d/navigation/navigation_scheme<class_EditorSettings_property_editors/3d/navigation/navigation_scheme>`.
  831. .. rst-class:: classref-item-separator
  832. ----
  833. .. _class_EditorSettings_property_editors/3d/freelook/freelook_sensitivity:
  834. .. rst-class:: classref-property
  835. :ref:`float<class_float>` **editors/3d/freelook/freelook_sensitivity**
  836. 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>`.
  837. .. rst-class:: classref-item-separator
  838. ----
  839. .. _class_EditorSettings_property_editors/3d/freelook/freelook_speed_zoom_link:
  840. .. rst-class:: classref-property
  841. :ref:`bool<class_bool>` **editors/3d/freelook/freelook_speed_zoom_link**
  842. If ``true``, freelook speed is linked to the zoom value used in the camera orbit mode in the 3D editor.
  843. .. rst-class:: classref-item-separator
  844. ----
  845. .. _class_EditorSettings_property_editors/3d/grid_division_level_bias:
  846. .. rst-class:: classref-property
  847. :ref:`float<class_float>` **editors/3d/grid_division_level_bias**
  848. 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.
  849. .. rst-class:: classref-item-separator
  850. ----
  851. .. _class_EditorSettings_property_editors/3d/grid_division_level_max:
  852. .. rst-class:: classref-property
  853. :ref:`int<class_int>` **editors/3d/grid_division_level_max**
  854. 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.
  855. .. rst-class:: classref-item-separator
  856. ----
  857. .. _class_EditorSettings_property_editors/3d/grid_division_level_min:
  858. .. rst-class:: classref-property
  859. :ref:`int<class_int>` **editors/3d/grid_division_level_min**
  860. 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.
  861. .. rst-class:: classref-item-separator
  862. ----
  863. .. _class_EditorSettings_property_editors/3d/grid_size:
  864. .. rst-class:: classref-property
  865. :ref:`int<class_int>` **editors/3d/grid_size**
  866. 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.
  867. .. rst-class:: classref-item-separator
  868. ----
  869. .. _class_EditorSettings_property_editors/3d/grid_xy_plane:
  870. .. rst-class:: classref-property
  871. :ref:`bool<class_bool>` **editors/3d/grid_xy_plane**
  872. If ``true``, render the grid on an XY plane. This can be useful for 3D side-scrolling games.
  873. .. rst-class:: classref-item-separator
  874. ----
  875. .. _class_EditorSettings_property_editors/3d/grid_xz_plane:
  876. .. rst-class:: classref-property
  877. :ref:`bool<class_bool>` **editors/3d/grid_xz_plane**
  878. If ``true``, render the grid on an XZ plane.
  879. .. rst-class:: classref-item-separator
  880. ----
  881. .. _class_EditorSettings_property_editors/3d/grid_yz_plane:
  882. .. rst-class:: classref-property
  883. :ref:`bool<class_bool>` **editors/3d/grid_yz_plane**
  884. If ``true``, render the grid on a YZ plane. This can be useful for 3D side-scrolling games.
  885. .. rst-class:: classref-item-separator
  886. ----
  887. .. _class_EditorSettings_property_editors/3d/navigation/emulate_3_button_mouse:
  888. .. rst-class:: classref-property
  889. :ref:`bool<class_bool>` **editors/3d/navigation/emulate_3_button_mouse**
  890. If ``true``, enables 3-button mouse emulation mode. This is useful on laptops when using a trackpad.
  891. 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.
  892. \ **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.
  893. .. rst-class:: classref-item-separator
  894. ----
  895. .. _class_EditorSettings_property_editors/3d/navigation/emulate_numpad:
  896. .. rst-class:: classref-property
  897. :ref:`bool<class_bool>` **editors/3d/navigation/emulate_numpad**
  898. 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.
  899. .. rst-class:: classref-item-separator
  900. ----
  901. .. _class_EditorSettings_property_editors/3d/navigation/invert_x_axis:
  902. .. rst-class:: classref-property
  903. :ref:`bool<class_bool>` **editors/3d/navigation/invert_x_axis**
  904. If ``true``, invert the horizontal mouse axis when panning or orbiting in the 3D editor. This setting does *not* apply to freelook mode.
  905. .. rst-class:: classref-item-separator
  906. ----
  907. .. _class_EditorSettings_property_editors/3d/navigation/invert_y_axis:
  908. .. rst-class:: classref-property
  909. :ref:`bool<class_bool>` **editors/3d/navigation/invert_y_axis**
  910. If ``true``, invert the vertical mouse axis when panning, orbiting, or using freelook mode in the 3D editor.
  911. .. rst-class:: classref-item-separator
  912. ----
  913. .. _class_EditorSettings_property_editors/3d/navigation/navigation_scheme:
  914. .. rst-class:: classref-property
  915. :ref:`int<class_int>` **editors/3d/navigation/navigation_scheme**
  916. 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.
  917. - **Godot** Middle mouse button to orbit, :kbd:`Shift + Middle mouse button` to pan. :kbd:`Mouse wheel` to zoom.
  918. - **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.
  919. - **Modo:** :kbd:`Alt + Left mouse button` to orbit. :kbd:`Alt + Shift + Left mouse button` to pan. :kbd:`Ctrl + Alt + Left mouse button` to zoom.
  920. See also :ref:`editors/3d/freelook/freelook_navigation_scheme<class_EditorSettings_property_editors/3d/freelook/freelook_navigation_scheme>`.
  921. \ **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.
  922. .. rst-class:: classref-item-separator
  923. ----
  924. .. _class_EditorSettings_property_editors/3d/navigation/orbit_modifier:
  925. .. rst-class:: classref-property
  926. :ref:`int<class_int>` **editors/3d/navigation/orbit_modifier**
  927. The modifier key that must be held to orbit in the 3D editor.
  928. \ **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.
  929. \ **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.
  930. .. rst-class:: classref-item-separator
  931. ----
  932. .. _class_EditorSettings_property_editors/3d/navigation/pan_modifier:
  933. .. rst-class:: classref-property
  934. :ref:`int<class_int>` **editors/3d/navigation/pan_modifier**
  935. The modifier key that must be held to pan in the 3D editor.
  936. \ **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.
  937. .. rst-class:: classref-item-separator
  938. ----
  939. .. _class_EditorSettings_property_editors/3d/navigation/warped_mouse_panning:
  940. .. rst-class:: classref-property
  941. :ref:`bool<class_bool>` **editors/3d/navigation/warped_mouse_panning**
  942. 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.
  943. .. rst-class:: classref-item-separator
  944. ----
  945. .. _class_EditorSettings_property_editors/3d/navigation/zoom_modifier:
  946. .. rst-class:: classref-property
  947. :ref:`int<class_int>` **editors/3d/navigation/zoom_modifier**
  948. The modifier key that must be held to zoom in the 3D editor.
  949. \ **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.
  950. .. rst-class:: classref-item-separator
  951. ----
  952. .. _class_EditorSettings_property_editors/3d/navigation/zoom_style:
  953. .. rst-class:: classref-property
  954. :ref:`int<class_int>` **editors/3d/navigation/zoom_style**
  955. The mouse cursor movement direction to use when zooming by moving the mouse. This does not affect zooming with the mouse wheel.
  956. .. rst-class:: classref-item-separator
  957. ----
  958. .. _class_EditorSettings_property_editors/3d/navigation_feel/orbit_inertia:
  959. .. rst-class:: classref-property
  960. :ref:`float<class_float>` **editors/3d/navigation_feel/orbit_inertia**
  961. 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.
  962. .. rst-class:: classref-item-separator
  963. ----
  964. .. _class_EditorSettings_property_editors/3d/navigation_feel/orbit_sensitivity:
  965. .. rst-class:: classref-property
  966. :ref:`float<class_float>` **editors/3d/navigation_feel/orbit_sensitivity**
  967. 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>`.
  968. .. rst-class:: classref-item-separator
  969. ----
  970. .. _class_EditorSettings_property_editors/3d/navigation_feel/translation_inertia:
  971. .. rst-class:: classref-property
  972. :ref:`float<class_float>` **editors/3d/navigation_feel/translation_inertia**
  973. 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.
  974. .. rst-class:: classref-item-separator
  975. ----
  976. .. _class_EditorSettings_property_editors/3d/navigation_feel/zoom_inertia:
  977. .. rst-class:: classref-property
  978. :ref:`float<class_float>` **editors/3d/navigation_feel/zoom_inertia**
  979. 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.
  980. .. rst-class:: classref-item-separator
  981. ----
  982. .. _class_EditorSettings_property_editors/3d/primary_grid_color:
  983. .. rst-class:: classref-property
  984. :ref:`Color<class_Color>` **editors/3d/primary_grid_color**
  985. The color to use for the primary 3D grid. The color's alpha channel affects the grid's opacity.
  986. .. rst-class:: classref-item-separator
  987. ----
  988. .. _class_EditorSettings_property_editors/3d/primary_grid_steps:
  989. .. rst-class:: classref-property
  990. :ref:`int<class_int>` **editors/3d/primary_grid_steps**
  991. 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>`.
  992. .. rst-class:: classref-item-separator
  993. ----
  994. .. _class_EditorSettings_property_editors/3d/secondary_grid_color:
  995. .. rst-class:: classref-property
  996. :ref:`Color<class_Color>` **editors/3d/secondary_grid_color**
  997. 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.
  998. .. rst-class:: classref-item-separator
  999. ----
  1000. .. _class_EditorSettings_property_editors/3d/selection_box_color:
  1001. .. rst-class:: classref-property
  1002. :ref:`Color<class_Color>` **editors/3d/selection_box_color**
  1003. 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.
  1004. .. rst-class:: classref-item-separator
  1005. ----
  1006. .. _class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/instantiated:
  1007. .. rst-class:: classref-property
  1008. :ref:`Color<class_Color>` **editors/3d_gizmos/gizmo_colors/instantiated**
  1009. 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).
  1010. .. rst-class:: classref-item-separator
  1011. ----
  1012. .. _class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/joint:
  1013. .. rst-class:: classref-property
  1014. :ref:`Color<class_Color>` **editors/3d_gizmos/gizmo_colors/joint**
  1015. The 3D editor gizmo color for :ref:`Joint3D<class_Joint3D>`\ s and :ref:`PhysicalBone3D<class_PhysicalBone3D>`\ s.
  1016. .. rst-class:: classref-item-separator
  1017. ----
  1018. .. _class_EditorSettings_property_editors/3d_gizmos/gizmo_colors/shape:
  1019. .. rst-class:: classref-property
  1020. :ref:`Color<class_Color>` **editors/3d_gizmos/gizmo_colors/shape**
  1021. The 3D editor gizmo color for :ref:`CollisionShape3D<class_CollisionShape3D>`\ s, :ref:`VehicleWheel3D<class_VehicleWheel3D>`\ s, :ref:`RayCast3D<class_RayCast3D>`\ s and :ref:`SpringArm3D<class_SpringArm3D>`\ s.
  1022. .. rst-class:: classref-item-separator
  1023. ----
  1024. .. _class_EditorSettings_property_editors/animation/autorename_animation_tracks:
  1025. .. rst-class:: classref-property
  1026. :ref:`bool<class_bool>` **editors/animation/autorename_animation_tracks**
  1027. If ``true``, automatically updates animation tracks' target paths when renaming or reparenting nodes in the Scene tree dock.
  1028. .. rst-class:: classref-item-separator
  1029. ----
  1030. .. _class_EditorSettings_property_editors/animation/default_create_bezier_tracks:
  1031. .. rst-class:: classref-property
  1032. :ref:`bool<class_bool>` **editors/animation/default_create_bezier_tracks**
  1033. 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.
  1034. .. rst-class:: classref-item-separator
  1035. ----
  1036. .. _class_EditorSettings_property_editors/animation/default_create_reset_tracks:
  1037. .. rst-class:: classref-property
  1038. :ref:`bool<class_bool>` **editors/animation/default_create_reset_tracks**
  1039. 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.
  1040. .. rst-class:: classref-item-separator
  1041. ----
  1042. .. _class_EditorSettings_property_editors/animation/onion_layers_future_color:
  1043. .. rst-class:: classref-property
  1044. :ref:`Color<class_Color>` **editors/animation/onion_layers_future_color**
  1045. The modulate color to use for "future" frames displayed in the animation editor's onion skinning feature.
  1046. .. rst-class:: classref-item-separator
  1047. ----
  1048. .. _class_EditorSettings_property_editors/animation/onion_layers_past_color:
  1049. .. rst-class:: classref-property
  1050. :ref:`Color<class_Color>` **editors/animation/onion_layers_past_color**
  1051. The modulate color to use for "past" frames displayed in the animation editor's onion skinning feature.
  1052. .. rst-class:: classref-item-separator
  1053. ----
  1054. .. _class_EditorSettings_property_editors/grid_map/pick_distance:
  1055. .. rst-class:: classref-property
  1056. :ref:`float<class_float>` **editors/grid_map/pick_distance**
  1057. The maximum distance at which tiles can be placed on a GridMap, relative to the camera position (in 3D units).
  1058. .. rst-class:: classref-item-separator
  1059. ----
  1060. .. _class_EditorSettings_property_editors/panning/2d_editor_pan_speed:
  1061. .. rst-class:: classref-property
  1062. :ref:`int<class_int>` **editors/panning/2d_editor_pan_speed**
  1063. 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.
  1064. .. rst-class:: classref-item-separator
  1065. ----
  1066. .. _class_EditorSettings_property_editors/panning/2d_editor_panning_scheme:
  1067. .. rst-class:: classref-property
  1068. :ref:`int<class_int>` **editors/panning/2d_editor_panning_scheme**
  1069. 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>`.
  1070. .. rst-class:: classref-item-separator
  1071. ----
  1072. .. _class_EditorSettings_property_editors/panning/animation_editors_panning_scheme:
  1073. .. rst-class:: classref-property
  1074. :ref:`int<class_int>` **editors/panning/animation_editors_panning_scheme**
  1075. 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).
  1076. .. rst-class:: classref-item-separator
  1077. ----
  1078. .. _class_EditorSettings_property_editors/panning/simple_panning:
  1079. .. rst-class:: classref-property
  1080. :ref:`bool<class_bool>` **editors/panning/simple_panning**
  1081. 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.
  1082. .. rst-class:: classref-item-separator
  1083. ----
  1084. .. _class_EditorSettings_property_editors/panning/sub_editors_panning_scheme:
  1085. .. rst-class:: classref-property
  1086. :ref:`int<class_int>` **editors/panning/sub_editors_panning_scheme**
  1087. 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>`.
  1088. .. rst-class:: classref-item-separator
  1089. ----
  1090. .. _class_EditorSettings_property_editors/panning/warped_mouse_panning:
  1091. .. rst-class:: classref-property
  1092. :ref:`bool<class_bool>` **editors/panning/warped_mouse_panning**
  1093. 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.
  1094. .. rst-class:: classref-item-separator
  1095. ----
  1096. .. _class_EditorSettings_property_editors/polygon_editor/point_grab_radius:
  1097. .. rst-class:: classref-property
  1098. :ref:`int<class_int>` **editors/polygon_editor/point_grab_radius**
  1099. 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.
  1100. .. rst-class:: classref-item-separator
  1101. ----
  1102. .. _class_EditorSettings_property_editors/polygon_editor/show_previous_outline:
  1103. .. rst-class:: classref-property
  1104. :ref:`bool<class_bool>` **editors/polygon_editor/show_previous_outline**
  1105. 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.
  1106. .. rst-class:: classref-item-separator
  1107. ----
  1108. .. _class_EditorSettings_property_editors/shader_editor/behavior/files/restore_shaders_on_load:
  1109. .. rst-class:: classref-property
  1110. :ref:`bool<class_bool>` **editors/shader_editor/behavior/files/restore_shaders_on_load**
  1111. If ``true``, reopens shader files that were open in the shader editor when the project was last closed.
  1112. .. rst-class:: classref-item-separator
  1113. ----
  1114. .. _class_EditorSettings_property_editors/tiles_editor/display_grid:
  1115. .. rst-class:: classref-property
  1116. :ref:`bool<class_bool>` **editors/tiles_editor/display_grid**
  1117. 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>`.
  1118. .. rst-class:: classref-item-separator
  1119. ----
  1120. .. _class_EditorSettings_property_editors/tiles_editor/grid_color:
  1121. .. rst-class:: classref-property
  1122. :ref:`Color<class_Color>` **editors/tiles_editor/grid_color**
  1123. The color to use for the TileMap editor's grid.
  1124. \ **Note:** Only effective if :ref:`editors/tiles_editor/display_grid<class_EditorSettings_property_editors/tiles_editor/display_grid>` is ``true``.
  1125. .. rst-class:: classref-item-separator
  1126. ----
  1127. .. _class_EditorSettings_property_editors/visual_editors/lines_curvature:
  1128. .. rst-class:: classref-property
  1129. :ref:`float<class_float>` **editors/visual_editors/lines_curvature**
  1130. 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.
  1131. .. rst-class:: classref-item-separator
  1132. ----
  1133. .. _class_EditorSettings_property_editors/visual_editors/minimap_opacity:
  1134. .. rst-class:: classref-property
  1135. :ref:`float<class_float>` **editors/visual_editors/minimap_opacity**
  1136. The opacity of the minimap displayed in the bottom-right corner of the visual shader editor.
  1137. .. rst-class:: classref-item-separator
  1138. ----
  1139. .. _class_EditorSettings_property_editors/visual_editors/visual_shader/port_preview_size:
  1140. .. rst-class:: classref-property
  1141. :ref:`int<class_int>` **editors/visual_editors/visual_shader/port_preview_size**
  1142. 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.
  1143. .. rst-class:: classref-item-separator
  1144. ----
  1145. .. _class_EditorSettings_property_filesystem/directories/autoscan_project_path:
  1146. .. rst-class:: classref-property
  1147. :ref:`String<class_String>` **filesystem/directories/autoscan_project_path**
  1148. 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.
  1149. \ **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.
  1150. .. rst-class:: classref-item-separator
  1151. ----
  1152. .. _class_EditorSettings_property_filesystem/directories/default_project_path:
  1153. .. rst-class:: classref-property
  1154. :ref:`String<class_String>` **filesystem/directories/default_project_path**
  1155. 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.
  1156. .. rst-class:: classref-item-separator
  1157. ----
  1158. .. _class_EditorSettings_property_filesystem/external_programs/3d_model_editor:
  1159. .. rst-class:: classref-property
  1160. :ref:`String<class_String>` **filesystem/external_programs/3d_model_editor**
  1161. 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.
  1162. .. rst-class:: classref-item-separator
  1163. ----
  1164. .. _class_EditorSettings_property_filesystem/external_programs/audio_editor:
  1165. .. rst-class:: classref-property
  1166. :ref:`String<class_String>` **filesystem/external_programs/audio_editor**
  1167. 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.
  1168. .. rst-class:: classref-item-separator
  1169. ----
  1170. .. _class_EditorSettings_property_filesystem/external_programs/raster_image_editor:
  1171. .. rst-class:: classref-property
  1172. :ref:`String<class_String>` **filesystem/external_programs/raster_image_editor**
  1173. 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.
  1174. .. rst-class:: classref-item-separator
  1175. ----
  1176. .. _class_EditorSettings_property_filesystem/external_programs/terminal_emulator:
  1177. .. rst-class:: classref-property
  1178. :ref:`String<class_String>` **filesystem/external_programs/terminal_emulator**
  1179. 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.
  1180. If left empty, Godot will use the default terminal emulator for the system:
  1181. - **Windows:** PowerShell
  1182. - **macOS:** Terminal.app
  1183. - **Linux:** The first terminal found on the system in this order: gnome-terminal, konsole, xfce4-terminal, lxterminal, kitty, alacritty, urxvt, xterm.
  1184. To use Command Prompt (cmd) instead of PowerShell on Windows, enter ``cmd`` in this field and the correct flags will automatically be used.
  1185. 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.
  1186. 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.
  1187. .. rst-class:: classref-item-separator
  1188. ----
  1189. .. _class_EditorSettings_property_filesystem/external_programs/terminal_emulator_flags:
  1190. .. rst-class:: classref-property
  1191. :ref:`String<class_String>` **filesystem/external_programs/terminal_emulator_flags**
  1192. 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>`.
  1193. 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.
  1194. \ **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.
  1195. .. rst-class:: classref-item-separator
  1196. ----
  1197. .. _class_EditorSettings_property_filesystem/external_programs/vector_image_editor:
  1198. .. rst-class:: classref-property
  1199. :ref:`String<class_String>` **filesystem/external_programs/vector_image_editor**
  1200. 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.
  1201. .. rst-class:: classref-item-separator
  1202. ----
  1203. .. _class_EditorSettings_property_filesystem/file_dialog/display_mode:
  1204. .. rst-class:: classref-property
  1205. :ref:`int<class_int>` **filesystem/file_dialog/display_mode**
  1206. The display mode to use in the editor's file dialogs.
  1207. - **Thumbnails** takes more space, but displays dynamic resource thumbnails, making resources easier to preview without having to open them.
  1208. - **List** is more compact but doesn't display dynamic resource thumbnails. Instead, it displays static icons based on the file extension.
  1209. .. rst-class:: classref-item-separator
  1210. ----
  1211. .. _class_EditorSettings_property_filesystem/file_dialog/show_hidden_files:
  1212. .. rst-class:: classref-property
  1213. :ref:`bool<class_bool>` **filesystem/file_dialog/show_hidden_files**
  1214. If ``true``, display hidden files in the editor's file dialogs. Files that have names starting with ``.`` are considered hidden (e.g. ``.hidden_file``).
  1215. .. rst-class:: classref-item-separator
  1216. ----
  1217. .. _class_EditorSettings_property_filesystem/file_dialog/thumbnail_size:
  1218. .. rst-class:: classref-property
  1219. :ref:`int<class_int>` **filesystem/file_dialog/thumbnail_size**
  1220. 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>`.
  1221. .. rst-class:: classref-item-separator
  1222. ----
  1223. .. _class_EditorSettings_property_filesystem/import/blender/blender_path:
  1224. .. rst-class:: classref-property
  1225. :ref:`String<class_String>` **filesystem/import/blender/blender_path**
  1226. 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.
  1227. To enable this feature for your specific project, use :ref:`ProjectSettings.filesystem/import/blender/enabled<class_ProjectSettings_property_filesystem/import/blender/enabled>`.
  1228. .. rst-class:: classref-item-separator
  1229. ----
  1230. .. _class_EditorSettings_property_filesystem/import/blender/rpc_port:
  1231. .. rst-class:: classref-property
  1232. :ref:`int<class_int>` **filesystem/import/blender/rpc_port**
  1233. The port number used for Remote Procedure Call (RPC) communication with Godot's created process of the blender executable.
  1234. Setting this to 0 effectively disables communication with Godot and the blender process, making performance slower.
  1235. .. rst-class:: classref-item-separator
  1236. ----
  1237. .. _class_EditorSettings_property_filesystem/import/blender/rpc_server_uptime:
  1238. .. rst-class:: classref-property
  1239. :ref:`float<class_float>` **filesystem/import/blender/rpc_server_uptime**
  1240. The maximum idle uptime (in seconds) of the Blender process.
  1241. This prevents Godot from having to create a new process for each import within the given seconds.
  1242. .. rst-class:: classref-item-separator
  1243. ----
  1244. .. _class_EditorSettings_property_filesystem/import/fbx/fbx2gltf_path:
  1245. .. rst-class:: classref-property
  1246. :ref:`String<class_String>` **filesystem/import/fbx/fbx2gltf_path**
  1247. The path to the FBX2glTF executable used for converting Autodesk FBX 3D scene files ``.fbx`` to glTF 2.0 format during import.
  1248. To enable this feature for your specific project, use :ref:`ProjectSettings.filesystem/import/fbx/enabled<class_ProjectSettings_property_filesystem/import/fbx/enabled>`.
  1249. .. rst-class:: classref-item-separator
  1250. ----
  1251. .. _class_EditorSettings_property_filesystem/on_save/compress_binary_resources:
  1252. .. rst-class:: classref-property
  1253. :ref:`bool<class_bool>` **filesystem/on_save/compress_binary_resources**
  1254. If ``true``, uses lossless compression for binary resources.
  1255. .. rst-class:: classref-item-separator
  1256. ----
  1257. .. _class_EditorSettings_property_filesystem/on_save/safe_save_on_backup_then_rename:
  1258. .. rst-class:: classref-property
  1259. :ref:`bool<class_bool>` **filesystem/on_save/safe_save_on_backup_then_rename**
  1260. 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).
  1261. \ **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.
  1262. .. rst-class:: classref-item-separator
  1263. ----
  1264. .. _class_EditorSettings_property_filesystem/tools/oidn/oidn_denoise_path:
  1265. .. rst-class:: classref-property
  1266. :ref:`String<class_String>` **filesystem/tools/oidn/oidn_denoise_path**
  1267. 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>`__.
  1268. To enable this feature for your specific project, use :ref:`ProjectSettings.rendering/lightmapping/denoising/denoiser<class_ProjectSettings_property_rendering/lightmapping/denoising/denoiser>`.
  1269. .. rst-class:: classref-item-separator
  1270. ----
  1271. .. _class_EditorSettings_property_interface/editor/accept_dialog_cancel_ok_buttons:
  1272. .. rst-class:: classref-property
  1273. :ref:`int<class_int>` **interface/editor/accept_dialog_cancel_ok_buttons**
  1274. 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.
  1275. - **Auto** follows the platform convention: Cancel first on macOS and Linux, OK first on Windows.
  1276. - **Cancel First** forces the ordering Cancel/OK.
  1277. - **OK First** forces the ordering OK/Cancel.
  1278. .. rst-class:: classref-item-separator
  1279. ----
  1280. .. _class_EditorSettings_property_interface/editor/automatically_open_screenshots:
  1281. .. rst-class:: classref-property
  1282. :ref:`bool<class_bool>` **interface/editor/automatically_open_screenshots**
  1283. If ``true``, automatically opens screenshots with the default program associated to ``.png`` files after a screenshot is taken using the **Editor > Take Screenshot** action.
  1284. .. rst-class:: classref-item-separator
  1285. ----
  1286. .. _class_EditorSettings_property_interface/editor/code_font:
  1287. .. rst-class:: classref-property
  1288. :ref:`String<class_String>` **interface/editor/code_font**
  1289. 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.
  1290. .. rst-class:: classref-item-separator
  1291. ----
  1292. .. _class_EditorSettings_property_interface/editor/code_font_contextual_ligatures:
  1293. .. rst-class:: classref-property
  1294. :ref:`int<class_int>` **interface/editor/code_font_contextual_ligatures**
  1295. The font ligatures to enable for the currently configured code font. Not all fonts include support for ligatures.
  1296. \ **Note:** The default editor code font (`JetBrains Mono <https://www.jetbrains.com/lp/mono/>`__) has contextual ligatures in its font file.
  1297. .. rst-class:: classref-item-separator
  1298. ----
  1299. .. _class_EditorSettings_property_interface/editor/code_font_custom_opentype_features:
  1300. .. rst-class:: classref-property
  1301. :ref:`String<class_String>` **interface/editor/code_font_custom_opentype_features**
  1302. 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.
  1303. \ **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.
  1304. .. rst-class:: classref-item-separator
  1305. ----
  1306. .. _class_EditorSettings_property_interface/editor/code_font_custom_variations:
  1307. .. rst-class:: classref-property
  1308. :ref:`String<class_String>` **interface/editor/code_font_custom_variations**
  1309. 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.
  1310. \ **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.
  1311. .. rst-class:: classref-item-separator
  1312. ----
  1313. .. _class_EditorSettings_property_interface/editor/code_font_size:
  1314. .. rst-class:: classref-property
  1315. :ref:`int<class_int>` **interface/editor/code_font_size**
  1316. 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>`).
  1317. .. rst-class:: classref-item-separator
  1318. ----
  1319. .. _class_EditorSettings_property_interface/editor/custom_display_scale:
  1320. .. rst-class:: classref-property
  1321. :ref:`float<class_float>` **interface/editor/custom_display_scale**
  1322. 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.
  1323. \ **Note:** Only effective if :ref:`interface/editor/display_scale<class_EditorSettings_property_interface/editor/display_scale>` is set to **Custom**.
  1324. .. rst-class:: classref-item-separator
  1325. ----
  1326. .. _class_EditorSettings_property_interface/editor/debug/enable_pseudolocalization:
  1327. .. rst-class:: classref-property
  1328. :ref:`bool<class_bool>` **interface/editor/debug/enable_pseudolocalization**
  1329. If ``true``, lengthens the editor's localizable strings and replaces their characters with accented variants. This allows spotting non-localizable strings easily, while also ensuring the UI layout doesn't break when strings are made longer (as many languages require strings to be longer).
  1330. This is a debugging feature and should only be enabled when working on the editor itself.
  1331. .. rst-class:: classref-item-separator
  1332. ----
  1333. .. _class_EditorSettings_property_interface/editor/display_scale:
  1334. .. rst-class:: classref-property
  1335. :ref:`int<class_int>` **interface/editor/display_scale**
  1336. The display scale factor to use for the editor interface. Higher values are more suited to hiDPI/Retina displays.
  1337. 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.
  1338. 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.
  1339. .. rst-class:: classref-item-separator
  1340. ----
  1341. .. _class_EditorSettings_property_interface/editor/editor_language:
  1342. .. rst-class:: classref-property
  1343. :ref:`String<class_String>` **interface/editor/editor_language**
  1344. The language to use for the editor interface.
  1345. Translations are provided by the community. If you spot a mistake, :doc:`contribute to editor translations on Weblate! <../contributing/documentation/editor_and_docs_localization>`
  1346. .. rst-class:: classref-item-separator
  1347. ----
  1348. .. _class_EditorSettings_property_interface/editor/editor_screen:
  1349. .. rst-class:: classref-property
  1350. :ref:`int<class_int>` **interface/editor/editor_screen**
  1351. The preferred monitor to display the editor.
  1352. .. rst-class:: classref-item-separator
  1353. ----
  1354. .. _class_EditorSettings_property_interface/editor/expand_to_title:
  1355. .. rst-class:: classref-property
  1356. :ref:`bool<class_bool>` **interface/editor/expand_to_title**
  1357. 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>`.
  1358. Specific to the macOS platform.
  1359. .. rst-class:: classref-item-separator
  1360. ----
  1361. .. _class_EditorSettings_property_interface/editor/font_antialiasing:
  1362. .. rst-class:: classref-property
  1363. :ref:`int<class_int>` **interface/editor/font_antialiasing**
  1364. 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.
  1365. .. rst-class:: classref-item-separator
  1366. ----
  1367. .. _class_EditorSettings_property_interface/editor/font_hinting:
  1368. .. rst-class:: classref-property
  1369. :ref:`int<class_int>` **interface/editor/font_hinting**
  1370. The font hinting mode to use for the editor fonts. FreeType supports the following font hinting modes:
  1371. - **None:** Don't use font hinting when rasterizing the font. This results in a smooth font, but it can look blurry.
  1372. - **Light:** Use hinting on the X axis only. This is a compromise between font sharpness and smoothness.
  1373. - **Normal:** Use hinting on both X and Y axes. This results in a sharp font, but it doesn't look very smooth.
  1374. 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.
  1375. .. rst-class:: classref-item-separator
  1376. ----
  1377. .. _class_EditorSettings_property_interface/editor/font_subpixel_positioning:
  1378. .. rst-class:: classref-property
  1379. :ref:`int<class_int>` **interface/editor/font_subpixel_positioning**
  1380. 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).
  1381. .. rst-class:: classref-item-separator
  1382. ----
  1383. .. _class_EditorSettings_property_interface/editor/low_processor_mode_sleep_usec:
  1384. .. rst-class:: classref-property
  1385. :ref:`float<class_float>` **interface/editor/low_processor_mode_sleep_usec**
  1386. 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>`.
  1387. .. rst-class:: classref-item-separator
  1388. ----
  1389. .. _class_EditorSettings_property_interface/editor/main_font:
  1390. .. rst-class:: classref-property
  1391. :ref:`String<class_String>` **interface/editor/main_font**
  1392. 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.
  1393. .. rst-class:: classref-item-separator
  1394. ----
  1395. .. _class_EditorSettings_property_interface/editor/main_font_bold:
  1396. .. rst-class:: classref-property
  1397. :ref:`String<class_String>` **interface/editor/main_font_bold**
  1398. 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.
  1399. .. rst-class:: classref-item-separator
  1400. ----
  1401. .. _class_EditorSettings_property_interface/editor/main_font_size:
  1402. .. rst-class:: classref-property
  1403. :ref:`int<class_int>` **interface/editor/main_font_size**
  1404. The size of the font in the editor interface.
  1405. .. rst-class:: classref-item-separator
  1406. ----
  1407. .. _class_EditorSettings_property_interface/editor/mouse_extra_buttons_navigate_history:
  1408. .. rst-class:: classref-property
  1409. :ref:`bool<class_bool>` **interface/editor/mouse_extra_buttons_navigate_history**
  1410. 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).
  1411. .. rst-class:: classref-item-separator
  1412. ----
  1413. .. _class_EditorSettings_property_interface/editor/project_manager_screen:
  1414. .. rst-class:: classref-property
  1415. :ref:`int<class_int>` **interface/editor/project_manager_screen**
  1416. The preferred monitor to display the project manager.
  1417. .. rst-class:: classref-item-separator
  1418. ----
  1419. .. _class_EditorSettings_property_interface/editor/save_each_scene_on_quit:
  1420. .. rst-class:: classref-property
  1421. :ref:`bool<class_bool>` **interface/editor/save_each_scene_on_quit**
  1422. 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.
  1423. .. rst-class:: classref-item-separator
  1424. ----
  1425. .. _class_EditorSettings_property_interface/editor/separate_distraction_mode:
  1426. .. rst-class:: classref-property
  1427. :ref:`bool<class_bool>` **interface/editor/separate_distraction_mode**
  1428. 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.
  1429. .. rst-class:: classref-item-separator
  1430. ----
  1431. .. _class_EditorSettings_property_interface/editor/show_internal_errors_in_toast_notifications:
  1432. .. rst-class:: classref-property
  1433. :ref:`int<class_int>` **interface/editor/show_internal_errors_in_toast_notifications**
  1434. 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.
  1435. The default **Auto** value will only enable this if the editor was compiled with the ``dev=yes`` option (the default is ``dev=no``).
  1436. .. rst-class:: classref-item-separator
  1437. ----
  1438. .. _class_EditorSettings_property_interface/editor/single_window_mode:
  1439. .. rst-class:: classref-property
  1440. :ref:`bool<class_bool>` **interface/editor/single_window_mode**
  1441. 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.
  1442. \ **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.
  1443. .. rst-class:: classref-item-separator
  1444. ----
  1445. .. _class_EditorSettings_property_interface/editor/ui_layout_direction:
  1446. .. rst-class:: classref-property
  1447. :ref:`int<class_int>` **interface/editor/ui_layout_direction**
  1448. Editor UI default layout direction.
  1449. .. rst-class:: classref-item-separator
  1450. ----
  1451. .. _class_EditorSettings_property_interface/editor/unfocused_low_processor_mode_sleep_usec:
  1452. .. rst-class:: classref-property
  1453. :ref:`float<class_float>` **interface/editor/unfocused_low_processor_mode_sleep_usec**
  1454. 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>`.
  1455. .. rst-class:: classref-item-separator
  1456. ----
  1457. .. _class_EditorSettings_property_interface/editor/use_embedded_menu:
  1458. .. rst-class:: classref-property
  1459. :ref:`bool<class_bool>` **interface/editor/use_embedded_menu**
  1460. If ``true``, editor main menu is using embedded :ref:`MenuBar<class_MenuBar>` instead of system global menu.
  1461. Specific to the macOS platform.
  1462. .. rst-class:: classref-item-separator
  1463. ----
  1464. .. _class_EditorSettings_property_interface/editor/vsync_mode:
  1465. .. rst-class:: classref-property
  1466. :ref:`int<class_int>` **interface/editor/vsync_mode**
  1467. 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>`).
  1468. Depending on the platform and used renderer, the engine will fall back to **Enabled** if the desired mode is not supported.
  1469. \ **Note:** V-Sync modes other than **Enabled** are only supported in the Forward+ and Mobile rendering methods, not Compatibility.
  1470. .. rst-class:: classref-item-separator
  1471. ----
  1472. .. _class_EditorSettings_property_interface/inspector/float_drag_speed:
  1473. .. rst-class:: classref-property
  1474. :ref:`float<class_float>` **interface/inspector/float_drag_speed**
  1475. Base speed for increasing/decreasing float values by dragging them in the inspector.
  1476. .. rst-class:: classref-item-separator
  1477. ----
  1478. .. _class_EditorSettings_property_interface/inspector/max_array_dictionary_items_per_page:
  1479. .. rst-class:: classref-property
  1480. :ref:`int<class_int>` **interface/inspector/max_array_dictionary_items_per_page**
  1481. 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.
  1482. .. rst-class:: classref-item-separator
  1483. ----
  1484. .. _class_EditorSettings_property_interface/inspector/show_low_level_opentype_features:
  1485. .. rst-class:: classref-property
  1486. :ref:`bool<class_bool>` **interface/inspector/show_low_level_opentype_features**
  1487. If ``true``, display OpenType features marked as ``hidden`` by the font file in the :ref:`Font<class_Font>` editor.
  1488. .. rst-class:: classref-item-separator
  1489. ----
  1490. .. _class_EditorSettings_property_interface/multi_window/enable:
  1491. .. rst-class:: classref-property
  1492. :ref:`bool<class_bool>` **interface/multi_window/enable**
  1493. 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.
  1494. \ **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.
  1495. \ **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.
  1496. .. rst-class:: classref-item-separator
  1497. ----
  1498. .. _class_EditorSettings_property_interface/multi_window/maximize_window:
  1499. .. rst-class:: classref-property
  1500. :ref:`bool<class_bool>` **interface/multi_window/maximize_window**
  1501. If ``true``, when panels are made floating they will be maximized.
  1502. 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.
  1503. .. rst-class:: classref-item-separator
  1504. ----
  1505. .. _class_EditorSettings_property_interface/multi_window/restore_windows_on_load:
  1506. .. rst-class:: classref-property
  1507. :ref:`bool<class_bool>` **interface/multi_window/restore_windows_on_load**
  1508. 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.
  1509. .. rst-class:: classref-item-separator
  1510. ----
  1511. .. _class_EditorSettings_property_interface/scene_tabs/display_close_button:
  1512. .. rst-class:: classref-property
  1513. :ref:`int<class_int>` **interface/scene_tabs/display_close_button**
  1514. Controls when the Close (X) button is displayed on scene tabs at the top of the editor.
  1515. .. rst-class:: classref-item-separator
  1516. ----
  1517. .. _class_EditorSettings_property_interface/scene_tabs/maximum_width:
  1518. .. rst-class:: classref-property
  1519. :ref:`int<class_int>` **interface/scene_tabs/maximum_width**
  1520. The maximum width of each scene tab at the top editor (in pixels).
  1521. .. rst-class:: classref-item-separator
  1522. ----
  1523. .. _class_EditorSettings_property_interface/scene_tabs/show_script_button:
  1524. .. rst-class:: classref-property
  1525. :ref:`bool<class_bool>` **interface/scene_tabs/show_script_button**
  1526. 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.
  1527. .. rst-class:: classref-item-separator
  1528. ----
  1529. .. _class_EditorSettings_property_interface/scene_tabs/show_thumbnail_on_hover:
  1530. .. rst-class:: classref-property
  1531. :ref:`bool<class_bool>` **interface/scene_tabs/show_thumbnail_on_hover**
  1532. If ``true``, display an automatically-generated thumbnail when hovering scene tabs with the mouse. Scene thumbnails are generated when saving the scene.
  1533. .. rst-class:: classref-item-separator
  1534. ----
  1535. .. _class_EditorSettings_property_interface/theme/accent_color:
  1536. .. rst-class:: classref-property
  1537. :ref:`Color<class_Color>` **interface/theme/accent_color**
  1538. The color to use for "highlighted" user interface elements in the editor (pressed and hovered items).
  1539. .. rst-class:: classref-item-separator
  1540. ----
  1541. .. _class_EditorSettings_property_interface/theme/additional_spacing:
  1542. .. rst-class:: classref-property
  1543. :ref:`int<class_int>` **interface/theme/additional_spacing**
  1544. 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.
  1545. See also :ref:`interface/theme/spacing_preset<class_EditorSettings_property_interface/theme/spacing_preset>`.
  1546. .. rst-class:: classref-item-separator
  1547. ----
  1548. .. _class_EditorSettings_property_interface/theme/base_color:
  1549. .. rst-class:: classref-property
  1550. :ref:`Color<class_Color>` **interface/theme/base_color**
  1551. The base color to use for user interface elements in the editor. Secondary colors (such as darker/lighter variants) are derived from this color.
  1552. .. rst-class:: classref-item-separator
  1553. ----
  1554. .. _class_EditorSettings_property_interface/theme/base_spacing:
  1555. .. rst-class:: classref-property
  1556. :ref:`int<class_int>` **interface/theme/base_spacing**
  1557. 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>`.
  1558. .. rst-class:: classref-item-separator
  1559. ----
  1560. .. _class_EditorSettings_property_interface/theme/border_size:
  1561. .. rst-class:: classref-property
  1562. :ref:`int<class_int>` **interface/theme/border_size**
  1563. The border size to use for interface elements (in pixels).
  1564. .. rst-class:: classref-item-separator
  1565. ----
  1566. .. _class_EditorSettings_property_interface/theme/contrast:
  1567. .. rst-class:: classref-property
  1568. :ref:`float<class_float>` **interface/theme/contrast**
  1569. 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.
  1570. .. rst-class:: classref-item-separator
  1571. ----
  1572. .. _class_EditorSettings_property_interface/theme/corner_radius:
  1573. .. rst-class:: classref-property
  1574. :ref:`int<class_int>` **interface/theme/corner_radius**
  1575. The corner radius to use for interface elements (in pixels). ``0`` is square.
  1576. .. rst-class:: classref-item-separator
  1577. ----
  1578. .. _class_EditorSettings_property_interface/theme/custom_theme:
  1579. .. rst-class:: classref-property
  1580. :ref:`String<class_String>` **interface/theme/custom_theme**
  1581. The custom theme resource to use for the editor. Must be a Godot theme resource in ``.tres`` or ``.res`` format.
  1582. .. rst-class:: classref-item-separator
  1583. ----
  1584. .. _class_EditorSettings_property_interface/theme/draw_extra_borders:
  1585. .. rst-class:: classref-property
  1586. :ref:`bool<class_bool>` **interface/theme/draw_extra_borders**
  1587. 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.
  1588. .. rst-class:: classref-item-separator
  1589. ----
  1590. .. _class_EditorSettings_property_interface/theme/icon_and_font_color:
  1591. .. rst-class:: classref-property
  1592. :ref:`int<class_int>` **interface/theme/icon_and_font_color**
  1593. The icon and font color scheme to use in the editor.
  1594. - **Auto** determines the color scheme to use automatically based on :ref:`interface/theme/base_color<class_EditorSettings_property_interface/theme/base_color>`.
  1595. - **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/editor_themes.cpp>`__.
  1596. - **Light** makes fonts and icons light (suitable for dark themes).
  1597. .. rst-class:: classref-item-separator
  1598. ----
  1599. .. _class_EditorSettings_property_interface/theme/icon_saturation:
  1600. .. rst-class:: classref-property
  1601. :ref:`float<class_float>` **interface/theme/icon_saturation**
  1602. The saturation to use for editor icons. Higher values result in more vibrant colors.
  1603. \ **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``.
  1604. .. rst-class:: classref-item-separator
  1605. ----
  1606. .. _class_EditorSettings_property_interface/theme/preset:
  1607. .. rst-class:: classref-property
  1608. :ref:`String<class_String>` **interface/theme/preset**
  1609. The editor theme preset to use.
  1610. .. rst-class:: classref-item-separator
  1611. ----
  1612. .. _class_EditorSettings_property_interface/theme/relationship_line_opacity:
  1613. .. rst-class:: classref-property
  1614. :ref:`float<class_float>` **interface/theme/relationship_line_opacity**
  1615. The opacity to use when drawing relationship lines in the editor's :ref:`Tree<class_Tree>`-based GUIs (such as the Scene tree dock).
  1616. .. rst-class:: classref-item-separator
  1617. ----
  1618. .. _class_EditorSettings_property_interface/theme/spacing_preset:
  1619. .. rst-class:: classref-property
  1620. :ref:`String<class_String>` **interface/theme/spacing_preset**
  1621. 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>`.
  1622. .. rst-class:: classref-item-separator
  1623. ----
  1624. .. _class_EditorSettings_property_interface/touchscreen/enable_long_press_as_right_click:
  1625. .. rst-class:: classref-property
  1626. :ref:`bool<class_bool>` **interface/touchscreen/enable_long_press_as_right_click**
  1627. If ``true``, long press on touchscreen is treated as right click.
  1628. \ **Note:** Defaults to ``true`` on touchscreen devices.
  1629. .. rst-class:: classref-item-separator
  1630. ----
  1631. .. _class_EditorSettings_property_interface/touchscreen/enable_pan_and_scale_gestures:
  1632. .. rst-class:: classref-property
  1633. :ref:`bool<class_bool>` **interface/touchscreen/enable_pan_and_scale_gestures**
  1634. If ``true``, enable two finger pan and scale gestures on touchscreen devices.
  1635. \ **Note:** Defaults to ``true`` on touchscreen devices.
  1636. .. rst-class:: classref-item-separator
  1637. ----
  1638. .. _class_EditorSettings_property_interface/touchscreen/increase_scrollbar_touch_area:
  1639. .. rst-class:: classref-property
  1640. :ref:`bool<class_bool>` **interface/touchscreen/increase_scrollbar_touch_area**
  1641. If ``true``, increases the scrollbar touch area to improve usability on touchscreen devices.
  1642. \ **Note:** Defaults to ``true`` on touchscreen devices.
  1643. .. rst-class:: classref-item-separator
  1644. ----
  1645. .. _class_EditorSettings_property_interface/touchscreen/scale_gizmo_handles:
  1646. .. rst-class:: classref-property
  1647. :ref:`float<class_float>` **interface/touchscreen/scale_gizmo_handles**
  1648. Specify the multiplier to apply to the scale for the editor gizmo handles to improve usability on touchscreen devices.
  1649. \ **Note:** Defaults to ``1`` on non-touchscreen devices.
  1650. .. rst-class:: classref-item-separator
  1651. ----
  1652. .. _class_EditorSettings_property_network/connection/network_mode:
  1653. .. rst-class:: classref-property
  1654. :ref:`int<class_int>` **network/connection/network_mode**
  1655. Determines whether online features are enabled in the editor, such as the Asset Library. Setting this property to "Offline" is recommended to limit editor's internet activity, especially if privacy is a concern.
  1656. .. rst-class:: classref-item-separator
  1657. ----
  1658. .. _class_EditorSettings_property_network/debug/remote_host:
  1659. .. rst-class:: classref-property
  1660. :ref:`String<class_String>` **network/debug/remote_host**
  1661. 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``).
  1662. .. rst-class:: classref-item-separator
  1663. ----
  1664. .. _class_EditorSettings_property_network/debug/remote_port:
  1665. .. rst-class:: classref-property
  1666. :ref:`int<class_int>` **network/debug/remote_port**
  1667. 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.
  1668. .. rst-class:: classref-item-separator
  1669. ----
  1670. .. _class_EditorSettings_property_network/http_proxy/host:
  1671. .. rst-class:: classref-property
  1672. :ref:`String<class_String>` **network/http_proxy/host**
  1673. 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>`.
  1674. \ **Note:** Godot currently doesn't automatically use system proxy settings, so you have to enter them manually here if needed.
  1675. .. rst-class:: classref-item-separator
  1676. ----
  1677. .. _class_EditorSettings_property_network/http_proxy/port:
  1678. .. rst-class:: classref-property
  1679. :ref:`int<class_int>` **network/http_proxy/port**
  1680. 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>`.
  1681. \ **Note:** Godot currently doesn't automatically use system proxy settings, so you have to enter them manually here if needed.
  1682. .. rst-class:: classref-item-separator
  1683. ----
  1684. .. _class_EditorSettings_property_network/tls/editor_tls_certificates:
  1685. .. rst-class:: classref-property
  1686. :ref:`String<class_String>` **network/tls/editor_tls_certificates**
  1687. 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.
  1688. .. rst-class:: classref-item-separator
  1689. ----
  1690. .. _class_EditorSettings_property_project_manager/default_renderer:
  1691. .. rst-class:: classref-property
  1692. :ref:`String<class_String>` **project_manager/default_renderer**
  1693. The renderer type that will be checked off by default when creating a new project. Accepted strings are "forward_plus", "mobile" or "gl_compatibility".
  1694. .. rst-class:: classref-item-separator
  1695. ----
  1696. .. _class_EditorSettings_property_project_manager/sorting_order:
  1697. .. rst-class:: classref-property
  1698. :ref:`int<class_int>` **project_manager/sorting_order**
  1699. 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.
  1700. .. rst-class:: classref-item-separator
  1701. ----
  1702. .. _class_EditorSettings_property_run/auto_save/save_before_running:
  1703. .. rst-class:: classref-property
  1704. :ref:`bool<class_bool>` **run/auto_save/save_before_running**
  1705. 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.)
  1706. .. rst-class:: classref-item-separator
  1707. ----
  1708. .. _class_EditorSettings_property_run/output/always_clear_output_on_play:
  1709. .. rst-class:: classref-property
  1710. :ref:`bool<class_bool>` **run/output/always_clear_output_on_play**
  1711. If ``true``, the editor will clear the Output panel when running the project.
  1712. .. rst-class:: classref-item-separator
  1713. ----
  1714. .. _class_EditorSettings_property_run/output/always_close_output_on_stop:
  1715. .. rst-class:: classref-property
  1716. :ref:`bool<class_bool>` **run/output/always_close_output_on_stop**
  1717. If ``true``, the editor will collapse the Output panel when stopping the project.
  1718. .. rst-class:: classref-item-separator
  1719. ----
  1720. .. _class_EditorSettings_property_run/output/always_open_output_on_play:
  1721. .. rst-class:: classref-property
  1722. :ref:`bool<class_bool>` **run/output/always_open_output_on_play**
  1723. If ``true``, the editor will expand the Output panel when running the project.
  1724. .. rst-class:: classref-item-separator
  1725. ----
  1726. .. _class_EditorSettings_property_run/output/font_size:
  1727. .. rst-class:: classref-property
  1728. :ref:`int<class_int>` **run/output/font_size**
  1729. 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>`).
  1730. .. rst-class:: classref-item-separator
  1731. ----
  1732. .. _class_EditorSettings_property_run/platforms/linuxbsd/prefer_wayland:
  1733. .. rst-class:: classref-property
  1734. :ref:`bool<class_bool>` **run/platforms/linuxbsd/prefer_wayland**
  1735. If ``true``, on Linux/BSD, the editor will check for Wayland first instead of X11 (if available).
  1736. .. rst-class:: classref-item-separator
  1737. ----
  1738. .. _class_EditorSettings_property_run/window_placement/android_window:
  1739. .. rst-class:: classref-property
  1740. :ref:`int<class_int>` **run/window_placement/android_window**
  1741. The Android window to display the project on when starting the project from the editor.
  1742. \ **Note:** Only available in the Android editor.
  1743. .. rst-class:: classref-item-separator
  1744. ----
  1745. .. _class_EditorSettings_property_run/window_placement/rect:
  1746. .. rst-class:: classref-property
  1747. :ref:`int<class_int>` **run/window_placement/rect**
  1748. The window mode to use to display the project when starting the project from the editor.
  1749. .. rst-class:: classref-item-separator
  1750. ----
  1751. .. _class_EditorSettings_property_run/window_placement/rect_custom_position:
  1752. .. rst-class:: classref-property
  1753. :ref:`Vector2<class_Vector2>` **run/window_placement/rect_custom_position**
  1754. 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**.
  1755. .. rst-class:: classref-item-separator
  1756. ----
  1757. .. _class_EditorSettings_property_run/window_placement/screen:
  1758. .. rst-class:: classref-property
  1759. :ref:`int<class_int>` **run/window_placement/screen**
  1760. The monitor to display the project on when starting the project from the editor.
  1761. .. rst-class:: classref-item-separator
  1762. ----
  1763. .. _class_EditorSettings_property_text_editor/appearance/caret/caret_blink:
  1764. .. rst-class:: classref-property
  1765. :ref:`bool<class_bool>` **text_editor/appearance/caret/caret_blink**
  1766. 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.
  1767. .. rst-class:: classref-item-separator
  1768. ----
  1769. .. _class_EditorSettings_property_text_editor/appearance/caret/caret_blink_interval:
  1770. .. rst-class:: classref-property
  1771. :ref:`float<class_float>` **text_editor/appearance/caret/caret_blink_interval**
  1772. 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>`.
  1773. .. rst-class:: classref-item-separator
  1774. ----
  1775. .. _class_EditorSettings_property_text_editor/appearance/caret/highlight_all_occurrences:
  1776. .. rst-class:: classref-property
  1777. :ref:`bool<class_bool>` **text_editor/appearance/caret/highlight_all_occurrences**
  1778. 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>`.
  1779. .. rst-class:: classref-item-separator
  1780. ----
  1781. .. _class_EditorSettings_property_text_editor/appearance/caret/highlight_current_line:
  1782. .. rst-class:: classref-property
  1783. :ref:`bool<class_bool>` **text_editor/appearance/caret/highlight_current_line**
  1784. 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>`.
  1785. .. rst-class:: classref-item-separator
  1786. ----
  1787. .. _class_EditorSettings_property_text_editor/appearance/caret/type:
  1788. .. rst-class:: classref-property
  1789. :ref:`int<class_int>` **text_editor/appearance/caret/type**
  1790. 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.
  1791. .. rst-class:: classref-item-separator
  1792. ----
  1793. .. _class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_hard_column:
  1794. .. rst-class:: classref-property
  1795. :ref:`int<class_int>` **text_editor/appearance/guidelines/line_length_guideline_hard_column**
  1796. 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>`.
  1797. .. rst-class:: classref-item-separator
  1798. ----
  1799. .. _class_EditorSettings_property_text_editor/appearance/guidelines/line_length_guideline_soft_column:
  1800. .. rst-class:: classref-property
  1801. :ref:`int<class_int>` **text_editor/appearance/guidelines/line_length_guideline_soft_column**
  1802. 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>`.
  1803. .. rst-class:: classref-item-separator
  1804. ----
  1805. .. _class_EditorSettings_property_text_editor/appearance/guidelines/show_line_length_guidelines:
  1806. .. rst-class:: classref-property
  1807. :ref:`bool<class_bool>` **text_editor/appearance/guidelines/show_line_length_guidelines**
  1808. 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>`.
  1809. .. rst-class:: classref-item-separator
  1810. ----
  1811. .. _class_EditorSettings_property_text_editor/appearance/gutters/highlight_type_safe_lines:
  1812. .. rst-class:: classref-property
  1813. :ref:`bool<class_bool>` **text_editor/appearance/gutters/highlight_type_safe_lines**
  1814. 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.
  1815. .. rst-class:: classref-item-separator
  1816. ----
  1817. .. _class_EditorSettings_property_text_editor/appearance/gutters/line_numbers_zero_padded:
  1818. .. rst-class:: classref-property
  1819. :ref:`bool<class_bool>` **text_editor/appearance/gutters/line_numbers_zero_padded**
  1820. If ``true``, displays line numbers with zero padding (e.g. ``007`` instead of ``7``).
  1821. .. rst-class:: classref-item-separator
  1822. ----
  1823. .. _class_EditorSettings_property_text_editor/appearance/gutters/show_info_gutter:
  1824. .. rst-class:: classref-property
  1825. :ref:`bool<class_bool>` **text_editor/appearance/gutters/show_info_gutter**
  1826. If ``true``, displays a gutter at the left containing icons for methods with signal connections and for overridden methods.
  1827. .. rst-class:: classref-item-separator
  1828. ----
  1829. .. _class_EditorSettings_property_text_editor/appearance/gutters/show_line_numbers:
  1830. .. rst-class:: classref-property
  1831. :ref:`bool<class_bool>` **text_editor/appearance/gutters/show_line_numbers**
  1832. If ``true``, displays line numbers in a gutter at the left.
  1833. .. rst-class:: classref-item-separator
  1834. ----
  1835. .. _class_EditorSettings_property_text_editor/appearance/lines/autowrap_mode:
  1836. .. rst-class:: classref-property
  1837. :ref:`int<class_int>` **text_editor/appearance/lines/autowrap_mode**
  1838. 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>`.
  1839. .. rst-class:: classref-item-separator
  1840. ----
  1841. .. _class_EditorSettings_property_text_editor/appearance/lines/code_folding:
  1842. .. rst-class:: classref-property
  1843. :ref:`bool<class_bool>` **text_editor/appearance/lines/code_folding**
  1844. 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.
  1845. .. rst-class:: classref-item-separator
  1846. ----
  1847. .. _class_EditorSettings_property_text_editor/appearance/lines/word_wrap:
  1848. .. rst-class:: classref-property
  1849. :ref:`int<class_int>` **text_editor/appearance/lines/word_wrap**
  1850. 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.
  1851. .. rst-class:: classref-item-separator
  1852. ----
  1853. .. _class_EditorSettings_property_text_editor/appearance/minimap/minimap_width:
  1854. .. rst-class:: classref-property
  1855. :ref:`int<class_int>` **text_editor/appearance/minimap/minimap_width**
  1856. The width of the minimap in the script editor (in pixels).
  1857. .. rst-class:: classref-item-separator
  1858. ----
  1859. .. _class_EditorSettings_property_text_editor/appearance/minimap/show_minimap:
  1860. .. rst-class:: classref-property
  1861. :ref:`bool<class_bool>` **text_editor/appearance/minimap/show_minimap**
  1862. 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.
  1863. .. rst-class:: classref-item-separator
  1864. ----
  1865. .. _class_EditorSettings_property_text_editor/appearance/whitespace/draw_spaces:
  1866. .. rst-class:: classref-property
  1867. :ref:`bool<class_bool>` **text_editor/appearance/whitespace/draw_spaces**
  1868. If ``true``, draws space characters as centered points.
  1869. .. rst-class:: classref-item-separator
  1870. ----
  1871. .. _class_EditorSettings_property_text_editor/appearance/whitespace/draw_tabs:
  1872. .. rst-class:: classref-property
  1873. :ref:`bool<class_bool>` **text_editor/appearance/whitespace/draw_tabs**
  1874. If ``true``, draws tab characters as chevrons.
  1875. .. rst-class:: classref-item-separator
  1876. ----
  1877. .. _class_EditorSettings_property_text_editor/appearance/whitespace/line_spacing:
  1878. .. rst-class:: classref-property
  1879. :ref:`int<class_int>` **text_editor/appearance/whitespace/line_spacing**
  1880. The space to add between lines (in pixels). Greater line spacing can help improve readability at the cost of displaying fewer lines on screen.
  1881. .. rst-class:: classref-item-separator
  1882. ----
  1883. .. _class_EditorSettings_property_text_editor/behavior/files/auto_reload_scripts_on_external_change:
  1884. .. rst-class:: classref-property
  1885. :ref:`bool<class_bool>` **text_editor/behavior/files/auto_reload_scripts_on_external_change**
  1886. If ``true``, automatically reloads scripts in the editor when they have been modified and saved by external editors.
  1887. .. rst-class:: classref-item-separator
  1888. ----
  1889. .. _class_EditorSettings_property_text_editor/behavior/files/autosave_interval_secs:
  1890. .. rst-class:: classref-property
  1891. :ref:`int<class_int>` **text_editor/behavior/files/autosave_interval_secs**
  1892. 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.
  1893. .. rst-class:: classref-item-separator
  1894. ----
  1895. .. _class_EditorSettings_property_text_editor/behavior/files/convert_indent_on_save:
  1896. .. rst-class:: classref-property
  1897. :ref:`bool<class_bool>` **text_editor/behavior/files/convert_indent_on_save**
  1898. 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>`.
  1899. .. rst-class:: classref-item-separator
  1900. ----
  1901. .. _class_EditorSettings_property_text_editor/behavior/files/restore_scripts_on_load:
  1902. .. rst-class:: classref-property
  1903. :ref:`bool<class_bool>` **text_editor/behavior/files/restore_scripts_on_load**
  1904. If ``true``, reopens scripts that were opened in the last session when the editor is reopened on a given project.
  1905. .. rst-class:: classref-item-separator
  1906. ----
  1907. .. _class_EditorSettings_property_text_editor/behavior/files/trim_trailing_whitespace_on_save:
  1908. .. rst-class:: classref-property
  1909. :ref:`bool<class_bool>` **text_editor/behavior/files/trim_trailing_whitespace_on_save**
  1910. 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.
  1911. .. rst-class:: classref-item-separator
  1912. ----
  1913. .. _class_EditorSettings_property_text_editor/behavior/indent/auto_indent:
  1914. .. rst-class:: classref-property
  1915. :ref:`bool<class_bool>` **text_editor/behavior/indent/auto_indent**
  1916. If ``true``, automatically indents code when pressing the :kbd:`Enter` key based on blocks above the new line.
  1917. .. rst-class:: classref-item-separator
  1918. ----
  1919. .. _class_EditorSettings_property_text_editor/behavior/indent/size:
  1920. .. rst-class:: classref-property
  1921. :ref:`int<class_int>` **text_editor/behavior/indent/size**
  1922. 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.
  1923. .. rst-class:: classref-item-separator
  1924. ----
  1925. .. _class_EditorSettings_property_text_editor/behavior/indent/type:
  1926. .. rst-class:: classref-property
  1927. :ref:`int<class_int>` **text_editor/behavior/indent/type**
  1928. The indentation style to use (tabs or spaces).
  1929. \ **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.
  1930. .. rst-class:: classref-item-separator
  1931. ----
  1932. .. _class_EditorSettings_property_text_editor/behavior/navigation/drag_and_drop_selection:
  1933. .. rst-class:: classref-property
  1934. :ref:`bool<class_bool>` **text_editor/behavior/navigation/drag_and_drop_selection**
  1935. 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.
  1936. .. rst-class:: classref-item-separator
  1937. ----
  1938. .. _class_EditorSettings_property_text_editor/behavior/navigation/move_caret_on_right_click:
  1939. .. rst-class:: classref-property
  1940. :ref:`bool<class_bool>` **text_editor/behavior/navigation/move_caret_on_right_click**
  1941. 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.
  1942. .. rst-class:: classref-item-separator
  1943. ----
  1944. .. _class_EditorSettings_property_text_editor/behavior/navigation/scroll_past_end_of_file:
  1945. .. rst-class:: classref-property
  1946. :ref:`bool<class_bool>` **text_editor/behavior/navigation/scroll_past_end_of_file**
  1947. If ``true``, allows scrolling past the end of the file.
  1948. .. rst-class:: classref-item-separator
  1949. ----
  1950. .. _class_EditorSettings_property_text_editor/behavior/navigation/smooth_scrolling:
  1951. .. rst-class:: classref-property
  1952. :ref:`bool<class_bool>` **text_editor/behavior/navigation/smooth_scrolling**
  1953. If ``true``, allows scrolling in sub-line intervals and enables a smooth scrolling animation when using the mouse wheel to scroll.
  1954. \ **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.
  1955. .. rst-class:: classref-item-separator
  1956. ----
  1957. .. _class_EditorSettings_property_text_editor/behavior/navigation/stay_in_script_editor_on_node_selected:
  1958. .. rst-class:: classref-property
  1959. :ref:`bool<class_bool>` **text_editor/behavior/navigation/stay_in_script_editor_on_node_selected**
  1960. If ``true``, prevents automatically switching between the Script and 2D/3D screens when selecting a node in the Scene tree dock.
  1961. .. rst-class:: classref-item-separator
  1962. ----
  1963. .. _class_EditorSettings_property_text_editor/behavior/navigation/v_scroll_speed:
  1964. .. rst-class:: classref-property
  1965. :ref:`int<class_int>` **text_editor/behavior/navigation/v_scroll_speed**
  1966. The number of pixels to scroll with every mouse wheel increment. Higher values make the script scroll by faster when using the mouse wheel.
  1967. \ **Note:** You can hold down :kbd:`Alt` while using the mouse wheel to temporarily scroll 5 times faster.
  1968. .. rst-class:: classref-item-separator
  1969. ----
  1970. .. _class_EditorSettings_property_text_editor/completion/add_type_hints:
  1971. .. rst-class:: classref-property
  1972. :ref:`bool<class_bool>` **text_editor/completion/add_type_hints**
  1973. 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.
  1974. .. rst-class:: classref-item-separator
  1975. ----
  1976. .. _class_EditorSettings_property_text_editor/completion/auto_brace_complete:
  1977. .. rst-class:: classref-property
  1978. :ref:`bool<class_bool>` **text_editor/completion/auto_brace_complete**
  1979. If ``true``, automatically completes braces when making use of code completion.
  1980. .. rst-class:: classref-item-separator
  1981. ----
  1982. .. _class_EditorSettings_property_text_editor/completion/code_complete_delay:
  1983. .. rst-class:: classref-property
  1984. :ref:`float<class_float>` **text_editor/completion/code_complete_delay**
  1985. The delay in seconds after which autocompletion suggestions should be displayed when the user stops typing.
  1986. .. rst-class:: classref-item-separator
  1987. ----
  1988. .. _class_EditorSettings_property_text_editor/completion/code_complete_enabled:
  1989. .. rst-class:: classref-property
  1990. :ref:`bool<class_bool>` **text_editor/completion/code_complete_enabled**
  1991. 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>`. If ``false``, you can still trigger completion manually by pressing :kbd:`Ctrl + Space` (:kbd:`Cmd + Space` on macOS).
  1992. .. rst-class:: classref-item-separator
  1993. ----
  1994. .. _class_EditorSettings_property_text_editor/completion/colorize_suggestions:
  1995. .. rst-class:: classref-property
  1996. :ref:`bool<class_bool>` **text_editor/completion/colorize_suggestions**
  1997. If ``true`` enables the coloring for some items in the autocompletion suggestions, like vector components.
  1998. .. rst-class:: classref-item-separator
  1999. ----
  2000. .. _class_EditorSettings_property_text_editor/completion/complete_file_paths:
  2001. .. rst-class:: classref-property
  2002. :ref:`bool<class_bool>` **text_editor/completion/complete_file_paths**
  2003. If ``true``, provides autocompletion suggestions for file paths in methods such as ``load()`` and ``preload()``.
  2004. .. rst-class:: classref-item-separator
  2005. ----
  2006. .. _class_EditorSettings_property_text_editor/completion/idle_parse_delay:
  2007. .. rst-class:: classref-property
  2008. :ref:`float<class_float>` **text_editor/completion/idle_parse_delay**
  2009. The delay in seconds after which the script editor should check for errors when the user stops typing.
  2010. .. rst-class:: classref-item-separator
  2011. ----
  2012. .. _class_EditorSettings_property_text_editor/completion/put_callhint_tooltip_below_current_line:
  2013. .. rst-class:: classref-property
  2014. :ref:`bool<class_bool>` **text_editor/completion/put_callhint_tooltip_below_current_line**
  2015. 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.
  2016. .. rst-class:: classref-item-separator
  2017. ----
  2018. .. _class_EditorSettings_property_text_editor/completion/use_single_quotes:
  2019. .. rst-class:: classref-property
  2020. :ref:`bool<class_bool>` **text_editor/completion/use_single_quotes**
  2021. 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>`).
  2022. .. rst-class:: classref-item-separator
  2023. ----
  2024. .. _class_EditorSettings_property_text_editor/help/class_reference_examples:
  2025. .. rst-class:: classref-property
  2026. :ref:`int<class_int>` **text_editor/help/class_reference_examples**
  2027. 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.
  2028. .. rst-class:: classref-item-separator
  2029. ----
  2030. .. _class_EditorSettings_property_text_editor/help/help_font_size:
  2031. .. rst-class:: classref-property
  2032. :ref:`int<class_int>` **text_editor/help/help_font_size**
  2033. The font size to use for the editor help (built-in class reference).
  2034. .. rst-class:: classref-item-separator
  2035. ----
  2036. .. _class_EditorSettings_property_text_editor/help/help_source_font_size:
  2037. .. rst-class:: classref-property
  2038. :ref:`int<class_int>` **text_editor/help/help_source_font_size**
  2039. The font size to use for code samples in the editor help (built-in class reference).
  2040. .. rst-class:: classref-item-separator
  2041. ----
  2042. .. _class_EditorSettings_property_text_editor/help/help_title_font_size:
  2043. .. rst-class:: classref-property
  2044. :ref:`int<class_int>` **text_editor/help/help_title_font_size**
  2045. The font size to use for headings in the editor help (built-in class reference).
  2046. .. rst-class:: classref-item-separator
  2047. ----
  2048. .. _class_EditorSettings_property_text_editor/help/show_help_index:
  2049. .. rst-class:: classref-property
  2050. :ref:`bool<class_bool>` **text_editor/help/show_help_index**
  2051. 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).
  2052. .. rst-class:: classref-item-separator
  2053. ----
  2054. .. _class_EditorSettings_property_text_editor/script_list/show_members_overview:
  2055. .. rst-class:: classref-property
  2056. :ref:`bool<class_bool>` **text_editor/script_list/show_members_overview**
  2057. 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>`.
  2058. .. rst-class:: classref-item-separator
  2059. ----
  2060. .. _class_EditorSettings_property_text_editor/script_list/sort_members_outline_alphabetically:
  2061. .. rst-class:: classref-property
  2062. :ref:`bool<class_bool>` **text_editor/script_list/sort_members_outline_alphabetically**
  2063. 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.
  2064. \ **Note:** Only effective if :ref:`text_editor/script_list/show_members_overview<class_EditorSettings_property_text_editor/script_list/show_members_overview>` is ``true``.
  2065. .. rst-class:: classref-item-separator
  2066. ----
  2067. .. _class_EditorSettings_property_text_editor/theme/color_theme:
  2068. .. rst-class:: classref-property
  2069. :ref:`String<class_String>` **text_editor/theme/color_theme**
  2070. The syntax theme to use in the script editor.
  2071. 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.
  2072. You can find additional syntax themes to install in the `godot-syntax-themes <https://github.com/godotengine/godot-syntax-themes>`__ repository.
  2073. .. rst-class:: classref-item-separator
  2074. ----
  2075. .. _class_EditorSettings_property_text_editor/theme/highlighting/background_color:
  2076. .. rst-class:: classref-property
  2077. :ref:`Color<class_Color>` **text_editor/theme/highlighting/background_color**
  2078. The script editor's background color. If set to a translucent color, the editor theme's base color will be visible behind.
  2079. .. rst-class:: classref-item-separator
  2080. ----
  2081. .. _class_EditorSettings_property_text_editor/theme/highlighting/base_type_color:
  2082. .. rst-class:: classref-property
  2083. :ref:`Color<class_Color>` **text_editor/theme/highlighting/base_type_color**
  2084. The script editor's base type color (used for types like :ref:`Vector2<class_Vector2>`, :ref:`Vector3<class_Vector3>`, :ref:`Color<class_Color>`, ...).
  2085. .. rst-class:: classref-item-separator
  2086. ----
  2087. .. _class_EditorSettings_property_text_editor/theme/highlighting/bookmark_color:
  2088. .. rst-class:: classref-property
  2089. :ref:`Color<class_Color>` **text_editor/theme/highlighting/bookmark_color**
  2090. The script editor's bookmark icon color (displayed in the gutter).
  2091. .. rst-class:: classref-item-separator
  2092. ----
  2093. .. _class_EditorSettings_property_text_editor/theme/highlighting/brace_mismatch_color:
  2094. .. rst-class:: classref-property
  2095. :ref:`Color<class_Color>` **text_editor/theme/highlighting/brace_mismatch_color**
  2096. The script editor's brace mismatch color. Used when the caret is currently on a mismatched brace, parenthesis or bracket character.
  2097. .. rst-class:: classref-item-separator
  2098. ----
  2099. .. _class_EditorSettings_property_text_editor/theme/highlighting/breakpoint_color:
  2100. .. rst-class:: classref-property
  2101. :ref:`Color<class_Color>` **text_editor/theme/highlighting/breakpoint_color**
  2102. The script editor's breakpoint icon color (displayed in the gutter).
  2103. .. rst-class:: classref-item-separator
  2104. ----
  2105. .. _class_EditorSettings_property_text_editor/theme/highlighting/caret_background_color:
  2106. .. rst-class:: classref-property
  2107. :ref:`Color<class_Color>` **text_editor/theme/highlighting/caret_background_color**
  2108. The script editor's caret background color.
  2109. \ **Note:** This setting has no effect as it's currently unused.
  2110. .. rst-class:: classref-item-separator
  2111. ----
  2112. .. _class_EditorSettings_property_text_editor/theme/highlighting/caret_color:
  2113. .. rst-class:: classref-property
  2114. :ref:`Color<class_Color>` **text_editor/theme/highlighting/caret_color**
  2115. The script editor's caret color.
  2116. .. rst-class:: classref-item-separator
  2117. ----
  2118. .. _class_EditorSettings_property_text_editor/theme/highlighting/code_folding_color:
  2119. .. rst-class:: classref-property
  2120. :ref:`Color<class_Color>` **text_editor/theme/highlighting/code_folding_color**
  2121. The script editor's color for the code folding icon (displayed in the gutter).
  2122. .. rst-class:: classref-item-separator
  2123. ----
  2124. .. _class_EditorSettings_property_text_editor/theme/highlighting/comment_color:
  2125. .. rst-class:: classref-property
  2126. :ref:`Color<class_Color>` **text_editor/theme/highlighting/comment_color**
  2127. The script editor's comment color.
  2128. \ **Note:** In GDScript, unlike Python, multiline strings are not considered to be comments, and will use the string highlighting color instead.
  2129. .. rst-class:: classref-item-separator
  2130. ----
  2131. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_background_color:
  2132. .. rst-class:: classref-property
  2133. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_background_color**
  2134. The script editor's autocompletion box background color.
  2135. .. rst-class:: classref-item-separator
  2136. ----
  2137. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_existing_color:
  2138. .. rst-class:: classref-property
  2139. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_existing_color**
  2140. 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.
  2141. .. rst-class:: classref-item-separator
  2142. ----
  2143. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_font_color:
  2144. .. rst-class:: classref-property
  2145. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_font_color**
  2146. The script editor's autocompletion box text color.
  2147. .. rst-class:: classref-item-separator
  2148. ----
  2149. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_color:
  2150. .. rst-class:: classref-property
  2151. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_scroll_color**
  2152. The script editor's autocompletion box scroll bar color.
  2153. .. rst-class:: classref-item-separator
  2154. ----
  2155. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_scroll_hovered_color:
  2156. .. rst-class:: classref-property
  2157. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_scroll_hovered_color**
  2158. The script editor's autocompletion box scroll bar color when hovered or pressed with the mouse.
  2159. .. rst-class:: classref-item-separator
  2160. ----
  2161. .. _class_EditorSettings_property_text_editor/theme/highlighting/completion_selected_color:
  2162. .. rst-class:: classref-property
  2163. :ref:`Color<class_Color>` **text_editor/theme/highlighting/completion_selected_color**
  2164. The script editor's autocompletion box background color for the currently selected line.
  2165. .. rst-class:: classref-item-separator
  2166. ----
  2167. .. _class_EditorSettings_property_text_editor/theme/highlighting/control_flow_keyword_color:
  2168. .. rst-class:: classref-property
  2169. :ref:`Color<class_Color>` **text_editor/theme/highlighting/control_flow_keyword_color**
  2170. The script editor's control flow keyword color (used for keywords like ``if``, ``for``, ``return``, ...).
  2171. .. rst-class:: classref-item-separator
  2172. ----
  2173. .. _class_EditorSettings_property_text_editor/theme/highlighting/current_line_color:
  2174. .. rst-class:: classref-property
  2175. :ref:`Color<class_Color>` **text_editor/theme/highlighting/current_line_color**
  2176. 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>`.
  2177. .. rst-class:: classref-item-separator
  2178. ----
  2179. .. _class_EditorSettings_property_text_editor/theme/highlighting/doc_comment_color:
  2180. .. rst-class:: classref-property
  2181. :ref:`Color<class_Color>` **text_editor/theme/highlighting/doc_comment_color**
  2182. 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 ``/**``.
  2183. .. rst-class:: classref-item-separator
  2184. ----
  2185. .. _class_EditorSettings_property_text_editor/theme/highlighting/engine_type_color:
  2186. .. rst-class:: classref-property
  2187. :ref:`Color<class_Color>` **text_editor/theme/highlighting/engine_type_color**
  2188. The script editor's engine type color (:ref:`Vector2<class_Vector2>`, :ref:`Vector3<class_Vector3>`, :ref:`Color<class_Color>`, ...).
  2189. .. rst-class:: classref-item-separator
  2190. ----
  2191. .. _class_EditorSettings_property_text_editor/theme/highlighting/executing_line_color:
  2192. .. rst-class:: classref-property
  2193. :ref:`Color<class_Color>` **text_editor/theme/highlighting/executing_line_color**
  2194. The script editor's color for the debugger's executing line icon (displayed in the gutter).
  2195. .. rst-class:: classref-item-separator
  2196. ----
  2197. .. _class_EditorSettings_property_text_editor/theme/highlighting/folded_code_region_color:
  2198. .. rst-class:: classref-property
  2199. :ref:`Color<class_Color>` **text_editor/theme/highlighting/folded_code_region_color**
  2200. The script editor's background line highlighting color for folded code region.
  2201. .. rst-class:: classref-item-separator
  2202. ----
  2203. .. _class_EditorSettings_property_text_editor/theme/highlighting/function_color:
  2204. .. rst-class:: classref-property
  2205. :ref:`Color<class_Color>` **text_editor/theme/highlighting/function_color**
  2206. The script editor's function call color.
  2207. \ **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():``).
  2208. .. rst-class:: classref-item-separator
  2209. ----
  2210. .. _class_EditorSettings_property_text_editor/theme/highlighting/keyword_color:
  2211. .. rst-class:: classref-property
  2212. :ref:`Color<class_Color>` **text_editor/theme/highlighting/keyword_color**
  2213. The script editor's non-control flow keyword color (used for keywords like ``var``, ``func``, ``extends``, ...).
  2214. .. rst-class:: classref-item-separator
  2215. ----
  2216. .. _class_EditorSettings_property_text_editor/theme/highlighting/line_length_guideline_color:
  2217. .. rst-class:: classref-property
  2218. :ref:`Color<class_Color>` **text_editor/theme/highlighting/line_length_guideline_color**
  2219. 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.
  2220. .. rst-class:: classref-item-separator
  2221. ----
  2222. .. _class_EditorSettings_property_text_editor/theme/highlighting/line_number_color:
  2223. .. rst-class:: classref-property
  2224. :ref:`Color<class_Color>` **text_editor/theme/highlighting/line_number_color**
  2225. 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>`.
  2226. .. rst-class:: classref-item-separator
  2227. ----
  2228. .. _class_EditorSettings_property_text_editor/theme/highlighting/mark_color:
  2229. .. rst-class:: classref-property
  2230. :ref:`Color<class_Color>` **text_editor/theme/highlighting/mark_color**
  2231. 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>`.
  2232. .. rst-class:: classref-item-separator
  2233. ----
  2234. .. _class_EditorSettings_property_text_editor/theme/highlighting/member_variable_color:
  2235. .. rst-class:: classref-property
  2236. :ref:`Color<class_Color>` **text_editor/theme/highlighting/member_variable_color**
  2237. The script editor's color for member variables on objects (e.g. ``self.some_property``).
  2238. \ **Note:** This color is not used for local variable declaration and access.
  2239. .. rst-class:: classref-item-separator
  2240. ----
  2241. .. _class_EditorSettings_property_text_editor/theme/highlighting/number_color:
  2242. .. rst-class:: classref-property
  2243. :ref:`Color<class_Color>` **text_editor/theme/highlighting/number_color**
  2244. The script editor's color for numbers (integer and floating-point).
  2245. .. rst-class:: classref-item-separator
  2246. ----
  2247. .. _class_EditorSettings_property_text_editor/theme/highlighting/safe_line_number_color:
  2248. .. rst-class:: classref-property
  2249. :ref:`Color<class_Color>` **text_editor/theme/highlighting/safe_line_number_color**
  2250. 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>`.
  2251. \ **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``.
  2252. .. rst-class:: classref-item-separator
  2253. ----
  2254. .. _class_EditorSettings_property_text_editor/theme/highlighting/search_result_border_color:
  2255. .. rst-class:: classref-property
  2256. :ref:`Color<class_Color>` **text_editor/theme/highlighting/search_result_border_color**
  2257. 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.
  2258. .. rst-class:: classref-item-separator
  2259. ----
  2260. .. _class_EditorSettings_property_text_editor/theme/highlighting/search_result_color:
  2261. .. rst-class:: classref-property
  2262. :ref:`Color<class_Color>` **text_editor/theme/highlighting/search_result_color**
  2263. The script editor's background color for search results.
  2264. .. rst-class:: classref-item-separator
  2265. ----
  2266. .. _class_EditorSettings_property_text_editor/theme/highlighting/selection_color:
  2267. .. rst-class:: classref-property
  2268. :ref:`Color<class_Color>` **text_editor/theme/highlighting/selection_color**
  2269. The script editor's background color for the currently selected text.
  2270. .. rst-class:: classref-item-separator
  2271. ----
  2272. .. _class_EditorSettings_property_text_editor/theme/highlighting/string_color:
  2273. .. rst-class:: classref-property
  2274. :ref:`Color<class_Color>` **text_editor/theme/highlighting/string_color**
  2275. The script editor's color for strings (single-line and multi-line).
  2276. .. rst-class:: classref-item-separator
  2277. ----
  2278. .. _class_EditorSettings_property_text_editor/theme/highlighting/symbol_color:
  2279. .. rst-class:: classref-property
  2280. :ref:`Color<class_Color>` **text_editor/theme/highlighting/symbol_color**
  2281. The script editor's color for operators (``( ) [ ] { } + - * /``, ...).
  2282. .. rst-class:: classref-item-separator
  2283. ----
  2284. .. _class_EditorSettings_property_text_editor/theme/highlighting/text_color:
  2285. .. rst-class:: classref-property
  2286. :ref:`Color<class_Color>` **text_editor/theme/highlighting/text_color**
  2287. The script editor's color for text not highlighted by any syntax highlighting rule.
  2288. .. rst-class:: classref-item-separator
  2289. ----
  2290. .. _class_EditorSettings_property_text_editor/theme/highlighting/text_selected_color:
  2291. .. rst-class:: classref-property
  2292. :ref:`Color<class_Color>` **text_editor/theme/highlighting/text_selected_color**
  2293. 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>`.
  2294. .. rst-class:: classref-item-separator
  2295. ----
  2296. .. _class_EditorSettings_property_text_editor/theme/highlighting/user_type_color:
  2297. .. rst-class:: classref-property
  2298. :ref:`Color<class_Color>` **text_editor/theme/highlighting/user_type_color**
  2299. The script editor's color for user-defined types (using ``class_name``).
  2300. .. rst-class:: classref-item-separator
  2301. ----
  2302. .. _class_EditorSettings_property_text_editor/theme/highlighting/word_highlighted_color:
  2303. .. rst-class:: classref-property
  2304. :ref:`Color<class_Color>` **text_editor/theme/highlighting/word_highlighted_color**
  2305. 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``.
  2306. .. rst-class:: classref-section-separator
  2307. ----
  2308. .. rst-class:: classref-descriptions-group
  2309. Method Descriptions
  2310. -------------------
  2311. .. _class_EditorSettings_method_add_property_info:
  2312. .. rst-class:: classref-method
  2313. void **add_property_info** **(** :ref:`Dictionary<class_Dictionary>` info **)**
  2314. Adds a custom property info to a property. The dictionary must contain:
  2315. - ``name``: :ref:`String<class_String>` (the name of the property)
  2316. - ``type``: :ref:`int<class_int>` (see :ref:`Variant.Type<enum_@GlobalScope_Variant.Type>`)
  2317. - optionally ``hint``: :ref:`int<class_int>` (see :ref:`PropertyHint<enum_@GlobalScope_PropertyHint>`) and ``hint_string``: :ref:`String<class_String>`\
  2318. \ **Example:**\
  2319. .. tabs::
  2320. .. code-tab:: gdscript
  2321. var settings = EditorInterface.get_editor_settings()
  2322. settings.set("category/property_name", 0)
  2323. var property_info = {
  2324. "name": "category/property_name",
  2325. "type": TYPE_INT,
  2326. "hint": PROPERTY_HINT_ENUM,
  2327. "hint_string": "one,two,three"
  2328. }
  2329. settings.add_property_info(property_info)
  2330. .. code-tab:: csharp
  2331. var settings = GetEditorInterface().GetEditorSettings();
  2332. settings.Set("category/property_name", 0);
  2333. var propertyInfo = new Godot.Collections.Dictionary
  2334. {
  2335. {"name", "category/propertyName"},
  2336. {"type", Variant.Type.Int},
  2337. {"hint", PropertyHint.Enum},
  2338. {"hint_string", "one,two,three"}
  2339. };
  2340. settings.AddPropertyInfo(propertyInfo);
  2341. .. rst-class:: classref-item-separator
  2342. ----
  2343. .. _class_EditorSettings_method_check_changed_settings_in_group:
  2344. .. rst-class:: classref-method
  2345. :ref:`bool<class_bool>` **check_changed_settings_in_group** **(** :ref:`String<class_String>` setting_prefix **)** |const|
  2346. 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>`.
  2347. .. rst-class:: classref-item-separator
  2348. ----
  2349. .. _class_EditorSettings_method_erase:
  2350. .. rst-class:: classref-method
  2351. void **erase** **(** :ref:`String<class_String>` property **)**
  2352. Erases the setting whose name is specified by ``property``.
  2353. .. rst-class:: classref-item-separator
  2354. ----
  2355. .. _class_EditorSettings_method_get_changed_settings:
  2356. .. rst-class:: classref-method
  2357. :ref:`PackedStringArray<class_PackedStringArray>` **get_changed_settings** **(** **)** |const|
  2358. 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>`.
  2359. .. rst-class:: classref-item-separator
  2360. ----
  2361. .. _class_EditorSettings_method_get_favorites:
  2362. .. rst-class:: classref-method
  2363. :ref:`PackedStringArray<class_PackedStringArray>` **get_favorites** **(** **)** |const|
  2364. Returns the list of favorite files and directories for this project.
  2365. .. rst-class:: classref-item-separator
  2366. ----
  2367. .. _class_EditorSettings_method_get_project_metadata:
  2368. .. rst-class:: classref-method
  2369. :ref:`Variant<class_Variant>` **get_project_metadata** **(** :ref:`String<class_String>` section, :ref:`String<class_String>` key, :ref:`Variant<class_Variant>` default=null **)** |const|
  2370. 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>`.
  2371. .. rst-class:: classref-item-separator
  2372. ----
  2373. .. _class_EditorSettings_method_get_recent_dirs:
  2374. .. rst-class:: classref-method
  2375. :ref:`PackedStringArray<class_PackedStringArray>` **get_recent_dirs** **(** **)** |const|
  2376. Returns the list of recently visited folders in the file dialog for this project.
  2377. .. rst-class:: classref-item-separator
  2378. ----
  2379. .. _class_EditorSettings_method_get_setting:
  2380. .. rst-class:: classref-method
  2381. :ref:`Variant<class_Variant>` **get_setting** **(** :ref:`String<class_String>` name **)** |const|
  2382. 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.
  2383. .. rst-class:: classref-item-separator
  2384. ----
  2385. .. _class_EditorSettings_method_has_setting:
  2386. .. rst-class:: classref-method
  2387. :ref:`bool<class_bool>` **has_setting** **(** :ref:`String<class_String>` name **)** |const|
  2388. Returns ``true`` if the setting specified by ``name`` exists, ``false`` otherwise.
  2389. .. rst-class:: classref-item-separator
  2390. ----
  2391. .. _class_EditorSettings_method_mark_setting_changed:
  2392. .. rst-class:: classref-method
  2393. void **mark_setting_changed** **(** :ref:`String<class_String>` setting **)**
  2394. 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.
  2395. .. rst-class:: classref-item-separator
  2396. ----
  2397. .. _class_EditorSettings_method_set_builtin_action_override:
  2398. .. rst-class:: classref-method
  2399. void **set_builtin_action_override** **(** :ref:`String<class_String>` name, :ref:`InputEvent[]<class_InputEvent>` actions_list **)**
  2400. Overrides the built-in editor action ``name`` with the input actions defined in ``actions_list``.
  2401. .. rst-class:: classref-item-separator
  2402. ----
  2403. .. _class_EditorSettings_method_set_favorites:
  2404. .. rst-class:: classref-method
  2405. void **set_favorites** **(** :ref:`PackedStringArray<class_PackedStringArray>` dirs **)**
  2406. Sets the list of favorite files and directories for this project.
  2407. .. rst-class:: classref-item-separator
  2408. ----
  2409. .. _class_EditorSettings_method_set_initial_value:
  2410. .. rst-class:: classref-method
  2411. void **set_initial_value** **(** :ref:`StringName<class_StringName>` name, :ref:`Variant<class_Variant>` value, :ref:`bool<class_bool>` update_current **)**
  2412. 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.
  2413. .. rst-class:: classref-item-separator
  2414. ----
  2415. .. _class_EditorSettings_method_set_project_metadata:
  2416. .. rst-class:: classref-method
  2417. void **set_project_metadata** **(** :ref:`String<class_String>` section, :ref:`String<class_String>` key, :ref:`Variant<class_Variant>` data **)**
  2418. 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>`.
  2419. .. rst-class:: classref-item-separator
  2420. ----
  2421. .. _class_EditorSettings_method_set_recent_dirs:
  2422. .. rst-class:: classref-method
  2423. void **set_recent_dirs** **(** :ref:`PackedStringArray<class_PackedStringArray>` dirs **)**
  2424. Sets the list of recently visited folders in the file dialog for this project.
  2425. .. rst-class:: classref-item-separator
  2426. ----
  2427. .. _class_EditorSettings_method_set_setting:
  2428. .. rst-class:: classref-method
  2429. void **set_setting** **(** :ref:`String<class_String>` name, :ref:`Variant<class_Variant>` value **)**
  2430. 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.
  2431. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  2432. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  2433. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  2434. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  2435. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  2436. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  2437. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`