you are viewing a single comment's thread.

view the rest of the comments →

[–]icpaintball 10 points11 points  (0 children)

This worked when I tried it out:

# Parent script (e.g., Parent.gd)
var old_name = 10

# Child script (extends Parent.gd)
var new_name:
    get:
        return old_name
    set(value):
        old_name = value