Age | Commit message (Collapse) | Author |
|
This ensures that settings like `gui/theme/custom_font` handle resource
remappings properly, as they load resources in `register_scene_types()`.
Path remaps used to be done before loading scene types in early Godot
versions (as hinted by the "Load Remaps" comment just before "Load Scene
Types") but this was broken when developing new localization features.
Fixes #17640.
|
|
Check default project and autoscan directories exist on project manager startup
|
|
|
|
New contributors added to AUTHORS:
@dalexeev, @dsnopek, @HaSa1002
Thanks to all contributors and donors for making Godot possible!
|
|
Fix macOS Vulkan debug label crash.
|
|
functions are used. Add temporary variables to fix potential use-after-free.
|
|
Replace ColorN and from HTML with a string constructor
|
|
|
|
3D editor grid improvements
|
|
Don't use trashy max_decals value to prevent crashes
|
|
This commit adds a view-dependant fade to the 3D viewport grid. It fades out
at steep view angles to hide the solid regions that appear far from the camera.
I also included a fade to hide the grid borders.
I added some improvements to the dynamic grid when the camera is in orthogonal mode.
It properly handles zoom now, and the grid center is now set to the intersection point
between the grid plane and the camera forward ray, keeping the grid
always visible.
|
|
|
|
Use Math_TAU and deg2rad/etc in more places and optimize code
|
|
Fixed completion and hint panel positioning in TextExit
|
|
Reference the control gallery image in the Control class documentation
|
|
GraphNode: Add properties for custom icons
|
|
Create the temporary PCK export directory if it doesn't exist
|
|
Use real_t in physics nodes
|
|
Add viewport resolution to the 3D editor's View Information pane
|
|
Use integer coordinates for the font glyphs rendering.
|
|
Calinou/project-manager-increase-folder-button-visibility
Make the Open Project Folder button more visible in the project manager
|
|
add search extensions for Scons' path
|
|
Node::replace_by is not copying node properties, removed the dead code
|
|
Fix incorrect version requirement in the SCons compilation DB comment
|
|
This closes https://github.com/godotengine/godot-proposals/issues/619.
|
|
|
|
The code to copy node properties to the new node never worked, so there is no reason to keep the useless bits in there
|
|
Linux: Enable udev support by default
|
|
Simplify Script Variables Population
|
|
Linux: Build with use_static_cpp=yes by default
|
|
This enables `-static-libgcc -static-libstdc++` which help make custom Linux
builds more portable (official builds have been using this option for years).
For some obscure reason Ubuntu 18.04 i386 crashes when using the option for
i386 builds, so let's play it safe and enable for x86_64 only for now.
|
|
This has been enabled for years in official binaries, and users making custom builds
may end up not enabling it unknowingly, so it's best if we default to the same as
what official builds do.
The original reason for having it opt-in was likely the addition of a dependency on
libudev, but that should be fairly ubiquitous by now.
|
|
[C#] Fix string.Hash()
|
|
|
|
Unified several visual shader nodes
|
|
Attempt to connect to first correct port on dragging in visual shader
|
|
|
|
|
|
Modernize Thread
|
|
Don't handle BaseException in JavaScript build script
|
|
Fix WebXRInterface code sample in the class reference
|
|
|
|
This also fixes the code sample's indentation to look correct in the
editor help.
|
|
|
|
|
|
This closes #45560.
|
|
Like the Tween cheatsheet or Color constants cheatsheet, this references
a "cheatsheet" image from the documentation repository.
|
|
Use real_t in physics code
|
|
Add GDNative JSON generator for the builtin API
|
|
Which can be used by language bindings to generate code statically. This
is generated as a different file from the class API because it has
different requirements (the builtin types have constructors and don't
have signals), so bindings can better make use of each JSON file without
extra parsing.
This also cleans up a bit the old API generator, mainly initializing
structs and renaming "instanciable" to the more correct "instantiable".
The argument description in help text was updated to better reflect how
it should be used. The <path> argument is mandatory.
|