sl@cccfr.de 39a9c9c5ee move repo 2 jaren geleden
..
bin 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
src 39a9c9c5ee move repo 2 jaren geleden
Makefile 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
README.md 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
default_env.tres 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
icon.png 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
main.gd 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
main.tscn 552d344e17 fix: fixed errors and added more examples 4 jaren geleden
project.godot 552d344e17 fix: fixed errors and added more examples 4 jaren geleden

README.md

GDNative Simple Example

This example demonstrates how you can use the gdnative Go package to create your own Godot bindings with Go.

Compiling

Dependencies:

  • golang 1.6+

CGO (Cross platform)

You can use golang to compile the library if you have it installed:

go build -v -buildmode=c-shared -o libsimple.so ./src/simple.go && mv libsimple.so ./bin

Usage

Create a new object using load("res://SIMPLE.gdns").new()

This object has following methods you can use:

  • get_data()