Skip to content

Instantly share code, notes, and snippets.

View interfacekun's full-sized avatar
😇
Working from home

interfacekun

😇
Working from home
View GitHub Profile
@xbfool
xbfool / godot-claude-code-guide.md
Created March 16, 2026 09:19
Godot + Claude Code 游戏开发完全指南 — 工具生态、安装、最佳实践、踩坑经验

Godot + Claude Code 游戏开发完全指南

最后更新: 2026-03-16

一、工具生态总览

三层工具栈(可共存)

工具 作用 安装方式
@cloudwu
cloudwu / ecs.lua
Created December 3, 2017 14:22
Lua ECS
local core = require "ecs.core"
local ecs = {}
local entities = {} -- all Entities, eid -> entity
local entity_id = 0
ecs.entities = entities
-- cset: component set
local cset = { __mode = "kv" }