Age | Commit message (Collapse) | Author |
|
Ensures that the versions always match the Godot version, albeit following
SemVer 2.0 so inserting a dot between "beta" and the build number.
For "stable" status, we omit the suffix as this would be interpreted as a
pre-release build too.
So we have:
| Godot version | Nupkg version |
| -------------- | -------------- |
| 4.0.0-beta | 4.0.0-beta |
| 4.0.0-beta2 | 4.0.0-beta.2 |
| 4.0.0-rc1 | 4.0.0-rc.1 |
| 4.0.0-stable | 4.0.0 |
|
|
[TextServer GDExtension] Update build scripts and `.gdextension` files to use new target names and arch suffixes.
|
|
Remove usage of unitialized variables
|
|
use new target names and arch suffixes.
|
|
Fix `hide_slider` vs `no_slider` inconsistency in editor property code
|
|
GDScript/C#: Tweak error message for invalid script type for object
|
|
Rename Projection `matrix` to `columns`
|
|
LSP: Fix GDScript doc comments
|
|
Implementing override functionality for XR
|
|
Improve dictionary printing to avoid confusion with arrays
|
|
Clean up .blend importer to fix unreachable code paths
|
|
|
|
|
|
- Add leading and trailing spaces within dictionaries, as the `{}`
characters are hard to distinguish from `[]` on some fonts.
This is especially helpful with empty arrays and dictionaries.
|
|
|
|
For EditorNode3DGizmo:
- `get_spatial_node` -> `get_node_3d`
- `set_spatial_node` -> `set_node_3d`
For EditorPlugin:
- `add_spatial_gizmo_plugin` -> `add_node_3d_gizmo_plugin`
- `remove_spatial_gizmo_plugin` -> `remove_node_3d_gizmo_plugin`
Also renames some internal methods for consistency (`forward_3d_draw_over_viewport` & `forward_3d_force_draw_over_viewport` ...). Basically, Spatial has been completely eradicated.
|
|
See #66870.
|
|
Implement `GDScriptTextDocument::willSaveWaitUntil` to clean up outdated documents before saving
|
|
Remove unsupported `NO_SAFE_CAST`/`-fno-rtti` from Android build
|
|
documents before saving
Implement `GDScriptTextDocument::willSaveWaitUntil` to clean up outdated documents before saving,
then update the document in `GDScriptTextDocument::didSave`.
|
|
Respect texture filtering when importing GLTF
|
|
|
|
|
|
|
|
|
|
[MP] Allow multiple synchronizers per node.
|
|
C#: Use Span in Color to avoid string allocations
|
|
The same node can now be controlled by multiple synchronizers at once.
Spawn visibility is composed in OR across multiple synchronizers (i.e.
if any synchronizer is visible to the peer, the object will be spawned).
Synchronizers controlling spawned nodes can now have a different
authority then the one spawning the node, in that case, the spawn
variables for that specific synchronizer are simply ignored (other
synchronizers with the same authority of the spawner will correctly
synchronize variables on spawn).
The SceneReplicationState class has been completly removed, since it was
bloating the implementation, the state is now simply stored in the
SceneReplicationInterface.
|
|
|
|
This also removes `OS::can_use_threads` from the public API since it's always
true.
|
|
Android was the last platform to still attempt to disable RTTI (for binary
size), but both the Android editor and now the ICU library used by templates
need RTTI.
There could still be the possibility to support this for non-ICU template
builds (i.e. without the TextServerAdvanced module), but since this isn't one
of the build configurations we test regularly it's pretty risky to keep this
option only for that specific use case. And our code is already littered with
`dynamic_cast`s which weren't guarded with `!defined(NO_SAFE_CAST)`.
|
|
Fix more highlighting bugs
|
|
Fix crash in navigation 3d when target is not reachable
|
|
C#: Update Basis Euler angle code to match core
|
|
Fix visibility filtering options for .blend imports
|
|
The code that resets variables to retry navigation to the closest possible poly was not resetting 1 variable, which caused it to exceed the vector bounds
|
|
|
|
|
|
|
|
|
|
If the delegate target is an Object, the connected signal will be registered in that object instead of the middleman. So when that object is destroyed, the signal will be properly disconnected.
|
|
ci: add Python static analysis check via mypy
|
|
Add warning for synchronizer authority mismatch
|
|
|
|
|
|
Using codespell 2.3-dev from current git.
And fix typo in `methods.py` for `vsproj=yes` option (still won't work
though).
|
|
|
|
|
|
|
|
akien-mga/scons-msvc-graphite-silence-c++17-deprecation-warnings
SCons: Silence MSVC C++17 deprecation warnings in Graphite
|