Skip to content

GDScript: Allow extending directly from Object

Rafał Mikrut requested to merge github/fork/leonkrause/extend-object into master

Created by: leonkrause

Currently in GDScript, inheriting is only possible from file classes and other classes inheriting from Object. This change allows inheriting directly from Object:

extends Object

var value

func _init():
    value = 2

Merge request reports