GDScript: 액세스 속성의 두 가지 형식

주의[]로 자신의 속성에 접근할 때 앞에 self를 추가해야 한다.
범례 코드
extends Node

var test_property = "hello"

func _ready():
	print(name)
	print(get("name"))
	print(self["name"])
	print(test_property)
	print(get("test_property"))
	print(self["test_property"])

결과 내보내기
node
node
node
hello
hello
hello

좋은 웹페이지 즐겨찾기