← Back to list

unity-bootstrap
by nolainjin
코덱스로 만드는 유니티버전
⭐ 0🍴 0📅 Dec 25, 2025
SKILL.md
name: unity-bootstrap description: Bootstrap a new Unity project for a 2D management/simulation game. Use when you need to create the Unity project, choose URP/UI approach, set up folder structure, gitignore, packages (Input System/TextMeshPro), and establish a minimal scene + tick loop scaffold before porting gameplay systems.
Unity Bootstrap (2D Sim)
1) Create project (Unity Hub)
- Use latest Unity LTS.
- Template:
2D (URP)if you want lighting/post; otherwise2D Core. - Enable packages early:
Input System,TextMeshPro.
2) Git setup checklist
- Add a Unity
.gitignore(ignoreLibrary/,Temp/,obj/,Build/,Logs/). - Commit a clean baseline after first project creation.
3) Folder structure (recommended)
Assets/_Project/Scripts/{Core,Gameplay,UI}Assets/_Project/ScenesAssets/_Project/PrefabsAssets/_Project/Data(ScriptableObjects)Assets/_Project/Art,Assets/_Project/Audio
4) Minimal runtime scaffold
BootScene:- Loads config ScriptableObjects
- Loads save (if exists) or creates new state
- Loads
GameScene
GameScene:- Has
GameControllerwith:- Tick loop (1 sec) + time scale (1/2/6x)
- Hooks for UI to call commands (build, assign, upgrade)
- Has
5) Next step
- After this, use
unity-migrationto map and port the existing JS systems.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon