Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-23 | Merge pull request #73815 from RedworkDE/net-missing-editor-message | Rémi Verschelde | |
C#: Fix editor crashing without a message when .NET is not installed | |||
2023-02-23 | Merge pull request #73811 from Vsono/master | Rémi Verschelde | |
Fix WebSocketMultiplayerPeer server crash when a client tries to connect. | |||
2023-02-23 | Merge pull request #73798 from vonagam/fix-bad-continue-in-lambda | Rémi Verschelde | |
GDScript: Fix parsing unexpected break/continue in lambda | |||
2023-02-23 | Merge pull request #73796 from vonagam/fix-enum-in-range-call | Rémi Verschelde | |
GDScript: Fix usage of enum value as range argument | |||
2023-02-23 | C#: Fix editor crashing without a message when .NET is not installed | RedworkDE | |
2023-02-23 | Fix WebSocketMultiplayerPeer server crash | Vsono | |
2023-02-23 | [MP] Fix replication config not updating sync/spawn props from code. | Fabio Alessandrelli | |
2023-02-23 | GDScript: Fix parsing unexpected break/continue in lambda | Dmitrii Maganov | |
2023-02-23 | GDScript: Fix usage of enum value as range argument | Dmitrii Maganov | |
2023-02-22 | Merge pull request #73715 from clayjohn/HDR-import | Rémi Verschelde | |
Use multiple threads to import HDR images | |||
2023-02-22 | Use multiple threads to import HDR images | clayjohn | |
2023-02-22 | Document `@GDScript.is_instance_of` method | Danil Alexeev | |
2023-02-21 | Merge pull request #73709 from vonagam/fix-error-message-unfound-type | Rémi Verschelde | |
GDScript: Fix error message for unfound type | |||
2023-02-21 | Merge pull request #73705 from anvilfolk/doublewoopsie | Rémi Verschelde | |
Added check for null objects in gdscript typed assign. | |||
2023-02-21 | Merge pull request #73689 from vnen/gdscript-fix-inheritance-native-class | Rémi Verschelde | |
GDScript: Fix setting native type with script inheritance | |||
2023-02-21 | GDScript: Fix error message for unfound type | Dmitrii Maganov | |
2023-02-21 | Added check for null objects in gdscript typed assign. | ocean (they/them) | |
2023-02-21 | Merge pull request #73693 from vnen/gdscript-fix-script-signature-check | Rémi Verschelde | |
GDScript: Fix override signature check of script inheritance | |||
2023-02-21 | Merge pull request #73680 from vnen/gdscript-div-by-zero-crash-fix | Rémi Verschelde | |
GDScript: Avoid validated division operation to test for zero | |||
2023-02-21 | GDScript: Fix override signature check of script inheritance | George Marques | |
Avoid treating the super class as a meta type for signature check, since it is looking at the instance level for that. | |||
2023-02-21 | GDScript: Fix setting native type with script inheritance | George Marques | |
Sometimes the inheritance tree is compiled out of order and the base don't have yet a native type set. This is now changed to not rely on the base script but use the native type set in the datatype, which is already resolved by the analyzer. | |||
2023-02-21 | GDScript: Avoid validated division operation to test for zero | George Marques | |
The validated operations for integer division and modulo do not check for division by zero. This avoids validated operation in these cases to make sure the check is performed and avoid crashing the engine. | |||
2023-02-21 | GDScript: Fix crash when autoload script can't be found | George Marques | |
2023-02-21 | Merge pull request #73667 from aaronfranke/gltf-unused-joint-bool | Rémi Verschelde | |
Remove unused joint boolean in GLTFNode | |||
2023-02-21 | Merge pull request #73654 from V-Sekai/fbx_base_dir | Rémi Verschelde | |
fbx: Set base_dir correctly in append_from_scene | |||
2023-02-21 | Remove unused joint boolean in GLTFNode | Aaron Franke | |
2023-02-20 | Add test for const class references | mashumafi | |
2023-02-20 | fbx: Set base_dir correctly in append_from_scene | Lyuma | |
2023-02-20 | Merge pull request #73639 from vnen/gdscript-limit-completion-recursion-depth | Rémi Verschelde | |
GDScript: Limit recursion depth for completion functions | |||
2023-02-20 | [macOS] Replace all `Alt/Option+Letter/Number` default shortcuts to avoid ↵ | bruvzg | |
conflicts with special character input. | |||
2023-02-20 | GDScript: Limit recursion depth for completion functions | George Marques | |
Avoid crashing if the completion gets stuck in infinite recursion while trying to guess the expression type. | |||
2023-02-20 | Merge pull request #73626 from Faless/mp/4.x_synced_signal | Rémi Verschelde | |
[MP] Add a "synchronized" signal to MultiplayerSynchronized. | |||
2023-02-20 | Merge pull request #73590 from vnen/gdscript-global-scope-enums | Rémi Verschelde | |
Make global scope enums accessible as types in GDScript | |||
2023-02-20 | Merge pull request #73544 from mashumafi/fix-func-arg-null | Rémi Verschelde | |
Fix: Func with typed args error when arg is null | |||
2023-02-20 | Merge pull request #73489 from vonagam/type-check-node | Rémi Verschelde | |
GDScript: Rework type check | |||
2023-02-20 | Merge pull request #73291 from vonagam/fix-unsafe-weak-binop | Rémi Verschelde | |
GDScript: Fix missing unsafety mark for binary op with weak variables | |||
2023-02-20 | [MP] Add a "synchronized" signal to MultiplayerSynchronized. | Fabio Alessandrelli | |
Emitted upon receiving a valid sync packet after setting the variables state. | |||
2023-02-19 | Fix: Func with typed args error when arg is null | mashumafi | |
2023-02-19 | Make global scope enums accessible as types in GDScript | George Marques | |
Add functions to CoreConstant so enums can be properly deduced. Also add the enums in release builds to make consistent with ClassDB enums and avoid differences in script compilation between debug and release. | |||
2023-02-19 | C#: Fix line position when opening file in VSCode | RedworkDE | |
2023-02-18 | Merge pull request #73501 from anvilfolk/oopsiedaisy | Yuri Sizov | |
Fix inability to assign null regression | |||
2023-02-17 | Merge pull request #73448 from RandomShaper/fix_sticky_stack | Yuri Sizov | |
Avoid GDScript bookkeeping from referencing objects longer than necessary | |||
2023-02-17 | Avoid GDScript bookkeeping from referencing objects longer than necessary | Pedro J. Estébanez | |
2023-02-17 | GDScript: Rework type check | Dmitrii Maganov | |
2023-02-17 | Fix inability to assign null regression | ocean (they/them) | |
Co-authored-by: Dmitry Maganov <vonagam@gmail.com> | |||
2023-02-17 | Merge pull request #72867 from vnen/gdscript-limit-call-depth | Yuri Sizov | |
GDScript: Add limit to call depth | |||
2023-02-17 | Merge pull request #72925 from vonagam/fix-enum-typed-array-error | Yuri Sizov | |
GDScript: Fix error about enum typed arrays | |||
2023-02-17 | Merge pull request #73441 from akien-mga/linux-unbundling-fixes | Rémi Verschelde | |
Fix includes of thirdparty libs which can be unbundled on Linux | |||
2023-02-17 | Merge pull request #73195 from timothyqiu/weblate-comments | Rémi Verschelde | |
Improvements and fixes based on Weblate comments | |||
2023-02-17 | Merge pull request #73398 from anvilfolk/fix-getter | Rémi Verschelde | |
Fix unset getter return types resulting in strange behavior |