app.hypergames.hypersdk 1.3.3 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/Editor/{HyperSDK.Editor.asmdef → Hyper.Editor.asmdef} +1 -1
- package/Editor/Resources/ControlBarPreviews/Dark/Default.png +0 -0
- package/Editor/Resources/ControlBarPreviews/Dark/Default.png.meta +143 -0
- package/Editor/Resources/ControlBarPreviews/Dark/HealthBarLeft.png +0 -0
- package/Editor/Resources/ControlBarPreviews/Dark/HealthBarLeft.png.meta +143 -0
- package/Editor/Resources/ControlBarPreviews/Dark/HeartsLeft.png +0 -0
- package/Editor/Resources/ControlBarPreviews/Dark/HeartsLeft.png.meta +169 -0
- package/Editor/Resources/ControlBarPreviews/Dark.meta +8 -0
- package/Editor/Resources/ControlBarPreviews/Light/Default.png +0 -0
- package/Editor/Resources/ControlBarPreviews/Light/Default.png.meta +143 -0
- package/Editor/Resources/ControlBarPreviews/Light/HealthBarLeft.png +0 -0
- package/Editor/Resources/ControlBarPreviews/Light/HealthBarLeft.png.meta +143 -0
- package/Editor/Resources/ControlBarPreviews/Light/HeartsLeft.png +0 -0
- package/Editor/Resources/ControlBarPreviews/Light/HeartsLeft.png.meta +143 -0
- package/Editor/Resources/ControlBarPreviews/Light.meta +8 -0
- package/Editor/Resources/ControlBarPreviews.meta +8 -0
- package/Editor/Scripts/Inspectors/HyperSDKSettingsEditor.cs +206 -0
- package/Editor/Scripts/Inspectors/HyperSDKSettingsEditor.cs.meta +2 -0
- package/Editor/Scripts/Inspectors.meta +8 -0
- package/Editor/Scripts/Windows/HyperCoreSettingsWindow.cs +0 -8
- package/Editor/Scripts/Windows/HyperGameContentWindow.cs +0 -8
- package/Editor/Scripts/Windows/HyperSettingsWindow.cs +3 -3
- package/HyperLoader.unity +4 -49
- package/Runtime/Internal/AssemblyInfo.cs +1 -1
- package/Runtime/Internal/Bootstrap/HyperLoader.cs +2 -0
- package/Runtime/Internal/Core/HyperRuntime.cs +0 -2
- package/Runtime/Internal/Managers/EventManager.cs +4 -0
- package/Runtime/Internal/Managers/GameManager.cs +135 -2
- package/Runtime/Internal/ScriptableObjects/HyperSDKSettings.cs +16 -10
- package/Runtime/Internal/UI/Animation/BlinkingText.cs +1 -1
- package/Runtime/Internal/UI/Animation/HyperTween.cs +88 -0
- package/Runtime/Internal/UI/Components/ControlBar.cs +220 -40
- package/Runtime/Internal/UI/Components/HealthBarDisplay.cs +269 -0
- package/Runtime/Internal/UI/Components/HealthBarDisplay.cs.meta +2 -0
- package/Runtime/Internal/UI/Components/LivesDisplay.cs +327 -0
- package/Runtime/Internal/UI/Components/LivesDisplay.cs.meta +2 -0
- package/Runtime/Internal/UI/Modals/StartingInstructionModal.cs +202 -3
- package/Runtime/Internal/Utils/HyperConstants.cs +27 -0
- package/Runtime/Public/Core/HyperSDK.cs +68 -0
- package/Runtime/Resources/Fonts/Wonder Boys/Wonder Boys + Hyper BIG.mat +1 -1
- package/Runtime/Resources/HyperSDKSettings.asset +3 -2
- package/Runtime/Resources/Sprites/Control Bar/Ellipse 3.png +0 -0
- package/Runtime/Resources/Sprites/Control Bar/Ellipse 3.png.meta +169 -0
- package/Runtime/Resources/Sprites/Control Bar/Health Bar - Green Fill.png +0 -0
- package/Runtime/Resources/Sprites/Control Bar/Health Bar - Green Fill.png.meta +169 -0
- package/Runtime/Resources/Sprites/Control Bar/Health Bar - Underlay.png +0 -0
- package/Runtime/Resources/Sprites/Control Bar/Health Bar - Underlay.png.meta +169 -0
- package/Runtime/Resources/Sprites/Control Bar/Health Bar.png +0 -0
- package/Runtime/Resources/Sprites/Control Bar/Health Bar.png.meta +169 -0
- package/Runtime/Resources/Sprites/Control Bar/heart.empty.png +0 -0
- package/Runtime/Resources/Sprites/Control Bar/heart.empty.png.meta +169 -0
- package/Runtime/Resources/Sprites/Control Bar/heart.fill.png +0 -0
- package/Runtime/Resources/Sprites/Control Bar/heart.fill.png.meta +169 -0
- package/Runtime/Resources/Sprites/Frames/{Game Over P.png.meta → Game Over.png.meta } +4 -4
- package/Runtime/Resources/Sprites/HYPERGAMES_Logo.png.meta +3 -3
- package/Runtime/Resources/Sprites/Hyper Atlas.spriteatlasv2 +6 -0
- package/Runtime/Resources/Sprites/Start CTAs/Hand.PNG +0 -0
- package/Runtime/Resources/Sprites/Start CTAs/Hand.PNG.meta +169 -0
- package/Runtime/Resources/Sprites/Start CTAs/Line .PNG +0 -0
- package/Runtime/Resources/Sprites/Start CTAs/Line .PNG.meta +169 -0
- package/Runtime/Resources/Sprites/Start CTAs/Swipe Gesture GIF.controller +130 -0
- package/Runtime/Resources/Sprites/Start CTAs/Swipe Gesture GIF.controller.meta +8 -0
- package/Runtime/Resources/Sprites/Start CTAs/Swipe Gesture.anim +158 -0
- package/Runtime/Resources/Sprites/Start CTAs/Swipe Gesture.anim.meta +8 -0
- package/Runtime/Resources/Sprites/Start CTAs.meta +8 -0
- package/Runtime/Resources/UIPrefabs/Control Bar Objects/Health Bar Display.prefab +361 -0
- package/Runtime/Resources/UIPrefabs/Control Bar Objects/Health Bar Display.prefab.meta +7 -0
- package/Runtime/Resources/UIPrefabs/Control Bar Objects/Lives Display .prefab +246 -0
- package/Runtime/Resources/UIPrefabs/Control Bar Objects/Lives Display .prefab.meta +7 -0
- package/Runtime/Resources/UIPrefabs/Control Bar Objects.meta +8 -0
- package/Runtime/Resources/UIPrefabs/ControlBar.prefab +131 -17
- package/Runtime/Resources/UIPrefabs/StartingInstructionModal.prefab +271 -57
- package/Runtime/Resources/UIPrefabs/TutorialLandscapeModal.prefab +1 -1
- package/Runtime/Resources/UIPrefabs/TutorialPortraitModal.prefab +1 -1
- package/Runtime/Shared/DTOs/Enums.cs +22 -6
- package/package.json +1 -1
- /package/Editor/{HyperSDK.Editor.asmdef.meta → Hyper.Editor.asmdef.meta} +0 -0
- /package/Runtime/Resources/Sprites/Frames/{Game Over P.png → Game Over.png} +0 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 6c2c60663da0ec14c994b6a3d9e730c4
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 7253049612512873716
|
|
7
|
+
second: heart.fill_0
|
|
8
|
+
externalObjects: {}
|
|
9
|
+
serializedVersion: 13
|
|
10
|
+
mipmaps:
|
|
11
|
+
mipMapMode: 0
|
|
12
|
+
enableMipMap: 0
|
|
13
|
+
sRGBTexture: 1
|
|
14
|
+
linearTexture: 0
|
|
15
|
+
fadeOut: 0
|
|
16
|
+
borderMipMap: 0
|
|
17
|
+
mipMapsPreserveCoverage: 0
|
|
18
|
+
alphaTestReferenceValue: 0.5
|
|
19
|
+
mipMapFadeDistanceStart: 1
|
|
20
|
+
mipMapFadeDistanceEnd: 3
|
|
21
|
+
bumpmap:
|
|
22
|
+
convertToNormalMap: 0
|
|
23
|
+
externalNormalMap: 0
|
|
24
|
+
heightScale: 0.25
|
|
25
|
+
normalMapFilter: 0
|
|
26
|
+
flipGreenChannel: 0
|
|
27
|
+
isReadable: 0
|
|
28
|
+
streamingMipmaps: 0
|
|
29
|
+
streamingMipmapsPriority: 0
|
|
30
|
+
vTOnly: 0
|
|
31
|
+
ignoreMipmapLimit: 0
|
|
32
|
+
grayScaleToAlpha: 0
|
|
33
|
+
generateCubemap: 6
|
|
34
|
+
cubemapConvolution: 0
|
|
35
|
+
seamlessCubemap: 0
|
|
36
|
+
textureFormat: 1
|
|
37
|
+
maxTextureSize: 2048
|
|
38
|
+
textureSettings:
|
|
39
|
+
serializedVersion: 2
|
|
40
|
+
filterMode: 1
|
|
41
|
+
aniso: 1
|
|
42
|
+
mipBias: 0
|
|
43
|
+
wrapU: 1
|
|
44
|
+
wrapV: 1
|
|
45
|
+
wrapW: 1
|
|
46
|
+
nPOTScale: 0
|
|
47
|
+
lightmap: 0
|
|
48
|
+
compressionQuality: 50
|
|
49
|
+
spriteMode: 1
|
|
50
|
+
spriteExtrude: 1
|
|
51
|
+
spriteMeshType: 1
|
|
52
|
+
alignment: 0
|
|
53
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
54
|
+
spritePixelsToUnits: 100
|
|
55
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
56
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
57
|
+
alphaUsage: 1
|
|
58
|
+
alphaIsTransparency: 1
|
|
59
|
+
spriteTessellationDetail: -1
|
|
60
|
+
textureType: 8
|
|
61
|
+
textureShape: 1
|
|
62
|
+
singleChannelComponent: 0
|
|
63
|
+
flipbookRows: 1
|
|
64
|
+
flipbookColumns: 1
|
|
65
|
+
maxTextureSizeSet: 0
|
|
66
|
+
compressionQualitySet: 0
|
|
67
|
+
textureFormatSet: 0
|
|
68
|
+
ignorePngGamma: 0
|
|
69
|
+
applyGammaDecoding: 0
|
|
70
|
+
swizzle: 50462976
|
|
71
|
+
cookieLightType: 0
|
|
72
|
+
platformSettings:
|
|
73
|
+
- serializedVersion: 4
|
|
74
|
+
buildTarget: DefaultTexturePlatform
|
|
75
|
+
maxTextureSize: 2048
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 2
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 0
|
|
81
|
+
allowsAlphaSplitting: 0
|
|
82
|
+
overridden: 0
|
|
83
|
+
ignorePlatformSupport: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
86
|
+
- serializedVersion: 4
|
|
87
|
+
buildTarget: Standalone
|
|
88
|
+
maxTextureSize: 2048
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: -1
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 0
|
|
96
|
+
ignorePlatformSupport: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
99
|
+
- serializedVersion: 4
|
|
100
|
+
buildTarget: Android
|
|
101
|
+
maxTextureSize: 2048
|
|
102
|
+
resizeAlgorithm: 0
|
|
103
|
+
textureFormat: -1
|
|
104
|
+
textureCompression: 1
|
|
105
|
+
compressionQuality: 50
|
|
106
|
+
crunchedCompression: 0
|
|
107
|
+
allowsAlphaSplitting: 0
|
|
108
|
+
overridden: 0
|
|
109
|
+
ignorePlatformSupport: 0
|
|
110
|
+
androidETC2FallbackOverride: 0
|
|
111
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
112
|
+
- serializedVersion: 4
|
|
113
|
+
buildTarget: WebGL
|
|
114
|
+
maxTextureSize: 2048
|
|
115
|
+
resizeAlgorithm: 0
|
|
116
|
+
textureFormat: -1
|
|
117
|
+
textureCompression: 1
|
|
118
|
+
compressionQuality: 50
|
|
119
|
+
crunchedCompression: 0
|
|
120
|
+
allowsAlphaSplitting: 0
|
|
121
|
+
overridden: 0
|
|
122
|
+
ignorePlatformSupport: 0
|
|
123
|
+
androidETC2FallbackOverride: 0
|
|
124
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
125
|
+
spriteSheet:
|
|
126
|
+
serializedVersion: 2
|
|
127
|
+
sprites:
|
|
128
|
+
- serializedVersion: 2
|
|
129
|
+
name: heart.fill_0
|
|
130
|
+
rect:
|
|
131
|
+
serializedVersion: 2
|
|
132
|
+
x: 0
|
|
133
|
+
y: 0
|
|
134
|
+
width: 75
|
|
135
|
+
height: 71
|
|
136
|
+
alignment: 0
|
|
137
|
+
pivot: {x: 0, y: 0}
|
|
138
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
139
|
+
customData:
|
|
140
|
+
outline: []
|
|
141
|
+
physicsShape: []
|
|
142
|
+
tessellationDetail: -1
|
|
143
|
+
bones: []
|
|
144
|
+
spriteID: 4fc4d1cb13208a460800000000000000
|
|
145
|
+
internalID: 7253049612512873716
|
|
146
|
+
vertices: []
|
|
147
|
+
indices:
|
|
148
|
+
edges: []
|
|
149
|
+
weights: []
|
|
150
|
+
outline: []
|
|
151
|
+
customData:
|
|
152
|
+
physicsShape: []
|
|
153
|
+
bones: []
|
|
154
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
155
|
+
internalID: 0
|
|
156
|
+
vertices: []
|
|
157
|
+
indices:
|
|
158
|
+
edges: []
|
|
159
|
+
weights: []
|
|
160
|
+
secondaryTextures: []
|
|
161
|
+
spriteCustomMetadata:
|
|
162
|
+
entries: []
|
|
163
|
+
nameFileIdTable:
|
|
164
|
+
heart.fill_0: 7253049612512873716
|
|
165
|
+
mipmapLimitGroupName:
|
|
166
|
+
pSDRemoveMatte: 0
|
|
167
|
+
userData:
|
|
168
|
+
assetBundleName:
|
|
169
|
+
assetBundleVariant:
|
|
@@ -72,12 +72,12 @@ TextureImporter:
|
|
|
72
72
|
platformSettings:
|
|
73
73
|
- serializedVersion: 4
|
|
74
74
|
buildTarget: DefaultTexturePlatform
|
|
75
|
-
maxTextureSize:
|
|
75
|
+
maxTextureSize: 1024
|
|
76
76
|
resizeAlgorithm: 0
|
|
77
77
|
textureFormat: -1
|
|
78
|
-
textureCompression:
|
|
79
|
-
compressionQuality:
|
|
80
|
-
crunchedCompression:
|
|
78
|
+
textureCompression: 2
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 0
|
|
81
81
|
allowsAlphaSplitting: 0
|
|
82
82
|
overridden: 0
|
|
83
83
|
ignorePlatformSupport: 0
|
|
@@ -99,12 +99,12 @@ TextureImporter:
|
|
|
99
99
|
platformSettings:
|
|
100
100
|
- serializedVersion: 4
|
|
101
101
|
buildTarget: DefaultTexturePlatform
|
|
102
|
-
maxTextureSize:
|
|
102
|
+
maxTextureSize: 1024
|
|
103
103
|
resizeAlgorithm: 0
|
|
104
104
|
textureFormat: -1
|
|
105
|
-
textureCompression:
|
|
105
|
+
textureCompression: 1
|
|
106
106
|
compressionQuality: 50
|
|
107
|
-
crunchedCompression:
|
|
107
|
+
crunchedCompression: 0
|
|
108
108
|
allowsAlphaSplitting: 0
|
|
109
109
|
overridden: 0
|
|
110
110
|
ignorePlatformSupport: 0
|
|
@@ -36,5 +36,11 @@ SpriteAtlasAsset:
|
|
|
36
36
|
- {fileID: 2800000, guid: feb94dd2c9d4a714f9c8ed573459c4be, type: 3}
|
|
37
37
|
- {fileID: 2800000, guid: 3913cd40f6d82424eb5e6f0e5a39f0bc, type: 3}
|
|
38
38
|
- {fileID: 2800000, guid: 9b298c6cad91ff04fb4870ebdc431e12, type: 3}
|
|
39
|
+
- {fileID: 2800000, guid: 6c2c60663da0ec14c994b6a3d9e730c4, type: 3}
|
|
40
|
+
- {fileID: 2800000, guid: fc01b404995e8a841a5fb9fae9c9831b, type: 3}
|
|
41
|
+
- {fileID: 2800000, guid: 29951aea5a2cea64b877c89eeaae63b8, type: 3}
|
|
42
|
+
- {fileID: 2800000, guid: 0886826935440d642ab4420621a95794, type: 3}
|
|
43
|
+
- {fileID: 2800000, guid: c3b1c046a67ab854ba804df4ee0334e3, type: 3}
|
|
44
|
+
- {fileID: 2800000, guid: 28eef8e5d1dd1bb46a70ad777b159c14, type: 3}
|
|
39
45
|
m_IsVariant: 0
|
|
40
46
|
m_ScriptablePacker: {fileID: 0}
|
|
Binary file
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 28eef8e5d1dd1bb46a70ad777b159c14
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 140433255743585067
|
|
7
|
+
second: Hand_0
|
|
8
|
+
externalObjects: {}
|
|
9
|
+
serializedVersion: 13
|
|
10
|
+
mipmaps:
|
|
11
|
+
mipMapMode: 0
|
|
12
|
+
enableMipMap: 0
|
|
13
|
+
sRGBTexture: 1
|
|
14
|
+
linearTexture: 0
|
|
15
|
+
fadeOut: 0
|
|
16
|
+
borderMipMap: 0
|
|
17
|
+
mipMapsPreserveCoverage: 0
|
|
18
|
+
alphaTestReferenceValue: 0.5
|
|
19
|
+
mipMapFadeDistanceStart: 1
|
|
20
|
+
mipMapFadeDistanceEnd: 3
|
|
21
|
+
bumpmap:
|
|
22
|
+
convertToNormalMap: 0
|
|
23
|
+
externalNormalMap: 0
|
|
24
|
+
heightScale: 0.25
|
|
25
|
+
normalMapFilter: 0
|
|
26
|
+
flipGreenChannel: 0
|
|
27
|
+
isReadable: 0
|
|
28
|
+
streamingMipmaps: 0
|
|
29
|
+
streamingMipmapsPriority: 0
|
|
30
|
+
vTOnly: 0
|
|
31
|
+
ignoreMipmapLimit: 0
|
|
32
|
+
grayScaleToAlpha: 0
|
|
33
|
+
generateCubemap: 6
|
|
34
|
+
cubemapConvolution: 0
|
|
35
|
+
seamlessCubemap: 0
|
|
36
|
+
textureFormat: 1
|
|
37
|
+
maxTextureSize: 2048
|
|
38
|
+
textureSettings:
|
|
39
|
+
serializedVersion: 2
|
|
40
|
+
filterMode: 1
|
|
41
|
+
aniso: 1
|
|
42
|
+
mipBias: 0
|
|
43
|
+
wrapU: 1
|
|
44
|
+
wrapV: 1
|
|
45
|
+
wrapW: 1
|
|
46
|
+
nPOTScale: 0
|
|
47
|
+
lightmap: 0
|
|
48
|
+
compressionQuality: 50
|
|
49
|
+
spriteMode: 1
|
|
50
|
+
spriteExtrude: 1
|
|
51
|
+
spriteMeshType: 1
|
|
52
|
+
alignment: 0
|
|
53
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
54
|
+
spritePixelsToUnits: 100
|
|
55
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
56
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
57
|
+
alphaUsage: 1
|
|
58
|
+
alphaIsTransparency: 1
|
|
59
|
+
spriteTessellationDetail: -1
|
|
60
|
+
textureType: 8
|
|
61
|
+
textureShape: 1
|
|
62
|
+
singleChannelComponent: 0
|
|
63
|
+
flipbookRows: 1
|
|
64
|
+
flipbookColumns: 1
|
|
65
|
+
maxTextureSizeSet: 0
|
|
66
|
+
compressionQualitySet: 0
|
|
67
|
+
textureFormatSet: 0
|
|
68
|
+
ignorePngGamma: 0
|
|
69
|
+
applyGammaDecoding: 0
|
|
70
|
+
swizzle: 50462976
|
|
71
|
+
cookieLightType: 0
|
|
72
|
+
platformSettings:
|
|
73
|
+
- serializedVersion: 4
|
|
74
|
+
buildTarget: DefaultTexturePlatform
|
|
75
|
+
maxTextureSize: 128
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 1
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 1
|
|
81
|
+
allowsAlphaSplitting: 0
|
|
82
|
+
overridden: 0
|
|
83
|
+
ignorePlatformSupport: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
86
|
+
- serializedVersion: 4
|
|
87
|
+
buildTarget: Standalone
|
|
88
|
+
maxTextureSize: 2048
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: -1
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 0
|
|
96
|
+
ignorePlatformSupport: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
99
|
+
- serializedVersion: 4
|
|
100
|
+
buildTarget: Android
|
|
101
|
+
maxTextureSize: 2048
|
|
102
|
+
resizeAlgorithm: 0
|
|
103
|
+
textureFormat: -1
|
|
104
|
+
textureCompression: 1
|
|
105
|
+
compressionQuality: 50
|
|
106
|
+
crunchedCompression: 0
|
|
107
|
+
allowsAlphaSplitting: 0
|
|
108
|
+
overridden: 0
|
|
109
|
+
ignorePlatformSupport: 0
|
|
110
|
+
androidETC2FallbackOverride: 0
|
|
111
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
112
|
+
- serializedVersion: 4
|
|
113
|
+
buildTarget: WebGL
|
|
114
|
+
maxTextureSize: 2048
|
|
115
|
+
resizeAlgorithm: 0
|
|
116
|
+
textureFormat: -1
|
|
117
|
+
textureCompression: 1
|
|
118
|
+
compressionQuality: 50
|
|
119
|
+
crunchedCompression: 0
|
|
120
|
+
allowsAlphaSplitting: 0
|
|
121
|
+
overridden: 0
|
|
122
|
+
ignorePlatformSupport: 0
|
|
123
|
+
androidETC2FallbackOverride: 0
|
|
124
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
125
|
+
spriteSheet:
|
|
126
|
+
serializedVersion: 2
|
|
127
|
+
sprites:
|
|
128
|
+
- serializedVersion: 2
|
|
129
|
+
name: Hand_0
|
|
130
|
+
rect:
|
|
131
|
+
serializedVersion: 2
|
|
132
|
+
x: 63
|
|
133
|
+
y: 31
|
|
134
|
+
width: 370
|
|
135
|
+
height: 450
|
|
136
|
+
alignment: 0
|
|
137
|
+
pivot: {x: 0, y: 0}
|
|
138
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
139
|
+
customData:
|
|
140
|
+
outline: []
|
|
141
|
+
physicsShape: []
|
|
142
|
+
tessellationDetail: -1
|
|
143
|
+
bones: []
|
|
144
|
+
spriteID: b2b7f335d4be2f100800000000000000
|
|
145
|
+
internalID: 140433255743585067
|
|
146
|
+
vertices: []
|
|
147
|
+
indices:
|
|
148
|
+
edges: []
|
|
149
|
+
weights: []
|
|
150
|
+
outline: []
|
|
151
|
+
customData:
|
|
152
|
+
physicsShape: []
|
|
153
|
+
bones: []
|
|
154
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
155
|
+
internalID: 0
|
|
156
|
+
vertices: []
|
|
157
|
+
indices:
|
|
158
|
+
edges: []
|
|
159
|
+
weights: []
|
|
160
|
+
secondaryTextures: []
|
|
161
|
+
spriteCustomMetadata:
|
|
162
|
+
entries: []
|
|
163
|
+
nameFileIdTable:
|
|
164
|
+
Hand_0: 140433255743585067
|
|
165
|
+
mipmapLimitGroupName:
|
|
166
|
+
pSDRemoveMatte: 0
|
|
167
|
+
userData:
|
|
168
|
+
assetBundleName:
|
|
169
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c3b1c046a67ab854ba804df4ee0334e3
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 7150070623848240191
|
|
7
|
+
second: Line _0
|
|
8
|
+
externalObjects: {}
|
|
9
|
+
serializedVersion: 13
|
|
10
|
+
mipmaps:
|
|
11
|
+
mipMapMode: 0
|
|
12
|
+
enableMipMap: 0
|
|
13
|
+
sRGBTexture: 1
|
|
14
|
+
linearTexture: 0
|
|
15
|
+
fadeOut: 0
|
|
16
|
+
borderMipMap: 0
|
|
17
|
+
mipMapsPreserveCoverage: 0
|
|
18
|
+
alphaTestReferenceValue: 0.5
|
|
19
|
+
mipMapFadeDistanceStart: 1
|
|
20
|
+
mipMapFadeDistanceEnd: 3
|
|
21
|
+
bumpmap:
|
|
22
|
+
convertToNormalMap: 0
|
|
23
|
+
externalNormalMap: 0
|
|
24
|
+
heightScale: 0.25
|
|
25
|
+
normalMapFilter: 0
|
|
26
|
+
flipGreenChannel: 0
|
|
27
|
+
isReadable: 0
|
|
28
|
+
streamingMipmaps: 0
|
|
29
|
+
streamingMipmapsPriority: 0
|
|
30
|
+
vTOnly: 0
|
|
31
|
+
ignoreMipmapLimit: 0
|
|
32
|
+
grayScaleToAlpha: 0
|
|
33
|
+
generateCubemap: 6
|
|
34
|
+
cubemapConvolution: 0
|
|
35
|
+
seamlessCubemap: 0
|
|
36
|
+
textureFormat: 1
|
|
37
|
+
maxTextureSize: 2048
|
|
38
|
+
textureSettings:
|
|
39
|
+
serializedVersion: 2
|
|
40
|
+
filterMode: 1
|
|
41
|
+
aniso: 1
|
|
42
|
+
mipBias: 0
|
|
43
|
+
wrapU: 1
|
|
44
|
+
wrapV: 1
|
|
45
|
+
wrapW: 1
|
|
46
|
+
nPOTScale: 0
|
|
47
|
+
lightmap: 0
|
|
48
|
+
compressionQuality: 50
|
|
49
|
+
spriteMode: 1
|
|
50
|
+
spriteExtrude: 1
|
|
51
|
+
spriteMeshType: 1
|
|
52
|
+
alignment: 0
|
|
53
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
54
|
+
spritePixelsToUnits: 100
|
|
55
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
56
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
57
|
+
alphaUsage: 1
|
|
58
|
+
alphaIsTransparency: 1
|
|
59
|
+
spriteTessellationDetail: -1
|
|
60
|
+
textureType: 8
|
|
61
|
+
textureShape: 1
|
|
62
|
+
singleChannelComponent: 0
|
|
63
|
+
flipbookRows: 1
|
|
64
|
+
flipbookColumns: 1
|
|
65
|
+
maxTextureSizeSet: 0
|
|
66
|
+
compressionQualitySet: 0
|
|
67
|
+
textureFormatSet: 0
|
|
68
|
+
ignorePngGamma: 0
|
|
69
|
+
applyGammaDecoding: 0
|
|
70
|
+
swizzle: 50462976
|
|
71
|
+
cookieLightType: 0
|
|
72
|
+
platformSettings:
|
|
73
|
+
- serializedVersion: 4
|
|
74
|
+
buildTarget: DefaultTexturePlatform
|
|
75
|
+
maxTextureSize: 256
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 0
|
|
79
|
+
compressionQuality: 50
|
|
80
|
+
crunchedCompression: 0
|
|
81
|
+
allowsAlphaSplitting: 0
|
|
82
|
+
overridden: 0
|
|
83
|
+
ignorePlatformSupport: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
86
|
+
- serializedVersion: 4
|
|
87
|
+
buildTarget: Standalone
|
|
88
|
+
maxTextureSize: 2048
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: -1
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 0
|
|
96
|
+
ignorePlatformSupport: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
99
|
+
- serializedVersion: 4
|
|
100
|
+
buildTarget: Android
|
|
101
|
+
maxTextureSize: 2048
|
|
102
|
+
resizeAlgorithm: 0
|
|
103
|
+
textureFormat: -1
|
|
104
|
+
textureCompression: 1
|
|
105
|
+
compressionQuality: 50
|
|
106
|
+
crunchedCompression: 0
|
|
107
|
+
allowsAlphaSplitting: 0
|
|
108
|
+
overridden: 0
|
|
109
|
+
ignorePlatformSupport: 0
|
|
110
|
+
androidETC2FallbackOverride: 0
|
|
111
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
112
|
+
- serializedVersion: 4
|
|
113
|
+
buildTarget: WebGL
|
|
114
|
+
maxTextureSize: 2048
|
|
115
|
+
resizeAlgorithm: 0
|
|
116
|
+
textureFormat: -1
|
|
117
|
+
textureCompression: 1
|
|
118
|
+
compressionQuality: 50
|
|
119
|
+
crunchedCompression: 0
|
|
120
|
+
allowsAlphaSplitting: 0
|
|
121
|
+
overridden: 0
|
|
122
|
+
ignorePlatformSupport: 0
|
|
123
|
+
androidETC2FallbackOverride: 0
|
|
124
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
125
|
+
spriteSheet:
|
|
126
|
+
serializedVersion: 2
|
|
127
|
+
sprites:
|
|
128
|
+
- serializedVersion: 2
|
|
129
|
+
name: Line _0
|
|
130
|
+
rect:
|
|
131
|
+
serializedVersion: 2
|
|
132
|
+
x: 24
|
|
133
|
+
y: 105
|
|
134
|
+
width: 2115
|
|
135
|
+
height: 251
|
|
136
|
+
alignment: 0
|
|
137
|
+
pivot: {x: 0, y: 0}
|
|
138
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
139
|
+
customData:
|
|
140
|
+
outline: []
|
|
141
|
+
physicsShape: []
|
|
142
|
+
tessellationDetail: -1
|
|
143
|
+
bones: []
|
|
144
|
+
spriteID: f341e6589572a3360800000000000000
|
|
145
|
+
internalID: 7150070623848240191
|
|
146
|
+
vertices: []
|
|
147
|
+
indices:
|
|
148
|
+
edges: []
|
|
149
|
+
weights: []
|
|
150
|
+
outline: []
|
|
151
|
+
customData:
|
|
152
|
+
physicsShape: []
|
|
153
|
+
bones: []
|
|
154
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
155
|
+
internalID: 0
|
|
156
|
+
vertices: []
|
|
157
|
+
indices:
|
|
158
|
+
edges: []
|
|
159
|
+
weights: []
|
|
160
|
+
secondaryTextures: []
|
|
161
|
+
spriteCustomMetadata:
|
|
162
|
+
entries: []
|
|
163
|
+
nameFileIdTable:
|
|
164
|
+
Line _0: 7150070623848240191
|
|
165
|
+
mipmapLimitGroupName:
|
|
166
|
+
pSDRemoveMatte: 0
|
|
167
|
+
userData:
|
|
168
|
+
assetBundleName:
|
|
169
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!1102 &-4161903442772334533
|
|
4
|
+
AnimatorState:
|
|
5
|
+
serializedVersion: 6
|
|
6
|
+
m_ObjectHideFlags: 1
|
|
7
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
8
|
+
m_PrefabInstance: {fileID: 0}
|
|
9
|
+
m_PrefabAsset: {fileID: 0}
|
|
10
|
+
m_Name: test
|
|
11
|
+
m_Speed: 1
|
|
12
|
+
m_CycleOffset: 0
|
|
13
|
+
m_Transitions: []
|
|
14
|
+
m_StateMachineBehaviours: []
|
|
15
|
+
m_Position: {x: 50, y: 50, z: 0}
|
|
16
|
+
m_IKOnFeet: 0
|
|
17
|
+
m_WriteDefaultValues: 1
|
|
18
|
+
m_Mirror: 0
|
|
19
|
+
m_SpeedParameterActive: 0
|
|
20
|
+
m_MirrorParameterActive: 0
|
|
21
|
+
m_CycleOffsetParameterActive: 0
|
|
22
|
+
m_TimeParameterActive: 0
|
|
23
|
+
m_Motion: {fileID: 7400000, guid: edde42fb10dcbb146bf3f225d3ed3ee6, type: 2}
|
|
24
|
+
m_Tag:
|
|
25
|
+
m_SpeedParameter:
|
|
26
|
+
m_MirrorParameter:
|
|
27
|
+
m_CycleOffsetParameter:
|
|
28
|
+
m_TimeParameter:
|
|
29
|
+
--- !u!1107 &-3776293052618728378
|
|
30
|
+
AnimatorStateMachine:
|
|
31
|
+
serializedVersion: 6
|
|
32
|
+
m_ObjectHideFlags: 1
|
|
33
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
34
|
+
m_PrefabInstance: {fileID: 0}
|
|
35
|
+
m_PrefabAsset: {fileID: 0}
|
|
36
|
+
m_Name: Base Layer
|
|
37
|
+
m_ChildStates:
|
|
38
|
+
- serializedVersion: 1
|
|
39
|
+
m_State: {fileID: 8849858592814496703}
|
|
40
|
+
m_Position: {x: 200, y: 0, z: 0}
|
|
41
|
+
- serializedVersion: 1
|
|
42
|
+
m_State: {fileID: -4161903442772334533}
|
|
43
|
+
m_Position: {x: 235, y: 65, z: 0}
|
|
44
|
+
- serializedVersion: 1
|
|
45
|
+
m_State: {fileID: 6059978348614513869}
|
|
46
|
+
m_Position: {x: 270, y: 130, z: 0}
|
|
47
|
+
m_ChildStateMachines: []
|
|
48
|
+
m_AnyStateTransitions: []
|
|
49
|
+
m_EntryTransitions: []
|
|
50
|
+
m_StateMachineTransitions: {}
|
|
51
|
+
m_StateMachineBehaviours: []
|
|
52
|
+
m_AnyStatePosition: {x: 50, y: 20, z: 0}
|
|
53
|
+
m_EntryPosition: {x: 50, y: 120, z: 0}
|
|
54
|
+
m_ExitPosition: {x: 800, y: 120, z: 0}
|
|
55
|
+
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
|
|
56
|
+
m_DefaultState: {fileID: 8849858592814496703}
|
|
57
|
+
--- !u!91 &9100000
|
|
58
|
+
AnimatorController:
|
|
59
|
+
m_ObjectHideFlags: 0
|
|
60
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
61
|
+
m_PrefabInstance: {fileID: 0}
|
|
62
|
+
m_PrefabAsset: {fileID: 0}
|
|
63
|
+
m_Name: Swipe Gesture GIF
|
|
64
|
+
serializedVersion: 5
|
|
65
|
+
m_AnimatorParameters: []
|
|
66
|
+
m_AnimatorLayers:
|
|
67
|
+
- serializedVersion: 5
|
|
68
|
+
m_Name: Base Layer
|
|
69
|
+
m_StateMachine: {fileID: -3776293052618728378}
|
|
70
|
+
m_Mask: {fileID: 0}
|
|
71
|
+
m_Motions: []
|
|
72
|
+
m_Behaviours: []
|
|
73
|
+
m_BlendingMode: 0
|
|
74
|
+
m_SyncedLayerIndex: -1
|
|
75
|
+
m_DefaultWeight: 0
|
|
76
|
+
m_IKPass: 0
|
|
77
|
+
m_SyncedLayerAffectsTiming: 0
|
|
78
|
+
m_Controller: {fileID: 9100000}
|
|
79
|
+
--- !u!1102 &6059978348614513869
|
|
80
|
+
AnimatorState:
|
|
81
|
+
serializedVersion: 6
|
|
82
|
+
m_ObjectHideFlags: 1
|
|
83
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
84
|
+
m_PrefabInstance: {fileID: 0}
|
|
85
|
+
m_PrefabAsset: {fileID: 0}
|
|
86
|
+
m_Name: tes 2
|
|
87
|
+
m_Speed: 1
|
|
88
|
+
m_CycleOffset: 0
|
|
89
|
+
m_Transitions: []
|
|
90
|
+
m_StateMachineBehaviours: []
|
|
91
|
+
m_Position: {x: 50, y: 50, z: 0}
|
|
92
|
+
m_IKOnFeet: 0
|
|
93
|
+
m_WriteDefaultValues: 1
|
|
94
|
+
m_Mirror: 0
|
|
95
|
+
m_SpeedParameterActive: 0
|
|
96
|
+
m_MirrorParameterActive: 0
|
|
97
|
+
m_CycleOffsetParameterActive: 0
|
|
98
|
+
m_TimeParameterActive: 0
|
|
99
|
+
m_Motion: {fileID: 7400000, guid: 4c3992decbc53be43b5c847797ae6a4c, type: 2}
|
|
100
|
+
m_Tag:
|
|
101
|
+
m_SpeedParameter:
|
|
102
|
+
m_MirrorParameter:
|
|
103
|
+
m_CycleOffsetParameter:
|
|
104
|
+
m_TimeParameter:
|
|
105
|
+
--- !u!1102 &8849858592814496703
|
|
106
|
+
AnimatorState:
|
|
107
|
+
serializedVersion: 6
|
|
108
|
+
m_ObjectHideFlags: 1
|
|
109
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
110
|
+
m_PrefabInstance: {fileID: 0}
|
|
111
|
+
m_PrefabAsset: {fileID: 0}
|
|
112
|
+
m_Name: Swipe gesture
|
|
113
|
+
m_Speed: 1
|
|
114
|
+
m_CycleOffset: 0
|
|
115
|
+
m_Transitions: []
|
|
116
|
+
m_StateMachineBehaviours: []
|
|
117
|
+
m_Position: {x: 50, y: 50, z: 0}
|
|
118
|
+
m_IKOnFeet: 0
|
|
119
|
+
m_WriteDefaultValues: 1
|
|
120
|
+
m_Mirror: 0
|
|
121
|
+
m_SpeedParameterActive: 0
|
|
122
|
+
m_MirrorParameterActive: 0
|
|
123
|
+
m_CycleOffsetParameterActive: 0
|
|
124
|
+
m_TimeParameterActive: 0
|
|
125
|
+
m_Motion: {fileID: 7400000, guid: 10a497fb1395cfc4397ff16ea9947abe, type: 2}
|
|
126
|
+
m_Tag:
|
|
127
|
+
m_SpeedParameter:
|
|
128
|
+
m_MirrorParameter:
|
|
129
|
+
m_CycleOffsetParameter:
|
|
130
|
+
m_TimeParameter:
|