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
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ public partial class Tool_ParticleSystem
[McpPluginTool
(
ParticleSystemGetToolId,
Title = "ParticleSystem / Get"
Title = "ParticleSystem / Get",
ReadOnlyHint = true,
IdempotentHint = true
)]
[Description("Get detailed information about a ParticleSystem component on a GameObject. " +
"Returns particle system state and optionally serialized data for each module. " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public partial class Tool_ParticleSystem
[McpPluginTool
(
ParticleSystemModifyToolId,
Title = "ParticleSystem / Modify"
Title = "ParticleSystem / Modify",
IdempotentHint = true
)]
[Description("Modify a ParticleSystem component on a GameObject. " +
"Provide the data model with only the modules you want to change. " +
Expand Down
Loading