Age | Commit message (Collapse) | Author |
|
|
|
This also adds a setting hint for the "Code Complete Delay" setting
and cleans up some duplicated default setting values.
This closes #30662.
|
|
This results in slightly smaller binaries (-17 KB for an editor binary)
as no strings need to be allocated.
|
|
Make the build system automatically build the C# Api assemblies to be shipped with the editor.
Make the editor, editor player and debug export templates use Api assemblies built with debug symbols.
Always run MSBuild to build the editor tools and Api assemblies when building Godot.
Several bugs fixed related to assembly hot reloading and restoring state.
Fix StringExtensions internal calls not being registered correctly, resulting in MissingMethodException.
|
|
Replace ` + "/" + ` with `String::file_add()`
|
|
Also, make spacing of "=" in the editor help a bit more consistent.
Closes #16086
|
|
Remove redundant code, possible NULL pointers and others
|
|
|
|
|
|
|
|
This is an editor setting and its value can also be toggled
using an entry in the Editor toolbar. The console will still
appear briefly when starting the project manager or editor,
as it's still compiled as console application.
Does not impact exported games, which will still run without
console in release and with console in debug mode.
A project setting or export option could be added to disable
it in debug mode if there's demand for it, but that would
greatly reduce the usefulness of debug builds if Windows users
can no longer report error and crash messages.
Fixes #17889.
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
This was a regression from #28107 due to a typo in the `initial_set`
call.
I used the opportunity to harmonize the font settings by ensuring we
only get values in `editor_fonts.cpp` and set them all with proper and
consistent hint ranges in `editor_settings.cpp`.
Fixes #29774.
|
|
Created a fallback from the "Save Theme" button to "Save Theme As" when a default theme is in use.
|
|
default theme is in use.
|
|
Allow to change 2D pan hotkey
|
|
It's not necessary, but the vast majority of calls of error macros
do have an ending semicolon, so it's best to be consistent.
Most WARN_DEPRECATED calls did *not* have a semicolon, but there's
no reason for them to be treated differently.
|
|
|
|
Add support for 50% editor scale
|
|
This decreases CPU/GPU usage when the window is unfocused, which can
be beneficial to laptop users.
This also makes the low-processor mode sleep project setting no longer
affect the editor. Instead, two new editor settings now define the
duration of sleeping when the editor is focused and unfocused.
This closes #24209 and partially addresses #29257.
|
|
Set range (10-50) to help source font size
|
|
Godot currently can't properly render scripts that require Right-To-Left
and font shaping support, so we skip those.
This is a temporary measure until these features are supported.
Fixes #28577.
|
|
Add bookmarks for easier code navigation
|
|
Improve the anchors and margin workflow
|
|
Add feature to show spaces in code editor
|
|
Adjusts the default color for search border
|
|
Exclude link-local IPv4s from editor host list.
|
|
|
|
|
|
Update editor_settings.cpp
Update editor_themes.cpp
Update editor_settings.cpp
|
|
Fix indentation
Fix Indentation!
Remove 14
|
|
Set a range for line spacing
|
|
Add settings for single-quotes on completion
|
|
|
|
Allow floating-point values in the idle parse delay editor setting
|
|
|
|
This also makes value changes effective without having to restart
the editor.
|
|
|
|
|
|
Allows enabling/disabling parts of the editor and storing/loading profiles for that.
|
|
|
|
This also refactors template processing to avoid repetition.
This closes #27074.
|
|
IPv4 has link-local addresses like IPv6 (block 169.254.0.0/16).
Those addresses should not be considered a valid option when selecting
the `remote_host` setting for the debugger.
|
|
This makes selections easier to see, while making them fit better
within the editor theme.
This closes #22552.
|
|
Supersedes #26992.
|
|
|
|
-Made relationship lines appear based on theme settings, not previous hack
-Fix drawing of relationship lines (was broken)
-Fix double initialization of theme settings
|
|
Make theme changing no longer requires restart to be fully applied
|
|
We used to abort if the system-specific data folder (e.g. `~/.local`
or `%APPDATA%`) is missing, but the next code chunk actually creates
it with `make_dir_recursive` if missing.
Fixes #26598.
|
|
|
|
This closes #21237.
|