From 9a5f2c12711b8d25022a16c1c7ee3a8fde5152a1 Mon Sep 17 00:00:00 2001 From: Joywayer Date: Fri, 31 Jul 2026 15:00:25 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=A1=A5=E6=8F=90=E4=BA=A4=20addons/g?= =?UTF-8?q?odot=5Fmcp=20=E7=9A=84=2035=20=E4=B8=AA=20.gd.uid=EF=BC=8C?= =?UTF-8?q?=E4=B8=8E=E5=85=A8=E9=A1=B9=E7=9B=AE=E7=BA=A6=E5=AE=9A=E5=AF=B9?= =?UTF-8?q?=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 此前 godot_mcp 是全项目唯一不跟踪 .uid 的目录: scripts/ 51 .gd / 51 .uid addons/game_designer/ 13 .gd / 13 .uid addons/godot_mcp/ 35 .gd / 0 .uid ← 唯一例外 且 .gitignore 无任何 .uid 规则,CLAUDE.md 亦要求新增 .gd 连同 .gd.uid 一并提交。 .uid 是稳定资源标识符,不跟踪则其它机器扫描时会重新生成不同 UID, 可能打断 uid:// 引用;Godot 官方亦建议提交。一并消除长期挂在 git status 里的 35 行噪声。 Co-Authored-By: Claude Opus 5 --- addons/godot_mcp/command_router.gd.uid | 1 + addons/godot_mcp/commands/analysis_commands.gd.uid | 1 + addons/godot_mcp/commands/android_commands.gd.uid | 1 + addons/godot_mcp/commands/animation_commands.gd.uid | 1 + addons/godot_mcp/commands/animation_tree_commands.gd.uid | 1 + addons/godot_mcp/commands/audio_commands.gd.uid | 1 + addons/godot_mcp/commands/base_command.gd.uid | 1 + addons/godot_mcp/commands/batch_commands.gd.uid | 1 + addons/godot_mcp/commands/editor_commands.gd.uid | 1 + addons/godot_mcp/commands/export_commands.gd.uid | 1 + addons/godot_mcp/commands/input_commands.gd.uid | 1 + addons/godot_mcp/commands/input_map_commands.gd.uid | 1 + addons/godot_mcp/commands/navigation_commands.gd.uid | 1 + addons/godot_mcp/commands/node_commands.gd.uid | 1 + addons/godot_mcp/commands/particle_commands.gd.uid | 1 + addons/godot_mcp/commands/physics_commands.gd.uid | 1 + addons/godot_mcp/commands/profiling_commands.gd.uid | 1 + addons/godot_mcp/commands/project_commands.gd.uid | 1 + addons/godot_mcp/commands/resource_commands.gd.uid | 1 + addons/godot_mcp/commands/runtime_commands.gd.uid | 1 + addons/godot_mcp/commands/scene_3d_commands.gd.uid | 1 + addons/godot_mcp/commands/scene_commands.gd.uid | 1 + addons/godot_mcp/commands/script_commands.gd.uid | 1 + addons/godot_mcp/commands/shader_commands.gd.uid | 1 + addons/godot_mcp/commands/test_commands.gd.uid | 1 + addons/godot_mcp/commands/theme_commands.gd.uid | 1 + addons/godot_mcp/commands/tilemap_commands.gd.uid | 1 + addons/godot_mcp/mcp_game_inspector_service.gd.uid | 1 + addons/godot_mcp/mcp_input_service.gd.uid | 1 + addons/godot_mcp/mcp_screenshot_service.gd.uid | 1 + addons/godot_mcp/plugin.gd.uid | 1 + addons/godot_mcp/ui/status_panel.gd.uid | 1 + addons/godot_mcp/utils/node_utils.gd.uid | 1 + addons/godot_mcp/utils/property_parser.gd.uid | 1 + addons/godot_mcp/websocket_server.gd.uid | 1 + 35 files changed, 35 insertions(+) create mode 100644 addons/godot_mcp/command_router.gd.uid create mode 100644 addons/godot_mcp/commands/analysis_commands.gd.uid create mode 100644 addons/godot_mcp/commands/android_commands.gd.uid create mode 100644 addons/godot_mcp/commands/animation_commands.gd.uid create mode 100644 addons/godot_mcp/commands/animation_tree_commands.gd.uid create mode 100644 addons/godot_mcp/commands/audio_commands.gd.uid create mode 100644 addons/godot_mcp/commands/base_command.gd.uid create mode 100644 addons/godot_mcp/commands/batch_commands.gd.uid create mode 100644 addons/godot_mcp/commands/editor_commands.gd.uid create mode 100644 addons/godot_mcp/commands/export_commands.gd.uid create mode 100644 addons/godot_mcp/commands/input_commands.gd.uid create mode 100644 addons/godot_mcp/commands/input_map_commands.gd.uid create mode 100644 addons/godot_mcp/commands/navigation_commands.gd.uid create mode 100644 addons/godot_mcp/commands/node_commands.gd.uid create mode 100644 addons/godot_mcp/commands/particle_commands.gd.uid create mode 100644 addons/godot_mcp/commands/physics_commands.gd.uid create mode 100644 addons/godot_mcp/commands/profiling_commands.gd.uid create mode 100644 addons/godot_mcp/commands/project_commands.gd.uid create mode 100644 addons/godot_mcp/commands/resource_commands.gd.uid create mode 100644 addons/godot_mcp/commands/runtime_commands.gd.uid create mode 100644 addons/godot_mcp/commands/scene_3d_commands.gd.uid create mode 100644 addons/godot_mcp/commands/scene_commands.gd.uid create mode 100644 addons/godot_mcp/commands/script_commands.gd.uid create mode 100644 addons/godot_mcp/commands/shader_commands.gd.uid create mode 100644 addons/godot_mcp/commands/test_commands.gd.uid create mode 100644 addons/godot_mcp/commands/theme_commands.gd.uid create mode 100644 addons/godot_mcp/commands/tilemap_commands.gd.uid create mode 100644 addons/godot_mcp/mcp_game_inspector_service.gd.uid create mode 100644 addons/godot_mcp/mcp_input_service.gd.uid create mode 100644 addons/godot_mcp/mcp_screenshot_service.gd.uid create mode 100644 addons/godot_mcp/plugin.gd.uid create mode 100644 addons/godot_mcp/ui/status_panel.gd.uid create mode 100644 addons/godot_mcp/utils/node_utils.gd.uid create mode 100644 addons/godot_mcp/utils/property_parser.gd.uid create mode 100644 addons/godot_mcp/websocket_server.gd.uid diff --git a/addons/godot_mcp/command_router.gd.uid b/addons/godot_mcp/command_router.gd.uid new file mode 100644 index 0000000..ff9fd28 --- /dev/null +++ b/addons/godot_mcp/command_router.gd.uid @@ -0,0 +1 @@ +uid://cin2nsghxc2ls diff --git a/addons/godot_mcp/commands/analysis_commands.gd.uid b/addons/godot_mcp/commands/analysis_commands.gd.uid new file mode 100644 index 0000000..9481a7e --- /dev/null +++ b/addons/godot_mcp/commands/analysis_commands.gd.uid @@ -0,0 +1 @@ +uid://c8exes22tfkqj diff --git a/addons/godot_mcp/commands/android_commands.gd.uid b/addons/godot_mcp/commands/android_commands.gd.uid new file mode 100644 index 0000000..1b71849 --- /dev/null +++ b/addons/godot_mcp/commands/android_commands.gd.uid @@ -0,0 +1 @@ +uid://bdigkr0emai80 diff --git a/addons/godot_mcp/commands/animation_commands.gd.uid b/addons/godot_mcp/commands/animation_commands.gd.uid new file mode 100644 index 0000000..647f401 --- /dev/null +++ b/addons/godot_mcp/commands/animation_commands.gd.uid @@ -0,0 +1 @@ +uid://bonthf2yoeyhw diff --git a/addons/godot_mcp/commands/animation_tree_commands.gd.uid b/addons/godot_mcp/commands/animation_tree_commands.gd.uid new file mode 100644 index 0000000..54f210c --- /dev/null +++ b/addons/godot_mcp/commands/animation_tree_commands.gd.uid @@ -0,0 +1 @@ +uid://bcqa6ux42fs1w diff --git a/addons/godot_mcp/commands/audio_commands.gd.uid b/addons/godot_mcp/commands/audio_commands.gd.uid new file mode 100644 index 0000000..14e93c9 --- /dev/null +++ b/addons/godot_mcp/commands/audio_commands.gd.uid @@ -0,0 +1 @@ +uid://bijs5xgewwx3a diff --git a/addons/godot_mcp/commands/base_command.gd.uid b/addons/godot_mcp/commands/base_command.gd.uid new file mode 100644 index 0000000..3fe1fc9 --- /dev/null +++ b/addons/godot_mcp/commands/base_command.gd.uid @@ -0,0 +1 @@ +uid://burglba33dtlu diff --git a/addons/godot_mcp/commands/batch_commands.gd.uid b/addons/godot_mcp/commands/batch_commands.gd.uid new file mode 100644 index 0000000..1263562 --- /dev/null +++ b/addons/godot_mcp/commands/batch_commands.gd.uid @@ -0,0 +1 @@ +uid://bwlmjlivjq4wt diff --git a/addons/godot_mcp/commands/editor_commands.gd.uid b/addons/godot_mcp/commands/editor_commands.gd.uid new file mode 100644 index 0000000..bdf26e9 --- /dev/null +++ b/addons/godot_mcp/commands/editor_commands.gd.uid @@ -0,0 +1 @@ +uid://drnul0blh6wv0 diff --git a/addons/godot_mcp/commands/export_commands.gd.uid b/addons/godot_mcp/commands/export_commands.gd.uid new file mode 100644 index 0000000..45b3c85 --- /dev/null +++ b/addons/godot_mcp/commands/export_commands.gd.uid @@ -0,0 +1 @@ +uid://da135mgraliib diff --git a/addons/godot_mcp/commands/input_commands.gd.uid b/addons/godot_mcp/commands/input_commands.gd.uid new file mode 100644 index 0000000..27c5045 --- /dev/null +++ b/addons/godot_mcp/commands/input_commands.gd.uid @@ -0,0 +1 @@ +uid://bwjnrsson0em diff --git a/addons/godot_mcp/commands/input_map_commands.gd.uid b/addons/godot_mcp/commands/input_map_commands.gd.uid new file mode 100644 index 0000000..cec92d3 --- /dev/null +++ b/addons/godot_mcp/commands/input_map_commands.gd.uid @@ -0,0 +1 @@ +uid://dxrh88r7hn546 diff --git a/addons/godot_mcp/commands/navigation_commands.gd.uid b/addons/godot_mcp/commands/navigation_commands.gd.uid new file mode 100644 index 0000000..41a74b3 --- /dev/null +++ b/addons/godot_mcp/commands/navigation_commands.gd.uid @@ -0,0 +1 @@ +uid://7ffhpvf8g87g diff --git a/addons/godot_mcp/commands/node_commands.gd.uid b/addons/godot_mcp/commands/node_commands.gd.uid new file mode 100644 index 0000000..55dfd41 --- /dev/null +++ b/addons/godot_mcp/commands/node_commands.gd.uid @@ -0,0 +1 @@ +uid://dwu2yrh3e5sxu diff --git a/addons/godot_mcp/commands/particle_commands.gd.uid b/addons/godot_mcp/commands/particle_commands.gd.uid new file mode 100644 index 0000000..0a9a55f --- /dev/null +++ b/addons/godot_mcp/commands/particle_commands.gd.uid @@ -0,0 +1 @@ +uid://b58ilnv1n62ak diff --git a/addons/godot_mcp/commands/physics_commands.gd.uid b/addons/godot_mcp/commands/physics_commands.gd.uid new file mode 100644 index 0000000..0ad086f --- /dev/null +++ b/addons/godot_mcp/commands/physics_commands.gd.uid @@ -0,0 +1 @@ +uid://d2ng2v8ayfehs diff --git a/addons/godot_mcp/commands/profiling_commands.gd.uid b/addons/godot_mcp/commands/profiling_commands.gd.uid new file mode 100644 index 0000000..9ece5ba --- /dev/null +++ b/addons/godot_mcp/commands/profiling_commands.gd.uid @@ -0,0 +1 @@ +uid://b3ogc0lfxeve6 diff --git a/addons/godot_mcp/commands/project_commands.gd.uid b/addons/godot_mcp/commands/project_commands.gd.uid new file mode 100644 index 0000000..96fb774 --- /dev/null +++ b/addons/godot_mcp/commands/project_commands.gd.uid @@ -0,0 +1 @@ +uid://c4loc8wwb4qe8 diff --git a/addons/godot_mcp/commands/resource_commands.gd.uid b/addons/godot_mcp/commands/resource_commands.gd.uid new file mode 100644 index 0000000..af4ddf4 --- /dev/null +++ b/addons/godot_mcp/commands/resource_commands.gd.uid @@ -0,0 +1 @@ +uid://bmyqrhfpp382w diff --git a/addons/godot_mcp/commands/runtime_commands.gd.uid b/addons/godot_mcp/commands/runtime_commands.gd.uid new file mode 100644 index 0000000..642a1d3 --- /dev/null +++ b/addons/godot_mcp/commands/runtime_commands.gd.uid @@ -0,0 +1 @@ +uid://diyd0jmvjhevd diff --git a/addons/godot_mcp/commands/scene_3d_commands.gd.uid b/addons/godot_mcp/commands/scene_3d_commands.gd.uid new file mode 100644 index 0000000..922f1b7 --- /dev/null +++ b/addons/godot_mcp/commands/scene_3d_commands.gd.uid @@ -0,0 +1 @@ +uid://or4r1hf3581w diff --git a/addons/godot_mcp/commands/scene_commands.gd.uid b/addons/godot_mcp/commands/scene_commands.gd.uid new file mode 100644 index 0000000..8ccc3fe --- /dev/null +++ b/addons/godot_mcp/commands/scene_commands.gd.uid @@ -0,0 +1 @@ +uid://3dbek7farv50 diff --git a/addons/godot_mcp/commands/script_commands.gd.uid b/addons/godot_mcp/commands/script_commands.gd.uid new file mode 100644 index 0000000..68d4d76 --- /dev/null +++ b/addons/godot_mcp/commands/script_commands.gd.uid @@ -0,0 +1 @@ +uid://f0b3g6xkqbtd diff --git a/addons/godot_mcp/commands/shader_commands.gd.uid b/addons/godot_mcp/commands/shader_commands.gd.uid new file mode 100644 index 0000000..ee1a972 --- /dev/null +++ b/addons/godot_mcp/commands/shader_commands.gd.uid @@ -0,0 +1 @@ +uid://c1rd4ny2dftmj diff --git a/addons/godot_mcp/commands/test_commands.gd.uid b/addons/godot_mcp/commands/test_commands.gd.uid new file mode 100644 index 0000000..c0f832b --- /dev/null +++ b/addons/godot_mcp/commands/test_commands.gd.uid @@ -0,0 +1 @@ +uid://dxedxhq1sfhsq diff --git a/addons/godot_mcp/commands/theme_commands.gd.uid b/addons/godot_mcp/commands/theme_commands.gd.uid new file mode 100644 index 0000000..72b0a85 --- /dev/null +++ b/addons/godot_mcp/commands/theme_commands.gd.uid @@ -0,0 +1 @@ +uid://bwig0wr0jlne2 diff --git a/addons/godot_mcp/commands/tilemap_commands.gd.uid b/addons/godot_mcp/commands/tilemap_commands.gd.uid new file mode 100644 index 0000000..b6497a7 --- /dev/null +++ b/addons/godot_mcp/commands/tilemap_commands.gd.uid @@ -0,0 +1 @@ +uid://cmsrsh4xgw30p diff --git a/addons/godot_mcp/mcp_game_inspector_service.gd.uid b/addons/godot_mcp/mcp_game_inspector_service.gd.uid new file mode 100644 index 0000000..3244ab4 --- /dev/null +++ b/addons/godot_mcp/mcp_game_inspector_service.gd.uid @@ -0,0 +1 @@ +uid://b0l5v3g6gnkju diff --git a/addons/godot_mcp/mcp_input_service.gd.uid b/addons/godot_mcp/mcp_input_service.gd.uid new file mode 100644 index 0000000..a2c3a7b --- /dev/null +++ b/addons/godot_mcp/mcp_input_service.gd.uid @@ -0,0 +1 @@ +uid://yc5bqv2o84nn diff --git a/addons/godot_mcp/mcp_screenshot_service.gd.uid b/addons/godot_mcp/mcp_screenshot_service.gd.uid new file mode 100644 index 0000000..f60832e --- /dev/null +++ b/addons/godot_mcp/mcp_screenshot_service.gd.uid @@ -0,0 +1 @@ +uid://d123ueb43a5sc diff --git a/addons/godot_mcp/plugin.gd.uid b/addons/godot_mcp/plugin.gd.uid new file mode 100644 index 0000000..af81609 --- /dev/null +++ b/addons/godot_mcp/plugin.gd.uid @@ -0,0 +1 @@ +uid://chtol501pvkq3 diff --git a/addons/godot_mcp/ui/status_panel.gd.uid b/addons/godot_mcp/ui/status_panel.gd.uid new file mode 100644 index 0000000..e64eaba --- /dev/null +++ b/addons/godot_mcp/ui/status_panel.gd.uid @@ -0,0 +1 @@ +uid://by5xvwsbrofb diff --git a/addons/godot_mcp/utils/node_utils.gd.uid b/addons/godot_mcp/utils/node_utils.gd.uid new file mode 100644 index 0000000..316b9b5 --- /dev/null +++ b/addons/godot_mcp/utils/node_utils.gd.uid @@ -0,0 +1 @@ +uid://b0vs2krneteax diff --git a/addons/godot_mcp/utils/property_parser.gd.uid b/addons/godot_mcp/utils/property_parser.gd.uid new file mode 100644 index 0000000..fe9032e --- /dev/null +++ b/addons/godot_mcp/utils/property_parser.gd.uid @@ -0,0 +1 @@ +uid://bxtcaicg3ko7l diff --git a/addons/godot_mcp/websocket_server.gd.uid b/addons/godot_mcp/websocket_server.gd.uid new file mode 100644 index 0000000..7506384 --- /dev/null +++ b/addons/godot_mcp/websocket_server.gd.uid @@ -0,0 +1 @@ +uid://bv7imd44hcnwy