Files
engine/modules/gdscript/tests/scripts/runtime/features/object_constructor.gd
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
113 B
GDScript
Raw Normal View History

2023-09-21 12:42:55 +03:00
# GH-73213
func test():
var object := Object.new() # Not `Object()`.
print(object.get_class())
object.free()