gdnative_python/tests/work_with_gdscript/pynode_with_gdparent.py

10 lines
163 B
Python
Raw Normal View History

2023-06-02 11:13:10 +02:00
from pandemonium import exposed, ResourceLoader
GDNode = ResourceLoader.load("res://gdnode.gd", "", False)
@exposed
class PyNodeWithGDParent(GDNode):
pass