Skip to content

Commit 26be362

Browse files
committed
fix: generated path
1 parent 1546bd3 commit 26be362

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Assets/UnityBox/AdvancedCostumeController/Editor/Models.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class ACCConfig
5353
public GameObject CostumesRoot;
5454
public string ParamPrefix = "CST";
5555
public string CostumeParamName = "costume";
56-
public string GeneratedFolder = "Assets/UnityBox/AdvancedCostumeController/Generated";
56+
public string GeneratedFolder = "Assets/UnityBox/Generated/AdvancedCostumeController";
5757
public string IgnoreNamesCsv = "Armature,Bone,Skeleton";
5858
public GameObject DefaultOutfitOverride;
5959
public bool EnableParts = false;

Assets/UnityBox/BlendshapeControllerGenerator/Editor/BlendshapeControllerGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private struct CurveData { public Keyframe[] keys; }
1818
private GameObject avatarRoot;
1919
private Vector2 meshListScroll;
2020
private string blendshapePropertyPrefix = "blendShape.";
21-
private string outputFolder = "Assets/UnityBox/BlendshapeControllerGenerator/Generated";
21+
private string outputFolder = "Assets/UnityBox/Generated/BlendshapeControllerGenerator";
2222
private string parameterPrefix = "BS_";
2323
private const string EditorPrefKey_ParameterPrefix = "BlendshapeControllerGenerator.ParameterPrefix";
2424

Docs/AdvancedCostumeController.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Costumes Root
5959
| **Enable Parts Control** | `false` | 是否生成部件开关(普通模式下控制各服装的子部件显示/隐藏) |
6060
| **Enable Custom Mixer** | `false` | 是否启用混搭模式(独立于 Parts Control,拥有自己的部件控制参数) |
6161
| **Custom Mixer Name** | `CustomMix` | 混搭菜单的名称 |
62-
| **Output Folder** | `Assets/.../Generated` | 动画和控制器的输出目录 |
62+
| **Output Folder** | `Assets/UnityBox/Generated/AdvancedCostumeController` | 动画和控制器的输出目录 |
6363
| **Ignore Names** | `Armature,Bone,Skeleton` | 扫描时跳过的名称关键词 |
6464

6565
## 生成产物
@@ -103,7 +103,7 @@ Costumes Root
103103
### 动画文件
104104

105105
```
106-
Generated/
106+
UnityBox/Generated/AdvancedCostumeController/
107107
├── CostumeController.controller
108108
└── Animations/
109109
├── Outfit_000_OutfitA.anim

0 commit comments

Comments
 (0)