mirror of
https://github.com/godotengine/gdnative-demos.git
synced 2026-01-01 05:48:13 +03:00
10 lines
197 B
GDScript
10 lines
197 B
GDScript
extends Node
|
|
|
|
const Simple = preload("res://bin/simple.gdns")
|
|
|
|
onready var simple_instance = Simple.new()
|
|
|
|
|
|
func _on_Button_pressed():
|
|
$Label.text = "C++ code says: " + simple_instance.get_data()
|