감상 모드
This commit is contained in:
parent
8bdb4d91bc
commit
f447ed7986
|
|
@ -479,7 +479,7 @@ MonoBehaviour:
|
|||
m_Calls:
|
||||
- m_Target: {fileID: 1075369012538214660}
|
||||
m_TargetAssemblyTypeName: HuntingSlot, Assembly-CSharp
|
||||
m_MethodName: ClickAIImage
|
||||
m_MethodName: OnClick_Slot
|
||||
m_Mode: 6
|
||||
m_Arguments:
|
||||
m_ObjectArgument: {fileID: 0}
|
||||
|
|
@ -754,7 +754,7 @@ MonoBehaviour:
|
|||
m_Calls:
|
||||
- m_Target: {fileID: 1075369012538214660}
|
||||
m_TargetAssemblyTypeName: HuntingSlot, Assembly-CSharp
|
||||
m_MethodName: ClickAIImage
|
||||
m_MethodName: OnClick_Slot
|
||||
m_Mode: 6
|
||||
m_Arguments:
|
||||
m_ObjectArgument: {fileID: 0}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,41 @@
|
|||
using UnityEngine;
|
||||
|
||||
[RequireComponent(typeof(SpriteRenderer))]
|
||||
[ExecuteInEditMode]
|
||||
public class BackgroundFitter : MonoBehaviour
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
public bool SetFit = false;
|
||||
|
||||
private void Update()
|
||||
{
|
||||
if (SetFit)
|
||||
{
|
||||
SetFit = false;
|
||||
Awake();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void Awake()
|
||||
{
|
||||
SpriteRenderer sr = GetComponent<SpriteRenderer>();
|
||||
if (sr.sprite == null) return;
|
||||
|
||||
// 스프라이트의 원래 크기(픽셀 단위)
|
||||
float spriteWidth = sr.sprite.bounds.size.x;
|
||||
float spriteHeight = sr.sprite.bounds.size.y;
|
||||
|
||||
// 카메라
|
||||
Camera cam = Camera.main;
|
||||
float worldScreenHeight = cam.orthographicSize * 2f; // 세로 크기(월드 단위)
|
||||
float worldScreenWidth = worldScreenHeight * cam.aspect; // 가로 크기(월드 단위)
|
||||
|
||||
// 배경 스케일 계산
|
||||
transform.localScale = new Vector3(
|
||||
worldScreenWidth / spriteWidth,
|
||||
worldScreenHeight / spriteHeight,
|
||||
1f
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 3162804ef6f3a534e9d4c54069f8c48a
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
using UnityEngine;
|
||||
|
||||
public class CameraDragMove : MonoBehaviour
|
||||
{
|
||||
public Camera cam; // 이동시킬 카메라
|
||||
public SpriteRenderer targetSprite; // 영역 기준이 되는 스프라이트
|
||||
public GameObject go_btnbg;
|
||||
public float dragSpeed = 1f;
|
||||
|
||||
private Vector3 lastTouchPos;
|
||||
private Vector3 pressPos; // 입력 시작 지점
|
||||
private bool isDragging = false;
|
||||
|
||||
void Reset()
|
||||
{
|
||||
cam = Camera.main;
|
||||
}
|
||||
|
||||
void Update()
|
||||
{
|
||||
#if UNITY_EDITOR || UNITY_STANDALONE
|
||||
HandleMouseInput(); // 에디터/PC
|
||||
#else
|
||||
HandleTouchInput(); // 모바일
|
||||
#endif
|
||||
}
|
||||
|
||||
void HandleMouseInput()
|
||||
{
|
||||
if (Input.GetMouseButtonDown(0))
|
||||
{
|
||||
pressPos = Input.mousePosition;
|
||||
lastTouchPos = Input.mousePosition;
|
||||
isDragging = false;
|
||||
}
|
||||
else if (Input.GetMouseButton(0))
|
||||
{
|
||||
Vector3 deltaScreen = Input.mousePosition - pressPos;
|
||||
|
||||
isDragging = true;
|
||||
|
||||
if (isDragging)
|
||||
{
|
||||
Vector3 deltaWorld = cam.ScreenToWorldPoint(Input.mousePosition) - cam.ScreenToWorldPoint(lastTouchPos);
|
||||
deltaWorld.z = 0f;
|
||||
|
||||
cam.transform.position -= deltaWorld * dragSpeed;
|
||||
ClampCameraPosition();
|
||||
|
||||
lastTouchPos = Input.mousePosition;
|
||||
}
|
||||
}
|
||||
else if (Input.GetMouseButtonUp(0))
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
void HandleTouchInput()
|
||||
{
|
||||
if (Input.touchCount == 1)
|
||||
{
|
||||
Touch touch = Input.GetTouch(0);
|
||||
|
||||
switch (touch.phase)
|
||||
{
|
||||
case TouchPhase.Began:
|
||||
pressPos = touch.position;
|
||||
lastTouchPos = touch.position;
|
||||
isDragging = false;
|
||||
break;
|
||||
|
||||
case TouchPhase.Moved:
|
||||
Vector3 deltaScreen = (Vector3)touch.position - pressPos;
|
||||
|
||||
isDragging = true;
|
||||
|
||||
if (isDragging)
|
||||
{
|
||||
Vector3 deltaWorld = cam.ScreenToWorldPoint(touch.position) - cam.ScreenToWorldPoint(lastTouchPos);
|
||||
deltaWorld.z = 0f;
|
||||
|
||||
cam.transform.position -= deltaWorld * dragSpeed;
|
||||
ClampCameraPosition();
|
||||
|
||||
lastTouchPos = touch.position;
|
||||
}
|
||||
break;
|
||||
|
||||
case TouchPhase.Ended:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ClampCameraPosition()
|
||||
{
|
||||
if (targetSprite == null) return;
|
||||
|
||||
Bounds spriteBounds = targetSprite.bounds;
|
||||
float camHeight = cam.orthographicSize * 2f;
|
||||
float camWidth = camHeight * cam.aspect;
|
||||
|
||||
float minX = spriteBounds.min.x + camWidth / 2f;
|
||||
float maxX = spriteBounds.max.x - camWidth / 2f;
|
||||
float minY = spriteBounds.min.y + camHeight / 2f;
|
||||
float maxY = spriteBounds.max.y - camHeight / 2f;
|
||||
|
||||
Vector3 pos = cam.transform.position;
|
||||
pos.x = Mathf.Clamp(pos.x, minX, maxX);
|
||||
pos.y = Mathf.Clamp(pos.y, minY, maxY);
|
||||
cam.transform.position = pos;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
fileFormatVersion: 2
|
||||
guid: db478bbe5ace88542969013b0399df6a
|
||||
|
|
@ -0,0 +1,159 @@
|
|||
using UnityEngine;
|
||||
using UnityEngine.Events;
|
||||
|
||||
public class TouchToCloseOrDragCamera : MonoBehaviour
|
||||
{
|
||||
[Header("Targets")]
|
||||
public Camera cam;
|
||||
public Transform orbitTarget; // 기준점(없으면 월드원점)
|
||||
|
||||
[Header("Tap Settings")]
|
||||
public float tapMaxTime = 0.25f; // 이 시간 이내면 탭
|
||||
public float tapMaxMovePixels = 10f; // 이 픽셀 이내면 탭
|
||||
|
||||
[Header("Orbit Settings")]
|
||||
public float orbitSpeedX = 0.2f; // 좌우 회전 감도
|
||||
public float orbitSpeedY = 0.2f; // 상하 회전 감도
|
||||
public float minPitch = -80f;
|
||||
public float maxPitch = 80f;
|
||||
public float distance = 6f; // 타깃까지 거리
|
||||
|
||||
[Header("On Tap Action")]
|
||||
public UnityEvent OnSingleTap; // 탭 시 실행. 기본으로 현재 화면 비활성화하도록 세팅
|
||||
|
||||
// 내부 상태
|
||||
int activePointerId = -1;
|
||||
Vector2 downPos;
|
||||
float downTime;
|
||||
bool dragging;
|
||||
float yaw, pitch;
|
||||
|
||||
void Reset()
|
||||
{
|
||||
cam = Camera.main;
|
||||
}
|
||||
|
||||
void Awake()
|
||||
{
|
||||
if (cam == null) cam = Camera.main;
|
||||
if (orbitTarget == null) { var t = new GameObject("OrbitTarget").transform; t.position = Vector3.zero; orbitTarget = t; }
|
||||
// 기본 탭 동작: 이 스크립트가 달린 루트 오브젝트 비활성화(화면 종료 역할)
|
||||
if (OnSingleTap == null) OnSingleTap = new UnityEvent();
|
||||
if (OnSingleTap.GetPersistentEventCount() == 0)
|
||||
OnSingleTap.AddListener(() => gameObject.SetActive(false));
|
||||
|
||||
// 초기 카메라 각도 계산
|
||||
var toCam = (cam.transform.position - orbitTarget.position).normalized;
|
||||
yaw = Mathf.Atan2(toCam.x, toCam.z) * Mathf.Rad2Deg;
|
||||
pitch = Mathf.Asin(toCam.y) * Mathf.Rad2Deg;
|
||||
}
|
||||
|
||||
void Update()
|
||||
{
|
||||
#if UNITY_EDITOR || UNITY_STANDALONE
|
||||
HandleMouse();
|
||||
#else
|
||||
HandleTouch();
|
||||
#endif
|
||||
// 오빗 카메라 적용
|
||||
ApplyOrbit();
|
||||
}
|
||||
|
||||
void HandleMouse()
|
||||
{
|
||||
if (Input.GetMouseButtonDown(0))
|
||||
{
|
||||
activePointerId = 0;
|
||||
downPos = Input.mousePosition;
|
||||
downTime = Time.unscaledTime;
|
||||
dragging = false;
|
||||
}
|
||||
else if (Input.GetMouseButton(0) && activePointerId == 0)
|
||||
{
|
||||
Vector2 cur = Input.mousePosition;
|
||||
if (!dragging && Vector2.Distance(cur, downPos) > tapMaxMovePixels) dragging = true;
|
||||
if (dragging)
|
||||
{
|
||||
Vector2 delta = (Vector2)Input.mousePosition - downPos;
|
||||
OrbitByDelta(delta);
|
||||
downPos = cur; // 연속 드래그
|
||||
}
|
||||
}
|
||||
else if (Input.GetMouseButtonUp(0) && activePointerId == 0)
|
||||
{
|
||||
Vector2 upPos = Input.mousePosition;
|
||||
float dt = Time.unscaledTime - downTime;
|
||||
float dist = Vector2.Distance(upPos, downPos);
|
||||
|
||||
if (!dragging && dt <= tapMaxTime && dist <= tapMaxMovePixels)
|
||||
{
|
||||
// 단일 탭
|
||||
OnSingleTap?.Invoke();
|
||||
}
|
||||
activePointerId = -1;
|
||||
dragging = false;
|
||||
}
|
||||
}
|
||||
|
||||
void HandleTouch()
|
||||
{
|
||||
if (Input.touchCount == 0) return;
|
||||
|
||||
// 이미 추적 중인 손가락이 있으면 그걸 우선
|
||||
int idx = -1;
|
||||
if (activePointerId != -1)
|
||||
{
|
||||
for (int i = 0; i < Input.touchCount; i++)
|
||||
if (Input.touches[i].fingerId == activePointerId) { idx = i; break; }
|
||||
}
|
||||
|
||||
// 없으면 첫 터치로 시작
|
||||
if (idx == -1) { var t0 = Input.touches[0]; idx = 0; activePointerId = t0.fingerId; }
|
||||
|
||||
var t = Input.touches[idx];
|
||||
|
||||
switch (t.phase)
|
||||
{
|
||||
case TouchPhase.Began:
|
||||
downPos = t.position;
|
||||
downTime = Time.unscaledTime;
|
||||
dragging = false;
|
||||
break;
|
||||
|
||||
case TouchPhase.Moved:
|
||||
case TouchPhase.Stationary:
|
||||
if (!dragging && Vector2.Distance(t.position, downPos) > tapMaxMovePixels) dragging = true;
|
||||
if (dragging && t.phase == TouchPhase.Moved)
|
||||
{
|
||||
OrbitByDelta(t.deltaPosition);
|
||||
}
|
||||
break;
|
||||
|
||||
case TouchPhase.Ended:
|
||||
case TouchPhase.Canceled:
|
||||
float dt = Time.unscaledTime - downTime;
|
||||
float dist = Vector2.Distance(t.position, downPos);
|
||||
if (!dragging && dt <= tapMaxTime && dist <= tapMaxMovePixels)
|
||||
{
|
||||
OnSingleTap?.Invoke();
|
||||
}
|
||||
activePointerId = -1;
|
||||
dragging = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void OrbitByDelta(Vector2 delta)
|
||||
{
|
||||
yaw += delta.x * orbitSpeedX;
|
||||
pitch -= delta.y * orbitSpeedY;
|
||||
pitch = Mathf.Clamp(pitch, minPitch, maxPitch);
|
||||
}
|
||||
|
||||
void ApplyOrbit()
|
||||
{
|
||||
Quaternion rot = Quaternion.Euler(pitch, yaw, 0f);
|
||||
Vector3 pos = orbitTarget.position + rot * (Vector3.back * distance);
|
||||
cam.transform.SetPositionAndRotation(pos, rot);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ca08e3221e3288a4ea20fe44a6303baf
|
||||
|
|
@ -125,6 +125,8 @@ namespace CodeJay
|
|||
// 100<30><30><EFBFBD><EFBFBD><EFBFBD> 50<35><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ִ<EFBFBD>.
|
||||
public int Index, n_Group;
|
||||
|
||||
public Sprite HuntingImage, UnlockImage;
|
||||
|
||||
public int Stake;
|
||||
public int TextureIndex;
|
||||
public long ClearConditionMoney;
|
||||
|
|
@ -171,6 +173,9 @@ namespace CodeJay
|
|||
NeedKey = data.DBF_NeedKey;
|
||||
NeedHeart = data.DBF_NeedHeart;
|
||||
NeedLv = data.DBF_NeedLv;
|
||||
|
||||
HuntingImage = data.DBF_HuntingImage;
|
||||
UnlockImage = data.DBF_UnlockImage;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ public enum EEventType
|
|||
OnDiscard,
|
||||
/// <summary> [int] textureIndex [string] script </summary>
|
||||
OnClickFullView,
|
||||
ShowPanel,
|
||||
}
|
||||
|
||||
public class EventManager : MonoBehaviour
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
using BansheeGz.BGDatabase;
|
||||
using CodeJay.Classes;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
|
|
@ -7,6 +8,7 @@ public class HuntingPanel : uScrollViewMgr
|
|||
[SerializeField] private TMPro.TextMeshProUGUI TitleTMP, t_type;
|
||||
[SerializeField] private GameObject[] Buttons;
|
||||
public GameObject go_mainpaenl, go_botpanel, go_x;
|
||||
public ShowPanel m_ShowPanel;
|
||||
|
||||
private List<HuntingSlot> _lstSlots;
|
||||
private int CurAlbumType = 1;
|
||||
|
|
@ -40,6 +42,11 @@ public class HuntingPanel : uScrollViewMgr
|
|||
}
|
||||
}
|
||||
|
||||
public void ShowPanel(HuntingData data)
|
||||
{
|
||||
m_ShowPanel.Set(data);
|
||||
}
|
||||
|
||||
private void OnDestroy()
|
||||
{
|
||||
if (GameManager.Instance != null)
|
||||
|
|
|
|||
|
|
@ -205,4 +205,10 @@ public class HuntingSlot : CardBase
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void OnClick_Slot(bool left)
|
||||
{
|
||||
GameManager.Sound.PlaySFX(ESFXType.Button_Hit);
|
||||
GameObject.Find("AlbumPanel").GetComponent<HuntingPanel>().ShowPanel(left ? _data_left : _data_right);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,74 @@
|
|||
using CodeJay.Classes;
|
||||
using UnityEngine;
|
||||
|
||||
public class ShowPanel : MonoBehaviour
|
||||
{
|
||||
public Camera m_Cam;
|
||||
public SpriteRenderer i_image;
|
||||
public GameObject[] gos_off;
|
||||
public GameObject go_btns, go_fullscreenclose;
|
||||
|
||||
int zoomStep = 0;
|
||||
|
||||
public void Set(HuntingData data)
|
||||
{
|
||||
gameObject.SetActive(true);
|
||||
DSUtil.InActivateGameObjects(gos_off);
|
||||
go_btns.SetActive(true);
|
||||
go_fullscreenclose.SetActive(false);
|
||||
|
||||
i_image.sprite = data.HuntingImage;
|
||||
zoomStep = 0;
|
||||
m_Cam.orthographicSize = 4f;
|
||||
m_Cam.transform.position = new Vector3(0f, 0f, -10f);
|
||||
Set_ImageSize();
|
||||
}
|
||||
|
||||
void Set_ImageSize()
|
||||
{
|
||||
// 스프라이트의 원래 크기(픽셀 단위)
|
||||
float spriteWidth = i_image.sprite.bounds.size.x;
|
||||
float spriteHeight = i_image.sprite.bounds.size.y;
|
||||
|
||||
// 카메라
|
||||
float worldScreenHeight = m_Cam.orthographicSize * 2f; // 세로 크기(월드 단위)
|
||||
float worldScreenWidth = worldScreenHeight * m_Cam.aspect; // 가로 크기(월드 단위)
|
||||
|
||||
// 배경 스케일 계산
|
||||
i_image.transform.localScale = new Vector3(
|
||||
worldScreenWidth / spriteWidth,
|
||||
worldScreenHeight / spriteHeight,
|
||||
1f
|
||||
);
|
||||
}
|
||||
|
||||
public void OnClick_Btn(int index)
|
||||
{
|
||||
switch (index)
|
||||
{
|
||||
case 0: // 나가기
|
||||
gameObject.SetActive(false);
|
||||
DSUtil.ActivateGameObjects(gos_off);
|
||||
break;
|
||||
case 1: // 풀 스크린
|
||||
go_btns.SetActive(false);
|
||||
go_fullscreenclose.SetActive(true);
|
||||
break;
|
||||
case 2: // 확대 (2단계까지만)
|
||||
++zoomStep;
|
||||
if (zoomStep > 2) zoomStep = 2;
|
||||
m_Cam.orthographicSize = 4 - zoomStep;
|
||||
break;
|
||||
case 3: // 축소
|
||||
--zoomStep;
|
||||
if (zoomStep < 0) zoomStep = 0;
|
||||
m_Cam.orthographicSize = 4 - zoomStep;
|
||||
m_Cam.transform.position = new Vector3(0f, 0f, -10f);
|
||||
break;
|
||||
case 4: // UI 다시 보이기
|
||||
go_btns.SetActive(true);
|
||||
go_fullscreenclose.SetActive(false);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
fileFormatVersion: 2
|
||||
guid: b945701d75b34a142a818cbcbcc287bb
|
||||
|
|
@ -176675,6 +176675,66 @@ MonoBehaviour:
|
|||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 104
|
||||
m_Metrics:
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_HorizontalBearingX: 0
|
||||
m_HorizontalBearingY: 0
|
||||
m_HorizontalAdvance: 72
|
||||
m_GlyphRect:
|
||||
m_X: 0
|
||||
m_Y: 0
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 449
|
||||
m_Metrics:
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_HorizontalBearingX: 0
|
||||
m_HorizontalBearingY: 0
|
||||
m_HorizontalAdvance: 72
|
||||
m_GlyphRect:
|
||||
m_X: 0
|
||||
m_Y: 0
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 124
|
||||
m_Metrics:
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_HorizontalBearingX: 0
|
||||
m_HorizontalBearingY: 0
|
||||
m_HorizontalAdvance: 72
|
||||
m_GlyphRect:
|
||||
m_X: 0
|
||||
m_Y: 0
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 125
|
||||
m_Metrics:
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_HorizontalBearingX: 0
|
||||
m_HorizontalBearingY: 0
|
||||
m_HorizontalAdvance: 72
|
||||
m_GlyphRect:
|
||||
m_X: 0
|
||||
m_Y: 0
|
||||
m_Width: 0
|
||||
m_Height: 0
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
m_CharacterTable:
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 32
|
||||
|
|
@ -223756,6 +223816,30 @@ MonoBehaviour:
|
|||
m_Unicode: 55203
|
||||
m_GlyphIndex: 18154
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 13
|
||||
m_GlyphIndex: 1
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 10
|
||||
m_GlyphIndex: 1
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 183
|
||||
m_GlyphIndex: 104
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 12685
|
||||
m_GlyphIndex: 449
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 12300
|
||||
m_GlyphIndex: 124
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 12301
|
||||
m_GlyphIndex: 125
|
||||
m_Scale: 1
|
||||
m_AtlasTextures:
|
||||
- {fileID: 656917452037345304}
|
||||
m_AtlasTextureIndex: 0
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
|
|
@ -0,0 +1,230 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c1053e0bd85736741835357ae6f1a81a
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -4827375958727606024
|
||||
second: appreciate mode icon 1_appreciate_0
|
||||
- first:
|
||||
213: 5122904073594135224
|
||||
second: appreciate mode icon 1_appreciate_1
|
||||
- first:
|
||||
213: 4049335300709093036
|
||||
second: appreciate mode icon 1_appreciate_2
|
||||
- first:
|
||||
213: -5073064126693387305
|
||||
second: appreciate mode icon 1_appreciate_3
|
||||
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: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
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: appreciate mode icon 1_appreciate_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 90
|
||||
width: 22
|
||||
height: 23
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 8f0c7ce5427b10db0800000000000000
|
||||
internalID: -4827375958727606024
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 1_appreciate_1
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 22
|
||||
y: 57
|
||||
width: 84
|
||||
height: 46
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 8b2eaf4dc16381740800000000000000
|
||||
internalID: 5122904073594135224
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 1_appreciate_2
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 32
|
||||
y: 24
|
||||
width: 63
|
||||
height: 61
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: cae073f6001223830800000000000000
|
||||
internalID: 4049335300709093036
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 1_appreciate_3
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 106
|
||||
y: 15
|
||||
width: 22
|
||||
height: 22
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 7d3d9a51e0bd899b0800000000000000
|
||||
internalID: -5073064126693387305
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
|
|
@ -0,0 +1,205 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 317acb6efdf9ce94aa8a5e06ae59048c
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -2707794079911118534
|
||||
second: appreciate mode icon 2_appreciate_0
|
||||
- first:
|
||||
213: -6123230295658172144
|
||||
second: appreciate mode icon 2_appreciate_1
|
||||
- first:
|
||||
213: -6897654018931877716
|
||||
second: appreciate mode icon 2_appreciate_2
|
||||
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: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
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: appreciate mode icon 2_appreciate_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 90
|
||||
width: 22
|
||||
height: 23
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: a39fdfd71abfb6ad0800000000000000
|
||||
internalID: -2707794079911118534
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 2_appreciate_1
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 21
|
||||
y: 30
|
||||
width: 86
|
||||
height: 67
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 01172650d7ae50ba0800000000000000
|
||||
internalID: -6123230295658172144
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 2_appreciate_2
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 106
|
||||
y: 15
|
||||
width: 22
|
||||
height: 22
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: ca81502173c9640a0800000000000000
|
||||
internalID: -6897654018931877716
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.8 KiB |
|
|
@ -0,0 +1,205 @@
|
|||
fileFormatVersion: 2
|
||||
guid: d4fb52f8d4e36a442a4b87c0a511ddd9
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -6217653986026246264
|
||||
second: appreciate mode icon 3_appreciate_0
|
||||
- first:
|
||||
213: -6513534917754953123
|
||||
second: appreciate mode icon 3_appreciate_1
|
||||
- first:
|
||||
213: 5011548085603476182
|
||||
second: appreciate mode icon 3_appreciate_2
|
||||
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: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
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: appreciate mode icon 3_appreciate_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 90
|
||||
width: 22
|
||||
height: 23
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 88f2d9a64a476b9a0800000000000000
|
||||
internalID: -6217653986026246264
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 3_appreciate_1
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 30
|
||||
y: 30
|
||||
width: 67
|
||||
height: 66
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: d52ec13a0864b95a0800000000000000
|
||||
internalID: -6513534917754953123
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 3_appreciate_2
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 106
|
||||
y: 15
|
||||
width: 22
|
||||
height: 22
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 6d22f297e689c8540800000000000000
|
||||
internalID: 5011548085603476182
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
|
|
@ -0,0 +1,205 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 482ff405e1f0a0a4885faf2099f34eec
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 556952743225110250
|
||||
second: appreciate mode icon 4_appreciate_0
|
||||
- first:
|
||||
213: -1088961701379465513
|
||||
second: appreciate mode icon 4_appreciate_1
|
||||
- first:
|
||||
213: -4586248109324605298
|
||||
second: appreciate mode icon 4_appreciate_2
|
||||
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: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
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: appreciate mode icon 4_appreciate_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 90
|
||||
width: 22
|
||||
height: 23
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: aeeac90b191bab700800000000000000
|
||||
internalID: 556952743225110250
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 4_appreciate_1
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 31
|
||||
y: 53
|
||||
width: 66
|
||||
height: 22
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 7de95472a1b33e0f0800000000000000
|
||||
internalID: -1088961701379465513
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: appreciate mode icon 4_appreciate_2
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 106
|
||||
y: 15
|
||||
width: 22
|
||||
height: 22
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: e8866efb4af5a50c0800000000000000
|
||||
internalID: -4586248109324605298
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 412 B |
|
|
@ -0,0 +1,155 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 7191e8a4e91b6b041a2186f439616094
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -5526449305923758817
|
||||
second: appreciate mode window_appreciate_0
|
||||
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: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
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: appreciate mode window_appreciate_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 128
|
||||
height: 128
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: f15d53bf2ab1e43b0800000000000000
|
||||
internalID: -5526449305923758817
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
|
@ -69,6 +69,8 @@ SpriteAtlas:
|
|||
- 990694d32bf174f42bc872264a4ca5b5: 21300000
|
||||
- 946d9b343ae931646886ffb83251235f: 21300000
|
||||
- c7be9d948878f3d4abcff3f46819093e: 21300000
|
||||
- 7191e8a4e91b6b041a2186f439616094: 21300000
|
||||
- 482ff405e1f0a0a4885faf2099f34eec: 21300000
|
||||
- 8fc032a52ac58f345b86d6dd58fff5a5: 21300000
|
||||
- ee4ae7c5c34ebd149abd8c8ee541127b: 21300000
|
||||
- 5818e4d5b38cf0348868c08daae5f015: 21300000
|
||||
|
|
@ -84,6 +86,7 @@ SpriteAtlas:
|
|||
- f36045787352db44494d1b5e4362f551: 21300000
|
||||
- 749965a82d7a8cf468f77c2e31d94551: 21300000
|
||||
- 1ed037e8186121a45a26dc836f9b9ad8: 21300000
|
||||
- d4fb52f8d4e36a442a4b87c0a511ddd9: 21300000
|
||||
- f427dc0923fdac8438454f9efc8d9f23: 21300000
|
||||
- 81db3079472a9214d9be7d9dde059ea9: 21300000
|
||||
- 111aa979580fbae459b551226671a6bd: 21300000
|
||||
|
|
@ -92,6 +95,7 @@ SpriteAtlas:
|
|||
- e9ccc17a3494e584e860fbd3f9f04df9: 21300000
|
||||
- 5943d49aa8260fd42a04c79f281dc835: 21300000
|
||||
- aacc1aaa983a9414bb541868236b780d: 21300000
|
||||
- c1053e0bd85736741835357ae6f1a81a: 21300000
|
||||
- 51edb83ba5087e74fac21f7411beb6b0: 21300000
|
||||
- 7857396ba211dab42af1905b4da3cf19: 21300000
|
||||
- 9e1f479b5a8e93840a056472840fb34f: 21300000
|
||||
|
|
@ -110,6 +114,7 @@ SpriteAtlas:
|
|||
- 3df6f6fd22b4a0a409e7d3ab498894ea: 21300000
|
||||
- 7e24360e4a2cee240a33e711b9340c73: 21300000
|
||||
- b812875e6dda2c340be532135c06f191: 21300000
|
||||
- 317acb6efdf9ce94aa8a5e06ae59048c: 21300000
|
||||
- ef226a8e1f67ac844b66328f57d48c02: 21300000
|
||||
- f8f668de50bc3bb48a22ad5681a26f4c: 21300000
|
||||
- 2242df5f9c25fb449b675752d2e5eb34: 21300000
|
||||
|
|
@ -135,6 +140,8 @@ SpriteAtlas:
|
|||
- {fileID: 21300000, guid: 990694d32bf174f42bc872264a4ca5b5, type: 3}
|
||||
- {fileID: 21300000, guid: 946d9b343ae931646886ffb83251235f, type: 3}
|
||||
- {fileID: 21300000, guid: c7be9d948878f3d4abcff3f46819093e, type: 3}
|
||||
- {fileID: 21300000, guid: 7191e8a4e91b6b041a2186f439616094, type: 3}
|
||||
- {fileID: 21300000, guid: 482ff405e1f0a0a4885faf2099f34eec, type: 3}
|
||||
- {fileID: 21300000, guid: 8fc032a52ac58f345b86d6dd58fff5a5, type: 3}
|
||||
- {fileID: 21300000, guid: ee4ae7c5c34ebd149abd8c8ee541127b, type: 3}
|
||||
- {fileID: 21300000, guid: 5818e4d5b38cf0348868c08daae5f015, type: 3}
|
||||
|
|
@ -150,6 +157,7 @@ SpriteAtlas:
|
|||
- {fileID: 21300000, guid: f36045787352db44494d1b5e4362f551, type: 3}
|
||||
- {fileID: 21300000, guid: 749965a82d7a8cf468f77c2e31d94551, type: 3}
|
||||
- {fileID: 21300000, guid: 1ed037e8186121a45a26dc836f9b9ad8, type: 3}
|
||||
- {fileID: 21300000, guid: d4fb52f8d4e36a442a4b87c0a511ddd9, type: 3}
|
||||
- {fileID: 21300000, guid: f427dc0923fdac8438454f9efc8d9f23, type: 3}
|
||||
- {fileID: 21300000, guid: 81db3079472a9214d9be7d9dde059ea9, type: 3}
|
||||
- {fileID: 21300000, guid: 111aa979580fbae459b551226671a6bd, type: 3}
|
||||
|
|
@ -158,6 +166,7 @@ SpriteAtlas:
|
|||
- {fileID: 21300000, guid: e9ccc17a3494e584e860fbd3f9f04df9, type: 3}
|
||||
- {fileID: 21300000, guid: 5943d49aa8260fd42a04c79f281dc835, type: 3}
|
||||
- {fileID: 21300000, guid: aacc1aaa983a9414bb541868236b780d, type: 3}
|
||||
- {fileID: 21300000, guid: c1053e0bd85736741835357ae6f1a81a, type: 3}
|
||||
- {fileID: 21300000, guid: 51edb83ba5087e74fac21f7411beb6b0, type: 3}
|
||||
- {fileID: 21300000, guid: 7857396ba211dab42af1905b4da3cf19, type: 3}
|
||||
- {fileID: 21300000, guid: 9e1f479b5a8e93840a056472840fb34f, type: 3}
|
||||
|
|
@ -176,6 +185,7 @@ SpriteAtlas:
|
|||
- {fileID: 21300000, guid: 3df6f6fd22b4a0a409e7d3ab498894ea, type: 3}
|
||||
- {fileID: 21300000, guid: 7e24360e4a2cee240a33e711b9340c73, type: 3}
|
||||
- {fileID: 21300000, guid: b812875e6dda2c340be532135c06f191, type: 3}
|
||||
- {fileID: 21300000, guid: 317acb6efdf9ce94aa8a5e06ae59048c, type: 3}
|
||||
- {fileID: 21300000, guid: ef226a8e1f67ac844b66328f57d48c02, type: 3}
|
||||
- {fileID: 21300000, guid: f8f668de50bc3bb48a22ad5681a26f4c, type: 3}
|
||||
- {fileID: 21300000, guid: 2242df5f9c25fb449b675752d2e5eb34, type: 3}
|
||||
|
|
@ -200,6 +210,8 @@ SpriteAtlas:
|
|||
- icon 2_play
|
||||
- icon 1_play
|
||||
- close btn
|
||||
- appreciate mode window_appreciate
|
||||
- appreciate mode icon 4_appreciate
|
||||
- window 5
|
||||
- card icon
|
||||
- label_black
|
||||
|
|
@ -215,6 +227,7 @@ SpriteAtlas:
|
|||
- icon 9_shop
|
||||
- icon 8_shop
|
||||
- label result_result
|
||||
- appreciate mode icon 3_appreciate
|
||||
- icon 1_shop
|
||||
- plus btn
|
||||
- victory icon_result
|
||||
|
|
@ -223,6 +236,7 @@ SpriteAtlas:
|
|||
- choice icon
|
||||
- cash icon
|
||||
- shop icon
|
||||
- appreciate mode icon 1_appreciate
|
||||
- hunting icon
|
||||
- title window 2
|
||||
- peep icon_peep
|
||||
|
|
@ -241,6 +255,7 @@ SpriteAtlas:
|
|||
- toggle btn
|
||||
- icon 7_shop
|
||||
- icon 3_play
|
||||
- appreciate mode icon 2_appreciate
|
||||
- label_white
|
||||
- shop line_shop
|
||||
- window 7
|
||||
|
|
|
|||
Loading…
Reference in New Issue