godot-docs icon indicating copy to clipboard operation
godot-docs copied to clipboard

Best practices godot interfaces

Open thiagola92 opened this issue 2 years ago • 1 comments

Update one code block in Godot Interfaces

thiagola92 avatar Feb 27 '23 04:02 thiagola92

Updated setter from

@export var const_script: Script:
    set = set_const_script
func set_const_script(value):
    if Engine.is_editor_hint():
        const_script = value

to

@export var const_script: Script:
    set(value):
        if Engine.is_editor_hint():
            const_script = value

thiagola92 avatar Feb 27 '23 07:02 thiagola92

This PR was unfortunately superseded by #7640.

I'm sorry we missed the duplicate. Thank you for your contribution nonetheless.

Piralein avatar Aug 10 '23 11:08 Piralein