Replace dasher-pack with unified animation-pack using original Blender bone names

This commit is contained in:
2026-06-15 14:28:26 +08:00
parent 9dd3c59edf
commit 844ec194cb
297 changed files with 28680 additions and 1884 deletions
+24
View File
@@ -0,0 +1,24 @@
@tool
extends McpClient
func _init() -> void:
id = "claude_code"
display_name = "Claude Code"
config_type = "cli"
doc_url = "https://docs.anthropic.com/en/docs/claude-code"
cli_names = PackedStringArray(["claude", "claude.exe"] if OS.get_name() == "Windows" else ["claude"])
cli_register_template = PackedStringArray(
["mcp", "add", "--scope", "user", "--transport", "http", "{name}", "{url}"]
)
cli_unregister_template = PackedStringArray(["mcp", "remove", "{name}"])
cli_status_args = PackedStringArray(["mcp", "list"])
## #463: JSON fallback for when the `claude` binary isn't on PATH — e.g.
## Claude Code installed only as a VS Code / Cursor extension. The CLI is
## still preferred whenever it resolves; this is what gets written
## otherwise. `claude mcp add --scope user --transport http` produces
## exactly this shape under `mcpServers` in ~/.claude.json:
## "godot-ai": { "type": "http", "url": "<url>" }
path_template = {"unix": "~/.claude.json", "windows": "~/.claude.json"}
server_key_path = PackedStringArray(["mcpServers"])
entry_extra_fields = {"type": "http"}