app.hypergames.hypersdk 1.3.4 → 1.4.1
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/Tools/HyperBuildAssistant.cs +53 -3
- 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/Managers/EventManager.cs +4 -0
- package/Runtime/Internal/Managers/GameManager.cs +173 -5
- 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/ExitGameMenuModal.cs +46 -0
- package/Runtime/Internal/UI/Modals/ExitGameMenuModal.cs.meta +11 -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/Fonts/Wonder Boys/Wonder Boys + Shadows.mat +1 -1
- package/Runtime/Resources/HyperSDKSettings.asset +3 -2
- package/Runtime/Resources/Sprites/Big Icons/Exit.png +0 -0
- package/Runtime/Resources/Sprites/Big Icons/Exit.png.meta +195 -0
- 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/ExitGameMenuModal.prefab +1043 -0
- package/Runtime/Resources/UIPrefabs/ExitGameMenuModal.prefab.meta +7 -0
- package/Runtime/Resources/UIPrefabs/GamePausedModal_Battle.prefab +1 -1
- 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
|
@@ -130,6 +130,24 @@ namespace Hyper
|
|
|
130
130
|
void EndBattleGame();
|
|
131
131
|
void EndPracticeGame();
|
|
132
132
|
void ExitPracticeMenu();
|
|
133
|
+
|
|
134
|
+
// Lives Management (only available when ControlBarLayout is HeartsLeft)
|
|
135
|
+
void InitializeLives(int maxLives, int initialLives = -1);
|
|
136
|
+
void SetLives(int lives);
|
|
137
|
+
void AddLife();
|
|
138
|
+
void RemoveLife();
|
|
139
|
+
int GetCurrentLives();
|
|
140
|
+
int GetMaxLives();
|
|
141
|
+
|
|
142
|
+
// Health Management (only available when ControlBarLayout is HealthBarGreenLeft)
|
|
143
|
+
void InitializeHealth(float maxHealth, float initialHealth = -1f, bool isNormalized = false);
|
|
144
|
+
void SetHealth(float health);
|
|
145
|
+
void SetHealthNormalized(float normalizedHealth);
|
|
146
|
+
void AddHealth(float amount);
|
|
147
|
+
void RemoveHealth(float amount);
|
|
148
|
+
float GetCurrentHealth();
|
|
149
|
+
float GetMaxHealth();
|
|
150
|
+
float GetHealthNormalized();
|
|
133
151
|
}
|
|
134
152
|
|
|
135
153
|
/// <summary>
|
|
@@ -158,6 +176,8 @@ namespace Hyper
|
|
|
158
176
|
event Action OnGameResumed;
|
|
159
177
|
event Action OnGameEnded;
|
|
160
178
|
event Action<bool> OnSoundChanged;
|
|
179
|
+
event Action OnLivesExhausted;
|
|
180
|
+
event Action OnHealthExhausted;
|
|
161
181
|
}
|
|
162
182
|
|
|
163
183
|
#region Adapter Implementations
|
|
@@ -178,6 +198,22 @@ namespace Hyper
|
|
|
178
198
|
public void EndBattleGame() => Manager?.EndBattleGame();
|
|
179
199
|
public void EndPracticeGame() => Manager?.EndPracticeGame();
|
|
180
200
|
public void ExitPracticeMenu() => Manager?.ExitPracticeMenu();
|
|
201
|
+
|
|
202
|
+
public void InitializeLives(int maxLives, int initialLives = -1) => Manager?.InitializeLives(maxLives, initialLives);
|
|
203
|
+
public void SetLives(int lives) => Manager?.SetLives(lives);
|
|
204
|
+
public void AddLife() => Manager?.AddLife();
|
|
205
|
+
public void RemoveLife() => Manager?.RemoveLife();
|
|
206
|
+
public int GetCurrentLives() => Manager?.GetCurrentLives() ?? 0;
|
|
207
|
+
public int GetMaxLives() => Manager?.GetMaxLives() ?? 0;
|
|
208
|
+
|
|
209
|
+
public void InitializeHealth(float maxHealth, float initialHealth = -1f, bool isNormalized = false) => Manager?.InitializeHealth(maxHealth, initialHealth, isNormalized);
|
|
210
|
+
public void SetHealth(float health) => Manager?.SetHealth(health);
|
|
211
|
+
public void SetHealthNormalized(float normalizedHealth) => Manager?.SetHealthNormalized(normalizedHealth);
|
|
212
|
+
public void AddHealth(float amount) => Manager?.AddHealth(amount);
|
|
213
|
+
public void RemoveHealth(float amount) => Manager?.RemoveHealth(amount);
|
|
214
|
+
public float GetCurrentHealth() => Manager?.GetCurrentHealth() ?? 0f;
|
|
215
|
+
public float GetMaxHealth() => Manager?.GetMaxHealth() ?? 0f;
|
|
216
|
+
public float GetHealthNormalized() => Manager?.GetHealthNormalized() ?? 0f;
|
|
181
217
|
}
|
|
182
218
|
|
|
183
219
|
/// <summary>
|
|
@@ -210,6 +246,8 @@ namespace Hyper
|
|
|
210
246
|
private Action _onGameResumed;
|
|
211
247
|
private Action _onGameEnded;
|
|
212
248
|
private Action<bool> _onSoundChanged;
|
|
249
|
+
private Action _onLivesExhausted;
|
|
250
|
+
private Action _onHealthExhausted;
|
|
213
251
|
|
|
214
252
|
private Action _gameStartBridge;
|
|
215
253
|
private Action _timeUpBridge;
|
|
@@ -217,6 +255,8 @@ namespace Hyper
|
|
|
217
255
|
private Action _gameResumedBridge;
|
|
218
256
|
private Action _gameEndedBridge;
|
|
219
257
|
private Action<bool> _soundChangedBridge;
|
|
258
|
+
private Action _livesExhaustedBridge;
|
|
259
|
+
private Action _healthExhaustedBridge;
|
|
220
260
|
|
|
221
261
|
public event Action OnGameStart
|
|
222
262
|
{
|
|
@@ -278,6 +318,26 @@ namespace Hyper
|
|
|
278
318
|
remove => _onSoundChanged -= value;
|
|
279
319
|
}
|
|
280
320
|
|
|
321
|
+
public event Action OnLivesExhausted
|
|
322
|
+
{
|
|
323
|
+
add
|
|
324
|
+
{
|
|
325
|
+
_onLivesExhausted += value;
|
|
326
|
+
RefreshBindings();
|
|
327
|
+
}
|
|
328
|
+
remove => _onLivesExhausted -= value;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
public event Action OnHealthExhausted
|
|
332
|
+
{
|
|
333
|
+
add
|
|
334
|
+
{
|
|
335
|
+
_onHealthExhausted += value;
|
|
336
|
+
RefreshBindings();
|
|
337
|
+
}
|
|
338
|
+
remove => _onHealthExhausted -= value;
|
|
339
|
+
}
|
|
340
|
+
|
|
281
341
|
internal void RefreshBindings()
|
|
282
342
|
{
|
|
283
343
|
var manager = HyperRuntime.EventManager;
|
|
@@ -304,6 +364,8 @@ namespace Hyper
|
|
|
304
364
|
_gameResumedBridge = () => _onGameResumed?.Invoke();
|
|
305
365
|
_gameEndedBridge = () => _onGameEnded?.Invoke();
|
|
306
366
|
_soundChangedBridge = enabled => _onSoundChanged?.Invoke(enabled);
|
|
367
|
+
_livesExhaustedBridge = () => _onLivesExhausted?.Invoke();
|
|
368
|
+
_healthExhaustedBridge = () => _onHealthExhausted?.Invoke();
|
|
307
369
|
|
|
308
370
|
manager.OnGameStart += _gameStartBridge;
|
|
309
371
|
manager.OnTimeUp += _timeUpBridge;
|
|
@@ -311,6 +373,8 @@ namespace Hyper
|
|
|
311
373
|
manager.OnGameResumed += _gameResumedBridge;
|
|
312
374
|
manager.OnGameEnded += _gameEndedBridge;
|
|
313
375
|
manager.OnSoundChanged += _soundChangedBridge;
|
|
376
|
+
manager.OnLivesExhausted += _livesExhaustedBridge;
|
|
377
|
+
manager.OnHealthExhausted += _healthExhaustedBridge;
|
|
314
378
|
|
|
315
379
|
_attachedManager = manager;
|
|
316
380
|
}
|
|
@@ -328,6 +392,8 @@ namespace Hyper
|
|
|
328
392
|
if (_gameResumedBridge != null) _attachedManager.OnGameResumed -= _gameResumedBridge;
|
|
329
393
|
if (_gameEndedBridge != null) _attachedManager.OnGameEnded -= _gameEndedBridge;
|
|
330
394
|
if (_soundChangedBridge != null) _attachedManager.OnSoundChanged -= _soundChangedBridge;
|
|
395
|
+
if (_livesExhaustedBridge != null) _attachedManager.OnLivesExhausted -= _livesExhaustedBridge;
|
|
396
|
+
if (_healthExhaustedBridge != null) _attachedManager.OnHealthExhausted -= _healthExhaustedBridge;
|
|
331
397
|
|
|
332
398
|
_gameStartBridge = null;
|
|
333
399
|
_timeUpBridge = null;
|
|
@@ -335,6 +401,8 @@ namespace Hyper
|
|
|
335
401
|
_gameResumedBridge = null;
|
|
336
402
|
_gameEndedBridge = null;
|
|
337
403
|
_soundChangedBridge = null;
|
|
404
|
+
_livesExhaustedBridge = null;
|
|
405
|
+
_healthExhaustedBridge = null;
|
|
338
406
|
_attachedManager = null;
|
|
339
407
|
}
|
|
340
408
|
}
|
|
@@ -100,7 +100,7 @@ Material:
|
|
|
100
100
|
m_Colors:
|
|
101
101
|
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
|
|
102
102
|
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
103
|
-
- _FaceColor: {r: 1, g:
|
|
103
|
+
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
104
104
|
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
105
105
|
- _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767}
|
|
106
106
|
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
@@ -107,6 +107,6 @@ Material:
|
|
|
107
107
|
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
108
108
|
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
109
109
|
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
110
|
-
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.
|
|
110
|
+
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.19607843}
|
|
111
111
|
m_BuildTextureStacks: []
|
|
112
112
|
m_AllowLocking: 1
|
|
Binary file
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 2da5702869eb4854eb1ec08c2800c40e
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 4664437346796438651
|
|
7
|
+
second: fi_14618378_0
|
|
8
|
+
- first:
|
|
9
|
+
213: 6756514946036899425
|
|
10
|
+
second: fi_14618378_1
|
|
11
|
+
externalObjects: {}
|
|
12
|
+
serializedVersion: 13
|
|
13
|
+
mipmaps:
|
|
14
|
+
mipMapMode: 0
|
|
15
|
+
enableMipMap: 0
|
|
16
|
+
sRGBTexture: 1
|
|
17
|
+
linearTexture: 0
|
|
18
|
+
fadeOut: 0
|
|
19
|
+
borderMipMap: 0
|
|
20
|
+
mipMapsPreserveCoverage: 0
|
|
21
|
+
alphaTestReferenceValue: 0.5
|
|
22
|
+
mipMapFadeDistanceStart: 1
|
|
23
|
+
mipMapFadeDistanceEnd: 3
|
|
24
|
+
bumpmap:
|
|
25
|
+
convertToNormalMap: 0
|
|
26
|
+
externalNormalMap: 0
|
|
27
|
+
heightScale: 0.25
|
|
28
|
+
normalMapFilter: 0
|
|
29
|
+
flipGreenChannel: 0
|
|
30
|
+
isReadable: 0
|
|
31
|
+
streamingMipmaps: 0
|
|
32
|
+
streamingMipmapsPriority: 0
|
|
33
|
+
vTOnly: 0
|
|
34
|
+
ignoreMipmapLimit: 0
|
|
35
|
+
grayScaleToAlpha: 0
|
|
36
|
+
generateCubemap: 6
|
|
37
|
+
cubemapConvolution: 0
|
|
38
|
+
seamlessCubemap: 0
|
|
39
|
+
textureFormat: 1
|
|
40
|
+
maxTextureSize: 2048
|
|
41
|
+
textureSettings:
|
|
42
|
+
serializedVersion: 2
|
|
43
|
+
filterMode: 1
|
|
44
|
+
aniso: 1
|
|
45
|
+
mipBias: 0
|
|
46
|
+
wrapU: 1
|
|
47
|
+
wrapV: 1
|
|
48
|
+
wrapW: 1
|
|
49
|
+
nPOTScale: 0
|
|
50
|
+
lightmap: 0
|
|
51
|
+
compressionQuality: 50
|
|
52
|
+
spriteMode: 1
|
|
53
|
+
spriteExtrude: 1
|
|
54
|
+
spriteMeshType: 1
|
|
55
|
+
alignment: 0
|
|
56
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
57
|
+
spritePixelsToUnits: 100
|
|
58
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
59
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
60
|
+
alphaUsage: 1
|
|
61
|
+
alphaIsTransparency: 1
|
|
62
|
+
spriteTessellationDetail: -1
|
|
63
|
+
textureType: 8
|
|
64
|
+
textureShape: 1
|
|
65
|
+
singleChannelComponent: 0
|
|
66
|
+
flipbookRows: 1
|
|
67
|
+
flipbookColumns: 1
|
|
68
|
+
maxTextureSizeSet: 0
|
|
69
|
+
compressionQualitySet: 0
|
|
70
|
+
textureFormatSet: 0
|
|
71
|
+
ignorePngGamma: 0
|
|
72
|
+
applyGammaDecoding: 0
|
|
73
|
+
swizzle: 50462976
|
|
74
|
+
cookieLightType: 0
|
|
75
|
+
platformSettings:
|
|
76
|
+
- serializedVersion: 4
|
|
77
|
+
buildTarget: DefaultTexturePlatform
|
|
78
|
+
maxTextureSize: 512
|
|
79
|
+
resizeAlgorithm: 0
|
|
80
|
+
textureFormat: -1
|
|
81
|
+
textureCompression: 1
|
|
82
|
+
compressionQuality: 50
|
|
83
|
+
crunchedCompression: 1
|
|
84
|
+
allowsAlphaSplitting: 0
|
|
85
|
+
overridden: 0
|
|
86
|
+
ignorePlatformSupport: 0
|
|
87
|
+
androidETC2FallbackOverride: 0
|
|
88
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
89
|
+
- serializedVersion: 4
|
|
90
|
+
buildTarget: Standalone
|
|
91
|
+
maxTextureSize: 2048
|
|
92
|
+
resizeAlgorithm: 0
|
|
93
|
+
textureFormat: -1
|
|
94
|
+
textureCompression: 1
|
|
95
|
+
compressionQuality: 50
|
|
96
|
+
crunchedCompression: 0
|
|
97
|
+
allowsAlphaSplitting: 0
|
|
98
|
+
overridden: 0
|
|
99
|
+
ignorePlatformSupport: 0
|
|
100
|
+
androidETC2FallbackOverride: 0
|
|
101
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
102
|
+
- serializedVersion: 4
|
|
103
|
+
buildTarget: Android
|
|
104
|
+
maxTextureSize: 2048
|
|
105
|
+
resizeAlgorithm: 0
|
|
106
|
+
textureFormat: -1
|
|
107
|
+
textureCompression: 1
|
|
108
|
+
compressionQuality: 50
|
|
109
|
+
crunchedCompression: 0
|
|
110
|
+
allowsAlphaSplitting: 0
|
|
111
|
+
overridden: 0
|
|
112
|
+
ignorePlatformSupport: 0
|
|
113
|
+
androidETC2FallbackOverride: 0
|
|
114
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
115
|
+
- serializedVersion: 4
|
|
116
|
+
buildTarget: WebGL
|
|
117
|
+
maxTextureSize: 2048
|
|
118
|
+
resizeAlgorithm: 0
|
|
119
|
+
textureFormat: -1
|
|
120
|
+
textureCompression: 1
|
|
121
|
+
compressionQuality: 50
|
|
122
|
+
crunchedCompression: 0
|
|
123
|
+
allowsAlphaSplitting: 0
|
|
124
|
+
overridden: 0
|
|
125
|
+
ignorePlatformSupport: 0
|
|
126
|
+
androidETC2FallbackOverride: 0
|
|
127
|
+
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
128
|
+
spriteSheet:
|
|
129
|
+
serializedVersion: 2
|
|
130
|
+
sprites:
|
|
131
|
+
- serializedVersion: 2
|
|
132
|
+
name: fi_14618378_0
|
|
133
|
+
rect:
|
|
134
|
+
serializedVersion: 2
|
|
135
|
+
x: 9
|
|
136
|
+
y: 0
|
|
137
|
+
width: 162
|
|
138
|
+
height: 261
|
|
139
|
+
alignment: 0
|
|
140
|
+
pivot: {x: 0, y: 0}
|
|
141
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
142
|
+
customData:
|
|
143
|
+
outline: []
|
|
144
|
+
physicsShape: []
|
|
145
|
+
tessellationDetail: -1
|
|
146
|
+
bones: []
|
|
147
|
+
spriteID: b740edcbd096bb040800000000000000
|
|
148
|
+
internalID: 4664437346796438651
|
|
149
|
+
vertices: []
|
|
150
|
+
indices:
|
|
151
|
+
edges: []
|
|
152
|
+
weights: []
|
|
153
|
+
- serializedVersion: 2
|
|
154
|
+
name: fi_14618378_1
|
|
155
|
+
rect:
|
|
156
|
+
serializedVersion: 2
|
|
157
|
+
x: 139
|
|
158
|
+
y: 109
|
|
159
|
+
width: 112
|
|
160
|
+
height: 102
|
|
161
|
+
alignment: 0
|
|
162
|
+
pivot: {x: 0, y: 0}
|
|
163
|
+
border: {x: 0, y: 0, z: 0, w: 0}
|
|
164
|
+
customData:
|
|
165
|
+
outline: []
|
|
166
|
+
physicsShape: []
|
|
167
|
+
tessellationDetail: -1
|
|
168
|
+
bones: []
|
|
169
|
+
spriteID: 16e952ebb86f3cd50800000000000000
|
|
170
|
+
internalID: 6756514946036899425
|
|
171
|
+
vertices: []
|
|
172
|
+
indices:
|
|
173
|
+
edges: []
|
|
174
|
+
weights: []
|
|
175
|
+
outline: []
|
|
176
|
+
customData:
|
|
177
|
+
physicsShape: []
|
|
178
|
+
bones: []
|
|
179
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
180
|
+
internalID: 0
|
|
181
|
+
vertices: []
|
|
182
|
+
indices:
|
|
183
|
+
edges: []
|
|
184
|
+
weights: []
|
|
185
|
+
secondaryTextures: []
|
|
186
|
+
spriteCustomMetadata:
|
|
187
|
+
entries: []
|
|
188
|
+
nameFileIdTable:
|
|
189
|
+
fi_14618378_0: 4664437346796438651
|
|
190
|
+
fi_14618378_1: 6756514946036899425
|
|
191
|
+
mipmapLimitGroupName:
|
|
192
|
+
pSDRemoveMatte: 0
|
|
193
|
+
userData:
|
|
194
|
+
assetBundleName:
|
|
195
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 61135c9058b858e45b9fab81b52d9302
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: 6168737785598421730
|
|
7
|
+
second: Ellipse 3_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: 2048
|
|
76
|
+
resizeAlgorithm: 0
|
|
77
|
+
textureFormat: -1
|
|
78
|
+
textureCompression: 1
|
|
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: Ellipse 3_0
|
|
130
|
+
rect:
|
|
131
|
+
serializedVersion: 2
|
|
132
|
+
x: 0
|
|
133
|
+
y: 0
|
|
134
|
+
width: 22
|
|
135
|
+
height: 17
|
|
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: 2eaaf172552cb9550800000000000000
|
|
145
|
+
internalID: 6168737785598421730
|
|
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
|
+
Ellipse 3_0: 6168737785598421730
|
|
165
|
+
mipmapLimitGroupName:
|
|
166
|
+
pSDRemoveMatte: 0
|
|
167
|
+
userData:
|
|
168
|
+
assetBundleName:
|
|
169
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 29951aea5a2cea64b877c89eeaae63b8
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable:
|
|
5
|
+
- first:
|
|
6
|
+
213: -3607139425862387614
|
|
7
|
+
second: Health Bar - Green 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: 256
|
|
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: Health Bar - Green Fill_0
|
|
130
|
+
rect:
|
|
131
|
+
serializedVersion: 2
|
|
132
|
+
x: 0
|
|
133
|
+
y: 0
|
|
134
|
+
width: 416
|
|
135
|
+
height: 64
|
|
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: 2687a2abdcdd0fdc0800000000000000
|
|
145
|
+
internalID: -3607139425862387614
|
|
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
|
+
Health Bar - Green Fill_0: -3607139425862387614
|
|
165
|
+
mipmapLimitGroupName:
|
|
166
|
+
pSDRemoveMatte: 0
|
|
167
|
+
userData:
|
|
168
|
+
assetBundleName:
|
|
169
|
+
assetBundleVariant:
|
|
Binary file
|