GDScript: Add @export_storage annotation

This commit is contained in:
Danil Alexeev 2023-12-19 20:56:30 +03:00
parent 1f5d4a62e9
commit 3a3a2011f4
No known key found for this signature in database
GPG key ID: 124453E157DA8DC7
16 changed files with 178 additions and 109 deletions

View file

@ -60,7 +60,7 @@ func test():
var script: Script = get_script()
for property in script.get_property_list():
if str(property.name).begins_with("test_"):
print(Utils.get_property_signature(property, true))
print(Utils.get_property_signature(property, null, true))
for property in get_property_list():
if str(property.name).begins_with("test_"):
print(Utils.get_property_signature(property))