Merge pull request #7012 from jwmcgettigan/onready-patch

Updated instances of onready to @onready.
This commit is contained in:
Max Hilbrunner
2023-03-23 04:39:30 +01:00
committed by GitHub
4 changed files with 11 additions and 11 deletions

View File

@@ -380,7 +380,7 @@ Then attach the following script to any node::
extends Node
onready var json_resource = load("res://demo.json")
@onready var json_resource = load("res://demo.json")
func _ready():
print(json_resource.get_dict())