# simple_rag **Repository Path**: cy4ever/simple_rag ## Basic Information - **Project Name**: simple_rag - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-08-30 - **Last Updated**: 2025-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Simple RPG 这是一个用来学习 Godot 引擎的练手项目,也是我的第一个 Godot 项目。从零开始,适合新手入门和实践。 基于 Godot 引擎开发的简单 RPG 游戏。 ## 项目结构 ``` root/ ├─ project.godot # Godot 项目配置文件(必须存在) ├─ icon.png # 项目图标 ├─ scenes/ # 场景文件(.tscn/.scn) │ ├─ entities/ # 游戏实体(玩家、敌人、NPC等) │ │ ├─ player/ # 玩家实体 │ │ │ ├─ player.tscn │ │ │ ├─ scripts/ │ │ │ └─ assets/ │ │ └─ enemies/ # 敌人实体 │ │ └─ slime/ # 史莱姆敌人实体 │ │ └─ ....../ # 其他敌人实体 │ ├─ commons/ # 公共组件 │ ├─ ....../ # 其他场景文件 │ └─ main.tscn ├─ scripts/ # GDScript / C# / GDNative 脚本 │ ├─ common/ # 公共脚本 ├─ assets/ # 素材资源 │ ├─ textures/ # 图片、贴图 │ ├─ sprites/ # 角色动画帧 │ ├─ audio/ # 音效、音乐 │ ├─ fonts/ # 字体文件 ├─ shaders/ # 着色器 ├─ addons/ # 插件(Godot 官方约定目录) └─ docs/ # 文档、设计说明 ``` ## 快速开始 1. 使用 Godot 4 打开本项目。 2. 运行主场景 `scenes/main.tscn`。 ## 更新日志 [更新日志](docs/update_log.md) ## TODO [TODO](docs/todo.md) ## 贡献 欢迎提交 issue 或 PR 改进项目。 ## License MIT