Add root .gitignore for Unity Library/Temp/Logs, IDE folders, and node_modules. Include Assets, Needle TypeScript (MenuController, asset picker, WebXR), and project configuration. Made-with: Cursor
29 lines
278 B
Plaintext
29 lines
278 B
Plaintext
# Unity
|
|
/[Ll]ibrary/
|
|
/[Tt]emp/
|
|
/[Oo]bj/
|
|
/[Bb]uild/
|
|
/[Bb]uilds/
|
|
/[Ll]ogs/
|
|
/[Uu]ser[Ss]ettings/
|
|
/[Mm]emoryCaptures/
|
|
/[Rr]ecordings/
|
|
|
|
# IDE
|
|
.vs/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Cursor (local)
|
|
.cursor/
|
|
|
|
# Node / Needle web builds
|
|
**/node_modules/
|
|
Needle/**/dist/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|