Age | Commit message (Collapse) | Author |
|
`internationalization/locale/include_text_server_data` setting.
|
|
|
|
GDScript: Remove function of `continue` for match statement
|
|
SaracenOne/disable_data_generation_on_foreign_resources
Disable navmesh, lightmap, and VoxelGI generation on foreign data
|
|
When instructions use function pointers, it's not possible to retrieve
their original names in the disassembly. This stores the names in
vectors (in debug builds) so they can be shown.
|
|
Fix BiDi override for the characters outside BMP (e.g., emojis).
|
|
|
|
|
|
Fix duplicating imported blendshape tracks
|
|
Add support for Unicode identifiers in GDScript and Expression
|
|
importing from a GLTF.
|
|
The keyword is confusing and rarely is used in the intended way. It is
removed now in favor of a future feature (pattern guards) to avoid
breaking compatibility later.
|
|
|
|
This is using an adapted version of UAX#31 to not rely on the ICU
database (which isn't available in builds without TextServerAdvanced).
It allows most characters used in diverse scripts but not everything.
|
|
Support script global resource name in EditorFileSystem
|
|
* Works for binary and text files.
* Makes EditorQuickOpen work with custom resources again.
* Information is cached and easily accessible.
Properly fixes #66179. Supersedes #66215 and supersedes #62417
**WARNING**: This required breaking backwards binary compatibility (.res and .scn files). Files saved after this PR is merged will no longer open in any earlier versions of Godot.
|
|
exports in the inspector were not properly appearing when a gdscript was saved using an external IDE
this commit adds a call to GDScript::UpdateExports toward the end of GDScriptTextDocument::didSave
|
|
This feature was removed from GDScript so it should not be present on
the interface nor in the saved export presets.
|
|
Get OpenXR with OpenGL working on SteamVR
|
|
Fixes cases where the runtime ResourceLoader cannot load gltf images.
|
|
|
|
Add astcenc compression and decompression.
|
|
Fix OGG page_data out of bound index crash
|
|
Implement BiDi override mode for GDScript source.
|
|
|
|
Co-authored-by: Gordon A Macpherson <gordon.a.macpherson@gmail.com>
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
|
|
|
|
Update `@icon` and `@tool` definitions to add a note
|
|
Fixes issue where failed start of OpenXR causes issues
|
|
BMP loader: Fix 2 bits-per-pixel images
|
|
|
|
C#: Implement `ExportPlugin::_get_name` and move `GLOBAL_DEF` to CSharpLanguage
|
|
Sync C# vectors with Core
|
|
Also documents the .NET project settings.
|
|
|
|
|
|
Remove set_drag_forwarding_compat()
|
|
|
|
- Remove `Vector2.Lerp` overload that takes a weight parameter of type `Vector2`.
- Remove `Vector3.Lerp` overload that takes a weight parameter of type `Vector3`.
- Remove `Color.Lerp` overload that takes a weight parameter of type `Color`.
- Remove `Angle` method from `Vector2i`.
- Remove `AngleTo` method from `Vector2i`.
- Remove `AngleToPoint` method from `Vector2i`.
- Remove `Cross` method from `Vector2i`.
- Remove `DistanceSquaredTo` method from `Vector2i` and `Vector3i`.
- Remove `DistanceTo` method from `Vector2i` and `Vector3i`.
- Remove `Dot` method from `Vector2i` and `Vector3i`.
- Remove `PosMod` method from `Vector2i` and `Vector3i`.
- Remove `Orthogonal` method from `Vector2i`.
- Remove `&` operator from `Vector2i` and `Vector3i`.
|
|
C#: Make property accessors internal
|
|
[MP] Fix nested spawning during "ready".
|
|
We want our spawns to be notified after ready, but we need to notify
them in the order they entered tree, so that nested spawners can be used
during "ready" (instead of having to await a frame).
|
|
GDScript: Fix typing of iterator in for loop
|
|
Make script annotations be placed before `class_name` and `extends`
|
|
adamscott/fix-reduce-identifier-from-base-class-script-retrieval
Fix cyclic reference errors while reducing identifiers
|
|
C#: Implement `Mathf.SinCos`
|
|
|
|
Fixes https://github.com/godotengine/godot/issues/69941
|
|
Implement `Mathf.SinCos` that wraps a call to `System.Math.SinCos`,
this allows us to use the `SinCos` method more conveniently with
`real_t`.
Using `Math.SinCos` is often cheaper than separate calls to `Math.Sin`
and `Math.Cos`, and they are often used together.
|