mirror of
https://github.com/godotengine/gdnative-demos.git
synced 2026-01-01 05:48:13 +03:00
The projects don't work as of this commit, but are fixed in a later commit in the same PR.
11 lines
219 B
GDScript
11 lines
219 B
GDScript
extends Control
|
|
|
|
# load the SIMPLE library
|
|
const InstanceBindingDemo = preload("res://bin/instance_binding_demo.gdns")
|
|
onready var data = InstanceBindingDemo.new()
|
|
|
|
func _on_Button_pressed():
|
|
# do the test here
|
|
|
|
pass
|