スキル一覧に戻る
unfrgivn

godot

by unfrgivn

0🍴 0📅 2026年1月6日
GitHubで見るManusで実行

SKILL.md


name: godot description: Godot Engine game development. Use for Godot projects, GDScript/C#, scenes (.tscn), Resources, signals, UI, rendering, and macOS/iOS export.

Godot Engine Development Skill

Assistance with Godot 4 game development, covering scenes/nodes, GDScript architecture, UI flows, data-driven Resources, rendering/performance, and platform exports (macOS + iOS).

When to Use This Skill

Trigger this skill when working with:

  • Godot Engine projects (2D/3D)
  • GDScript (preferred) or C# in Godot
  • Scene composition (.tscn), Node hierarchies, and signals
  • Resources (.tres/.res) for data-driven definitions (items, stickers, enemies)
  • UI (Control nodes), input, and focus/touch handling
  • Performance profiling, rendering settings, and asset import
  • Export pipelines (macOS app bundles, iOS Xcode projects)

Project Conventions (Wilds of Cloverhollow)

  • Scenes are small and composable; prefer reusable child scenes.
  • Keep gameplay rules out of UI Nodes.
  • Combat rules should be deterministic and testable.
  • Use Resources for content definitions:
    • StickerDef, EnemyDef, EncounterDef
  • Use autoload singletons sparingly:
    • GameState (save/load + persistent inventory)
    • SceneRouter (scene transitions)

Quick Reference

Node lifecycle

extends Node

func _ready() -> void:
    pass

func _process(delta: float) -> void:
    pass

func _physics_process(delta: float) -> void:
    pass

Signals

signal sticker_used(sticker_id: String)

func use_sticker(id: String) -> void:
    sticker_used.emit(id)

Resources for data

extends Resource
class_name StickerDef

@export var id: String
@export var display_name: String
@export var description: String
@export var power: int
@export var cooldown_turns: int

Saving (minimal)

var save_path := "user://save.json"

func save_json(data: Dictionary) -> void:
    var f := FileAccess.open(save_path, FileAccess.WRITE)
    f.store_string(JSON.stringify(data))

func load_json() -> Dictionary:
    if not FileAccess.file_exists(save_path):
        return {}
    var f := FileAccess.open(save_path, FileAccess.READ)
    return JSON.parse_string(f.get_as_text())

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です