mirror of
https://github.com/Relintai/gdnative_python.git
synced 2024-11-12 10:25:08 +01:00
10 lines
157 B
Python
10 lines
157 B
Python
from godot import exposed, ResourceLoader
|
|
|
|
|
|
GDNode = ResourceLoader.load("res://gdnode.gd", "", False)
|
|
|
|
|
|
@exposed
|
|
class PyNodeWithGDParent(GDNode):
|
|
pass
|