Files
ProjectStructure_HOME/.specstory/history/2025-09-11_21-52Z-move-mocap-folder-to-assets.md
2025-10-08 16:24:22 -06:00

47 lines
1.5 KiB
Markdown

<!-- Generated by SpecStory -->
<!-- cursor Session 3e9ebcae-53a9-4f72-a2bf-7c87efe21f20 (2025-09-11 21:52Z) -->
# Move Mocap folder to Assets (2025-09-11 21:52Z)
_**User (2025-09-17 15:40Z)**_
move Mocap folder to Assets\Mocap
---
_**Assistant (default)**_
I'll help you move the Mocap folder to Assets\Mocap in your NewProject.bat script. Let me first examine the current structure and then make the necessary changes.
---
Tool use: **search_replace**
<details><summary>Edit file: NewProject.bat</summary>
**Chunk 1**
Lines added: 1, lines removed: undefined
```diff
@@ -22,4 +22,5 @@
if exist "A:\1 Amazon_Active_Projects\3 ProjectStructure\NewDaily.bat" copy /Y "A:\1 Amazon_Active_Projects\3 ProjectStructure\NewDaily.bat" "%projectRoot%\Assets\ElevenLabs\NewDaily.bat" >nul
mkdir "%projectRoot%\Assets\Blends"
+ mkdir "%projectRoot%\Assets\Mocap"
mkdir "%projectRoot%\Assets\VO"
if exist "A:\1 Amazon_Active_Projects\3 ProjectStructure\NewDaily.bat" copy /Y "A:\1 Amazon_Active_Projects\3 ProjectStructure\NewDaily.bat" "%projectRoot%\Assets\VO\NewDaily.bat" >nul
```
</details>
---
Perfect! I've successfully added the Mocap folder to the Assets structure in your NewProject.bat script. The change adds `mkdir "%projectRoot%\Assets\Mocap"` on line 24, which will create the Mocap folder inside the Assets directory when the script runs.
The Mocap folder is now positioned between the Blends and VO folders in the Assets structure, maintaining a logical organization of your project directories.
---