Hi,
I want to be able to something like that:
class ClassTest:
var name
func _init(name):
ClassTest.name = name
var temp = ClassTest.new("Blue")
print(temp.name) <1>
print(temp._get("name")) <2>
The line marked with a <1> works fine, because it's how a class works, but I want to get temp.name by using the string "name", with something that could look like line <2>, and I don't know how to do it.