44 lines
1.4 KiB
Markdown
44 lines
1.4 KiB
Markdown
|
|
<!-- Generated by SpecStory -->
|
||
|
|
|
||
|
|
# Move Mocap folder to Assets (2025-09-11 21:52Z)
|
||
|
|
|
||
|
|
_**User (2025-09-17 15:40Z)**_
|
||
|
|
|
||
|
|
move Mocap folder to Assets\Mocap
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
_**Assistant**_
|
||
|
|
|
||
|
|
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.
|
||
|
|
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
<details><summary>Edit file: NewProject.bat</summary>
|
||
|
|
|
||
|
|
undefined
|
||
|
|
|
||
|
|
**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.
|
||
|
|
|
||
|
|
---
|
||
|
|
|