(码) Godot与Golang合体:GDExtension

请微信扫码打赏,留言中输入文章编号. 附费后将自动刷新出完整内容.

让Godot与Golang交互,发挥各自的优势,这是一个不错的想法。

  1. 官网
  2. Github
  3. 文档

看起来还支持多平台,没实测。

  1. 安装库 go install grow.graphics/gd/cmd/gd@master

  2. 创建Go项目 go mod init main

  3. main.go

package main

import (
    "fmt"
    "grow.graphics/gd"
    "grow.graphics/gd/gdextension"
)

type HelloWorld struct {
    gd.Class[HelloWorld, gd.Node2D]
} …
请微信扫码打赏,留言中输入文章编号. 附费后将自动刷新出完整内容.

相关文章