godot-module-template/engine/modules/gdscript/tests/scripts/analyzer/features/property_functions.gd

17 lines
178 B
GDScript
Raw Normal View History

2025-01-17 15:36:38 +00:00
var _prop = 1
var prop:
get = get_prop, set = set_prop
func get_prop():
return _prop
func set_prop(value):
_prop = value
func test():
print(prop)
prop = 2
print(prop)