Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-10 | Fix constant base typing in extended GDScript class | Adam Scott | |
2022-12-10 | Merge pull request #69518 from rune-scape/rune-analyze-values | Rémi Verschelde | |
GDScript: Preload should make native type | |||
2022-12-10 | Merge pull request #69467 from rune-scape/rune-subclass-script-path | Rémi Verschelde | |
GDScript: Fix subclass script path issues | |||
2022-12-05 | Unify String and StringName | rune-scape | |
2022-12-04 | GDScript: preload should make native type | rune-scape | |
2022-12-02 | Fix missing parent class name identifier crash | Adam Scott | |
2022-12-01 | GDScript: Fix subclass script path issues | rune-scape | |
2022-12-01 | Merge pull request #69423 from KoBeWi/parenture | Rémi Verschelde | |
Improve parent signature error | |||
2022-12-01 | Merge pull request #68481 from dalexeev/gds-fix-dyn-arg-def-val | Rémi Verschelde | |
GDScript 2.0: Fix shift due to skip of non-constant default argument values | |||
2022-12-01 | Improve parent signature error | kobewi | |
2022-11-27 | GDScript: Avoid using `get_global_class_native_base` | rune-scape | |
2022-11-25 | Merge pull request #69079 from adamscott/fix-singleton-scene-cyclic-load | Rémi Verschelde | |
Fix singleton scene cyclic loading | |||
2022-11-25 | Fix singleton scene cyclic loading | Adam Scott | |
2022-11-24 | Ensure class name is printed in STATIC_CALLED_ON_INSTANCE warning | clayjohn | |
2022-11-23 | [godot#68977] Fix constants parameters | Adam Scott | |
2022-11-22 | Merge pull request #68970 from Chaosus/gds_fix_lambda_signal | Rémi Verschelde | |
Fix using signals in lambda functions | |||
2022-11-22 | Fix using signals in lambda functions | Yuri Rubinsky | |
2022-11-21 | [godot#61386] Fix autoload scenes implicit types | Adam Scott | |
2022-11-18 | Remove fix leftover that caused cyclic load issues | Adam Scott | |
2022-11-18 | Merge pull request #67714 from adamscott/fix-preload-cyclic-references-part2 | Rémi Verschelde | |
Fix cyclic references in GDScript 2.0 | |||
2022-11-18 | Fix cyclic references in GDScript 2.0 | Adam Scott | |
2022-11-17 | Fix ability to overload "script" variable | ocean (they/them) | |
2022-11-13 | GDScript compiler subclass bugfixes | Rune | |
2022-11-10 | GDScript 2.0: Fix shift due to skip of non-constant default argument values | Danil Alexeev | |
2022-11-02 | Merge pull request #68125 from ↵ | Rémi Verschelde | |
kleonc/range-fix-single-arg-optimized-type-mismatch [GDScript] Fix type mismatch in optimized single arg `range` | |||
2022-11-02 | Merge pull request #68040 from adamscott/fix-property-getter-return-type | Rémi Verschelde | |
Fix property getter with custom return type | |||
2022-11-02 | GDScript Fix type mismatch in optimized single arg `range` | kleonc | |
2022-10-31 | Merge pull request #68065 from zCubed3/fix_min_max_crash | Rémi Verschelde | |
`GDScriptAnalyzer` Fix math utilities crashing when invalid args are passed | |||
2022-10-31 | Merge pull request #62695 from Spartan322/relax-constant-asserts | Rémi Verschelde | |
Allow non-constant string message for assert | |||
2022-10-30 | Fix math utility functions crashing when invalid args passed | zCubed3 | |
2022-10-29 | [godot#68001] Fix property getter with custom return type | Adam Scott | |
2022-10-16 | Clarified reason why a resource cannot be loaded. | João Martins | |
2022-10-14 | Add STATIC_CALLED_ON_INSTANCE warning to highlight | clayjohn | |
when static functions are called directly from objects | |||
2022-10-13 | Implement RETURN_VALUE_DISCARDED warning in GDscript | clayjohn | |
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-09-17 | Add GDScript resource export. | willnationsdev | |
2022-09-15 | Fix GDScript `preload` fails in standalone build unless files are present in ↵ | Abdelhafidh Belalia | |
directory Fixes #56343. | |||
2022-08-31 | Merge pull request #65065 from Atlinx/fix/65010_enum-doesnt-show-up | Rémi Verschelde | |
2022-08-30 | Fix inferred GDScript enum values not appearing in inspector | Atlinx | |
"enum_values" originally wasn't being forwarded to the new type inside "reduce_identifier_from_base", which caused hint strings derived from the new type to be blank, which ultimately caused an empty enum dropdown menu. | |||
2022-08-29 | Rename String `plus_file` to `path_join` | Aaron Franke | |
2022-08-07 | fix(gdscript): Infer type from preload const | Antonio Dell'Annunziata | |
When resolving the type of the attribute from the variant, the result_type.kind was overritten for no reason. It is assumed that this only needs to be done, if the variant value is not valid to have any kind here. Solves #63715 | |||
2022-07-23 | Implement Vector4, Vector4i, Projection | reduz | |
Implement built-in classes Vector4, Vector4i and Projection. * Two versions of Vector4 (float and integer). * A Projection class, which is a 4x4 matrix specialized in projection types. These types have been requested for a long time, but given they were very corner case they were not added before. Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity. **Q**: Why Projection and not Matrix4? **A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming. | |||
2022-07-18 | Allow non-constant string message for assert | George L. Albany | |
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 | Fix priority of annotated type vs initializer type | cdemirer | |
2022-07-05 | Add grouping annotations for class properties in GDScript | Yuri Sizov | |
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-17 | Make enum/constant binds 64-bit. | bruvzg | |
2022-06-03 | use correct error for unused bind match, suppress with underscore | Nathan Franke | |
2022-05-25 | Merge pull request #61279 from Trioct/fix-typed-array-assignment | Rémi Verschelde | |