레스토랑 수정 및 호감도 맵 추가

This commit is contained in:
NTG_Lenovo 2025-02-27 16:21:34 +09:00
parent e9fcb22a92
commit 3e30a5ac03
20 changed files with 6084 additions and 92 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,6 +6,7 @@ using DDD.Uis;
using Sirenix.OdinInspector; using Sirenix.OdinInspector;
using Spine.Unity; using Spine.Unity;
using UnityEngine; using UnityEngine;
using UnityEngine.Serialization;
namespace DDD.Players.Tycoons namespace DDD.Players.Tycoons
{ {
@ -74,7 +75,10 @@ namespace DDD.Players.Tycoons
private Transform _restaurantSpawnLocation; private Transform _restaurantSpawnLocation;
[SerializeField] [SerializeField]
private Transform _favorabilitySpawnLocation; private Transform _favorabilitySpawnLocation01;
[SerializeField]
private Transform _favorabilitySpawnLocation02;
public Material MaterialInstance { get; protected set; } public Material MaterialInstance { get; protected set; }
@ -124,7 +128,8 @@ namespace DDD.Players.Tycoons
EventManager.OnPickupMealKit += PickupCook; EventManager.OnPickupMealKit += PickupCook;
EventManager.OnServedCookToCustomer += ServedCook; EventManager.OnServedCookToCustomer += ServedCook;
EventManager.OnMoveRestaurant += MoveRestaurant; EventManager.OnMoveRestaurant += MoveRestaurant;
EventManager.OnMoveFavorability += MoveFavorability; EventManager.OnMoveFavorability01 += MoveFavorability01;
EventManager.OnMoveFavorability02 += MoveFavorability02;
TycoonMovement.OnSucceedDash += DashSucceed; TycoonMovement.OnSucceedDash += DashSucceed;
@ -161,7 +166,8 @@ namespace DDD.Players.Tycoons
EventManager.OnPickupMealKit -= PickupCook; EventManager.OnPickupMealKit -= PickupCook;
EventManager.OnServedCookToCustomer -= ServedCook; EventManager.OnServedCookToCustomer -= ServedCook;
EventManager.OnMoveRestaurant -= MoveRestaurant; EventManager.OnMoveRestaurant -= MoveRestaurant;
EventManager.OnMoveFavorability -= MoveFavorability; EventManager.OnMoveFavorability01 -= MoveFavorability01;
EventManager.OnMoveFavorability02 -= MoveFavorability02;
TycoonMovement.OnSucceedDash -= DashSucceed; TycoonMovement.OnSucceedDash -= DashSucceed;
} }
@ -289,10 +295,16 @@ namespace DDD.Players.Tycoons
Teleport(_restaurantSpawnLocation.position); Teleport(_restaurantSpawnLocation.position);
} }
public void MoveFavorability() public void MoveFavorability01()
{ {
VisualLook.rotation = Quaternion.Euler(new Vector3(0f, 0f, 0f)); VisualLook.rotation = Quaternion.Euler(new Vector3(0f, 0f, 0f));
Teleport(_favorabilitySpawnLocation.position); Teleport(_favorabilitySpawnLocation01.position);
}
public void MoveFavorability02()
{
VisualLook.rotation = Quaternion.Euler(new Vector3(0f, 0f, 0f));
Teleport(_favorabilitySpawnLocation02.position);
} }
#endregion #endregion

View File

