Skip to content

Commit

Permalink
fix parameter error
Browse files Browse the repository at this point in the history
  • Loading branch information
cstria0106 committed Mar 2, 2024
1 parent c075ae0 commit 0ab1c29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Editor/Generator/MenuGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ private static Dictionary<string, ParameterConfig> GetMAParameterConfigs(Invento
configs[node.ParameterName] = new ParameterConfig()
{
nameOrPrefix = node.ParameterName,
syncType = ParameterSyncType.NotSynced,
syncType = ParameterSyncType.Int,
defaultValue = node.ParameterDefault,
saved = false,
localOnly = false,
localOnly = true,
};

foreach (var (name, defaultValue) in AnimationGenerator.Encode(node.ParameterName, node.ParameterBits, node.ParameterDefault))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dog.miruku.ndcloset",
"displayName": "One-Click Inventory",
"version": "0.2.12",
"version": "0.2.13",
"url": "https://github.com/cstria0106/OneClickInventory",
"author": {
"name": "goorm",
Expand Down

0 comments on commit 0ab1c29

Please sign in to comment.