super
キーワードを使うgdclass MyClass:
func say_hello():
print('Hello!')
func say_goodbye():
print('Later!')
class MyOtherClass extends MyClass:
func say_hello():
super()
print('Howdy!')
super.say_goodbye()
.method名
で実行できるpyfunc _ready():
._ready()
// ここに自分の処理
._ready()
で親クラスの _ready を呼んでいる