@ -10,7 +10,8 @@ namespace DDD
public enum TycoonCameraType public enum TycoonCameraType
{ {
Base = 0, Base = 0,
Favorability Favorability01 = 1,
Favorability02 = 2
} }
public class TycoonCameraManager : Singleton<TycoonCameraManager> public class TycoonCameraManager : Singleton<TycoonCameraManager>
@ -35,7 +36,10 @@ namespace DDD
public CinemachineCamera BaseCamera { get; private set; } public CinemachineCamera BaseCamera { get; private set; }
[field: SerializeField] [field: SerializeField]
public CinemachineCamera FavorabilityCamera { get; private set; } public CinemachineCamera FavorabilityCamera01 { get; private set; }
[field: SerializeField]
public CinemachineCamera FavorabilityCamera02 { get; private set; }
[SerializeField] [SerializeField]
private Transform _confinerCollider; private Transform _confinerCollider;
@ -91,7 +95,8 @@ namespace DDD
private void Start() private void Start()
{ {
EventManager.OnMoveRestaurant += MoveRestaurant; EventManager.OnMoveRestaurant += MoveRestaurant;
EventManager.OnMoveFavorability += MoveFavorability; EventManager.OnMoveFavorability01 += MoveFavorability01;
EventManager.OnMoveFavorability02 += MoveFavorability02;
_zoomInAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.ZoomIn); _zoomInAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.ZoomIn);
_zoomOutAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.ZoomOut); _zoomOutAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.ZoomOut);
@ -127,7 +132,8 @@ namespace DDD
private void OnDestroy() private void OnDestroy()
{ {
EventManager.OnMoveRestaurant -= MoveRestaurant; EventManager.OnMoveRestaurant -= MoveRestaurant;
EventManager.OnMoveFavorability -= MoveFavorability; EventManager.OnMoveFavorability01 -= MoveFavorability01;
EventManager.OnMoveFavorability02 -= MoveFavorability02;
_zoomInAction.performed -= OnZoomChanged; _zoomInAction.performed -= OnZoomChanged;
_zoomOutAction.performed -= OnZoomChanged; _zoomOutAction.performed -= OnZoomChanged;
@ -152,7 +158,8 @@ namespace DDD
_baseCameraComposer = BaseCamera.GetComponent<CinemachinePositionComposer>(); _baseCameraComposer = BaseCamera.GetComponent<CinemachinePositionComposer>();
_cinemachineCameras.Add(BaseCamera); _cinemachineCameras.Add(BaseCamera);
_cinemachineCameras.Add(FavorabilityCamera); _cinemachineCameras.Add(FavorabilityCamera01);
_cinemachineCameras.Add(FavorabilityCamera02);
SetMainCamera(TycoonCameraType.Base); SetMainCamera(TycoonCameraType.Base);
} }
@ -172,7 +179,8 @@ namespace DDD
var newMainCamera = tycoonCameraType switch var newMainCamera = tycoonCameraType switch
{ {
TycoonCameraType.Base => BaseCamera, TycoonCameraType.Base => BaseCamera,
TycoonCameraType.Favorability => FavorabilityCamera, TycoonCameraType.Favorability01 => FavorabilityCamera01,
TycoonCameraType.Favorability02 => FavorabilityCamera02,
_ => throw new ArgumentOutOfRangeException(nameof(tycoonCameraType), tycoonCameraType, null) _ => throw new ArgumentOutOfRangeException(nameof(tycoonCameraType), tycoonCameraType, null)
}; };
@ -216,10 +224,16 @@ namespace DDD
SetMainCamera(TycoonCameraType.Base); SetMainCamera(TycoonCameraType.Base);
} }
public void MoveFavorability() public void MoveFavorability01()
{ {
_cinemachineBrain.DefaultBlend = new CinemachineBlendDefinition(CinemachineBlendDefinition.Styles.Cut, 0f); _cinemachineBrain.DefaultBlend = new CinemachineBlendDefinition(CinemachineBlendDefinition.Styles.Cut, 0f);
SetMainCamera(TycoonCameraType.Favorability); SetMainCamera(TycoonCameraType.Favorability01);
}
public void MoveFavorability02()
{
_cinemachineBrain.DefaultBlend = new CinemachineBlendDefinition(CinemachineBlendDefinition.Styles.Cut, 0f);
SetMainCamera(TycoonCameraType.Favorability02);
} }
#endregion #endregion

View File

@ -25,9 +25,14 @@ public class DevelopmentUi : MonoBehaviour
EventManager.InvokeMoveRestaurant(); EventManager.InvokeMoveRestaurant();
} }
public void MoveFavorability() public void MoveFavorability01()
{ {
EventManager.InvokeMoveFavorability(); EventManager.InvokeMoveFavorability01();
}
public void MoveFavorability02()
{
EventManager.InvokeMoveFavorability02();
} }
public void CreateServer() public void CreateServer()

View File

@ -28,10 +28,16 @@ public static class EventManager
OnMoveRestaurant?.Invoke(); OnMoveRestaurant?.Invoke();
} }
public static Action OnMoveFavorability; public static Action OnMoveFavorability01;
public static void InvokeMoveFavorability() public static void InvokeMoveFavorability01()
{ {
OnMoveFavorability?.Invoke(); OnMoveFavorability01?.Invoke();
}
public static Action OnMoveFavorability02;
public static void InvokeMoveFavorability02()
{
OnMoveFavorability02?.Invoke();
} }
public static Action OnChangedDisplay; public static Action OnChangedDisplay;

