蜗牛移动点击

This commit is contained in:
杨号敬 2024-12-09 15:33:32 +08:00
parent e3d0be8eeb
commit 1527249a15
4 changed files with 397 additions and 32 deletions

View File

@ -1,6 +1,7 @@
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using UnityEngine; using UnityEngine;
using UnityEngine.UI;
public class Snailmove : MonoBehaviour public class Snailmove : MonoBehaviour
{ {
@ -11,6 +12,8 @@ public class Snailmove : MonoBehaviour
private bool isMoving = false; // ÊÇ·ñÔÚÒƶ¯ private bool isMoving = false; // ÊÇ·ñÔÚÒƶ¯
public long id; public long id;
public Image Image;
private void Start() private void Start()
{ {
@ -46,13 +49,13 @@ public class Snailmove : MonoBehaviour
if (randomDirection <= 1) if (randomDirection <= 1)
{ {
moveDirection = Vector3.right; moveDirection = Vector3.right;
transform.rotation = Quaternion.Euler(0, 0, 0); Image.transform.rotation = Quaternion.Euler(0, 0, 0);
animator.SetBool("move",true); animator.SetBool("move",true);
} }
if(randomDirection <= 2&& randomDirection > 1) if(randomDirection <= 2&& randomDirection > 1)
{ {
moveDirection = Vector3.right; moveDirection = Vector3.left;
transform.rotation = Quaternion.Euler(0, 180, 0); Image.transform.rotation = Quaternion.Euler(0, 180, 0);
animator.SetBool("move", true); animator.SetBool("move", true);
} }
else else

View File

@ -7,6 +7,7 @@ public class PointFollow : MonoBehaviour, IBeginDragHandler, IDragHandler, IEndD
public void OnBeginDrag(PointerEventData eventData) public void OnBeginDrag(PointerEventData eventData)
{ {
StarTransform = transform.position; StarTransform = transform.position;
Debug.Log(1111111);
} }
public void OnDrag(PointerEventData eventData) public void OnDrag(PointerEventData eventData)

View File

@ -15,7 +15,7 @@ GameObject:
- component: {fileID: 2063921404481402532} - component: {fileID: 2063921404481402532}
- component: {fileID: 7169063016447605220} - component: {fileID: 7169063016447605220}
- component: {fileID: 3394732989895625524} - component: {fileID: 3394732989895625524}
- component: {fileID: 3987721522704656746} - component: {fileID: 3575017530063767907}
m_Layer: 5 m_Layer: 5
m_Name: Snail m_Name: Snail
m_TagString: Untagged m_TagString: Untagged
@ -30,14 +30,15 @@ RectTransform:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2063921404481402543} m_GameObject: {fileID: 2063921404481402543}
m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1} m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0 m_ConstrainProportionsScale: 0
m_Children: [] m_Children:
- {fileID: 8571545920859994164}
m_Father: {fileID: 0} m_Father: {fileID: 0}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 2, y: 0} m_AnchoredPosition: {x: 2, y: 0}
@ -64,7 +65,7 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Material: {fileID: 0} m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1} m_Color: {r: 1, g: 1, b: 1, a: 0}
m_RaycastTarget: 1 m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1 m_Maskable: 1
@ -96,6 +97,7 @@ MonoBehaviour:
moveDirection: {x: 0, y: 0, z: 0} moveDirection: {x: 0, y: 0, z: 0}
animator: {fileID: 2063921404481402532} animator: {fileID: 2063921404481402532}
id: 0 id: 0
Image: {fileID: 3401051180767814797}
--- !u!95 &2063921404481402532 --- !u!95 &2063921404481402532
Animator: Animator:
serializedVersion: 5 serializedVersion: 5
@ -104,7 +106,7 @@ Animator:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2063921404481402543} m_GameObject: {fileID: 2063921404481402543}
m_Enabled: 1 m_Enabled: 0
m_Avatar: {fileID: 0} m_Avatar: {fileID: 0}
m_Controller: {fileID: 9100000, guid: f439ca30625a32943b8bad525b93c905, type: 2} m_Controller: {fileID: 9100000, guid: f439ca30625a32943b8bad525b93c905, type: 2}
m_CullingMode: 0 m_CullingMode: 0
@ -129,6 +131,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 1d2dce964e6032b4986efc2be8dae97e, type: 3} m_Script: {fileID: 11500000, guid: 1d2dce964e6032b4986efc2be8dae97e, type: 3}
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
StarTransform: {x: 0, y: 0, z: 0}
--- !u!61 &3394732989895625524 --- !u!61 &3394732989895625524
BoxCollider2D: BoxCollider2D:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -155,7 +158,7 @@ BoxCollider2D:
serializedVersion: 2 serializedVersion: 2
m_Size: {x: 142.14545, y: 131.55505} m_Size: {x: 142.14545, y: 131.55505}
m_EdgeRadius: 0 m_EdgeRadius: 0
--- !u!50 &3987721522704656746 --- !u!50 &3575017530063767907
Rigidbody2D: Rigidbody2D:
serializedVersion: 4 serializedVersion: 4
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -175,4 +178,146 @@ Rigidbody2D:
m_Interpolate: 0 m_Interpolate: 0
m_SleepingMode: 1 m_SleepingMode: 1
m_CollisionDetection: 0 m_CollisionDetection: 0
m_Constraints: 6 m_Constraints: 4
--- !u!1 &4786044594464241829
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 8571545920859994164}
- component: {fileID: 5020936843306014324}
- component: {fileID: 3401051180767814797}
- component: {fileID: 3353722912023784491}
- component: {fileID: 467924844466211236}
- component: {fileID: 2670124231603368699}
m_Layer: 5
m_Name: Snail
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &8571545920859994164
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4786044594464241829}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2063921404481402536}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 100, y: 100}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &5020936843306014324
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4786044594464241829}
m_CullTransparentMesh: 1
--- !u!114 &3401051180767814797
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4786044594464241829}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 0
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: b04f63b02af5638449f382301d2ba3d9, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!114 &3353722912023784491
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4786044594464241829}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 406d14a87057b2b40b4c4f0331a9de75, type: 3}
m_Name:
m_EditorClassIdentifier:
moveDirection: {x: 0, y: 0, z: 0}
animator: {fileID: 467924844466211236}
id: 0
Image: {fileID: 3401051180767814797}
--- !u!95 &467924844466211236
Animator:
serializedVersion: 5
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4786044594464241829}
m_Enabled: 1
m_Avatar: {fileID: 0}
m_Controller: {fileID: 9100000, guid: f439ca30625a32943b8bad525b93c905, type: 2}
m_CullingMode: 0
m_UpdateMode: 0
m_ApplyRootMotion: 0
m_LinearVelocityBlending: 0
m_StabilizeFeet: 0
m_WarningMessage:
m_HasTransformHierarchy: 1
m_AllowConstantClipSamplingOptimization: 1
m_KeepAnimatorStateOnDisable: 0
m_WriteDefaultValuesOnDisable: 0
--- !u!61 &2670124231603368699
BoxCollider2D:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4786044594464241829}
m_Enabled: 0
m_Density: 1
m_Material: {fileID: 0}
m_IsTrigger: 0
m_UsedByEffector: 0
m_UsedByComposite: 0
m_Offset: {x: -3.2713928, y: 1.4916382}
m_SpriteTilingProperty:
border: {x: 0, y: 0, z: 0, w: 0}
pivot: {x: 0, y: 0}
oldSize: {x: 0, y: 0}
newSize: {x: 0, y: 0}
adaptiveTilingThreshold: 0
drawMode: 0
adaptiveTiling: 0
m_AutoTiling: 0
serializedVersion: 2
m_Size: {x: 142.14545, y: 131.55505}
m_EdgeRadius: 0

