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
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [1.4.0](https://github.com/mvmhyper/hyper-sdk/compare/v1.3.4...v1.4.0) (2025-11-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add control-bar lives/health system with editor previews ([337a423](https://github.com/mvmhyper/hyper-sdk/commit/337a4236ab0f9af729bfed3457043bcf8e1263d2))
|
|
7
|
+
* add Start CTA system and improve LivesDisplay overflow handling ([88bf7d9](https://github.com/mvmhyper/hyper-sdk/commit/88bf7d95dfd88f3ef06914ec4d3285f20a12f193))
|
|
8
|
+
|
|
9
|
+
## [1.3.4](https://github.com/mvmhyper/hyper-sdk/compare/v1.3.3...v1.3.4) (2025-11-26)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* centralize soft restart flag reset in HyperLoader.Awake ([2c8a4d9](https://github.com/mvmhyper/hyper-sdk/commit/2c8a4d97bfcce68d749bd15041f997d591c9e797))
|
|
15
|
+
|
|
1
16
|
## [1.3.3](https://github.com/mvmhyper/hyper-sdk/compare/v1.3.2...v1.3.3) (2025-11-26)
|
|
2
17
|
|
|
3
18
|
|
|
Binary file
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 3f02437fdb8c74248a1f6598bd3e3fdc
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 13
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
flipGreenChannel: 0
|
|
24
|
+
isReadable: 0
|
|
25
|
+
streamingMipmaps: 0
|
|
26
|
+
streamingMipmapsPriority: 0
|
|
27
|
+
vTOnly: 0
|
|
28
|
+
ignoreMipmapLimit: 0
|
|
29
|
+
grayScaleToAlpha: 0
|
|
30
|
+
generateCubemap: 6
|
|
31
|
+
cubemapConvolution: 0
|
|
32
|
+
seamlessCubemap: 0
|
|
33
|
+
textureFormat: 1
|
|
34
|
+
maxTextureSize: 2048
|
|
35
|
+
textureSettings:
|
|
36
|
+
serializedVersion: 2
|
|
37
|
+
filterMode: 1
|
|
38
|
+
aniso: 1
|
|
39
|
+
mipBias: 0
|
|
40
|
+
wrapU: 1
|
|
41
|
+
wrapV: 1
|
|
42
|
+
wrapW: 1
|
|
43
|
+
nPOTScale: 0
|
|
44
|
+
lightmap: 0
|
|
45
|
+
compressionQuality: 50
|
|
46
|
+
spriteMode: 1
|
|
47
|
+
spriteExtrude: 1
|
|
48
|
+
spriteMeshType: 1
|
|
49
|
+
alignment: 0
|
|
50
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
51
|
+
spritePixelsToUnits: 100
|
|
52
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
53
|
+
spriteGenerateFallbackPhysicsShape: 0
|
|
54
|
+
alphaUsage: 1
|
|
55
|
+
alphaIsTransparency: 0
|
|
56
|
+
spriteTessellationDetail: -1
|
|
57
|
+
textureType: 8
|
|
58
|
+
textureShape: 1
|
|
59
|
+
singleChannelComponent: 0
|
|
60
|
+
flipbookRows: 1
|
|
61
|
+
flipbookColumns: 1
|
|
62
|
+
maxTextureSizeSet: 0
|
|
63
|
+
compressionQualitySet: 0
|
|
64
|
+
textureFormatSet: 0
|
|
65
|
+
ignorePngGamma: 0
|
|
66
|
+
applyGammaDecoding: 0
|
|
67
|
+
swizzle: 50462976
|
|
68
|
+
cookieLightType: 0
|
|
69
|
+
platformSettings:
|
|
70
|
+
- serializedVersion: 4
|
|
71
|
+
buildTarget: DefaultTexturePlatform
|
|
72
|
+
maxTextureSize: 512
|
|
73
|
+
resizeAlgorithm: 0
|
|
74
|
+
textureFormat: -1
|
|
75
|
+
textureCompression: 1
|
|
76
|
+
compressionQuality: 45
|
|
77
|
+
crunchedCompression: 1
|
|
78
|
+
allowsAlphaSplitting: 0
|
|
79
|
+
overridden: 0
|
|
80
|
+
ignorePlatformSupport: 0
|
|
81
|
+
androidETC2FallbackOverride: 0
|
|
82
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
83
|
+
- serializedVersion: 4
|
|
84
|
+
buildTarget: Standalone
|
|
85
|
+
maxTextureSize: 2048
|
|
86
|
+
resizeAlgorithm: 0
|
|
87
|
+
textureFormat: 12
|
|
88
|
+
textureCompression: 1
|
|
89
|
+
compressionQuality: 50
|
|
90
|
+
crunchedCompression: 0
|
|
91
|
+
allowsAlphaSplitting: 0
|
|
92
|
+
overridden: 0
|
|
93
|
+
ignorePlatformSupport: 0
|
|
94
|
+
androidETC2FallbackOverride: 0
|
|
95
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
96
|
+
- serializedVersion: 4
|
|
97
|
+
buildTarget: WebGL
|
|
98
|
+
maxTextureSize: 2048
|
|
99
|
+
resizeAlgorithm: 0
|
|
100
|
+
textureFormat: 12
|
|
101
|
+
textureCompression: 1
|
|
102
|
+
compressionQuality: 50
|
|
103
|
+
crunchedCompression: 0
|
|
104
|
+
allowsAlphaSplitting: 0
|
|
105
|
+
overridden: 0
|
|
106
|
+
ignorePlatformSupport: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
109
|
+
- serializedVersion: 4
|
|
110
|
+
buildTarget: Android
|
|
111
|
+
maxTextureSize: 256
|
|
112
|
+
resizeAlgorithm: 0
|
|
113
|
+
textureFormat: -1
|
|
114
|
+
textureCompression: 0
|
|
115
|
+
compressionQuality: 50
|
|
116
|
+
crunchedCompression: 0
|
|
117
|
+
allowsAlphaSplitting: 0
|
|
118
|
+
overridden: 0
|
|
119
|
+
ignorePlatformSupport: 0
|
|
120
|
+
androidETC2FallbackOverride: 0
|
|
121
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
122
|
+
spriteSheet:
|
|
123
|
+
serializedVersion: 2
|
|
124
|
+
sprites: []
|
|
125
|
+
outline: []
|
|
126
|
+
customData:
|
|
127
|
+
physicsShape: []
|
|
128
|
+
bones: []
|
|
129
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
130
|
+
internalID: 0
|
|
131
|
+
vertices: []
|
|
132
|
+
indices:
|
|
133
|
+
edges: []
|
|
134
|
+
weights: []
|
|
135
|
+
secondaryTextures: []
|
|
136
|
+
spriteCustomMetadata:
|
|
137
|
+
entries: []
|
|
138
|
+
nameFileIdTable: {}
|
|
139
|
+
mipmapLimitGroupName:
|
|
140
|
+
pSDRemoveMatte: 0
|
|
141
|
+
userData:
|
|
142
|
+
assetBundleName:
|
|
143
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 57172411465a7a5499b54dd7a2f1ac98
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 13
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
flipGreenChannel: 0
|
|
24
|
+
isReadable: 0
|
|
25
|
+
streamingMipmaps: 0
|
|
26
|
+
streamingMipmapsPriority: 0
|
|
27
|
+
vTOnly: 0
|
|
28
|
+
ignoreMipmapLimit: 0
|
|
29
|
+
grayScaleToAlpha: 0
|
|
30
|
+
generateCubemap: 6
|
|
31
|
+
cubemapConvolution: 0
|
|
32
|
+
seamlessCubemap: 0
|
|
33
|
+
textureFormat: 1
|
|
34
|
+
maxTextureSize: 2048
|
|
35
|
+
textureSettings:
|
|
36
|
+
serializedVersion: 2
|
|
37
|
+
filterMode: 1
|
|
38
|
+
aniso: 1
|
|
39
|
+
mipBias: 0
|
|
40
|
+
wrapU: 1
|
|
41
|
+
wrapV: 1
|
|
42
|
+
wrapW: 1
|
|
43
|
+
nPOTScale: 0
|
|
44
|
+
lightmap: 0
|
|
45
|
+
compressionQuality: 50
|
|
46
|
+
spriteMode: 1
|
|
47
|
+
spriteExtrude: 1
|
|
48
|
+
spriteMeshType: 1
|
|
49
|
+
alignment: 0
|
|
50
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
51
|
+
spritePixelsToUnits: 100
|
|
52
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
53
|
+
spriteGenerateFallbackPhysicsShape: 0
|
|
54
|
+
alphaUsage: 1
|
|
55
|
+
alphaIsTransparency: 0
|
|
56
|
+
spriteTessellationDetail: -1
|
|
57
|
+
textureType: 8
|
|
58
|
+
textureShape: 1
|
|
59
|
+
singleChannelComponent: 0
|
|
60
|
+
flipbookRows: 1
|
|
61
|
+
flipbookColumns: 1
|
|
62
|
+
maxTextureSizeSet: 0
|
|
63
|
+
compressionQualitySet: 0
|
|
64
|
+
textureFormatSet: 0
|
|
65
|
+
ignorePngGamma: 0
|
|
66
|
+
applyGammaDecoding: 0
|
|
67
|
+
swizzle: 50462976
|
|
68
|
+
cookieLightType: 0
|
|
69
|
+
platformSettings:
|
|
70
|
+
- serializedVersion: 4
|
|
71
|
+
buildTarget: DefaultTexturePlatform
|
|
72
|
+
maxTextureSize: 512
|
|
73
|
+
resizeAlgorithm: 0
|
|
74
|
+
textureFormat: -1
|
|
75
|
+
textureCompression: 1
|
|
76
|
+
compressionQuality: 45
|
|
77
|
+
crunchedCompression: 1
|
|
78
|
+
allowsAlphaSplitting: 0
|
|
79
|
+
overridden: 0
|
|
80
|
+
ignorePlatformSupport: 0
|
|
81
|
+
androidETC2FallbackOverride: 0
|
|
82
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
83
|
+
- serializedVersion: 4
|
|
84
|
+
buildTarget: Standalone
|
|
85
|
+
maxTextureSize: 2048
|
|
86
|
+
resizeAlgorithm: 0
|
|
87
|
+
textureFormat: 12
|
|
88
|
+
textureCompression: 1
|
|
89
|
+
compressionQuality: 50
|
|
90
|
+
crunchedCompression: 0
|
|
91
|
+
allowsAlphaSplitting: 0
|
|
92
|
+
overridden: 0
|
|
93
|
+
ignorePlatformSupport: 0
|
|
94
|
+
androidETC2FallbackOverride: 0
|
|
95
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
96
|
+
- serializedVersion: 4
|
|
97
|
+
buildTarget: WebGL
|
|
98
|
+
maxTextureSize: 2048
|
|
99
|
+
resizeAlgorithm: 0
|
|
100
|
+
textureFormat: 12
|
|
101
|
+
textureCompression: 1
|
|
102
|
+
compressionQuality: 50
|
|
103
|
+
crunchedCompression: 0
|
|
104
|
+
allowsAlphaSplitting: 0
|
|
105
|
+
overridden: 0
|
|
106
|
+
ignorePlatformSupport: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
109
|
+
- serializedVersion: 4
|
|
110
|
+
buildTarget: Android
|
|
111
|
+
maxTextureSize: 256
|
|
112
|
+
resizeAlgorithm: 0
|
|
113
|
+
textureFormat: -1
|
|
114
|
+
textureCompression: 0
|
|
115
|
+
compressionQuality: 50
|
|
116
|
+
crunchedCompression: 0
|
|
117
|
+
allowsAlphaSplitting: 0
|
|
118
|
+
overridden: 0
|
|
119
|
+
ignorePlatformSupport: 0
|
|
120
|
+
androidETC2FallbackOverride: 0
|
|
121
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
122
|
+
spriteSheet:
|
|
123
|
+
serializedVersion: 2
|
|
124
|
+
sprites: []
|
|
125
|
+
outline: []
|
|
126
|
+
customData:
|
|
127
|
+
physicsShape: []
|
|
128
|
+
bones: []
|
|
129
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
130
|
+
internalID: 0
|
|
131
|
+
vertices: []
|
|
132
|
+
indices:
|
|
133
|
+
edges: []
|
|
134
|
+
weights: []
|
|
135
|
+
secondaryTextures: []
|
|
136
|
+
spriteCustomMetadata:
|
|
137
|
+
entries: []
|
|
138
|
+
nameFileIdTable: {}
|
|
139
|
+
mipmapLimitGroupName:
|
|
140
|
+
pSDRemoveMatte: 0
|
|
141
|
+
userData:
|
|
142
|
+
assetBundleName:
|
|
143
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 76db3fab901671e46b3ebf4872a46569
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 1234951333896449457
|
|
7
|
+
second: HeartsLeft1_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: 2
|
|
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: 512
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 1
|
|
79
|
+
compressionQuality: 45
|
|
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: HeartsLeft1_0
|
|
130
|
+
rect:
|
|
131
|
+
serializedVersion: 2
|
|
132
|
+
x: 0
|
|
133
|
+
y: 0
|
|
134
|
+
width: 1500
|
|
135
|
+
height: 452
|
|
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: 1bdeac3f1bd632110800000000000000
|
|
145
|
+
internalID: 1234951333896449457
|
|
146
|
+
vertices: []
|
|
147
|
+
indices:
|
|
148
|
+
edges: []
|
|
149
|
+
weights: []
|
|
150
|
+
outline: []
|
|
151
|
+
customData:
|
|
152
|
+
physicsShape: []
|
|
153
|
+
bones: []
|
|
154
|
+
spriteID:
|
|
155
|
+
internalID: 0
|
|
156
|
+
vertices: []
|
|
157
|
+
indices:
|
|
158
|
+
edges: []
|
|
159
|
+
weights: []
|
|
160
|
+
secondaryTextures: []
|
|
161
|
+
spriteCustomMetadata:
|
|
162
|
+
entries: []
|
|
163
|
+
nameFileIdTable:
|
|
164
|
+
HeartsLeft1_0: 1234951333896449457
|
|
165
|
+
mipmapLimitGroupName:
|
|
166
|
+
pSDRemoveMatte: 0
|
|
167
|
+
userData:
|
|
168
|
+
assetBundleName:
|
|
169
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c1fdf5670f2dd8b41894e27cae02f8b9
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 13
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
flipGreenChannel: 0
|
|
24
|
+
isReadable: 0
|
|
25
|
+
streamingMipmaps: 0
|
|
26
|
+
streamingMipmapsPriority: 0
|
|
27
|
+
vTOnly: 0
|
|
28
|
+
ignoreMipmapLimit: 0
|
|
29
|
+
grayScaleToAlpha: 0
|
|
30
|
+
generateCubemap: 6
|
|
31
|
+
cubemapConvolution: 0
|
|
32
|
+
seamlessCubemap: 0
|
|
33
|
+
textureFormat: 1
|
|
34
|
+
maxTextureSize: 2048
|
|
35
|
+
textureSettings:
|
|
36
|
+
serializedVersion: 2
|
|
37
|
+
filterMode: 1
|
|
38
|
+
aniso: 1
|
|
39
|
+
mipBias: 0
|
|
40
|
+
wrapU: 1
|
|
41
|
+
wrapV: 1
|
|
42
|
+
wrapW: 1
|
|
43
|
+
nPOTScale: 0
|
|
44
|
+
lightmap: 0
|
|
45
|
+
compressionQuality: 50
|
|
46
|
+
spriteMode: 1
|
|
47
|
+
spriteExtrude: 1
|
|
48
|
+
spriteMeshType: 1
|
|
49
|
+
alignment: 0
|
|
50
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
51
|
+
spritePixelsToUnits: 100
|
|
52
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
53
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
54
|
+
alphaUsage: 1
|
|
55
|
+
alphaIsTransparency: 1
|
|
56
|
+
spriteTessellationDetail: -1
|
|
57
|
+
textureType: 8
|
|
58
|
+
textureShape: 1
|
|
59
|
+
singleChannelComponent: 0
|
|
60
|
+
flipbookRows: 1
|
|
61
|
+
flipbookColumns: 1
|
|
62
|
+
maxTextureSizeSet: 0
|
|
63
|
+
compressionQualitySet: 0
|
|
64
|
+
textureFormatSet: 0
|
|
65
|
+
ignorePngGamma: 0
|
|
66
|
+
applyGammaDecoding: 0
|
|
67
|
+
swizzle: 50462976
|
|
68
|
+
cookieLightType: 0
|
|
69
|
+
platformSettings:
|
|
70
|
+
- serializedVersion: 4
|
|
71
|
+
buildTarget: DefaultTexturePlatform
|
|
72
|
+
maxTextureSize: 512
|
|
73
|
+
resizeAlgorithm: 0
|
|
74
|
+
textureFormat: -1
|
|
75
|
+
textureCompression: 1
|
|
76
|
+
compressionQuality: 45
|
|
77
|
+
crunchedCompression: 1
|
|
78
|
+
allowsAlphaSplitting: 0
|
|
79
|
+
overridden: 0
|
|
80
|
+
ignorePlatformSupport: 0
|
|
81
|
+
androidETC2FallbackOverride: 0
|
|
82
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
83
|
+
- serializedVersion: 4
|
|
84
|
+
buildTarget: Standalone
|
|
85
|
+
maxTextureSize: 2048
|
|
86
|
+
resizeAlgorithm: 0
|
|
87
|
+
textureFormat: 12
|
|
88
|
+
textureCompression: 1
|
|
89
|
+
compressionQuality: 50
|
|
90
|
+
crunchedCompression: 0
|
|
91
|
+
allowsAlphaSplitting: 0
|
|
92
|
+
overridden: 0
|
|
93
|
+
ignorePlatformSupport: 0
|
|
94
|
+
androidETC2FallbackOverride: 0
|
|
95
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
96
|
+
- serializedVersion: 4
|
|
97
|
+
buildTarget: WebGL
|
|
98
|
+
maxTextureSize: 2048
|
|
99
|
+
resizeAlgorithm: 0
|
|
100
|
+
textureFormat: 12
|
|
101
|
+
textureCompression: 1
|
|
102
|
+
compressionQuality: 50
|
|
103
|
+
crunchedCompression: 0
|
|
104
|
+
allowsAlphaSplitting: 0
|
|
105
|
+
overridden: 0
|
|
106
|
+
ignorePlatformSupport: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
109
|
+
- serializedVersion: 4
|
|
110
|
+
buildTarget: Android
|
|
111
|
+
maxTextureSize: 256
|
|
112
|
+
resizeAlgorithm: 0
|
|
113
|
+
textureFormat: -1
|
|
114
|
+
textureCompression: 0
|
|
115
|
+
compressionQuality: 50
|
|
116
|
+
crunchedCompression: 0
|
|
117
|
+
allowsAlphaSplitting: 0
|
|
118
|
+
overridden: 0
|
|
119
|
+
ignorePlatformSupport: 0
|
|
120
|
+
androidETC2FallbackOverride: 0
|
|
121
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
122
|
+
spriteSheet:
|
|
123
|
+
serializedVersion: 2
|
|
124
|
+
sprites: []
|
|
125
|
+
outline: []
|
|
126
|
+
customData:
|
|
127
|
+
physicsShape: []
|
|
128
|
+
bones: []
|
|
129
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
130
|
+
internalID: 0
|
|
131
|
+
vertices: []
|
|
132
|
+
indices:
|
|
133
|
+
edges: []
|
|
134
|
+
weights: []
|
|
135
|
+
secondaryTextures: []
|
|
136
|
+
spriteCustomMetadata:
|
|
137
|
+
entries: []
|
|
138
|
+
nameFileIdTable: {}
|
|
139
|
+
mipmapLimitGroupName:
|
|
140
|
+
pSDRemoveMatte: 0
|
|
141
|
+
userData:
|
|
142
|
+
assetBundleName:
|
|
143
|
+
assetBundleVariant:
|
|
Binary file
|