class_editorsettings.rst 221 KB

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