View File

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -46,7 +46,7 @@ TextureImporter:
spriteMode: 1 spriteMode: 1
spriteExtrude: 1 spriteExtrude: 1
spriteMeshType: 1 spriteMeshType: 1
alignment: 0 alignment: 7
spritePivot: {x: 0.5, y: 0.5} spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 512 spritePixelsToUnits: 512
spriteBorder: {x: 0, y: 0, z: 0, w: 0} spriteBorder: {x: 0, y: 0, z: 0, w: 0}

View File

@ -0,0 +1,87 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1001 &129321299893172345
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 655b549abbb84c2409890662d705a0c5, type: 3}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: 'm_Materials.Array.data[0]'
value:
objectReference: {fileID: 2100000, guid: 4c1b114fe5106bd4787ed86b5628170c, type: 2}
- target: {fileID: 3764902268943045601, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Name
value: Box01
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Size.y
value: 0.4
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Size.z
value: 0.1
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Enabled
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Center.y
value: 0.2
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Center.z
value: 0.05
objectReference: {fileID: 0}
- target: {fileID: 8884531212319162473, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 9047629830516719732, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 655b549abbb84c2409890662d705a0c5, type: 3}
- target: {fileID: 9047629830516719732, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned
value: 1
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}

View File

@ -1,7 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 25d4f771628ec0047988c07656f78300 guid: 3690bae3972b7c24487cae534bc8055c
folderAsset: yes PrefabImporter:
DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
assetBundleName: assetBundleName:

View File

@ -0,0 +1,83 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1001 &129321299893172345
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 696bf3142b2f2ab40a694fad42e4d5bc, type: 3}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: 'm_Materials.Array.data[0]'
value:
objectReference: {fileID: 2100000, guid: 4c1b114fe5106bd4787ed86b5628170c, type: 2}
- target: {fileID: 3764902268943045601, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Name
value: Cabinet03
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalScale.x
value: 2.5
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalScale.y
value: 2.5
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalScale.z
value: 2.5
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Enabled
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8884531212319162473, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 9047629830516719732, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 696bf3142b2f2ab40a694fad42e4d5bc, type: 3}
- target: {fileID: 9047629830516719732, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned
value: 1
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 16e0db4821205224697cb3164ce50a2b
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -8,10 +8,18 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 0} m_TransformParent: {fileID: 0}
m_Modifications: m_Modifications:
- target: {fileID: 833125971660403034, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_SortingOrder
value: 4
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3} - target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite propertyPath: m_Sprite
value: value:
objectReference: {fileID: 21300000, guid: 6dd5fb245b018f0409f54119bdbb6d99, type: 3} objectReference: {fileID: 21300000, guid: 6dd5fb245b018f0409f54119bdbb6d99, type: 3}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_SortingOrder
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3} - target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned propertyPath: m_WasSpriteAssigned
value: 1 value: 1

View File

@ -8,6 +8,10 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 0} m_TransformParent: {fileID: 0}
m_Modifications: m_Modifications:
- target: {fileID: 833125971660403034, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_SortingOrder
value: 4
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3} - target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite propertyPath: m_Sprite
value: value:

View File

@ -0,0 +1,75 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1001 &129321299893172345
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 833125971660403034, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_SortingOrder
value: 4
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 44cd3e9972db77842b1cc8fa3b2cce96, type: 3}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3580758810857167321, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: 'm_Materials.Array.data[0]'
value:
objectReference: {fileID: 2100000, guid: 4c1b114fe5106bd4787ed86b5628170c, type: 2}
- target: {fileID: 3764902268943045601, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Name
value: Frame03
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7438534416270888028, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7986070582027999988, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8465497525880288504, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Enabled
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8884531212319162473, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 9047629830516719732, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 44cd3e9972db77842b1cc8fa3b2cce96, type: 3}
- target: {fileID: 9047629830516719732, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}
propertyPath: m_WasSpriteAssigned
value: 1
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 06b1e69255a5cf549a66772b84f05858, type: 3}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 88fb7d39cab322744ab8c88516125122
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long