diff options
| -rw-r--r-- | .geminiignore | 1 | ||||
| -rwxr-xr-x | scripts/gen_assets.sh | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.geminiignore b/.geminiignore index 3d5a9ad..0756144 100644 --- a/.geminiignore +++ b/.geminiignore @@ -14,6 +14,7 @@ third_party/**/target/ # Assets themselves (like .spec files) are part of the system, so they are NOT ignored here. # However, if any temporary generated files were created outside the standard asset pipeline, # they could be listed here. For now, we assume standard assets are handled by the pipeline. +src/generated/ # --- Distribution / Archives --- # Ignore large distribution archives that are generated once and not modified during development. diff --git a/scripts/gen_assets.sh b/scripts/gen_assets.sh index a5c0bdc..46613f2 100755 --- a/scripts/gen_assets.sh +++ b/scripts/gen_assets.sh @@ -6,9 +6,9 @@ cmake --build build -j8 # Analyze drum sounds -./build/spectool analyze ./assets/wav/kick/Glum\ Kick.wav ./assets/final/kick1.spec -./build/spectool analyze ./assets/wav/snare/Snare\ \(24\).wav ./assets/final/snare1.spec -./build/spectool analyze ./assets/wav/hh/hammock\ hh.wav ./assets/final/hihat1.spec +# old: ./build/spectool analyze ./assets/wav/kick/Glum\ Kick.wav ./assets/final/kick1.spec +# old: ./build/spectool analyze ./assets/wav/snare/Snare\ \(24\).wav ./assets/final/snare1.spec +# old: ./build/spectool analyze ./assets/wav/hh/hammock\ hh.wav ./assets/final/hihat1.spec # Pack assets into source tree (as requested by Task 9) |
