From 4144af24538f3bcba0902a0862528674b83bd7e2 Mon Sep 17 00:00:00 2001 From: Justin Barnett Date: Tue, 18 Mar 2025 13:06:35 -0400 Subject: [PATCH] pushed meta files --- .gitignore | 1 - Editor.meta | 8 ++++++++ Editor/Commands.meta | 8 ++++++++ Editor/Commands/AssetCommandHandler.cs.meta | 2 ++ Editor/Commands/CommandRegistry.cs.meta | 2 ++ Editor/Commands/EditorControlHandler.cs.meta | 2 ++ Editor/Commands/MaterialCommandHandler.cs.meta | 2 ++ Editor/Commands/ObjectCommandHandler.cs.meta | 2 ++ Editor/Commands/SceneCommandHandler.cs.meta | 2 ++ Editor/Commands/ScriptCommandHandler.cs.meta | 2 ++ Editor/Helpers.meta | 8 ++++++++ Editor/Helpers/Vector3Helper.cs.meta | 2 ++ Editor/MCPEditorWindow.cs.meta | 2 ++ Editor/Models.meta | 8 ++++++++ Editor/Models/Command.cs.meta | 2 ++ Editor/UnityMCPBridge.cs.meta | 2 ++ HOW_TO_ADD_A_TOOL.md.meta | 7 +++++++ LICENSE.meta | 7 +++++++ Python.meta | 8 ++++++++ Python/__init__.py.meta | 7 +++++++ Python/config.py.meta | 7 +++++++ Python/pyproject.toml.meta | 7 +++++++ Python/requirements.txt.meta | 7 +++++++ Python/server.py.meta | 7 +++++++ Python/tools/__init__.py.meta | 7 +++++++ Python/tools/asset_tools.py.meta | 7 +++++++ Python/tools/editor_tools.py.meta | 7 +++++++ Python/tools/material_tools.py.meta | 7 +++++++ Python/tools/object_tools.py.meta | 7 +++++++ Python/tools/scene_tools.py.meta | 7 +++++++ Python/tools/script_tools.py.meta | 7 +++++++ Python/unity_connection.py.meta | 7 +++++++ Python/uv.lock.meta | 7 +++++++ README.md.meta | 7 +++++++ config.json.meta | 7 +++++++ package.json.meta | 7 +++++++ 36 files changed, 195 insertions(+), 1 deletion(-) create mode 100644 Editor.meta create mode 100644 Editor/Commands.meta create mode 100644 Editor/Commands/AssetCommandHandler.cs.meta create mode 100644 Editor/Commands/CommandRegistry.cs.meta create mode 100644 Editor/Commands/EditorControlHandler.cs.meta create mode 100644 Editor/Commands/MaterialCommandHandler.cs.meta create mode 100644 Editor/Commands/ObjectCommandHandler.cs.meta create mode 100644 Editor/Commands/SceneCommandHandler.cs.meta create mode 100644 Editor/Commands/ScriptCommandHandler.cs.meta create mode 100644 Editor/Helpers.meta create mode 100644 Editor/Helpers/Vector3Helper.cs.meta create mode 100644 Editor/MCPEditorWindow.cs.meta create mode 100644 Editor/Models.meta create mode 100644 Editor/Models/Command.cs.meta create mode 100644 Editor/UnityMCPBridge.cs.meta create mode 100644 HOW_TO_ADD_A_TOOL.md.meta create mode 100644 LICENSE.meta create mode 100644 Python.meta create mode 100644 Python/__init__.py.meta create mode 100644 Python/config.py.meta create mode 100644 Python/pyproject.toml.meta create mode 100644 Python/requirements.txt.meta create mode 100644 Python/server.py.meta create mode 100644 Python/tools/__init__.py.meta create mode 100644 Python/tools/asset_tools.py.meta create mode 100644 Python/tools/editor_tools.py.meta create mode 100644 Python/tools/material_tools.py.meta create mode 100644 Python/tools/object_tools.py.meta create mode 100644 Python/tools/scene_tools.py.meta create mode 100644 Python/tools/script_tools.py.meta create mode 100644 Python/unity_connection.py.meta create mode 100644 Python/uv.lock.meta create mode 100644 README.md.meta create mode 100644 config.json.meta create mode 100644 package.json.meta diff --git a/.gitignore b/.gitignore index 58b9a40..b39db60 100644 --- a/.gitignore +++ b/.gitignore @@ -18,7 +18,6 @@ wheels/ .venv # Unity Editor -*.meta *.unitypackage *.asset diff --git a/Editor.meta b/Editor.meta new file mode 100644 index 0000000..51126d4 --- /dev/null +++ b/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78cb4b2703910bc44b4dafad25cf8b35 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Editor/Commands.meta b/Editor/Commands.meta new file mode 100644 index 0000000..2bc55f0 --- /dev/null +++ b/Editor/Commands.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c97b83a6ac92a704b864eef27c3d285b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Editor/Commands/AssetCommandHandler.cs.meta b/Editor/Commands/AssetCommandHandler.cs.meta new file mode 100644 index 0000000..c4d3b86 --- /dev/null +++ b/Editor/Commands/AssetCommandHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 72d89b7645a23af4bb8bf1deda8f2b36 \ No newline at end of file diff --git a/Editor/Commands/CommandRegistry.cs.meta b/Editor/Commands/CommandRegistry.cs.meta new file mode 100644 index 0000000..55b6829 --- /dev/null +++ b/Editor/Commands/CommandRegistry.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5b61b5a84813b5749a5c64422694a0fa \ No newline at end of file diff --git a/Editor/Commands/EditorControlHandler.cs.meta b/Editor/Commands/EditorControlHandler.cs.meta new file mode 100644 index 0000000..4ef1f17 --- /dev/null +++ b/Editor/Commands/EditorControlHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c38b437302cc6a846a955fe2cfe746c5 \ No newline at end of file diff --git a/Editor/Commands/MaterialCommandHandler.cs.meta b/Editor/Commands/MaterialCommandHandler.cs.meta new file mode 100644 index 0000000..be35788 --- /dev/null +++ b/Editor/Commands/MaterialCommandHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 50ed709388e81a741ac984de1c78427c \ No newline at end of file diff --git a/Editor/Commands/ObjectCommandHandler.cs.meta b/Editor/Commands/ObjectCommandHandler.cs.meta new file mode 100644 index 0000000..f06891d --- /dev/null +++ b/Editor/Commands/ObjectCommandHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: fd293dd9be195b94e926aa1c1f44ba72 \ No newline at end of file diff --git a/Editor/Commands/SceneCommandHandler.cs.meta b/Editor/Commands/SceneCommandHandler.cs.meta new file mode 100644 index 0000000..f6db1d4 --- /dev/null +++ b/Editor/Commands/SceneCommandHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: cef46a6ad7d43744ab874553102f032a \ No newline at end of file diff --git a/Editor/Commands/ScriptCommandHandler.cs.meta b/Editor/Commands/ScriptCommandHandler.cs.meta new file mode 100644 index 0000000..3a50abb --- /dev/null +++ b/Editor/Commands/ScriptCommandHandler.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 300f7736385f85e41bf90d820ff46645 \ No newline at end of file diff --git a/Editor/Helpers.meta b/Editor/Helpers.meta new file mode 100644 index 0000000..c57a342 --- /dev/null +++ b/Editor/Helpers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 94cb070dc5e15024da86150b27699ca0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Editor/Helpers/Vector3Helper.cs.meta b/Editor/Helpers/Vector3Helper.cs.meta new file mode 100644 index 0000000..12fdb17 --- /dev/null +++ b/Editor/Helpers/Vector3Helper.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f8514fd42f23cb641a36e52550825b35 \ No newline at end of file diff --git a/Editor/MCPEditorWindow.cs.meta b/Editor/MCPEditorWindow.cs.meta new file mode 100644 index 0000000..0229c75 --- /dev/null +++ b/Editor/MCPEditorWindow.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4283e255b343c4546b843cd22214ac93 \ No newline at end of file diff --git a/Editor/Models.meta b/Editor/Models.meta new file mode 100644 index 0000000..8540456 --- /dev/null +++ b/Editor/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 16d3ab36890b6c14f9afeabee30e03e3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Editor/Models/Command.cs.meta b/Editor/Models/Command.cs.meta new file mode 100644 index 0000000..007b085 --- /dev/null +++ b/Editor/Models/Command.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 6754c84e5deb74749bc3a19e0c9aa280 \ No newline at end of file diff --git a/Editor/UnityMCPBridge.cs.meta b/Editor/UnityMCPBridge.cs.meta new file mode 100644 index 0000000..3915698 --- /dev/null +++ b/Editor/UnityMCPBridge.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 1e0fb0e418dd19345a8236c44078972b \ No newline at end of file diff --git a/HOW_TO_ADD_A_TOOL.md.meta b/HOW_TO_ADD_A_TOOL.md.meta new file mode 100644 index 0000000..5d24a51 --- /dev/null +++ b/HOW_TO_ADD_A_TOOL.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b58016417cf90784ab7d4a74d1ed827a +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/LICENSE.meta b/LICENSE.meta new file mode 100644 index 0000000..fb0e557 --- /dev/null +++ b/LICENSE.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d231e305a15ea564d80b5a26eaafe8b0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python.meta b/Python.meta new file mode 100644 index 0000000..0c9d7eb --- /dev/null +++ b/Python.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea6797cf7f34d6044a89364e1ac4d4c9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/__init__.py.meta b/Python/__init__.py.meta new file mode 100644 index 0000000..bd400ad --- /dev/null +++ b/Python/__init__.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 41c60e5ab0e41d84ba997afc471ac58a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/config.py.meta b/Python/config.py.meta new file mode 100644 index 0000000..8808fe4 --- /dev/null +++ b/Python/config.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bbc163679c5bb0f418c6f6af1fa50f3a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/pyproject.toml.meta b/Python/pyproject.toml.meta new file mode 100644 index 0000000..0b1414f --- /dev/null +++ b/Python/pyproject.toml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ac3ad17989088c24598726ec3e0a53ba +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/requirements.txt.meta b/Python/requirements.txt.meta new file mode 100644 index 0000000..ab0018b --- /dev/null +++ b/Python/requirements.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6e76438bce2c57540a9d9602fafdcb0a +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/server.py.meta b/Python/server.py.meta new file mode 100644 index 0000000..13ba776 --- /dev/null +++ b/Python/server.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 872659ff7f5d9294ca6d47e93f6a111f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/__init__.py.meta b/Python/tools/__init__.py.meta new file mode 100644 index 0000000..93a34b7 --- /dev/null +++ b/Python/tools/__init__.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8865a8f86cc0a3240b94504bd2e5c0be +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/asset_tools.py.meta b/Python/tools/asset_tools.py.meta new file mode 100644 index 0000000..72495a6 --- /dev/null +++ b/Python/tools/asset_tools.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 44d6968eea5de444880d425390b19ff4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/editor_tools.py.meta b/Python/tools/editor_tools.py.meta new file mode 100644 index 0000000..faea180 --- /dev/null +++ b/Python/tools/editor_tools.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9ac5db8cf38041644a81e7d655d879a9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/material_tools.py.meta b/Python/tools/material_tools.py.meta new file mode 100644 index 0000000..1c164eb --- /dev/null +++ b/Python/tools/material_tools.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 53b3a554a0ffeb04fb41b71ca78fda29 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/object_tools.py.meta b/Python/tools/object_tools.py.meta new file mode 100644 index 0000000..ebe1c97 --- /dev/null +++ b/Python/tools/object_tools.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0b8eb3f808238b040a4b41766228664f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/scene_tools.py.meta b/Python/tools/scene_tools.py.meta new file mode 100644 index 0000000..0c6802b --- /dev/null +++ b/Python/tools/scene_tools.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ed5ef5bed9e67a34297b908a0e15a8dc +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/tools/script_tools.py.meta b/Python/tools/script_tools.py.meta new file mode 100644 index 0000000..3205273 --- /dev/null +++ b/Python/tools/script_tools.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bce1a207771693f4ba78d880688360d4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/unity_connection.py.meta b/Python/unity_connection.py.meta new file mode 100644 index 0000000..20b08b2 --- /dev/null +++ b/Python/unity_connection.py.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c72711b644ecf0d40945ddba9b4bce77 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Python/uv.lock.meta b/Python/uv.lock.meta new file mode 100644 index 0000000..1600cbf --- /dev/null +++ b/Python/uv.lock.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 37728a13ca38f894b8760d808a909148 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/README.md.meta b/README.md.meta new file mode 100644 index 0000000..a59d60c --- /dev/null +++ b/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dbd796eca62f7114daebcdc30bccc862 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/config.json.meta b/config.json.meta new file mode 100644 index 0000000..522af41 --- /dev/null +++ b/config.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 86c7cfcd92e19544abfbd1b410a0adf7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/package.json.meta b/package.json.meta new file mode 100644 index 0000000..11aa47e --- /dev/null +++ b/package.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1429c59739af3fc4d8b706950221d476 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: