This commit is contained in:
NTG_Lenovo 2024-12-03 18:38:19 +09:00
parent a131e6cc67
commit c109087040
14 changed files with 1643 additions and 577 deletions

File diff suppressed because it is too large Load Diff

View File

@ -18,12 +18,6 @@ namespace BlueWater
{
OnChangedDisplay?.Invoke();
}
public static Action OnInitializedScene;
public static void InvokeInitializedScene()
{
OnInitializedScene?.Invoke();
}
// Ui
public static Action<float, float, Color?, float> OnFadeInOut;

View File

@ -35,6 +35,8 @@ namespace BlueWater
[SerializeField]
private float _loadingWaitTime = 2f;
public bool IsLoading { get; private set; }
private Tween _fadeIn;
private Tween _fadeOut;
@ -68,6 +70,8 @@ namespace BlueWater
public async void LoadScene(string sceneName)
{
IsLoading = true;
_fadeIn.Restart();
await _fadeIn.AsyncWaitForCompletion();
@ -97,11 +101,8 @@ namespace BlueWater
PopupUiController.ClearPopup();
VisualFeedbackManager.Instance.ResetTimeScale();
if (sceneName == SceneName.Tycoon)
{
EventManager.InvokeInitializedScene();
}
IsLoading = false;
}
}
}

View File

@ -39,14 +39,9 @@ public class TycoonCharacter : MonoBehaviour
Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
spineEye.RootMotionBone.WorldX = mousePosition.x;
spineEye.RootMotionBone.WorldY = mousePosition.y;
Debug.Log(mousePosition);
spineEye.RootMotionBone.UpdateWorldTransform();
// 스켈레톤을 다시 업데이트
}
}
void UpdateTargetPosition()

View File

@ -110,19 +110,10 @@ namespace BlueWater.Titles
{
_lobbyButton?.onClick.AddListener(() => SceneController.Instance?.LoadScene(SceneName.TycoonTile));
}
if (_interactionEAction != null)
{
_interactionEAction.performed -= OnInteractionE;
}
if (_openAction != null)
{
_openAction.performed -= OnOpen;
}
if (_closeAction != null)
{
_closeAction.performed -= OnClose;
}
_interactionEAction = null;
_openAction = null;
_closeAction = null;
}
public void OnOpen(InputAction.CallbackContext context)

View File

@ -1,11 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using BlueWater.Audios;
using BlueWater.Tycoons;
using UnityEngine;
using Sirenix.OdinInspector;
using TMPro;
using UnityEngine.EventSystems;
using UnityEngine.InputSystem;
using UnityEngine.UI;
using Random = UnityEngine.Random;
@ -28,20 +27,23 @@ namespace BlueWater.Uis
[SerializeField]
private string _openSfxName = "RareRewardBox";
[SerializeField]
private Button allOpenCardButton;
[SerializeField]
private Button closeButton;
private List<TycoonCard> _tycoonCards = new(5);
private int viewCardCount = 0;
private LevelData _currentLevelData;
private TycoonManager _tycoonManager;
private TycoonCardController _tycoonCardController;
[SerializeField]
private Button allOpenCardButton;
[SerializeField]
private Button closeButton;
private InputAction _interactionEAction;
private void Start()
{
_interactionEAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.InteractionE);
_panel.SetActive(false);
_tycoonManager = TycoonManager.Instance;
@ -53,6 +55,8 @@ namespace BlueWater.Uis
private void OnDestroy()
{
EventManager.OnOpenedRareRewardBox -= CreateCard;
_interactionEAction = null;
}
public override void Open()
@ -66,6 +70,7 @@ namespace BlueWater.Uis
allOpenCardButton.gameObject.SetActive(true);
closeButton.gameObject.SetActive(false);
EventSystem.current.SetSelectedGameObject(allOpenCardButton.gameObject);
}
public override void Close()
@ -76,8 +81,18 @@ namespace BlueWater.Uis
IsOpened = false;
VisualFeedbackManager.Instance.ResetTimeScale();
}
public override void EnableInput()
{
_interactionEAction.performed += OnInteractionE;
}
public override void DisableInput()
{
_interactionEAction.performed -= OnInteractionE;
}
[Button("레어 상자 열기")]
private void CreateCard()
{
@ -144,6 +159,7 @@ namespace BlueWater.Uis
allOpenCardButton.gameObject.SetActive(false);
closeButton.gameObject.SetActive(true);
EventSystem.current.SetSelectedGameObject(closeButton.gameObject);
}
[Button("카드 모두 열기")]
@ -158,6 +174,16 @@ namespace BlueWater.Uis
}
allOpenCardButton.gameObject.SetActive(false);
closeButton.gameObject.SetActive(true);
EventSystem.current.SetSelectedGameObject(closeButton.gameObject);
}
public void OnInteractionE(InputAction.CallbackContext context)
{
var current = EventSystem.current.currentSelectedGameObject;
if (!current) return;
var currenButton = current.GetComponent<Button>();
currenButton?.onClick?.Invoke();
}
}
}

View File

@ -46,10 +46,6 @@ namespace BlueWater.Uis
private void Awake()
{
InitializeComponents();
}
private void Start()
{
EventManager.OnTycoonGameStarted += TycoonOpenUi;
}

View File

@ -1,5 +1,6 @@
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
using BlueWater.Audios;
using BlueWater.Tycoons;
using BlueWater.Utility;
@ -68,12 +69,7 @@ namespace BlueWater.Uis
}
}
private void Awake()
{
EventManager.OnInitializedScene += CreateCard;
}
private void Start()
private async void Start()
{
_panel.SetActive(false);
@ -91,13 +87,25 @@ namespace BlueWater.Uis
.SetUpdate(true)
.SetAutoKill(false)
.Pause();
while (SceneController.Instance.IsLoading)
{
await Task.Delay(100);
}
if (ES3.Load(SaveData.CompleteFirstGame, false))
{
CreateCard();
}
else
{
EventManager.InvokeTycoonGameStarted();
}
}
private void OnDestroy()
{
_failedPurchaseSequence.Kill();
EventManager.OnInitializedScene -= CreateCard;
}
public override void Open()
@ -123,12 +131,6 @@ namespace BlueWater.Uis
private void CreateCard()
{
if (!Application.isPlaying) return;
if (!ES3.Load(SaveData.CompleteFirstGame, false))
{
EventManager.InvokeTycoonGameStarted();
return;
}
Utils.StartUniqueCoroutine(this, ref _changeGoldInstance, AnimateGoldChange());

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 MiB

View File

@ -0,0 +1,646 @@
fileFormatVersion: 2
guid: b11ff3cf4cd558e45ba44a568cbec05e
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: CardUpgradeSprite_0
rect:
serializedVersion: 2
x: 0
y: 4320
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c8db6cc448f395643ac2b83466a17756
internalID: -514270279
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_1
rect:
serializedVersion: 2
x: 1920
y: 4320
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9787d63091ad4a6418a173fa98081aa0
internalID: 2029891232
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_2
rect:
serializedVersion: 2
x: 3840
y: 4320
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8dd8479a95cab4f448b9d4e25d4d191b
internalID: -412110272
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_3
rect:
serializedVersion: 2
x: 5760
y: 4320
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e7ba6c117d412b140982d43166d9a680
internalID: -1542280465
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_4
rect:
serializedVersion: 2
x: 7680
y: 4320
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c6bfaca0ca8c9b04d851619ff88d8df9
internalID: -2081813130
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_5
rect:
serializedVersion: 2
x: 0
y: 3240
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1f8510966f1233544bd4d8de27045142
internalID: 1792130637
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_6
rect:
serializedVersion: 2
x: 1920
y: 3240
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 986bf4e2201699e4cb87e1d73f605f47
internalID: -1812076872
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_7
rect:
serializedVersion: 2
x: 3840
y: 3240
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6853eb4d083ed4f42a0d3b43fb5b08b0
internalID: 886722811
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_8
rect:
serializedVersion: 2
x: 5760
y: 3240
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2450fea27bf21cf4d960c8b473ebd0d9
internalID: 1413906995
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_9
rect:
serializedVersion: 2
x: 7680
y: 3240
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 417745c63d348304d9a89c1501c6f32f
internalID: 1247144302
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_10
rect:
serializedVersion: 2
x: 0
y: 2160
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: dde5e6b0ff4556d4a866a3d1163024cc
internalID: 1877791573
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_11
rect:
serializedVersion: 2
x: 1920
y: 2160
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 76a8ca4bab6a5c54cb3ead4b211be4e7
internalID: -1962258449
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_12
rect:
serializedVersion: 2
x: 3840
y: 2160
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 558db8a4502c4f4438e820402e11ec19
internalID: 301147385
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_13
rect:
serializedVersion: 2
x: 5760
y: 2160
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a78dff3d8d7999c4e8ab40a34ffaa880
internalID: -401079672
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_14
rect:
serializedVersion: 2
x: 7680
y: 2160
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 90811b8a4f4a857489825d1f1ed6bf42
internalID: 1932084080
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_15
rect:
serializedVersion: 2
x: 0
y: 1080
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1b11dd63ba5dea748a62019472c61126
internalID: 382302681
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_16
rect:
serializedVersion: 2
x: 1920
y: 1080
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e5952c03768fdc34da57bd4640c60897
internalID: 1256381956
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_17
rect:
serializedVersion: 2
x: 3840
y: 1080
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2e175636accf8a944ba84cd4965c9362
internalID: 701231901
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_18
rect:
serializedVersion: 2
x: 5760
y: 1080
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 353ba31ff0765ed4b9dac1b0e0ead10e
internalID: -447176599
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_19
rect:
serializedVersion: 2
x: 7680
y: 1080
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: ca294a6561731e74f9cdcc4b8aa8ff87
internalID: -2135924175
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_20
rect:
serializedVersion: 2
x: 0
y: 0
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9af59f36ce68b204dadeb421c2678b62
internalID: 2045533380
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_21
rect:
serializedVersion: 2
x: 1920
y: 0
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9f49805404493984381025bc56512ba4
internalID: 972430047
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: CardUpgradeSprite_22
rect:
serializedVersion: 2
x: 3840
y: 0
width: 1920
height: 1080
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: ef8d29f3a3801de40b9295e66c787d89
internalID: -1139900630
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: fb094edc058ff814381b15b73d5dee90
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
CardUpgradeSprite_0: -514270279
CardUpgradeSprite_1: 2029891232
CardUpgradeSprite_10: 1877791573
CardUpgradeSprite_11: -1962258449
CardUpgradeSprite_12: 301147385
CardUpgradeSprite_13: -401079672
CardUpgradeSprite_14: 1932084080
CardUpgradeSprite_15: 382302681
CardUpgradeSprite_16: 1256381956
CardUpgradeSprite_17: 701231901
CardUpgradeSprite_18: -447176599
CardUpgradeSprite_19: -2135924175
CardUpgradeSprite_2: -412110272
CardUpgradeSprite_20: 2045533380
CardUpgradeSprite_21: 972430047
CardUpgradeSprite_22: -1139900630
CardUpgradeSprite_3: -1542280465
CardUpgradeSprite_4: -2081813130
CardUpgradeSprite_5: 1792130637
CardUpgradeSprite_6: -1812076872
CardUpgradeSprite_7: 886722811
CardUpgradeSprite_8: 1413906995
CardUpgradeSprite_9: 1247144302
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: ea9a47744b51f7b46958a79a03d0cca6
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 1024
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -55,7 +55,7 @@ AnimationClip:
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0

View File

@ -64,7 +64,7 @@ AnimationClip:
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0