Skip to content

Commit e1a42fa

Browse files
committed
DS1 Clone
0 parents  commit e1a42fa

File tree

3,908 files changed

+14540
-0
lines changed

Some content is hidden

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

3,908 files changed

+14540
-0
lines changed

.gitattributes

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Unreal Engine file types.
2+
*.uasset filter=lfs diff=lfs merge=lfs -text
3+
*.umap filter=lfs diff=lfs merge=lfs -text
4+
5+
# Raw Content file types.
6+
*.fbx filter=lfs diff=lfs merge=lfs -text
7+
*.3ds filter=lfs diff=lfs merge=lfs -text
8+
*.psd filter=lfs diff=lfs merge=lfs -text
9+
*.png filter=lfs diff=lfs merge=lfs -text
10+
*.mp3 filter=lfs diff=lfs merge=lfs -text
11+
*.wav filter=lfs diff=lfs merge=lfs -text
12+
*.xcf filter=lfs diff=lfs merge=lfs -text
13+
*.jpg filter=lfs diff=lfs merge=lfs -text
14+
15+
# Anything in `/RawContent` dir.
16+
/RawContent/**/* filter=lfs diff=lfs merge=lfs -text

.gitignore

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Visual Studio 2015 user specific files
2+
.vs/
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Compiled Dynamic libraries
15+
*.so
16+
*.dylib
17+
*.dll
18+
19+
# Fortran module files
20+
*.mod
21+
22+
# Compiled Static libraries
23+
*.lai
24+
*.la
25+
*.a
26+
*.lib
27+
28+
# Executables
29+
*.exe
30+
*.out
31+
*.app
32+
*.ipa
33+
34+
# These project files can be generated by the engine
35+
*.xcodeproj
36+
*.xcworkspace
37+
*.sln
38+
*.suo
39+
*.opensdf
40+
*.sdf
41+
*.VC.db
42+
*.VC.opendb
43+
44+
# Precompiled Assets
45+
SourceArt/**/*.png
46+
SourceArt/**/*.tga
47+
48+
# Binary Files
49+
Binaries/*
50+
Plugins/**/Binaries/*
51+
52+
# Builds
53+
Build/*
54+
55+
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
56+
!Build/*/
57+
Build/*/**
58+
!Build/*/PakBlacklist*.txt
59+
60+
# Don't ignore icon files in Build
61+
!Build/**/*.ico
62+
63+
# Built data for maps
64+
*_BuiltData.uasset
65+
66+
# Configuration files generated by the Editor
67+
Saved/*
68+
69+
# Compiled source files for the engine to use
70+
Intermediate/*
71+
Plugins/**/Intermediate/*
72+
73+
# Cache files for the editor to use
74+
DerivedDataCache/*

.vsconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "1.0",
3+
"components": [
4+
"Microsoft.Net.Component.4.6.2.TargetingPack",
5+
"Microsoft.VisualStudio.Component.VC.14.33.17.3.ARM64",
6+
"Microsoft.VisualStudio.Component.VC.14.33.17.3.x86.x64",
7+
"Microsoft.VisualStudio.Component.VC.Tools.ARM64",
8+
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
9+
"Microsoft.VisualStudio.Component.Windows10SDK",
10+
"Microsoft.VisualStudio.Workload.CoreEditor",
11+
"Microsoft.VisualStudio.Workload.ManagedDesktop",
12+
"Microsoft.VisualStudio.Workload.NativeCrossPlat",
13+
"Microsoft.VisualStudio.Workload.NativeDesktop",
14+
"Microsoft.VisualStudio.Workload.NativeGame",
15+
"Microsoft.VisualStudio.Workload.Universal"
16+
]
17+
}

Assets/Audio/Coins1.wav

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d57c47d76acd3e96aa68b8b10b91841ecc0726ca1fc73c53062affbbb803b401
3+
size 152156

Assets/Audio/whoosh.wav

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:a1bac0ba60338d808167ae27d6f67a11faba02dc9ae329dbc7a8c4f0b3d4e5b9
3+
size 535588
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e01b7d58a1563f893d92ffc76d884872fcb379a5d56f224297271b78ed6a7431
3+
size 8171248
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:7dc01afb11d39d6e92725a827ff7d0429a1383b8d88c8fe986cba85702e4fe8d
3+
size 521612
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:fb1d30227626fc004a5d8ddc5ff1c2469b09b1dda4d593c0984d91116d14e85d
3+
size 498300
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:2ce2ea7370a14ae2f12bd2d73ac93b98b9e452f2be9e070d1735da01b0882d0f
3+
size 949756
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:5d0c77550a02a878fd4f63a4f87167184a9dd627cce8871165c2c61357bc2d0e
3+
size 581356
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e5136b245cb9f9ea6746850059b90ebdeecd9490cb3d036027c3419e27d413db
3+
size 500428
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:293297bde8fe4b34c893ff52d166782b3109c3a76016881d67d1a1d827c5c83e
3+
size 6643920
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:4a6cc7d07d1119ba1b16ff7db51c4ae4f56483e1002cc787de75cdf36af364f2
3+
size 515984
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:17151c217dcf8e9dca00168254063c2690ee5672785670a8b5810b1997956554
3+
size 392432
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:27d5feefbb26b79ba3f38d9ce1a80362b73421172517eb8f01819705941cd5f9
3+
size 6855152
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:cc9651525cbfd51ddc1f5b34aeaf5ec7e1da0220b4160dc6db3700f46cc5bd57
3+
size 607392
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:fda7d77c298e29485e6497293f1b36ccbba1b1c697216575b2331a2fc05cfafa
3+
size 388864
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:220b45bb533f8c66212c508fbc2bab821abfcc66b30e1242f0e0a6ef18b7b4ba
3+
size 397424
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:72aa75ac8ac48dbb0ca492b2f243b3f855d7ff14b245eb6e011488f6f5ea7530
3+
size 784224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:124dea7a4f201a79d619acb7839fdfc7177ec9276ca787926edc7bba267a9f4c
3+
size 695216
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:0c6b49b4625b6b6b4f56e863271a89512001ede62156b26bca78c04996b048fd
3+
size 435216
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:c8ffef6bbb0d7ee1140ddb32c1825f90da81551b36d486420b8ec1887453d807
3+
size 622272
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:46e101f4b4cc7be2bc3ec779814b54698807158e95711b75f20f1120e67bb1cb
3+
size 443856
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:5a16fd1b201280f995320f60ecaffbcf96adabbcf275ea364929692aa1da207a
3+
size 343424
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:73f5d78daab981d7a285ae20d45bbb84a2757d5379245880825f4c4e419011ae
3+
size 345008
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:625fb8c5b5ed91b7e66aec360d21f2aa5f63596b692b24ad7216534ba7725be4
3+
size 451408
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:3fe441137eb0b2a6216596293308e3ce90b48fb192688eade2b1a1acbee8cd40
3+
size 434672
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d833a3d6b230aedeb0be1184dcf62e5f9a988590a539aa7f195b0bc541e81ea5
3+
size 571392
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e02bd3474e119f2bdba61f264a271748b1a6b64fd267ab0f1bd74e92db870501
3+
size 484112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:b43ed2957cb6089c56b0da49f10d488474bec045112a2e4c2795105b69a46acb
3+
size 495296
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:afcde853ca9f726a07b7d705db4298d58d046a1d793743d4b7106a0713c93e38
3+
size 616224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:53549c8ae11d6563d9eab08ebfc5391cbfc7df91f84f9012c18440795e1b3280
3+
size 333696
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:5e87b1db7af6f326d73e5f9129e1044210f2ffde4bf05c3c1073df44115ac554
3+
size 319120
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:8c3821315a734335d907f8d48ac6cdda71960b7fadaf252ca7513e623c198a0c
3+
size 663104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:208bb2e551c596f255542a517a2ae4ada981dc161c9669354be0c9cc40c1a14b
3+
size 451408
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:4aed34e99ba11753b5244b8090c3eb962f20b79a236aa0cb89172022069edd12
3+
size 465568
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:571f33e80e2aa71928cdbf739a9d3ceba5d54fa76f1b360a02b7637260fbd2e5
3+
size 327216

Assets/Mixamo/x_bot/X Bot.fbx

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:2e264c14e821256e643966fb4b6a7aa6441aab99b35c6e43c9e321e5e5ff64fd
3+
size 1750032
+3
+3

Config/DefaultEditor.ini

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[/Script/AdvancedPreviewScene.SharedProfiles]
2+

0 commit comments

Comments
 (0)