Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ Install extensions when need more tools or [create your own tools](#add-custom-t
| **[AI Cinemachine](https://github.com/IvanMurzak/Unity-AI-Cinemachine/)** | MCP Tools for Cinemachine |
| **[AI ParticleSystem](https://github.com/IvanMurzak/Unity-AI-ParticleSystem/)** | Set of additional tools for Unity Particle System |
| **[AI ProBuilder](https://github.com/IvanMurzak/Unity-AI-ProBuilder/)** | Set of additional tools for Unity ProBuilder |
| **[AI Splines](https://github.com/IvanMurzak/Unity-AI-Splines/)** | MCP Tools for Unity Splines |

![AI Game Developer — Unity SKILLS and MCP](https://github.com/IvanMurzak/Unity-MCP/blob/main/docs/img/promo/hazzard-divider.svg?raw=true)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,21 @@ public partial class MainWindowEditor
("probuilder-set-face-material", "Assign materials to individual faces"),
}
),
new(
name: "Splines",
description: "AI-assisted Spline authoring: containers, knots, tangents, and evaluation.",
packageId: "com.ivanmurzak.unity.mcp.splines",
gitUrl: "https://github.com/IvanMurzak/Unity-AI-Splines.git",
tools: new[]
{
("splines-container-create", "Create a SplineContainer in the scene"),
("splines-add-knot", "Append a knot to a spline"),
("splines-set-knot", "Set a knot's position, tangents, and rotation"),
("splines-set-tangent-mode", "Set a knot's tangent mode"),
("splines-evaluate", "Evaluate position/tangent/up along a spline"),
("splines-modify", "Modify any Splines component via ReflectorNet"),
}
),
};

private void SetupExtensionsSection(VisualElement root)
Expand Down
1 change: 1 addition & 0 deletions docs/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ Instala extensiones cuando necesites más herramientas o [crea tus propias herra
| **[AI Cinemachine](https://github.com/IvanMurzak/Unity-AI-Cinemachine/)** | Herramientas MCP para Cinemachine |
| **[AI ParticleSystem](https://github.com/IvanMurzak/Unity-AI-ParticleSystem/)** | Conjunto de herramientas adicionales para el sistema de partículas de Unity |
| **[AI ProBuilder](https://github.com/IvanMurzak/Unity-AI-ProBuilder/)** | Conjunto de herramientas adicionales para Unity ProBuilder |
| **[AI Splines](https://github.com/IvanMurzak/Unity-AI-Splines/)** | Herramientas MCP para Unity Splines |

![AI Game Developer — Unity SKILLS and MCP](https://github.com/IvanMurzak/Unity-MCP/blob/main/docs/img/promo/hazzard-divider.svg?raw=true)

Expand Down
1 change: 1 addition & 0 deletions docs/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ unity-mcp-cli open ./MyUnityProject
| **[AI Cinemachine](https://github.com/IvanMurzak/Unity-AI-Cinemachine/)** | Cinemachine 用の MCP ツール |
| **[AI ParticleSystem](https://github.com/IvanMurzak/Unity-AI-ParticleSystem/)** | Unity パーティクルシステム用の追加ツールセット |
| **[AI ProBuilder](https://github.com/IvanMurzak/Unity-AI-ProBuilder/)** | Unity ProBuilder 用の追加ツールセット |
| **[AI Splines](https://github.com/IvanMurzak/Unity-AI-Splines/)** | Unity Splines 用の MCP ツール |

![AI Game Developer — Unity SKILLS and MCP](https://github.com/IvanMurzak/Unity-MCP/blob/main/docs/img/promo/hazzard-divider.svg?raw=true)

Expand Down
1 change: 1 addition & 0 deletions docs/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ unity-mcp-cli open ./MyUnityProject
| **[AI Cinemachine](https://github.com/IvanMurzak/Unity-AI-Cinemachine/)** | 用于 Cinemachine 的 MCP 工具 |
| **[AI ParticleSystem](https://github.com/IvanMurzak/Unity-AI-ParticleSystem/)** | Unity 粒子系统附加工具集 |
| **[AI ProBuilder](https://github.com/IvanMurzak/Unity-AI-ProBuilder/)** | Unity ProBuilder 附加工具集 |
| **[AI Splines](https://github.com/IvanMurzak/Unity-AI-Splines/)** | 用于 Unity Splines 的 MCP 工具 |

![AI 游戏开发者 — Unity SKILLS 和 MCP](https://github.com/IvanMurzak/Unity-MCP/blob/main/docs/img/promo/hazzard-divider.svg?raw=true)

Expand Down
Loading