-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
94 lines (75 loc) · 1.82 KB
/
.gitignore
File metadata and controls
94 lines (75 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# ==================== Gradle ====================
.gradle/
build/
out/
# ==================== 外部资源仓库 ====================
# Anima-Assets 仓库(构建时自动克隆)
Anima-Assets/
# 同步的资源文件(从 Anima-Assets 自动复制)
# 策略:忽略整个资源目录,但通过 ! 保留 arona 作为模板
# 1. 先忽略所有学生资源子目录
src/main/resources/assets/anima/animations/entity/students/*
src/main/resources/assets/anima/geo/entity/students/*
src/main/resources/assets/anima/textures/entity/students/*
src/main/resources/data/anima/personas/*
# 2. 再排除 arona 文件(保留为模板)
!src/main/resources/assets/anima/animations/entity/students/arona.animation.json
!src/main/resources/assets/anima/geo/entity/students/arona.geo.json
!src/main/resources/assets/anima/textures/entity/students/arona.png
!src/main/resources/data/anima/personas/arona.json
# Gradle wrapper (可选择保留)
gradle/
gradlew
gradlew.bat
gradle.properties
# ==================== IDE ====================
# IntelliJ IDEA
.idea/
*.iml
*.ipr
*.iws
# Eclipse
.project
.classpath
.settings/
bin/
*.launch
.metadata
.recommenders
# VS Code
.vscode/
# ==================== Forge / Minecraft ====================
run/
logs/
crash-reports/
# ==================== 依赖库 ====================
# libs 目录下的 JAR 文件(不跟踪二进制依赖)
libs/*.jar
# ==================== 系统文件 ====================
.DS_Store
Thumbs.db
desktop.ini
# ==================== 临时文件 ====================
*.tmp
*.bak
*.swp
*~