Age | Commit message (Collapse) | Author |
|
- Use the `.log` file extension (recognized on Windows out of the box)
to better hint that generated files are logs. Some editors provide
dedicated syntax highlighting for those files.
- Use an underscore to separate the basename from the date and
the date from the time in log filenames. This makes the filename
easier to read.
- Keep only 5 log files by default to decrease disk usage in case
messages are spammed.
|
|
[macOS] Implement seamless display scaling.
|
|
Fix `String.capitalize()` description to follow camelCase changes
|
|
|
|
Remove String::find_last (same as rfind)
|
|
This closes #40093.
|
|
Add documentation for minimap_draw and minimap_width
|
|
|
|
Update TextEdit select and select_all method descriptions
|
|
|
|
Add documentation for selecting_enabled
|
|
|
|
|
|
|
|
Add documentation for center_viewport_to_cursor method
|
|
|
|
|
|
|
|
Add POT generation feature in Editor
|
|
Refactor physics force and impulse code to use (force, position) order
|
|
|
|
Clarify `Geometry.offset_polygon_2d` regarding vertices translation
|
|
Provide `draw_set_transform` defaults for rotation and scale
|
|
Added flip_h and flip_v properties in TextureButton
|
|
|
|
The method is used to either inflate or deflate a polygon.
For translating/transforming a polygon, use `Transform2D.xform`.
|
|
- Makes all boolean setters/getters consistent.
- Fixes bug where `glow_hdr_bleed_scale` was not used.
- Split CameraEffects to their own source file.
- Reorder all Environment method and properties declarations,
definitions and bindings to be consistent with each other
and with the order of property bindings.
- Bind missing enum values added with SDFGI.
- Remove unused SDFGI enhance_ssr boolean.
- Sync doc changes after SDFGI merge and other misc changes.
|
|
|
|
Expose shape property for shape query parameters classes
|
|
Monitor
Custom monitors can be added/removed/checked using `Performance.add_custom_monitor`/`Performance.remove_custom_monitor`/`Performance.has_custom_monitor`
The value can be viewed in the `Monitor` tab of Debugger.
Text before `/` is used to categorize the custom monitor.
`EditorPerformanceProfiler` class is created to separate logic from `ScriptEditorDebugger`
User can click on the graph of monitors to read the value at that point.
Graph includes intermediate base lines.
|
|
- Document the `EditorInterface.distraction_free_mode` property.
This closes https://github.com/godotengine/godot-proposals/issues/951.
|
|
Co-authored-by: PouleyKetchoupp <pouleyketchoup@gmail.com>
|
|
|
|
|
|
|
|
Change the word order of '...the where...' into '...where the...'.
|
|
Should close https://github.com/godotengine/godot-docs/issues/2432
|
|
Crypto enhancements, AESContext, RSA public key, signature, verification.
|
|
|
|
See #39731.
|
|
Move Haiku platform port to external repository
|
|
|
|
The Haiku port now resides at:
https://github.com/godotengine/godot-haiku-platform
While we're happy to support as many Free and Open Source platforms as we can,
we need to put the main focus on the platforms that we can reasonably maintain,
and for Haiku we have been lacking maintainers ever since the port was first
merged in 2015.
The Haiku code has not been compiling and much less working at least since the
release of Godot 3.0, and while some attempts have been made at fixing things,
it's still not functional today in the `3.2` branch (and much less in `master`,
understandably).
Having it in an external repository should hopefully enable Haiku contributors
to fix issues in their own time, and possibly tag versions compatible with
past Godot releases once they are ready.
|
|
ToolButton has no redeeming differences with Button;
it's just a Button with the Flat property enabled by default.
Removing it avoids some confusion when creating GUIs.
Existing ToolButtons will be converted to Buttons, but the Flat
property won't be enabled automatically.
This closes https://github.com/godotengine/godot-proposals/issues/1081.
|
|
|
|
Mono: Always define options in main.cpp to keep them in docs
|
|
Option in RichTextLabel for height to fit content
|
|
|
|
Otherwise generating docs with non-Mono builds removes them,
which is not so convenient for the documentation work.
|
|
|