diff options
author | kobewi <kobewi4e@gmail.com> | 2024-11-22 21:44:27 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-11-22 21:44:30 +0100 |
commit | e210313045cc4de77c654f7cabf4c810c957f3fe (patch) | |
tree | 8fd176a1aa07c996c1c90818689da877cc9dd858 /modules/gdscript/tests/scripts/runtime/features/stringify.gd | |
parent | f952bfe9985ad8f507cc29b2c7601bbba18b8039 (diff) | |
download | redot-engine-e210313045cc4de77c654f7cabf4c810c957f3fe.tar.gz |
Fix stringification of Vector4
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/stringify.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/stringify.gd | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/stringify.gd b/modules/gdscript/tests/scripts/runtime/features/stringify.gd index 8579baf876..463d207e59 100644 --- a/modules/gdscript/tests/scripts/runtime/features/stringify.gd +++ b/modules/gdscript/tests/scripts/runtime/features/stringify.gd @@ -4,15 +4,18 @@ func test(): print(-1.25, 0.25, 1.25) print("hello world") - print(Vector2(0.25, 0.25)) + print(Vector2(0.25, 1)) print(Vector2i(0, 0)) - print(Rect2(0.25, 0.25, 0.5, 0.5)) + print(Rect2(0.25, 0.25, 0.5, 1)) print(Rect2i(0, 0, 0, 0)) - print(Vector3(0.25, 0.25, 0.25)) + print(Vector3(0.25, 0.25, 1)) print(Vector3i(0, 0, 0)) + print(Vector4(0.25, 0.25, 0.25, 1)) + print(Vector4i(0, 0, 0, 0)) + print(Transform2D.IDENTITY) print(Plane(1, 2, 3, 4)) print(Quaternion(1, 2, 3, 4)) |