class_editorsettings.rst 217 KB

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