summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/features/stringify.gd
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-25 20:42:45 +0200
committerGitHub <noreply@github.com>2021-10-25 20:42:45 +0200
commitd98a6363fa39f5187be69be39cb337bdf2b67c86 (patch)
tree2a5c2f43eee28b45506dadda32a4d3ea3ac8bb31 /modules/gdscript/tests/scripts/runtime/features/stringify.gd
parent8911d6ecc85a96042d6fff6d22f63a2d00b4d877 (diff)
parentd03b7fbe090dca1f9ea4190116ac0efbee37e929 (diff)
Merge pull request #54084 from reduz/node3d-rotation-options
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/stringify.gd')
-rw-r--r--modules/gdscript/tests/scripts/runtime/features/stringify.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/stringify.gd b/modules/gdscript/tests/scripts/runtime/features/stringify.gd
index de269b92b3..fead2df854 100644
--- a/modules/gdscript/tests/scripts/runtime/features/stringify.gd
+++ b/modules/gdscript/tests/scripts/runtime/features/stringify.gd
@@ -17,7 +17,7 @@ func test():
print(Plane(1, 2, 3, 4))
print(Quaternion(1, 2, 3, 4))
print(AABB(Vector3.ZERO, Vector3.ONE))
- print(Basis(Vector3(0, 0, 0)))
+ print(Basis.from_euler(Vector3(0, 0, 0)))
print(Transform3D.IDENTITY)
print(Color(1, 2, 3, 4))