Datasets:
Add .gitignore (per-frame PNGs and resume markers stay local)
Browse files- .gitignore +13 -0
.gitignore
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.cache/
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
.DS_Store
|
| 5 |
+
|
| 6 |
+
# glb_render/ ships ONLY the four per-view MP4s and their camera JSONs.
|
| 7 |
+
# Everything else there is local working state — the ~2.9M per-frame PNGs the
|
| 8 |
+
# MP4s were composed from, and the renderer's .rendered/ resume markers.
|
| 9 |
+
glb_render/**
|
| 10 |
+
!glb_render/*/
|
| 11 |
+
!glb_render/*/v[0-9][0-9][0-9].mp4
|
| 12 |
+
!glb_render/*/v[0-9][0-9][0-9].json
|
| 13 |
+
glb_render/.rendered/
|