View File

@ -1,5 +1,113 @@
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:unity3d.com,2011:
--- !u!1 &263015825375950718
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1233847270477758910}
- component: {fileID: 1703745699286848290}
- component: {fileID: 2623743085211220269}
- component: {fileID: 9200742908768291001}
m_Layer: 5
m_Name: Scroll View
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &1233847270477758910
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 263015825375950718}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 2178924411510737547}
m_Father: {fileID: 5909292344058323288}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 2.140625, y: 0}
m_SizeDelta: {x: -81.34, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &1703745699286848290
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 263015825375950718}
m_CullTransparentMesh: 1
--- !u!114 &2623743085211220269
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 263015825375950718}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 0.392}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!114 &9200742908768291001
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 263015825375950718}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Content: {fileID: 5909292345239580933}
m_Horizontal: 1
m_Vertical: 0
m_MovementType: 1
m_Elasticity: 0.1
m_Inertia: 1
m_DecelerationRate: 0.135
m_ScrollSensitivity: 1
m_Viewport: {fileID: 2178924411510737547}
m_HorizontalScrollbar: {fileID: 0}
m_VerticalScrollbar: {fileID: 0}
m_HorizontalScrollbarVisibility: 2
m_VerticalScrollbarVisibility: 2
m_HorizontalScrollbarSpacing: -3
m_VerticalScrollbarSpacing: -3
m_OnValueChanged:
m_PersistentCalls:
m_Calls: []
--- !u!1 &334222047757486001 --- !u!1 &334222047757486001
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -54,6 +162,7 @@ MonoBehaviour:
width: 1372 width: 1372
height: 200 height: 200
startPosition: {x: 0, y: 0} startPosition: {x: 0, y: 0}
Snails: []
--- !u!1 &334222049048065333 --- !u!1 &334222049048065333
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -146,6 +255,7 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
moveDirection: {x: 0, y: 0, z: 0} moveDirection: {x: 0, y: 0, z: 0}
animator: {fileID: 334222049048065342} animator: {fileID: 334222049048065342}
id: 0
--- !u!95 &334222049048065342 --- !u!95 &334222049048065342
Animator: Animator:
serializedVersion: 5 serializedVersion: 5
@ -281,9 +391,9 @@ RectTransform:
m_Father: {fileID: 5909292345239580933} m_Father: {fileID: 5909292345239580933}
m_RootOrder: 2 m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 1014.33997, y: -292.26154}
m_SizeDelta: {x: 336, y: 436} m_SizeDelta: {x: 336, y: 436}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &894324158840003883 --- !u!222 &894324158840003883
@ -1055,9 +1165,9 @@ RectTransform:
m_Father: {fileID: 5909292345239580933} m_Father: {fileID: 5909292345239580933}
m_RootOrder: 1 m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 609.17, y: -292.26154}
m_SizeDelta: {x: 336, y: 436} m_SizeDelta: {x: 336, y: 436}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &894324159581149361 --- !u!222 &894324159581149361
@ -2340,7 +2450,7 @@ RectTransform:
m_LocalScale: {x: 1, y: 1, z: 1} m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0 m_ConstrainProportionsScale: 0
m_Children: m_Children:
- {fileID: 5909292345239580933} - {fileID: 1233847270477758910}
m_Father: {fileID: 5909292344745145930} m_Father: {fileID: 5909292344745145930}
m_RootOrder: 3 m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@ -3361,6 +3471,7 @@ GameObject:
m_Component: m_Component:
- component: {fileID: 5909292345239580933} - component: {fileID: 5909292345239580933}
- component: {fileID: 5909292345239580932} - component: {fileID: 5909292345239580932}
- component: {fileID: 4259366414950984428}
m_Layer: 5 m_Layer: 5
m_Name: CardContent m_Name: CardContent
m_TagString: Untagged m_TagString: Untagged
@ -3375,7 +3486,7 @@ RectTransform:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5909292345239580986} m_GameObject: {fileID: 5909292345239580986}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1} m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0 m_ConstrainProportionsScale: 0
@ -3383,14 +3494,14 @@ RectTransform:
- {fileID: 5909292345778024436} - {fileID: 5909292345778024436}
- {fileID: 894324159581149363} - {fileID: 894324159581149363}
- {fileID: 894324158840003881} - {fileID: 894324158840003881}
m_Father: {fileID: 5909292344058323288} m_Father: {fileID: 2178924411510737547}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.030520432, y: 0.067} m_AnchorMin: {x: 0, y: 0.5}
m_AnchorMax: {x: 0.9665205, y: 0.95751894} m_AnchorMax: {x: 0, y: 0.5}
m_AnchoredPosition: {x: -1.9436035, y: 0.859375} m_AnchoredPosition: {x: 0.00057718676, y: -0.17919922}
m_SizeDelta: {x: 1.7866211, y: -5.7128296} m_SizeDelta: {x: 0, y: 510.52307}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0, y: 0.5}
--- !u!114 &5909292345239580932 --- !u!114 &5909292345239580932
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -3409,14 +3520,28 @@ MonoBehaviour:
m_Top: 74 m_Top: 74
m_Bottom: 0 m_Bottom: 0
m_ChildAlignment: 3 m_ChildAlignment: 3
m_Spacing: 0 m_Spacing: 69.17
m_ChildForceExpandWidth: 1 m_ChildForceExpandWidth: 1
m_ChildForceExpandHeight: 0 m_ChildForceExpandHeight: 1
m_ChildControlWidth: 0 m_ChildControlWidth: 0
m_ChildControlHeight: 0 m_ChildControlHeight: 0
m_ChildScaleWidth: 1 m_ChildScaleWidth: 0
m_ChildScaleHeight: 1 m_ChildScaleHeight: 0
m_ReverseArrangement: 0 m_ReverseArrangement: 0
--- !u!114 &4259366414950984428
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5909292345239580986}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
m_Name:
m_EditorClassIdentifier:
m_HorizontalFit: 2
m_VerticalFit: 0
--- !u!1 &5909292345586290853 --- !u!1 &5909292345586290853
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -3532,9 +3657,9 @@ RectTransform:
m_Father: {fileID: 5909292345239580933} m_Father: {fileID: 5909292345239580933}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 204, y: -292.26154}
m_SizeDelta: {x: 336, y: 436} m_SizeDelta: {x: 336, y: 436}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &5909292345778024438 --- !u!222 &5909292345778024438
@ -4023,3 +4148,94 @@ MonoBehaviour:
m_FillOrigin: 0 m_FillOrigin: 0
m_UseSpriteMesh: 0 m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1 m_PixelsPerUnitMultiplier: 1
--- !u!1 &7318670025022669202
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2178924411510737547}
- component: {fileID: 6370062693063512779}
- component: {fileID: 508485017905283094}
- component: {fileID: 7047877555810599731}
m_Layer: 5
m_Name: Viewport
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2178924411510737547
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7318670025022669202}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 5909292345239580933}
m_Father: {fileID: 1233847270477758910}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: -17}
m_Pivot: {x: 0, y: 1}
--- !u!222 &6370062693063512779
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7318670025022669202}
m_CullTransparentMesh: 1
--- !u!114 &508485017905283094
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7318670025022669202}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
m_Type: 1
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!114 &7047877555810599731
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7318670025022669202}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
m_Name:
m_EditorClassIdentifier:
m_ShowMaskGraphic: 0