Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-08 | Add static methods for creating Image and ImageTexture | kobewi | |
2022-07-07 | Merge pull request #62805 from raulsntos/csharp-rpc | Rémi Verschelde | |
2022-07-07 | Merge pull request #62789 from raulsntos/csharp-export-nodes | Rémi Verschelde | |
2022-07-07 | Merge pull request #62782 from raulsntos/csharp-bitfield-enums | Rémi Verschelde | |
2022-07-07 | Merge pull request #62801 from raulsntos/ensure-nuget-path-exists | Rémi Verschelde | |
2022-07-07 | Merge pull request #62108 from bruvzg/font_config_v3 | Rémi Verschelde | |
2022-07-07 | Allows parsing of invalid UTF-16 surrogates (can be encountered in Windows ↵ | bruvzg | |
filenames) and some non-standard UTF-8 variants, makes Unicode parse errors more verbose. | |||
2022-07-07 | Merge pull request #62791 from raulsntos/csharp-bezier-interpolation | Rémi Verschelde | |
C#: Add `BezierInterpolate` method | |||
2022-07-07 | C#: New `RPCAttribute` | Raul Santos | |
Replace old RPC attributes with a new single `RPCAttribute` which works like the GDScript `@rpc` annotation. | |||
2022-07-07 | Ensure NuGet.config directory exists | Raul Santos | |
2022-07-06 | C#: Add `BezierInterpolate` method | Raul Santos | |
Adds a `BezierInterpolate` method for floats in `Mathf` and for vectors in `Vector2` and `Vector3`. | |||
2022-07-06 | C#: Enable exporting nodes to the inspector | Raul Santos | |
2022-07-06 | Add C# support for bitfield enums (flags) | Raul Santos | |
2022-07-06 | Sync GDScript doc template for new annotations | Rémi Verschelde | |
2022-07-06 | Merge pull request #62701 from cdemirer/for-variable-conflict | Rémi Verschelde | |
2022-07-06 | Merge pull request #62699 from ↵ | Rémi Verschelde | |
cdemirer/fix-autocomplete-var-assigned-same-statement | |||
2022-07-06 | Merge pull request #62690 from cdemirer/fix-infinite-guess-recursion | Rémi Verschelde | |
2022-07-06 | Merge pull request #62760 from cdemirer/fix-annotation-initializer-conflict | Rémi Verschelde | |
Fix priority of annotated type vs initializer type | |||
2022-07-06 | Merge pull request #62713 from YuriSizov/docs-scripting-annotations | Rémi Verschelde | |
2022-07-06 | Merge pull request #62707 from YuriSizov/gdscript-group-those-props | Rémi Verschelde | |
2022-07-06 | Merge pull request #62344 from BastiaanOlij/extract_dependencies | Rémi Verschelde | |
2022-07-06 | Refactor Font configuration and import UI, and Font resources. | bruvzg | |
2022-07-06 | Merge pull request #62374 from reduz/implement-bitfield-hint | Rémi Verschelde | |
Implement a BitField hint | |||
2022-07-06 | Fix priority of annotated type vs initializer type | cdemirer | |
2022-07-05 | Implement a BitField hint | reduz | |
Allows to specify the binder that an enum must be treated as a bitfield. | |||
2022-07-05 | Add grouping annotations for class properties in GDScript | Yuri Sizov | |
2022-07-05 | Fix light intensity and attenuation import from GLTF | PZerua | |
2022-07-04 | Add support for documenting built-in annotations | Yuri Sizov | |
2022-07-04 | Do error when for variable conflicts with a variable in scope | cdemirer | |
2022-07-04 | Fix autocomplete for variable which is assigned to in the current statement | cdemirer | |
2022-07-04 | HarfBuzz: Update to version 4.4.1 | bruvzg | |
2022-07-04 | Fix infinite recursion when guessing type of variable which is being assigned to | cdemirer | |
2022-07-03 | Merge pull request #62653 from akien-mga/gltf-warning-typo-fix | Rémi Verschelde | |
2022-07-03 | glTF: Fix a couple typos in warnings on image parsing | Rémi Verschelde | |
2022-07-03 | Register missing WebRTCDataChannelJS type | mj.Jernigan | |
2022-07-02 | SCons: Properly track codegen script dependency for generated GLSL headers | Rémi Verschelde | |
2022-07-01 | implement bone renamer in importer | Silc Renew | |
2022-06-28 | Merge pull request #60675 from voylin/Add-BBCode-support-for-printing-output | Rémi Verschelde | |
Adding print_rich() for printing with BBCode | |||
2022-06-28 | Merge pull request #62485 from cdemirer/fix-set-chain-jump-if-shared | Rémi Verschelde | |
Fix chain assignment bug with jump_if_shared | |||
2022-06-28 | Fix set chain bug with jump_if_shared | cdemirer | |
2022-06-29 | Adding print_rich for printing with BBCode | Voylin | |
2022-06-28 | Merge pull request #53135 from briansemrau/fix-ref-leak | Rémi Verschelde | |
2022-06-28 | Merge pull request #62470 from vnen/gdscript-export-nodes | Rémi Verschelde | |
GDScript: Enable exporting nodes to the inspector | |||
2022-06-28 | Merge pull request #62468 from V-Sekai/core-const-expressions | Rémi Verschelde | |
Add a const call mode to Object, Variant and Script. | |||
2022-06-27 | GDScript: Enable exporting nodes to the inspector | George Marques | |
Also fix an small issue in the property editor for NodePath trying to use the meta property when not needed. | |||
2022-06-27 | Merge pull request #62462 from vnen/gdscript-setter-chaining | Rémi Verschelde | |
GDScript: Fix setter being called in chains for shared types | |||
2022-06-27 | Add a const call mode to Object, Variant and Script. | K. S. Ernest (iFire) Lee | |
For this to work safely (user not call queue_free or something in the expression), a const call mode was added to Object and Variant (and optionally Script). This mode ensures only const functions can be called, making it safe to use from the editor. Co-Authored-By: reduz <reduzio@gmail.com> | |||
2022-06-27 | GDScript: Fix setter being called in chains for shared types | George Marques | |
When a type is shared (i.e. passed by reference) it doesn't need to be called in a setter chain (e.g. `a.b.c = 0`) since it will be updated in place. This commit adds an instruction that jumps when the value is shared so it can be used to skip those cases and avoid redundant calls of setters. It also solves issues when assigning to sub-properties of read-only properties. | |||
2022-06-28 | Split dependency logic | Bastiaan Olij | |
Split FOG Split visibility notifier Final cleanup of storage classes | |||
2022-06-25 | Merge pull request #62309 from reduz/remake-resource-thread-safety | Rémi Verschelde | |
Remake ResourceCache thread safety code and API |