Skip to content

Commit 179a33d

Browse files
committed
Initial Commit
1 parent 704dd09 commit 179a33d

File tree

2,884 files changed

+603984
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,884 files changed

+603984
-54
lines changed

.gitignore

Lines changed: 34 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,41 @@
1-
# This .gitignore file should be placed at the root of your Unity project directory
2-
#
3-
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
4-
#
5-
/[Ll]ibrary/
6-
/[Tt]emp/
7-
/[Oo]bj/
8-
/[Bb]uild/
9-
/[Bb]uilds/
10-
/[Ll]ogs/
11-
/[Mm]emoryCaptures/
12-
13-
# Asset meta data should only be ignored when the corresponding asset is also ignored
14-
!/[Aa]ssets/**/*.meta
15-
16-
# Uncomment this line if you wish to ignore the asset store tools plugin
17-
# /[Aa]ssets/AssetStoreTools*
18-
19-
# Autogenerated Jetbrains Rider plugin
20-
[Aa]ssets/Plugins/Editor/JetBrains*
21-
22-
# Visual Studio cache directory
23-
.vs/
24-
25-
# Gradle cache directory
26-
.gradle/
1+
###
2+
# Unity folders and files
3+
###
4+
[Aa]ssets/AssetStoreTools*
5+
[Bb]uild/
6+
[Ll]ibrary/
7+
[Ll]ocal[Cc]ache/
8+
[Oo]bj/
9+
[Tt]emp/
10+
[Uu]nityGenerated/
11+
# file on crash reports
12+
sysinfo.txt
13+
# Unity3D generated meta files
14+
*.pidb.meta
2715

28-
# Autogenerated VS/MD/Consulo solution and project files
29-
ExportedObj/
30-
.consulo/
16+
###
17+
# VS/MD solution and project files
18+
###
19+
[Ee]xportedObj/
20+
*.booproj
3121
*.csproj
32-
*.unityproj
3322
*.sln
3423
*.suo
35-
*.tmp
24+
*.svd
25+
*.unityproj
3626
*.user
3727
*.userprefs
3828
*.pidb
39-
*.booproj
40-
*.svd
41-
*.pdb
42-
*.mdb
43-
*.opendb
44-
*.VC.db
45-
46-
# Unity3D generated meta files
47-
*.pidb.meta
48-
*.pdb.meta
49-
*.mdb.meta
50-
51-
# Unity3D generated file on crash reports
52-
sysinfo.txt
53-
54-
# Builds
55-
*.apk
56-
*.unitypackage
57-
58-
# Crashlytics generated file
59-
crashlytics-build.properties
60-
29+
.DS_Store
30+
31+
###
32+
# OS generated
33+
###
34+
.DS_Store
35+
.DS_Store?
36+
._*
37+
.Spotlight-V100
38+
.Trashes
39+
Icon?
40+
ehthumbs.db
41+
Thumbs.db
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"Version": 1,
3+
"ProjectMap": {
4+
"aa9d91a5-b3b9-a2f2-4c9d-613bf6945538": {
5+
"ProjectGuid": "aa9d91a5-b3b9-a2f2-4c9d-613bf6945538",
6+
"DisplayName": "VRM",
7+
"ColorIndex": 0
8+
},
9+
"a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": {
10+
"ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3",
11+
"DisplayName": "Miscellaneous Files",
12+
"ColorIndex": -1
13+
},
14+
"867b5926-84ca-c734-58eb-62b280550b08": {
15+
"ProjectGuid": "867b5926-84ca-c734-58eb-62b280550b08",
16+
"DisplayName": "Assembly-CSharp",
17+
"ColorIndex": 1
18+
}
19+
},
20+
"NextColorIndex": 2
21+
}
90.3 KB
Binary file not shown.

After Tutorial/.vscode/settings.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"files.exclude":
3+
{
4+
"**/.DS_Store":true,
5+
"**/.git":true,
6+
"**/.gitignore":true,
7+
"**/.gitmodules":true,
8+
"**/*.booproj":true,
9+
"**/*.pidb":true,
10+
"**/*.suo":true,
11+
"**/*.user":true,
12+
"**/*.userprefs":true,
13+
"**/*.unityproj":true,
14+
"**/*.dll":true,
15+
"**/*.exe":true,
16+
"**/*.pdf":true,
17+
"**/*.mid":true,
18+
"**/*.midi":true,
19+
"**/*.wav":true,
20+
"**/*.gif":true,
21+
"**/*.ico":true,
22+
"**/*.jpg":true,
23+
"**/*.jpeg":true,
24+
"**/*.png":true,
25+
"**/*.psd":true,
26+
"**/*.tga":true,
27+
"**/*.tif":true,
28+
"**/*.tiff":true,
29+
"**/*.3ds":true,
30+
"**/*.3DS":true,
31+
"**/*.fbx":true,
32+
"**/*.FBX":true,
33+
"**/*.lxo":true,
34+
"**/*.LXO":true,
35+
"**/*.ma":true,
36+
"**/*.MA":true,
37+
"**/*.obj":true,
38+
"**/*.OBJ":true,
39+
"**/*.asset":true,
40+
"**/*.cubemap":true,
41+
"**/*.flare":true,
42+
"**/*.mat":true,
43+
"**/*.meta":true,
44+
"**/*.prefab":true,
45+
"**/*.unity":true,
46+
"build/":true,
47+
"Build/":true,
48+
"Library/":true,
49+
"library/":true,
50+
"obj/":true,
51+
"Obj/":true,
52+
"ProjectSettings/":true,
53+
"temp/":true,
54+
"Temp/":true
55+
}
56+
}

After Tutorial/.vsconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": "1.0",
3+
"components": [
4+
"Microsoft.VisualStudio.Workload.ManagedGame"
5+
]
6+
}

After Tutorial/Assets/Animation.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)