Updated FancyScrollView to latest version
parent
2a3003f97e
commit
a645c1e0c2
|
@ -0,0 +1,85 @@
|
||||||
|
/// Credit setchi (https://github.com/setchi)
|
||||||
|
/// Sourced from - https://github.com/setchi/FancyScrollView
|
||||||
|
|
||||||
|
// For manteinance, every new [SerializeField] variable in ScrollPositionController must be declared here
|
||||||
|
|
||||||
|
using UnityEditor;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions
|
||||||
|
{
|
||||||
|
[CustomEditor(typeof(ScrollPositionController))]
|
||||||
|
[CanEditMultipleObjects]
|
||||||
|
public class ScrollPositionControllerEditor : Editor
|
||||||
|
{
|
||||||
|
SerializedProperty viewport;
|
||||||
|
SerializedProperty directionOfRecognize;
|
||||||
|
SerializedProperty movementType;
|
||||||
|
SerializedProperty elasticity;
|
||||||
|
SerializedProperty scrollSensitivity;
|
||||||
|
SerializedProperty inertia;
|
||||||
|
SerializedProperty decelerationRate;
|
||||||
|
SerializedProperty snap;
|
||||||
|
SerializedProperty snapEnable;
|
||||||
|
SerializedProperty snapVelocityThreshold;
|
||||||
|
SerializedProperty snapDuration;
|
||||||
|
SerializedProperty dataCount;
|
||||||
|
|
||||||
|
void OnEnable()
|
||||||
|
{
|
||||||
|
viewport = serializedObject.FindProperty("viewport");
|
||||||
|
directionOfRecognize = serializedObject.FindProperty("directionOfRecognize");
|
||||||
|
movementType = serializedObject.FindProperty("movementType");
|
||||||
|
elasticity = serializedObject.FindProperty("elasticity");
|
||||||
|
scrollSensitivity = serializedObject.FindProperty("scrollSensitivity");
|
||||||
|
inertia = serializedObject.FindProperty("inertia");
|
||||||
|
decelerationRate = serializedObject.FindProperty("decelerationRate");
|
||||||
|
snap = serializedObject.FindProperty("snap");
|
||||||
|
snapEnable = serializedObject.FindProperty("snap.Enable");
|
||||||
|
snapVelocityThreshold = serializedObject.FindProperty("snap.VelocityThreshold");
|
||||||
|
snapDuration = serializedObject.FindProperty("snap.Duration");
|
||||||
|
dataCount = serializedObject.FindProperty("dataCount");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void OnInspectorGUI()
|
||||||
|
{
|
||||||
|
serializedObject.Update();
|
||||||
|
EditorGUILayout.PropertyField(viewport);
|
||||||
|
EditorGUILayout.PropertyField(directionOfRecognize);
|
||||||
|
EditorGUILayout.PropertyField(movementType);
|
||||||
|
EditorGUILayout.PropertyField(elasticity);
|
||||||
|
EditorGUILayout.PropertyField(scrollSensitivity);
|
||||||
|
EditorGUILayout.PropertyField(inertia);
|
||||||
|
DrawInertiaRelatedValues();
|
||||||
|
EditorGUILayout.PropertyField(dataCount);
|
||||||
|
serializedObject.ApplyModifiedProperties();
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawInertiaRelatedValues()
|
||||||
|
{
|
||||||
|
if (inertia.boolValue)
|
||||||
|
{
|
||||||
|
EditorGUILayout.PropertyField(decelerationRate);
|
||||||
|
EditorGUILayout.PropertyField(snap);
|
||||||
|
|
||||||
|
using (new EditorGUI.IndentLevelScope())
|
||||||
|
{
|
||||||
|
DrawSnapRelatedValues();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawSnapRelatedValues()
|
||||||
|
{
|
||||||
|
if (snap.isExpanded)
|
||||||
|
{
|
||||||
|
EditorGUILayout.PropertyField(snapEnable);
|
||||||
|
|
||||||
|
if (snapEnable.boolValue)
|
||||||
|
{
|
||||||
|
EditorGUILayout.PropertyField(snapVelocityThreshold);
|
||||||
|
EditorGUILayout.PropertyField(snapDuration);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 986fda6476737da458576709b7f59ea3
|
||||||
|
timeCreated: 1508699683
|
||||||
|
licenseType: Pro
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
|
@ -13,7 +13,7 @@ OcclusionCullingSettings:
|
||||||
--- !u!104 &2
|
--- !u!104 &2
|
||||||
RenderSettings:
|
RenderSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
serializedVersion: 8
|
serializedVersion: 9
|
||||||
m_Fog: 0
|
m_Fog: 0
|
||||||
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||||
m_FogMode: 3
|
m_FogMode: 3
|
||||||
|
@ -39,6 +39,7 @@ RenderSettings:
|
||||||
m_CustomReflection: {fileID: 0}
|
m_CustomReflection: {fileID: 0}
|
||||||
m_Sun: {fileID: 0}
|
m_Sun: {fileID: 0}
|
||||||
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
||||||
|
m_UseRadianceAmbientProbe: 0
|
||||||
--- !u!157 &3
|
--- !u!157 &3
|
||||||
LightmapSettings:
|
LightmapSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -54,11 +55,10 @@ LightmapSettings:
|
||||||
m_EnableBakedLightmaps: 1
|
m_EnableBakedLightmaps: 1
|
||||||
m_EnableRealtimeLightmaps: 1
|
m_EnableRealtimeLightmaps: 1
|
||||||
m_LightmapEditorSettings:
|
m_LightmapEditorSettings:
|
||||||
serializedVersion: 9
|
serializedVersion: 10
|
||||||
m_Resolution: 2
|
m_Resolution: 2
|
||||||
m_BakeResolution: 40
|
m_BakeResolution: 40
|
||||||
m_TextureWidth: 1024
|
m_AtlasSize: 1024
|
||||||
m_TextureHeight: 1024
|
|
||||||
m_AO: 0
|
m_AO: 0
|
||||||
m_AOMaxDistance: 1
|
m_AOMaxDistance: 1
|
||||||
m_CompAOExponent: 1
|
m_CompAOExponent: 1
|
||||||
|
@ -90,7 +90,7 @@ LightmapSettings:
|
||||||
m_PVRFilteringAtrousPositionSigmaAO: 1
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
m_ShowResolutionOverlay: 1
|
m_ShowResolutionOverlay: 1
|
||||||
m_LightingDataAsset: {fileID: 0}
|
m_LightingDataAsset: {fileID: 0}
|
||||||
m_UseShadowmask: 1
|
m_UseShadowmask: 0
|
||||||
--- !u!196 &4
|
--- !u!196 &4
|
||||||
NavMeshSettings:
|
NavMeshSettings:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
@ -116,9 +116,9 @@ NavMeshSettings:
|
||||||
--- !u!1 &650160435
|
--- !u!1 &650160435
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 650160439}
|
- component: {fileID: 650160439}
|
||||||
- component: {fileID: 650160438}
|
- component: {fileID: 650160438}
|
||||||
|
@ -135,7 +135,7 @@ GameObject:
|
||||||
--- !u!114 &650160436
|
--- !u!114 &650160436
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -151,7 +151,7 @@ MonoBehaviour:
|
||||||
--- !u!114 &650160437
|
--- !u!114 &650160437
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -159,10 +159,10 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_UiScaleMode: 0
|
m_UiScaleMode: 1
|
||||||
m_ReferencePixelsPerUnit: 100
|
m_ReferencePixelsPerUnit: 100
|
||||||
m_ScaleFactor: 1
|
m_ScaleFactor: 1
|
||||||
m_ReferenceResolution: {x: 800, y: 600}
|
m_ReferenceResolution: {x: 1000, y: 720}
|
||||||
m_ScreenMatchMode: 0
|
m_ScreenMatchMode: 0
|
||||||
m_MatchWidthOrHeight: 0
|
m_MatchWidthOrHeight: 0
|
||||||
m_PhysicalUnit: 3
|
m_PhysicalUnit: 3
|
||||||
|
@ -172,7 +172,7 @@ MonoBehaviour:
|
||||||
--- !u!223 &650160438
|
--- !u!223 &650160438
|
||||||
Canvas:
|
Canvas:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -192,7 +192,7 @@ Canvas:
|
||||||
--- !u!224 &650160439
|
--- !u!224 &650160439
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
@ -211,7 +211,7 @@ RectTransform:
|
||||||
--- !u!114 &650160440
|
--- !u!114 &650160440
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -223,9 +223,9 @@ MonoBehaviour:
|
||||||
--- !u!1 &777088603
|
--- !u!1 &777088603
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 777088608}
|
- component: {fileID: 777088608}
|
||||||
- component: {fileID: 777088607}
|
- component: {fileID: 777088607}
|
||||||
|
@ -241,27 +241,31 @@ GameObject:
|
||||||
--- !u!81 &777088604
|
--- !u!81 &777088604
|
||||||
AudioListener:
|
AudioListener:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
--- !u!124 &777088605
|
--- !u!124 &777088605
|
||||||
Behaviour:
|
Behaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
--- !u!20 &777088607
|
--- !u!20 &777088607
|
||||||
Camera:
|
Camera:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_ClearFlags: 2
|
m_ClearFlags: 2
|
||||||
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
|
m_projectionMatrixMode: 1
|
||||||
|
m_SensorSize: {x: 36, y: 24}
|
||||||
|
m_LensShift: {x: 0, y: 0}
|
||||||
|
m_FocalLength: 50
|
||||||
m_NormalizedViewPortRect:
|
m_NormalizedViewPortRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
|
@ -283,6 +287,7 @@ Camera:
|
||||||
m_TargetEye: 3
|
m_TargetEye: 3
|
||||||
m_HDR: 0
|
m_HDR: 0
|
||||||
m_AllowMSAA: 1
|
m_AllowMSAA: 1
|
||||||
|
m_AllowDynamicResolution: 0
|
||||||
m_ForceIntoRT: 0
|
m_ForceIntoRT: 0
|
||||||
m_OcclusionCulling: 1
|
m_OcclusionCulling: 1
|
||||||
m_StereoConvergence: 10
|
m_StereoConvergence: 10
|
||||||
|
@ -290,7 +295,7 @@ Camera:
|
||||||
--- !u!4 &777088608
|
--- !u!4 &777088608
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
@ -300,86 +305,17 @@ Transform:
|
||||||
m_Father: {fileID: 0}
|
m_Father: {fileID: 0}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
--- !u!1 &1012097242
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1012097243}
|
|
||||||
- component: {fileID: 1012097245}
|
|
||||||
- component: {fileID: 1012097244}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Image
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1012097243
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_LocalRotation: {x: 0.5, y: 0, z: 0, w: 0.8660254}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 276}
|
|
||||||
m_LocalScale: {x: 0.3, y: 0.3, z: 1}
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 1506879310}
|
|
||||||
m_Father: {fileID: 1590362722}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 60, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: -0.2, y: 0.5}
|
|
||||||
m_AnchorMax: {x: -0.2, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 200, y: 450}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!114 &1012097244
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.3019608}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_Sprite: {fileID: 0}
|
|
||||||
m_Type: 0
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
--- !u!222 &1012097245
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
--- !u!1 &1492537695
|
--- !u!1 &1492537695
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 1492537696}
|
- component: {fileID: 1492537696}
|
||||||
|
- component: {fileID: 1492537702}
|
||||||
- component: {fileID: 1492537700}
|
- component: {fileID: 1492537700}
|
||||||
- component: {fileID: 1492537699}
|
- component: {fileID: 1492537699}
|
||||||
- component: {fileID: 1492537702}
|
|
||||||
- component: {fileID: 1492537701}
|
- component: {fileID: 1492537701}
|
||||||
m_Layer: 5
|
m_Layer: 5
|
||||||
m_Name: ScrollView
|
m_Name: ScrollView
|
||||||
|
@ -391,14 +327,13 @@ GameObject:
|
||||||
--- !u!224 &1492537696
|
--- !u!224 &1492537696
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
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_Children:
|
m_Children: []
|
||||||
- {fileID: 1590362722}
|
|
||||||
m_Father: {fileID: 650160439}
|
m_Father: {fileID: 650160439}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
@ -410,7 +345,7 @@ RectTransform:
|
||||||
--- !u!114 &1492537699
|
--- !u!114 &1492537699
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -422,7 +357,7 @@ MonoBehaviour:
|
||||||
directionOfRecognize: 1
|
directionOfRecognize: 1
|
||||||
movementType: 1
|
movementType: 1
|
||||||
elasticity: 0.1
|
elasticity: 0.1
|
||||||
scrollSensitivity: 7
|
scrollSensitivity: 6.7
|
||||||
inertia: 1
|
inertia: 1
|
||||||
decelerationRate: 0.03
|
decelerationRate: 0.03
|
||||||
snap:
|
snap:
|
||||||
|
@ -430,20 +365,10 @@ MonoBehaviour:
|
||||||
VelocityThreshold: 0.5
|
VelocityThreshold: 0.5
|
||||||
Duration: 0.3
|
Duration: 0.3
|
||||||
dataCount: 0
|
dataCount: 0
|
||||||
OnUpdatePosition:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Extensions.ScrollPositionController+UpdatePositionEvent,
|
|
||||||
Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
OnItemSelected:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Extensions.ScrollPositionController+ItemSelectedEvent,
|
|
||||||
Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
--- !u!114 &1492537700
|
--- !u!114 &1492537700
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -454,12 +379,13 @@ MonoBehaviour:
|
||||||
cellInterval: 0.15
|
cellInterval: 0.15
|
||||||
cellOffset: 0.5
|
cellOffset: 0.5
|
||||||
loop: 0
|
loop: 0
|
||||||
cellBase: {fileID: 1590362721}
|
cellBase: {fileID: 1090456633889264, guid: b211dcb1c69c24ebdb530112c34a0e4d, type: 2}
|
||||||
|
cellContainer: {fileID: 1492537696}
|
||||||
scrollPositionController: {fileID: 1492537699}
|
scrollPositionController: {fileID: 1492537699}
|
||||||
--- !u!114 &1492537701
|
--- !u!114 &1492537701
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -468,14 +394,14 @@ 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: 0.392}
|
m_Color: {r: 0.3137255, g: 0.3137255, b: 0.3137255, a: 1}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 1
|
||||||
m_OnCullStateChanged:
|
m_OnCullStateChanged:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls: []
|
m_Calls: []
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
|
m_Sprite: {fileID: 0}
|
||||||
m_Type: 1
|
m_Type: 1
|
||||||
m_PreserveAspect: 0
|
m_PreserveAspect: 0
|
||||||
m_FillCenter: 1
|
m_FillCenter: 1
|
||||||
|
@ -486,174 +412,16 @@ MonoBehaviour:
|
||||||
--- !u!222 &1492537702
|
--- !u!222 &1492537702
|
||||||
CanvasRenderer:
|
CanvasRenderer:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
--- !u!1 &1506879309
|
m_CullTransparentMesh: 0
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1506879310}
|
|
||||||
- component: {fileID: 1506879312}
|
|
||||||
- component: {fileID: 1506879311}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Text
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1506879310
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 1012097243}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!114 &1506879311
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_FontData:
|
|
||||||
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_FontSize: 30
|
|
||||||
m_FontStyle: 3
|
|
||||||
m_BestFit: 0
|
|
||||||
m_MinSize: 3
|
|
||||||
m_MaxSize: 40
|
|
||||||
m_Alignment: 4
|
|
||||||
m_AlignByGeometry: 0
|
|
||||||
m_RichText: 1
|
|
||||||
m_HorizontalOverflow: 0
|
|
||||||
m_VerticalOverflow: 0
|
|
||||||
m_LineSpacing: 1
|
|
||||||
m_Text:
|
|
||||||
--- !u!222 &1506879312
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
--- !u!1 &1590362721
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1590362722}
|
|
||||||
- component: {fileID: 1590362725}
|
|
||||||
- component: {fileID: 1590362723}
|
|
||||||
- component: {fileID: 1590362724}
|
|
||||||
- component: {fileID: 1590362726}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Cell
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1590362722
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
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_Children:
|
|
||||||
- {fileID: 1012097243}
|
|
||||||
m_Father: {fileID: 1492537696}
|
|
||||||
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: 0}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!95 &1590362723
|
|
||||||
Animator:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Avatar: {fileID: 0}
|
|
||||||
m_Controller: {fileID: 9100000, guid: 8bbdb068c73989c438aef167096a86cb, type: 2}
|
|
||||||
m_CullingMode: 0
|
|
||||||
m_UpdateMode: 0
|
|
||||||
m_ApplyRootMotion: 0
|
|
||||||
m_LinearVelocityBlending: 0
|
|
||||||
m_WarningMessage:
|
|
||||||
m_HasTransformHierarchy: 1
|
|
||||||
m_AllowConstantClipSamplingOptimization: 1
|
|
||||||
--- !u!114 &1590362724
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: b77a04c729f174c478baf21a47c16620, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
animator: {fileID: 1590362723}
|
|
||||||
message: {fileID: 1506879311}
|
|
||||||
--- !u!222 &1590362725
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
--- !u!225 &1590362726
|
|
||||||
CanvasGroup:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Alpha: 1
|
|
||||||
m_Interactable: 1
|
|
||||||
m_BlocksRaycasts: 1
|
|
||||||
m_IgnoreParentGroups: 0
|
|
||||||
--- !u!1 &1770868449
|
--- !u!1 &1770868449
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 1770868452}
|
- component: {fileID: 1770868452}
|
||||||
- component: {fileID: 1770868451}
|
- component: {fileID: 1770868451}
|
||||||
|
@ -668,7 +436,7 @@ GameObject:
|
||||||
--- !u!114 &1770868450
|
--- !u!114 &1770868450
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -686,7 +454,7 @@ MonoBehaviour:
|
||||||
--- !u!114 &1770868451
|
--- !u!114 &1770868451
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -700,7 +468,7 @@ MonoBehaviour:
|
||||||
--- !u!4 &1770868452
|
--- !u!4 &1770868452
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
|
|
@ -40,9 +40,9 @@ AnimatorStateTransition:
|
||||||
m_Mute: 0
|
m_Mute: 0
|
||||||
m_IsExit: 0
|
m_IsExit: 0
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TransitionDuration: 0.1
|
m_TransitionDuration: 0
|
||||||
m_TransitionOffset: 0
|
m_TransitionOffset: 0
|
||||||
m_ExitTime: 0.9
|
m_ExitTime: 0
|
||||||
m_HasExitTime: 1
|
m_HasExitTime: 1
|
||||||
m_HasFixedDuration: 1
|
m_HasFixedDuration: 1
|
||||||
m_InterruptionSource: 0
|
m_InterruptionSource: 0
|
||||||
|
@ -66,13 +66,11 @@ AnimatorState:
|
||||||
m_SpeedParameterActive: 0
|
m_SpeedParameterActive: 0
|
||||||
m_MirrorParameterActive: 0
|
m_MirrorParameterActive: 0
|
||||||
m_CycleOffsetParameterActive: 0
|
m_CycleOffsetParameterActive: 0
|
||||||
m_TimeParameterActive: 0
|
|
||||||
m_Motion: {fileID: 7400000, guid: 9e6e4c5500df9dc439749ba892b2995c, type: 2}
|
m_Motion: {fileID: 7400000, guid: 9e6e4c5500df9dc439749ba892b2995c, type: 2}
|
||||||
m_Tag:
|
m_Tag:
|
||||||
m_SpeedParameter:
|
m_SpeedParameter:
|
||||||
m_MirrorParameter:
|
m_MirrorParameter:
|
||||||
m_CycleOffsetParameter:
|
m_CycleOffsetParameter:
|
||||||
m_TimeParameter:
|
|
||||||
--- !u!1107 &1107904440216339570
|
--- !u!1107 &1107904440216339570
|
||||||
AnimatorStateMachine:
|
AnimatorStateMachine:
|
||||||
serializedVersion: 5
|
serializedVersion: 5
|
||||||
|
|
|
@ -0,0 +1,241 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1001 &100100000
|
||||||
|
Prefab:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Modification:
|
||||||
|
m_TransformParent: {fileID: 0}
|
||||||
|
m_Modifications: []
|
||||||
|
m_RemovedComponents: []
|
||||||
|
m_ParentPrefab: {fileID: 0}
|
||||||
|
m_RootGameObject: {fileID: 1090456633889264}
|
||||||
|
m_IsPrefabParent: 1
|
||||||
|
--- !u!1 &1047693792088076
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224586824547443490}
|
||||||
|
- component: {fileID: 222671064185272594}
|
||||||
|
- component: {fileID: 114187527074109412}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1090456633889264
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224549255076533924}
|
||||||
|
- component: {fileID: 222720373810649850}
|
||||||
|
- component: {fileID: 95340417105919662}
|
||||||
|
- component: {fileID: 114576972619053820}
|
||||||
|
- component: {fileID: 225935335552180272}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Cell
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1567147101442258
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224942455461622062}
|
||||||
|
- component: {fileID: 222329272886881190}
|
||||||
|
- component: {fileID: 114563267192182474}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Image
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!95 &95340417105919662
|
||||||
|
Animator:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1090456633889264}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Avatar: {fileID: 0}
|
||||||
|
m_Controller: {fileID: 9100000, guid: 8bbdb068c73989c438aef167096a86cb, type: 2}
|
||||||
|
m_CullingMode: 0
|
||||||
|
m_UpdateMode: 0
|
||||||
|
m_ApplyRootMotion: 0
|
||||||
|
m_LinearVelocityBlending: 0
|
||||||
|
m_WarningMessage:
|
||||||
|
m_HasTransformHierarchy: 1
|
||||||
|
m_AllowConstantClipSamplingOptimization: 1
|
||||||
|
--- !u!114 &114187527074109412
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1047693792088076}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 30
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 3
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text:
|
||||||
|
--- !u!114 &114563267192182474
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1567147101442258}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 0.3019608}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
--- !u!114 &114576972619053820
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1090456633889264}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: b77a04c729f174c478baf21a47c16620, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
animator: {fileID: 95340417105919662}
|
||||||
|
message: {fileID: 114187527074109412}
|
||||||
|
--- !u!222 &222329272886881190
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1567147101442258}
|
||||||
|
--- !u!222 &222671064185272594
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1047693792088076}
|
||||||
|
--- !u!222 &222720373810649850
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1090456633889264}
|
||||||
|
--- !u!224 &224549255076533924
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1090456633889264}
|
||||||
|
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_Children:
|
||||||
|
- {fileID: 224942455461622062}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
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: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224586824547443490
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1047693792088076}
|
||||||
|
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 224942455461622062}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224942455461622062
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1567147101442258}
|
||||||
|
m_LocalRotation: {x: 0.5, y: 0, z: 0, w: 0.8660254}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 276}
|
||||||
|
m_LocalScale: {x: 0.3, y: 0.3, z: 1}
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 224586824547443490}
|
||||||
|
m_Father: {fileID: 224549255076533924}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 60, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: -0.2, y: 0.5}
|
||||||
|
m_AnchorMax: {x: -0.2, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 200, y: 450}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!225 &225935335552180272
|
||||||
|
CanvasGroup:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1090456633889264}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Alpha: 1
|
||||||
|
m_Interactable: 1
|
||||||
|
m_BlocksRaycasts: 1
|
||||||
|
m_IgnoreParentGroups: 0
|
|
@ -0,0 +1,10 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b211dcb1c69c24ebdb530112c34a0e4d
|
||||||
|
timeCreated: 1508240682
|
||||||
|
licenseType: Free
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -1,11 +1,12 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example01Scene : MonoBehaviour
|
public class Example01Scene : MonoBehaviour
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Example01ScrollView scrollView = null;
|
Example01ScrollView scrollView;
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
using System.Collections.Generic;
|
using UnityEngine;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example01ScrollView : FancyScrollView<Example01CellDto>
|
public class Example01ScrollView : FancyScrollView<Example01CellDto>
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
ScrollPositionController scrollPositionController = null;
|
ScrollPositionController scrollPositionController;
|
||||||
|
|
||||||
new void Awake()
|
void Awake()
|
||||||
{
|
{
|
||||||
base.Awake();
|
scrollPositionController.OnUpdatePosition(p => UpdatePosition(p));
|
||||||
scrollPositionController.OnUpdatePosition.AddListener(UpdatePosition);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateData(List<Example01CellDto> data)
|
public void UpdateData(List<Example01CellDto> data)
|
||||||
|
|
|
@ -1,40 +1,43 @@
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example01ScrollViewCell : FancyScrollViewCell<Example01CellDto>
|
public class Example01ScrollViewCell : FancyScrollViewCell<Example01CellDto>
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Animator animator = null;
|
Animator animator;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Text message = null;
|
Text message;
|
||||||
|
|
||||||
readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
static readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
||||||
|
|
||||||
void Start()
|
|
||||||
{
|
|
||||||
var rectTransform = transform as RectTransform;
|
|
||||||
rectTransform.anchorMax = Vector2.one;
|
|
||||||
rectTransform.anchorMin = Vector2.zero;
|
|
||||||
rectTransform.anchoredPosition3D = Vector3.zero;
|
|
||||||
UpdatePosition(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// セルの内容を更新します
|
/// Updates the content.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="itemData"></param>
|
/// <param name="itemData">Item data.</param>
|
||||||
public override void UpdateContent(Example01CellDto itemData)
|
public override void UpdateContent(Example01CellDto itemData)
|
||||||
{
|
{
|
||||||
message.text = itemData.Message;
|
message.text = itemData.Message;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// セルの位置を更新します
|
/// Updates the position.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="position"></param>
|
/// <param name="position">Position.</param>
|
||||||
public override void UpdatePosition(float position)
|
public override void UpdatePosition(float position)
|
||||||
{
|
{
|
||||||
|
currentPosition = position;
|
||||||
animator.Play(scrollTriggerHash, -1, position);
|
animator.Play(scrollTriggerHash, -1, position);
|
||||||
animator.speed = 0;
|
animator.speed = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GameObject が非アクティブになると Animator がリセットされてしまうため
|
||||||
|
// 現在位置を保持しておいて OnEnable のタイミングで現在位置を再設定します
|
||||||
|
float currentPosition = 0;
|
||||||
|
void OnEnable()
|
||||||
|
{
|
||||||
|
UpdatePosition(currentPosition);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ OcclusionCullingSettings:
|
||||||
--- !u!104 &2
|
--- !u!104 &2
|
||||||
RenderSettings:
|
RenderSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
serializedVersion: 8
|
serializedVersion: 9
|
||||||
m_Fog: 0
|
m_Fog: 0
|
||||||
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||||
m_FogMode: 3
|
m_FogMode: 3
|
||||||
|
@ -39,6 +39,7 @@ RenderSettings:
|
||||||
m_CustomReflection: {fileID: 0}
|
m_CustomReflection: {fileID: 0}
|
||||||
m_Sun: {fileID: 0}
|
m_Sun: {fileID: 0}
|
||||||
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
||||||
|
m_UseRadianceAmbientProbe: 0
|
||||||
--- !u!157 &3
|
--- !u!157 &3
|
||||||
LightmapSettings:
|
LightmapSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -54,11 +55,10 @@ LightmapSettings:
|
||||||
m_EnableBakedLightmaps: 1
|
m_EnableBakedLightmaps: 1
|
||||||
m_EnableRealtimeLightmaps: 1
|
m_EnableRealtimeLightmaps: 1
|
||||||
m_LightmapEditorSettings:
|
m_LightmapEditorSettings:
|
||||||
serializedVersion: 9
|
serializedVersion: 10
|
||||||
m_Resolution: 2
|
m_Resolution: 2
|
||||||
m_BakeResolution: 40
|
m_BakeResolution: 40
|
||||||
m_TextureWidth: 1024
|
m_AtlasSize: 1024
|
||||||
m_TextureHeight: 1024
|
|
||||||
m_AO: 0
|
m_AO: 0
|
||||||
m_AOMaxDistance: 1
|
m_AOMaxDistance: 1
|
||||||
m_CompAOExponent: 1
|
m_CompAOExponent: 1
|
||||||
|
@ -90,7 +90,7 @@ LightmapSettings:
|
||||||
m_PVRFilteringAtrousPositionSigmaAO: 1
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
m_ShowResolutionOverlay: 1
|
m_ShowResolutionOverlay: 1
|
||||||
m_LightingDataAsset: {fileID: 0}
|
m_LightingDataAsset: {fileID: 0}
|
||||||
m_UseShadowmask: 1
|
m_UseShadowmask: 0
|
||||||
--- !u!196 &4
|
--- !u!196 &4
|
||||||
NavMeshSettings:
|
NavMeshSettings:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
@ -116,9 +116,9 @@ NavMeshSettings:
|
||||||
--- !u!1 &650160435
|
--- !u!1 &650160435
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 650160439}
|
- component: {fileID: 650160439}
|
||||||
- component: {fileID: 650160438}
|
- component: {fileID: 650160438}
|
||||||
|
@ -135,7 +135,7 @@ GameObject:
|
||||||
--- !u!114 &650160436
|
--- !u!114 &650160436
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -151,7 +151,7 @@ MonoBehaviour:
|
||||||
--- !u!114 &650160437
|
--- !u!114 &650160437
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -159,10 +159,10 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_UiScaleMode: 0
|
m_UiScaleMode: 1
|
||||||
m_ReferencePixelsPerUnit: 100
|
m_ReferencePixelsPerUnit: 100
|
||||||
m_ScaleFactor: 1
|
m_ScaleFactor: 1
|
||||||
m_ReferenceResolution: {x: 800, y: 600}
|
m_ReferenceResolution: {x: 1000, y: 720}
|
||||||
m_ScreenMatchMode: 0
|
m_ScreenMatchMode: 0
|
||||||
m_MatchWidthOrHeight: 0
|
m_MatchWidthOrHeight: 0
|
||||||
m_PhysicalUnit: 3
|
m_PhysicalUnit: 3
|
||||||
|
@ -172,7 +172,7 @@ MonoBehaviour:
|
||||||
--- !u!223 &650160438
|
--- !u!223 &650160438
|
||||||
Canvas:
|
Canvas:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -192,7 +192,7 @@ Canvas:
|
||||||
--- !u!224 &650160439
|
--- !u!224 &650160439
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
@ -211,7 +211,7 @@ RectTransform:
|
||||||
--- !u!114 &650160440
|
--- !u!114 &650160440
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -223,9 +223,9 @@ MonoBehaviour:
|
||||||
--- !u!1 &777088603
|
--- !u!1 &777088603
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 777088608}
|
- component: {fileID: 777088608}
|
||||||
- component: {fileID: 777088607}
|
- component: {fileID: 777088607}
|
||||||
|
@ -241,27 +241,31 @@ GameObject:
|
||||||
--- !u!81 &777088604
|
--- !u!81 &777088604
|
||||||
AudioListener:
|
AudioListener:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
--- !u!124 &777088605
|
--- !u!124 &777088605
|
||||||
Behaviour:
|
Behaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
--- !u!20 &777088607
|
--- !u!20 &777088607
|
||||||
Camera:
|
Camera:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_ClearFlags: 2
|
m_ClearFlags: 2
|
||||||
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
|
m_projectionMatrixMode: 1
|
||||||
|
m_SensorSize: {x: 36, y: 24}
|
||||||
|
m_LensShift: {x: 0, y: 0}
|
||||||
|
m_FocalLength: 50
|
||||||
m_NormalizedViewPortRect:
|
m_NormalizedViewPortRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
|
@ -283,6 +287,7 @@ Camera:
|
||||||
m_TargetEye: 3
|
m_TargetEye: 3
|
||||||
m_HDR: 0
|
m_HDR: 0
|
||||||
m_AllowMSAA: 1
|
m_AllowMSAA: 1
|
||||||
|
m_AllowDynamicResolution: 0
|
||||||
m_ForceIntoRT: 0
|
m_ForceIntoRT: 0
|
||||||
m_OcclusionCulling: 1
|
m_OcclusionCulling: 1
|
||||||
m_StereoConvergence: 10
|
m_StereoConvergence: 10
|
||||||
|
@ -290,7 +295,7 @@ Camera:
|
||||||
--- !u!4 &777088608
|
--- !u!4 &777088608
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
@ -300,129 +305,18 @@ Transform:
|
||||||
m_Father: {fileID: 0}
|
m_Father: {fileID: 0}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
--- !u!1 &1012097242
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1012097243}
|
|
||||||
- component: {fileID: 1012097245}
|
|
||||||
- component: {fileID: 1012097244}
|
|
||||||
- component: {fileID: 1012097246}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Image
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1012097243
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_LocalRotation: {x: 0.5, y: 0, z: 0, w: 0.8660254}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 276}
|
|
||||||
m_LocalScale: {x: 0.3, y: 0.3, z: 1}
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 1506879310}
|
|
||||||
m_Father: {fileID: 1590362722}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 60, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: -0.2, y: 0.5}
|
|
||||||
m_AnchorMax: {x: -0.2, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 200, y: 450}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!114 &1012097244
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_Sprite: {fileID: 0}
|
|
||||||
m_Type: 0
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
--- !u!222 &1012097245
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
--- !u!114 &1012097246
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Navigation:
|
|
||||||
m_Mode: 3
|
|
||||||
m_SelectOnUp: {fileID: 0}
|
|
||||||
m_SelectOnDown: {fileID: 0}
|
|
||||||
m_SelectOnLeft: {fileID: 0}
|
|
||||||
m_SelectOnRight: {fileID: 0}
|
|
||||||
m_Transition: 0
|
|
||||||
m_Colors:
|
|
||||||
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
||||||
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
|
||||||
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
|
||||||
m_ColorMultiplier: 1
|
|
||||||
m_FadeDuration: 0.1
|
|
||||||
m_SpriteState:
|
|
||||||
m_HighlightedSprite: {fileID: 0}
|
|
||||||
m_PressedSprite: {fileID: 0}
|
|
||||||
m_DisabledSprite: {fileID: 0}
|
|
||||||
m_AnimationTriggers:
|
|
||||||
m_NormalTrigger: Normal
|
|
||||||
m_HighlightedTrigger: Highlighted
|
|
||||||
m_PressedTrigger: Pressed
|
|
||||||
m_DisabledTrigger: Disabled
|
|
||||||
m_Interactable: 1
|
|
||||||
m_TargetGraphic: {fileID: 1012097244}
|
|
||||||
m_OnClick:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
|
||||||
Culture=neutral, PublicKeyToken=null
|
|
||||||
--- !u!1 &1492537695
|
--- !u!1 &1492537695
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 1492537696}
|
- component: {fileID: 1492537696}
|
||||||
- component: {fileID: 1492537699}
|
|
||||||
- component: {fileID: 1492537702}
|
- component: {fileID: 1492537702}
|
||||||
- component: {fileID: 1492537701}
|
- component: {fileID: 1492537699}
|
||||||
- component: {fileID: 1492537697}
|
- component: {fileID: 1492537697}
|
||||||
|
- component: {fileID: 1492537701}
|
||||||
m_Layer: 5
|
m_Layer: 5
|
||||||
m_Name: ScrollView
|
m_Name: ScrollView
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
|
@ -433,14 +327,13 @@ GameObject:
|
||||||
--- !u!224 &1492537696
|
--- !u!224 &1492537696
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
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_Children:
|
m_Children: []
|
||||||
- {fileID: 1590362722}
|
|
||||||
m_Father: {fileID: 650160439}
|
m_Father: {fileID: 650160439}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
@ -452,7 +345,7 @@ RectTransform:
|
||||||
--- !u!114 &1492537697
|
--- !u!114 &1492537697
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -463,12 +356,13 @@ MonoBehaviour:
|
||||||
cellInterval: 0.15
|
cellInterval: 0.15
|
||||||
cellOffset: 0.5
|
cellOffset: 0.5
|
||||||
loop: 0
|
loop: 0
|
||||||
cellBase: {fileID: 1590362721}
|
cellBase: {fileID: 1990178199191090, guid: 34e1fd87ab6fa4ea9948dd561298519f, type: 2}
|
||||||
|
cellContainer: {fileID: 1492537696}
|
||||||
scrollPositionController: {fileID: 1492537699}
|
scrollPositionController: {fileID: 1492537699}
|
||||||
--- !u!114 &1492537699
|
--- !u!114 &1492537699
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -480,7 +374,7 @@ MonoBehaviour:
|
||||||
directionOfRecognize: 1
|
directionOfRecognize: 1
|
||||||
movementType: 1
|
movementType: 1
|
||||||
elasticity: 0.1
|
elasticity: 0.1
|
||||||
scrollSensitivity: 7
|
scrollSensitivity: 6.7
|
||||||
inertia: 1
|
inertia: 1
|
||||||
decelerationRate: 0.03
|
decelerationRate: 0.03
|
||||||
snap:
|
snap:
|
||||||
|
@ -488,20 +382,10 @@ MonoBehaviour:
|
||||||
VelocityThreshold: 0.5
|
VelocityThreshold: 0.5
|
||||||
Duration: 0.3
|
Duration: 0.3
|
||||||
dataCount: 0
|
dataCount: 0
|
||||||
OnUpdatePosition:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Extensions.ScrollPositionController+UpdatePositionEvent,
|
|
||||||
Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
OnItemSelected:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Extensions.ScrollPositionController+ItemSelectedEvent,
|
|
||||||
Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
--- !u!114 &1492537701
|
--- !u!114 &1492537701
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -510,14 +394,14 @@ 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: 0.392}
|
m_Color: {r: 0.3137255, g: 0.3137255, b: 0.3137255, a: 1}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 1
|
||||||
m_OnCullStateChanged:
|
m_OnCullStateChanged:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls: []
|
m_Calls: []
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
|
m_Sprite: {fileID: 0}
|
||||||
m_Type: 1
|
m_Type: 1
|
||||||
m_PreserveAspect: 0
|
m_PreserveAspect: 0
|
||||||
m_FillCenter: 1
|
m_FillCenter: 1
|
||||||
|
@ -528,176 +412,16 @@ MonoBehaviour:
|
||||||
--- !u!222 &1492537702
|
--- !u!222 &1492537702
|
||||||
CanvasRenderer:
|
CanvasRenderer:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
--- !u!1 &1506879309
|
m_CullTransparentMesh: 0
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1506879310}
|
|
||||||
- component: {fileID: 1506879312}
|
|
||||||
- component: {fileID: 1506879311}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Text
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1506879310
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 1012097243}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!114 &1506879311
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_FontData:
|
|
||||||
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_FontSize: 30
|
|
||||||
m_FontStyle: 3
|
|
||||||
m_BestFit: 0
|
|
||||||
m_MinSize: 3
|
|
||||||
m_MaxSize: 40
|
|
||||||
m_Alignment: 4
|
|
||||||
m_AlignByGeometry: 0
|
|
||||||
m_RichText: 1
|
|
||||||
m_HorizontalOverflow: 0
|
|
||||||
m_VerticalOverflow: 0
|
|
||||||
m_LineSpacing: 1
|
|
||||||
m_Text:
|
|
||||||
--- !u!222 &1506879312
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
--- !u!1 &1590362721
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1590362722}
|
|
||||||
- component: {fileID: 1590362725}
|
|
||||||
- component: {fileID: 1590362723}
|
|
||||||
- component: {fileID: 1590362724}
|
|
||||||
- component: {fileID: 1590362726}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Cell
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1590362722
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
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_Children:
|
|
||||||
- {fileID: 1012097243}
|
|
||||||
m_Father: {fileID: 1492537696}
|
|
||||||
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: 0}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!95 &1590362723
|
|
||||||
Animator:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Avatar: {fileID: 0}
|
|
||||||
m_Controller: {fileID: 9100000, guid: 8bbdb068c73989c438aef167096a86cb, type: 2}
|
|
||||||
m_CullingMode: 0
|
|
||||||
m_UpdateMode: 0
|
|
||||||
m_ApplyRootMotion: 0
|
|
||||||
m_LinearVelocityBlending: 0
|
|
||||||
m_WarningMessage:
|
|
||||||
m_HasTransformHierarchy: 1
|
|
||||||
m_AllowConstantClipSamplingOptimization: 1
|
|
||||||
--- !u!114 &1590362724
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 9409f360a0deeb949a3635126edf8000, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
animator: {fileID: 1590362723}
|
|
||||||
message: {fileID: 1506879311}
|
|
||||||
image: {fileID: 1012097244}
|
|
||||||
button: {fileID: 1012097246}
|
|
||||||
--- !u!222 &1590362725
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
--- !u!225 &1590362726
|
|
||||||
CanvasGroup:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Alpha: 1
|
|
||||||
m_Interactable: 1
|
|
||||||
m_BlocksRaycasts: 1
|
|
||||||
m_IgnoreParentGroups: 0
|
|
||||||
--- !u!1 &1770868449
|
--- !u!1 &1770868449
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 1770868452}
|
- component: {fileID: 1770868452}
|
||||||
- component: {fileID: 1770868451}
|
- component: {fileID: 1770868451}
|
||||||
|
@ -712,7 +436,7 @@ GameObject:
|
||||||
--- !u!114 &1770868450
|
--- !u!114 &1770868450
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -730,7 +454,7 @@ MonoBehaviour:
|
||||||
--- !u!114 &1770868451
|
--- !u!114 &1770868451
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -744,7 +468,7 @@ MonoBehaviour:
|
||||||
--- !u!4 &1770868452
|
--- !u!4 &1770868452
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
|
|
@ -0,0 +1,285 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1001 &100100000
|
||||||
|
Prefab:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Modification:
|
||||||
|
m_TransformParent: {fileID: 0}
|
||||||
|
m_Modifications: []
|
||||||
|
m_RemovedComponents: []
|
||||||
|
m_ParentPrefab: {fileID: 0}
|
||||||
|
m_RootGameObject: {fileID: 1990178199191090}
|
||||||
|
m_IsPrefabParent: 1
|
||||||
|
--- !u!1 &1522302883893958
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224122589464934808}
|
||||||
|
- component: {fileID: 222775066412788828}
|
||||||
|
- component: {fileID: 114760445640709752}
|
||||||
|
- component: {fileID: 114260539386229618}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Image
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1930632076176778
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224672583200271586}
|
||||||
|
- component: {fileID: 222511743304169310}
|
||||||
|
- component: {fileID: 114478160864553524}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1990178199191090
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224773048651217532}
|
||||||
|
- component: {fileID: 222664889498226262}
|
||||||
|
- component: {fileID: 95738470206941598}
|
||||||
|
- component: {fileID: 114380902420646698}
|
||||||
|
- component: {fileID: 225132812804966996}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Cell
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!95 &95738470206941598
|
||||||
|
Animator:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1990178199191090}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Avatar: {fileID: 0}
|
||||||
|
m_Controller: {fileID: 9100000, guid: 8bbdb068c73989c438aef167096a86cb, type: 2}
|
||||||
|
m_CullingMode: 0
|
||||||
|
m_UpdateMode: 0
|
||||||
|
m_ApplyRootMotion: 0
|
||||||
|
m_LinearVelocityBlending: 0
|
||||||
|
m_WarningMessage:
|
||||||
|
m_HasTransformHierarchy: 1
|
||||||
|
m_AllowConstantClipSamplingOptimization: 1
|
||||||
|
--- !u!114 &114260539386229618
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1522302883893958}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 0
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 114760445640709752}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
||||||
|
Culture=neutral, PublicKeyToken=null
|
||||||
|
--- !u!114 &114380902420646698
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1990178199191090}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 9409f360a0deeb949a3635126edf8000, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
animator: {fileID: 95738470206941598}
|
||||||
|
message: {fileID: 114478160864553524}
|
||||||
|
image: {fileID: 114760445640709752}
|
||||||
|
button: {fileID: 114260539386229618}
|
||||||
|
--- !u!114 &114478160864553524
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1930632076176778}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 30
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 3
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text:
|
||||||
|
--- !u!114 &114760445640709752
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1522302883893958}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
--- !u!222 &222511743304169310
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1930632076176778}
|
||||||
|
--- !u!222 &222664889498226262
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1990178199191090}
|
||||||
|
--- !u!222 &222775066412788828
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1522302883893958}
|
||||||
|
--- !u!224 &224122589464934808
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1522302883893958}
|
||||||
|
m_LocalRotation: {x: 0.5, y: 0, z: 0, w: 0.8660254}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 276}
|
||||||
|
m_LocalScale: {x: 0.3, y: 0.3, z: 1}
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 224672583200271586}
|
||||||
|
m_Father: {fileID: 224773048651217532}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 60, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: -0.2, y: 0.5}
|
||||||
|
m_AnchorMax: {x: -0.2, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 200, y: 450}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224672583200271586
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1930632076176778}
|
||||||
|
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 224122589464934808}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224773048651217532
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1990178199191090}
|
||||||
|
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_Children:
|
||||||
|
- {fileID: 224122589464934808}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
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: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!225 &225132812804966996
|
||||||
|
CanvasGroup:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1990178199191090}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Alpha: 1
|
||||||
|
m_Interactable: 1
|
||||||
|
m_BlocksRaycasts: 1
|
||||||
|
m_IgnoreParentGroups: 0
|
|
@ -0,0 +1,10 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 34e1fd87ab6fa4ea9948dd561298519f
|
||||||
|
timeCreated: 1508240666
|
||||||
|
licenseType: Free
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -1,11 +1,12 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example02Scene : MonoBehaviour
|
public class Example02Scene : MonoBehaviour
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Example02ScrollView scrollView = null;
|
Example02ScrollView scrollView;
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,42 +1,31 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example02ScrollView : FancyScrollView<Example02CellDto, Example02ScrollViewContext>
|
public class Example02ScrollView : FancyScrollView<Example02CellDto, Example02ScrollViewContext>
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
ScrollPositionController scrollPositionController = null;
|
ScrollPositionController scrollPositionController;
|
||||||
|
|
||||||
new void Awake()
|
void Awake()
|
||||||
{
|
{
|
||||||
scrollPositionController.OnUpdatePosition.AddListener(UpdatePosition);
|
scrollPositionController.OnUpdatePosition(p => UpdatePosition(p));
|
||||||
// Add OnItemSelected event listener
|
SetContext(new Example02ScrollViewContext { OnPressedCell = OnPressedCell });
|
||||||
scrollPositionController.OnItemSelected.AddListener(CellSelected);
|
}
|
||||||
|
|
||||||
SetContext(new Example02ScrollViewContext { OnPressedCell = OnPressedCell });
|
public void UpdateData(List<Example02CellDto> data)
|
||||||
base.Awake();
|
{
|
||||||
}
|
cellData = data;
|
||||||
|
scrollPositionController.SetDataCount(cellData.Count);
|
||||||
|
UpdateContents();
|
||||||
|
}
|
||||||
|
|
||||||
public void UpdateData(List<Example02CellDto> data)
|
void OnPressedCell(Example02ScrollViewCell cell)
|
||||||
{
|
{
|
||||||
cellData = data;
|
scrollPositionController.ScrollTo(cell.DataIndex, 0.4f);
|
||||||
scrollPositionController.SetDataCount(cellData.Count);
|
Context.SelectedIndex = cell.DataIndex;
|
||||||
UpdateContents();
|
UpdateContents();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
void OnPressedCell(Example02ScrollViewCell cell)
|
|
||||||
{
|
|
||||||
scrollPositionController.ScrollTo(cell.DataIndex, 0.4f);
|
|
||||||
context.SelectedIndex = cell.DataIndex;
|
|
||||||
UpdateContents();
|
|
||||||
}
|
|
||||||
|
|
||||||
// An event triggered when a cell is selected.
|
|
||||||
void CellSelected(int cellIndex)
|
|
||||||
{
|
|
||||||
// Update context.SelectedIndex and call UpdateContents for updating cell's content.
|
|
||||||
context.SelectedIndex = cellIndex;
|
|
||||||
UpdateContents();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,51 +1,37 @@
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example02ScrollViewCell
|
public class Example02ScrollViewCell : FancyScrollViewCell<Example02CellDto, Example02ScrollViewContext>
|
||||||
: FancyScrollViewCell<Example02CellDto, Example02ScrollViewContext>
|
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Animator animator = null;
|
Animator animator;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Text message = null;
|
Text message;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Image image = null;
|
Image image;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Button button = null;
|
Button button;
|
||||||
|
|
||||||
readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
static readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
||||||
Example02ScrollViewContext context;
|
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
var rectTransform = transform as RectTransform;
|
|
||||||
rectTransform.anchorMax = Vector2.one;
|
|
||||||
rectTransform.anchorMin = Vector2.zero;
|
|
||||||
rectTransform.anchoredPosition3D = Vector3.zero;
|
|
||||||
UpdatePosition(0);
|
|
||||||
|
|
||||||
button.onClick.AddListener(OnPressedCell);
|
button.onClick.AddListener(OnPressedCell);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// コンテキストを設定します
|
/// Updates the content.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context"></param>
|
/// <param name="itemData">Item data.</param>
|
||||||
public override void SetContext(Example02ScrollViewContext context)
|
|
||||||
{
|
|
||||||
this.context = context;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// セルの内容を更新します
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="itemData"></param>
|
|
||||||
public override void UpdateContent(Example02CellDto itemData)
|
public override void UpdateContent(Example02CellDto itemData)
|
||||||
{
|
{
|
||||||
message.text = itemData.Message;
|
message.text = itemData.Message;
|
||||||
|
|
||||||
if (context != null)
|
if (Context != null)
|
||||||
{
|
{
|
||||||
var isSelected = context.SelectedIndex == DataIndex;
|
var isSelected = Context.SelectedIndex == DataIndex;
|
||||||
image.color = isSelected
|
image.color = isSelected
|
||||||
? new Color32(0, 255, 255, 100)
|
? new Color32(0, 255, 255, 100)
|
||||||
: new Color32(255, 255, 255, 77);
|
: new Color32(255, 255, 255, 77);
|
||||||
|
@ -53,21 +39,30 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// セルの位置を更新します
|
/// Updates the position.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="position"></param>
|
/// <param name="position">Position.</param>
|
||||||
public override void UpdatePosition(float position)
|
public override void UpdatePosition(float position)
|
||||||
{
|
{
|
||||||
|
currentPosition = position;
|
||||||
animator.Play(scrollTriggerHash, -1, position);
|
animator.Play(scrollTriggerHash, -1, position);
|
||||||
animator.speed = 0;
|
animator.speed = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnPressedCell()
|
void OnPressedCell()
|
||||||
{
|
{
|
||||||
if (context != null)
|
if (Context != null)
|
||||||
{
|
{
|
||||||
context.OnPressedCell(this);
|
Context.OnPressedCell(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GameObject が非アクティブになると Animator がリセットされてしまうため
|
||||||
|
// 現在位置を保持しておいて OnEnable のタイミングで現在位置を再設定します
|
||||||
|
float currentPosition = 0;
|
||||||
|
void OnEnable()
|
||||||
|
{
|
||||||
|
UpdatePosition(currentPosition);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
using System;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example02ScrollViewContext
|
public class Example02ScrollViewContext
|
||||||
{
|
{
|
||||||
public System.Action<Example02ScrollViewCell> OnPressedCell;
|
public Action<Example02ScrollViewCell> OnPressedCell;
|
||||||
public int SelectedIndex;
|
public int SelectedIndex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ OcclusionCullingSettings:
|
||||||
--- !u!104 &2
|
--- !u!104 &2
|
||||||
RenderSettings:
|
RenderSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
serializedVersion: 8
|
serializedVersion: 9
|
||||||
m_Fog: 0
|
m_Fog: 0
|
||||||
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||||
m_FogMode: 3
|
m_FogMode: 3
|
||||||
|
@ -39,6 +39,7 @@ RenderSettings:
|
||||||
m_CustomReflection: {fileID: 0}
|
m_CustomReflection: {fileID: 0}
|
||||||
m_Sun: {fileID: 0}
|
m_Sun: {fileID: 0}
|
||||||
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
||||||
|
m_UseRadianceAmbientProbe: 0
|
||||||
--- !u!157 &3
|
--- !u!157 &3
|
||||||
LightmapSettings:
|
LightmapSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -54,11 +55,10 @@ LightmapSettings:
|
||||||
m_EnableBakedLightmaps: 1
|
m_EnableBakedLightmaps: 1
|
||||||
m_EnableRealtimeLightmaps: 1
|
m_EnableRealtimeLightmaps: 1
|
||||||
m_LightmapEditorSettings:
|
m_LightmapEditorSettings:
|
||||||
serializedVersion: 9
|
serializedVersion: 10
|
||||||
m_Resolution: 2
|
m_Resolution: 2
|
||||||
m_BakeResolution: 40
|
m_BakeResolution: 40
|
||||||
m_TextureWidth: 1024
|
m_AtlasSize: 1024
|
||||||
m_TextureHeight: 1024
|
|
||||||
m_AO: 0
|
m_AO: 0
|
||||||
m_AOMaxDistance: 1
|
m_AOMaxDistance: 1
|
||||||
m_CompAOExponent: 1
|
m_CompAOExponent: 1
|
||||||
|
@ -90,7 +90,7 @@ LightmapSettings:
|
||||||
m_PVRFilteringAtrousPositionSigmaAO: 1
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
m_ShowResolutionOverlay: 1
|
m_ShowResolutionOverlay: 1
|
||||||
m_LightingDataAsset: {fileID: 0}
|
m_LightingDataAsset: {fileID: 0}
|
||||||
m_UseShadowmask: 1
|
m_UseShadowmask: 0
|
||||||
--- !u!196 &4
|
--- !u!196 &4
|
||||||
NavMeshSettings:
|
NavMeshSettings:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
@ -116,9 +116,9 @@ NavMeshSettings:
|
||||||
--- !u!1 &650160435
|
--- !u!1 &650160435
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 650160439}
|
- component: {fileID: 650160439}
|
||||||
- component: {fileID: 650160438}
|
- component: {fileID: 650160438}
|
||||||
|
@ -135,7 +135,7 @@ GameObject:
|
||||||
--- !u!114 &650160436
|
--- !u!114 &650160436
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -151,7 +151,7 @@ MonoBehaviour:
|
||||||
--- !u!114 &650160437
|
--- !u!114 &650160437
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -159,12 +159,12 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_UiScaleMode: 0
|
m_UiScaleMode: 1
|
||||||
m_ReferencePixelsPerUnit: 100
|
m_ReferencePixelsPerUnit: 100
|
||||||
m_ScaleFactor: 1
|
m_ScaleFactor: 1
|
||||||
m_ReferenceResolution: {x: 800, y: 600}
|
m_ReferenceResolution: {x: 1000, y: 720}
|
||||||
m_ScreenMatchMode: 0
|
m_ScreenMatchMode: 0
|
||||||
m_MatchWidthOrHeight: 0
|
m_MatchWidthOrHeight: 1
|
||||||
m_PhysicalUnit: 3
|
m_PhysicalUnit: 3
|
||||||
m_FallbackScreenDPI: 96
|
m_FallbackScreenDPI: 96
|
||||||
m_DefaultSpriteDPI: 96
|
m_DefaultSpriteDPI: 96
|
||||||
|
@ -172,7 +172,7 @@ MonoBehaviour:
|
||||||
--- !u!223 &650160438
|
--- !u!223 &650160438
|
||||||
Canvas:
|
Canvas:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -192,7 +192,7 @@ Canvas:
|
||||||
--- !u!224 &650160439
|
--- !u!224 &650160439
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
@ -211,7 +211,7 @@ RectTransform:
|
||||||
--- !u!114 &650160440
|
--- !u!114 &650160440
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 650160435}
|
m_GameObject: {fileID: 650160435}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -223,9 +223,9 @@ MonoBehaviour:
|
||||||
--- !u!1 &777088603
|
--- !u!1 &777088603
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 777088608}
|
- component: {fileID: 777088608}
|
||||||
- component: {fileID: 777088607}
|
- component: {fileID: 777088607}
|
||||||
|
@ -241,27 +241,31 @@ GameObject:
|
||||||
--- !u!81 &777088604
|
--- !u!81 &777088604
|
||||||
AudioListener:
|
AudioListener:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
--- !u!124 &777088605
|
--- !u!124 &777088605
|
||||||
Behaviour:
|
Behaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
--- !u!20 &777088607
|
--- !u!20 &777088607
|
||||||
Camera:
|
Camera:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_ClearFlags: 2
|
m_ClearFlags: 2
|
||||||
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
|
m_projectionMatrixMode: 1
|
||||||
|
m_SensorSize: {x: 36, y: 24}
|
||||||
|
m_LensShift: {x: 0, y: 0}
|
||||||
|
m_FocalLength: 50
|
||||||
m_NormalizedViewPortRect:
|
m_NormalizedViewPortRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
|
@ -291,7 +295,7 @@ Camera:
|
||||||
--- !u!4 &777088608
|
--- !u!4 &777088608
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 777088603}
|
m_GameObject: {fileID: 777088603}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
@ -301,129 +305,18 @@ Transform:
|
||||||
m_Father: {fileID: 0}
|
m_Father: {fileID: 0}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
--- !u!1 &1012097242
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1012097243}
|
|
||||||
- component: {fileID: 1012097245}
|
|
||||||
- component: {fileID: 1012097244}
|
|
||||||
- component: {fileID: 1012097246}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Image
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1012097243
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_LocalRotation: {x: 0.6427876, y: 0, z: 0, w: 0.7660445}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 0.8, y: 0.8, z: 1}
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 1506879310}
|
|
||||||
m_Father: {fileID: 1590362722}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: -80, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0.5, y: 0.7}
|
|
||||||
m_AnchorMax: {x: 0.5, y: 0.7}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 200, y: 400}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!114 &1012097244
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_Sprite: {fileID: 0}
|
|
||||||
m_Type: 0
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
--- !u!222 &1012097245
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
--- !u!114 &1012097246
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1012097242}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Navigation:
|
|
||||||
m_Mode: 3
|
|
||||||
m_SelectOnUp: {fileID: 0}
|
|
||||||
m_SelectOnDown: {fileID: 0}
|
|
||||||
m_SelectOnLeft: {fileID: 0}
|
|
||||||
m_SelectOnRight: {fileID: 0}
|
|
||||||
m_Transition: 0
|
|
||||||
m_Colors:
|
|
||||||
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
||||||
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
|
||||||
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
|
||||||
m_ColorMultiplier: 1
|
|
||||||
m_FadeDuration: 0.1
|
|
||||||
m_SpriteState:
|
|
||||||
m_HighlightedSprite: {fileID: 0}
|
|
||||||
m_PressedSprite: {fileID: 0}
|
|
||||||
m_DisabledSprite: {fileID: 0}
|
|
||||||
m_AnimationTriggers:
|
|
||||||
m_NormalTrigger: Normal
|
|
||||||
m_HighlightedTrigger: Highlighted
|
|
||||||
m_PressedTrigger: Pressed
|
|
||||||
m_DisabledTrigger: Disabled
|
|
||||||
m_Interactable: 1
|
|
||||||
m_TargetGraphic: {fileID: 1012097244}
|
|
||||||
m_OnClick:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
|
||||||
Culture=neutral, PublicKeyToken=null
|
|
||||||
--- !u!1 &1492537695
|
--- !u!1 &1492537695
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 1492537696}
|
- component: {fileID: 1492537696}
|
||||||
- component: {fileID: 1492537699}
|
|
||||||
- component: {fileID: 1492537702}
|
- component: {fileID: 1492537702}
|
||||||
- component: {fileID: 1492537701}
|
- component: {fileID: 1492537699}
|
||||||
- component: {fileID: 1492537697}
|
- component: {fileID: 1492537697}
|
||||||
|
- component: {fileID: 1492537701}
|
||||||
m_Layer: 5
|
m_Layer: 5
|
||||||
m_Name: ScrollView
|
m_Name: ScrollView
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
|
@ -434,14 +327,13 @@ GameObject:
|
||||||
--- !u!224 &1492537696
|
--- !u!224 &1492537696
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
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_Children:
|
m_Children: []
|
||||||
- {fileID: 1590362722}
|
|
||||||
m_Father: {fileID: 650160439}
|
m_Father: {fileID: 650160439}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
@ -453,7 +345,7 @@ RectTransform:
|
||||||
--- !u!114 &1492537697
|
--- !u!114 &1492537697
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -464,12 +356,13 @@ MonoBehaviour:
|
||||||
cellInterval: 0.06666667
|
cellInterval: 0.06666667
|
||||||
cellOffset: 0.5
|
cellOffset: 0.5
|
||||||
loop: 1
|
loop: 1
|
||||||
cellBase: {fileID: 1590362721}
|
cellBase: {fileID: 1221554162844996, guid: 9f335687a8637461084c79de7d4fa648, type: 2}
|
||||||
|
cellContainer: {fileID: 1492537696}
|
||||||
scrollPositionController: {fileID: 1492537699}
|
scrollPositionController: {fileID: 1492537699}
|
||||||
--- !u!114 &1492537699
|
--- !u!114 &1492537699
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -481,7 +374,7 @@ MonoBehaviour:
|
||||||
directionOfRecognize: 1
|
directionOfRecognize: 1
|
||||||
movementType: 0
|
movementType: 0
|
||||||
elasticity: 0.1
|
elasticity: 0.1
|
||||||
scrollSensitivity: 7
|
scrollSensitivity: 6.7
|
||||||
inertia: 1
|
inertia: 1
|
||||||
decelerationRate: 0.03
|
decelerationRate: 0.03
|
||||||
snap:
|
snap:
|
||||||
|
@ -489,20 +382,10 @@ MonoBehaviour:
|
||||||
VelocityThreshold: 0.5
|
VelocityThreshold: 0.5
|
||||||
Duration: 0.3
|
Duration: 0.3
|
||||||
dataCount: 0
|
dataCount: 0
|
||||||
OnUpdatePosition:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Extensions.ScrollPositionController+UpdatePositionEvent,
|
|
||||||
Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
OnItemSelected:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.Extensions.ScrollPositionController+ItemSelectedEvent,
|
|
||||||
Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
--- !u!114 &1492537701
|
--- !u!114 &1492537701
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -511,14 +394,14 @@ 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: 0.392}
|
m_Color: {r: 0.3137255, g: 0.3137255, b: 0.3137255, a: 1}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 1
|
||||||
m_OnCullStateChanged:
|
m_OnCullStateChanged:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls: []
|
m_Calls: []
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
|
m_Sprite: {fileID: 0}
|
||||||
m_Type: 1
|
m_Type: 1
|
||||||
m_PreserveAspect: 0
|
m_PreserveAspect: 0
|
||||||
m_FillCenter: 1
|
m_FillCenter: 1
|
||||||
|
@ -529,176 +412,16 @@ MonoBehaviour:
|
||||||
--- !u!222 &1492537702
|
--- !u!222 &1492537702
|
||||||
CanvasRenderer:
|
CanvasRenderer:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1492537695}
|
m_GameObject: {fileID: 1492537695}
|
||||||
--- !u!1 &1506879309
|
m_CullTransparentMesh: 0
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1506879310}
|
|
||||||
- component: {fileID: 1506879312}
|
|
||||||
- component: {fileID: 1506879311}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Text
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1506879310
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 1012097243}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!114 &1506879311
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_FontData:
|
|
||||||
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_FontSize: 30
|
|
||||||
m_FontStyle: 3
|
|
||||||
m_BestFit: 0
|
|
||||||
m_MinSize: 3
|
|
||||||
m_MaxSize: 40
|
|
||||||
m_Alignment: 4
|
|
||||||
m_AlignByGeometry: 0
|
|
||||||
m_RichText: 1
|
|
||||||
m_HorizontalOverflow: 0
|
|
||||||
m_VerticalOverflow: 0
|
|
||||||
m_LineSpacing: 1
|
|
||||||
m_Text:
|
|
||||||
--- !u!222 &1506879312
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1506879309}
|
|
||||||
--- !u!1 &1590362721
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1590362722}
|
|
||||||
- component: {fileID: 1590362725}
|
|
||||||
- component: {fileID: 1590362723}
|
|
||||||
- component: {fileID: 1590362724}
|
|
||||||
- component: {fileID: 1590362728}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Cell
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &1590362722
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_LocalRotation: {x: -0, y: -0.026176924, z: -0.99965733, w: 0}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 1012097243}
|
|
||||||
m_Father: {fileID: 1492537696}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: -3, y: 0, z: -180}
|
|
||||||
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: 980, y: 552}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!95 &1590362723
|
|
||||||
Animator:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Avatar: {fileID: 0}
|
|
||||||
m_Controller: {fileID: 9100000, guid: c1a16bf117472bf47b662d4bc2647177, type: 2}
|
|
||||||
m_CullingMode: 0
|
|
||||||
m_UpdateMode: 0
|
|
||||||
m_ApplyRootMotion: 0
|
|
||||||
m_LinearVelocityBlending: 0
|
|
||||||
m_WarningMessage:
|
|
||||||
m_HasTransformHierarchy: 1
|
|
||||||
m_AllowConstantClipSamplingOptimization: 1
|
|
||||||
--- !u!114 &1590362724
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 173c545de5ff4e048bcc3642f8392e4e, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
animator: {fileID: 1590362723}
|
|
||||||
message: {fileID: 1506879311}
|
|
||||||
image: {fileID: 1012097244}
|
|
||||||
button: {fileID: 1012097246}
|
|
||||||
--- !u!222 &1590362725
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
--- !u!225 &1590362728
|
|
||||||
CanvasGroup:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1590362721}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Alpha: 1
|
|
||||||
m_Interactable: 1
|
|
||||||
m_BlocksRaycasts: 1
|
|
||||||
m_IgnoreParentGroups: 0
|
|
||||||
--- !u!1 &1770868449
|
--- !u!1 &1770868449
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
serializedVersion: 5
|
serializedVersion: 6
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 1770868452}
|
- component: {fileID: 1770868452}
|
||||||
- component: {fileID: 1770868451}
|
- component: {fileID: 1770868451}
|
||||||
|
@ -713,7 +436,7 @@ GameObject:
|
||||||
--- !u!114 &1770868450
|
--- !u!114 &1770868450
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -731,7 +454,7 @@ MonoBehaviour:
|
||||||
--- !u!114 &1770868451
|
--- !u!114 &1770868451
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
|
@ -745,7 +468,7 @@ MonoBehaviour:
|
||||||
--- !u!4 &1770868452
|
--- !u!4 &1770868452
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_PrefabParentObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1770868449}
|
m_GameObject: {fileID: 1770868449}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
|
|
@ -40,39 +40,14 @@ AnimatorStateTransition:
|
||||||
m_Mute: 0
|
m_Mute: 0
|
||||||
m_IsExit: 0
|
m_IsExit: 0
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TransitionDuration: 0.1
|
m_TransitionDuration: 0
|
||||||
m_TransitionOffset: 0
|
m_TransitionOffset: 0
|
||||||
m_ExitTime: 0.9
|
m_ExitTime: 0
|
||||||
m_HasExitTime: 1
|
m_HasExitTime: 1
|
||||||
m_HasFixedDuration: 1
|
m_HasFixedDuration: 1
|
||||||
m_InterruptionSource: 0
|
m_InterruptionSource: 0
|
||||||
m_OrderedInterruption: 1
|
m_OrderedInterruption: 1
|
||||||
m_CanTransitionToSelf: 1
|
m_CanTransitionToSelf: 1
|
||||||
--- !u!1102 &1102483224443493760
|
|
||||||
AnimatorState:
|
|
||||||
serializedVersion: 5
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_Name: New State
|
|
||||||
m_Speed: 1
|
|
||||||
m_CycleOffset: 0
|
|
||||||
m_Transitions: []
|
|
||||||
m_StateMachineBehaviours: []
|
|
||||||
m_Position: {x: 50, y: 50, z: 0}
|
|
||||||
m_IKOnFeet: 0
|
|
||||||
m_WriteDefaultValues: 1
|
|
||||||
m_Mirror: 0
|
|
||||||
m_SpeedParameterActive: 0
|
|
||||||
m_MirrorParameterActive: 0
|
|
||||||
m_CycleOffsetParameterActive: 0
|
|
||||||
m_TimeParameterActive: 0
|
|
||||||
m_Motion: {fileID: 0}
|
|
||||||
m_Tag:
|
|
||||||
m_SpeedParameter:
|
|
||||||
m_MirrorParameter:
|
|
||||||
m_CycleOffsetParameter:
|
|
||||||
m_TimeParameter:
|
|
||||||
--- !u!1102 &1102900943980948860
|
--- !u!1102 &1102900943980948860
|
||||||
AnimatorState:
|
AnimatorState:
|
||||||
serializedVersion: 5
|
serializedVersion: 5
|
||||||
|
@ -91,13 +66,11 @@ AnimatorState:
|
||||||
m_SpeedParameterActive: 0
|
m_SpeedParameterActive: 0
|
||||||
m_MirrorParameterActive: 0
|
m_MirrorParameterActive: 0
|
||||||
m_CycleOffsetParameterActive: 0
|
m_CycleOffsetParameterActive: 0
|
||||||
m_TimeParameterActive: 0
|
|
||||||
m_Motion: {fileID: 7400000, guid: add491cbb06317b48a88a94b0081db1d, type: 2}
|
m_Motion: {fileID: 7400000, guid: add491cbb06317b48a88a94b0081db1d, type: 2}
|
||||||
m_Tag:
|
m_Tag:
|
||||||
m_SpeedParameter:
|
m_SpeedParameter:
|
||||||
m_MirrorParameter:
|
m_MirrorParameter:
|
||||||
m_CycleOffsetParameter:
|
m_CycleOffsetParameter:
|
||||||
m_TimeParameter:
|
|
||||||
--- !u!1107 &1107904440216339570
|
--- !u!1107 &1107904440216339570
|
||||||
AnimatorStateMachine:
|
AnimatorStateMachine:
|
||||||
serializedVersion: 5
|
serializedVersion: 5
|
||||||
|
@ -106,20 +79,31 @@ AnimatorStateMachine:
|
||||||
m_PrefabInternal: {fileID: 0}
|
m_PrefabInternal: {fileID: 0}
|
||||||
m_Name: Base Layer
|
m_Name: Base Layer
|
||||||
m_ChildStates:
|
m_ChildStates:
|
||||||
- serializedVersion: 1
|
|
||||||
m_State: {fileID: 1102483224443493760}
|
|
||||||
m_Position: {x: 264, y: 144, z: 0}
|
|
||||||
- serializedVersion: 1
|
- serializedVersion: 1
|
||||||
m_State: {fileID: 1102900943980948860}
|
m_State: {fileID: 1102900943980948860}
|
||||||
m_Position: {x: 252, y: 24, z: 0}
|
m_Position: {x: 252, y: 24, z: 0}
|
||||||
m_ChildStateMachines: []
|
m_ChildStateMachines: []
|
||||||
m_AnyStateTransitions:
|
m_AnyStateTransitions:
|
||||||
- {fileID: 1101181072344081740}
|
- {fileID: 1101181072344081740}
|
||||||
m_EntryTransitions: []
|
m_EntryTransitions:
|
||||||
|
- {fileID: 1109636549241105896}
|
||||||
m_StateMachineTransitions: {}
|
m_StateMachineTransitions: {}
|
||||||
m_StateMachineBehaviours: []
|
m_StateMachineBehaviours: []
|
||||||
m_AnyStatePosition: {x: 50, y: 20, z: 0}
|
m_AnyStatePosition: {x: 50, y: 20, z: 0}
|
||||||
m_EntryPosition: {x: 50, y: 120, z: 0}
|
m_EntryPosition: {x: 50, y: 120, z: 0}
|
||||||
m_ExitPosition: {x: 800, y: 120, z: 0}
|
m_ExitPosition: {x: 800, y: 120, z: 0}
|
||||||
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
|
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
|
||||||
m_DefaultState: {fileID: 1102483224443493760}
|
m_DefaultState: {fileID: 1102900943980948860}
|
||||||
|
--- !u!1109 &1109636549241105896
|
||||||
|
AnimatorTransition:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_Name:
|
||||||
|
m_Conditions: []
|
||||||
|
m_DstStateMachine: {fileID: 0}
|
||||||
|
m_DstState: {fileID: 1102900943980948860}
|
||||||
|
m_Solo: 0
|
||||||
|
m_Mute: 0
|
||||||
|
m_IsExit: 0
|
||||||
|
serializedVersion: 1
|
||||||
|
|
|
@ -0,0 +1,285 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1001 &100100000
|
||||||
|
Prefab:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Modification:
|
||||||
|
m_TransformParent: {fileID: 0}
|
||||||
|
m_Modifications: []
|
||||||
|
m_RemovedComponents: []
|
||||||
|
m_ParentPrefab: {fileID: 0}
|
||||||
|
m_RootGameObject: {fileID: 1221554162844996}
|
||||||
|
m_IsPrefabParent: 1
|
||||||
|
--- !u!1 &1221554162844996
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224074857087714952}
|
||||||
|
- component: {fileID: 222042059662561374}
|
||||||
|
- component: {fileID: 95778848000202222}
|
||||||
|
- component: {fileID: 114707203090844410}
|
||||||
|
- component: {fileID: 225136387271751638}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Cell
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1502615064423224
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224380090297695760}
|
||||||
|
- component: {fileID: 222831048704461028}
|
||||||
|
- component: {fileID: 114812008654627120}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1947574172321942
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224954669572700526}
|
||||||
|
- component: {fileID: 222551609956205986}
|
||||||
|
- component: {fileID: 114660354469163804}
|
||||||
|
- component: {fileID: 114451288272170832}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Image
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!95 &95778848000202222
|
||||||
|
Animator:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1221554162844996}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Avatar: {fileID: 0}
|
||||||
|
m_Controller: {fileID: 9100000, guid: c1a16bf117472bf47b662d4bc2647177, type: 2}
|
||||||
|
m_CullingMode: 0
|
||||||
|
m_UpdateMode: 0
|
||||||
|
m_ApplyRootMotion: 0
|
||||||
|
m_LinearVelocityBlending: 0
|
||||||
|
m_WarningMessage:
|
||||||
|
m_HasTransformHierarchy: 1
|
||||||
|
m_AllowConstantClipSamplingOptimization: 1
|
||||||
|
--- !u!114 &114451288272170832
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1947574172321942}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 0
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 114660354469163804}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
||||||
|
Culture=neutral, PublicKeyToken=null
|
||||||
|
--- !u!114 &114660354469163804
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1947574172321942}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
--- !u!114 &114707203090844410
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1221554162844996}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 173c545de5ff4e048bcc3642f8392e4e, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
animator: {fileID: 95778848000202222}
|
||||||
|
message: {fileID: 114812008654627120}
|
||||||
|
image: {fileID: 114660354469163804}
|
||||||
|
button: {fileID: 114451288272170832}
|
||||||
|
--- !u!114 &114812008654627120
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1502615064423224}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 30
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 3
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text:
|
||||||
|
--- !u!222 &222042059662561374
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1221554162844996}
|
||||||
|
--- !u!222 &222551609956205986
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1947574172321942}
|
||||||
|
--- !u!222 &222831048704461028
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1502615064423224}
|
||||||
|
--- !u!224 &224074857087714952
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1221554162844996}
|
||||||
|
m_LocalRotation: {x: -0, y: -0.026176924, z: -0.99965733, w: 0}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 224954669572700526}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: -3, y: 0, z: -180}
|
||||||
|
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: 980, y: 552}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224380090297695760
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1502615064423224}
|
||||||
|
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 224954669572700526}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224954669572700526
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1947574172321942}
|
||||||
|
m_LocalRotation: {x: 0.6427876, y: 0, z: 0, w: 0.7660445}
|
||||||
|
m_LocalPosition: {x: 0, y: 110.399994, z: 0}
|
||||||
|
m_LocalScale: {x: 0.8, y: 0.8, z: 1}
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 224380090297695760}
|
||||||
|
m_Father: {fileID: 224074857087714952}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: -80, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 0.7}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 0.7}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 200, y: 400}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!225 &225136387271751638
|
||||||
|
CanvasGroup:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1221554162844996}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Alpha: 1
|
||||||
|
m_Interactable: 1
|
||||||
|
m_BlocksRaycasts: 1
|
||||||
|
m_IgnoreParentGroups: 0
|
|
@ -0,0 +1,10 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9f335687a8637461084c79de7d4fa648
|
||||||
|
timeCreated: 1508240643
|
||||||
|
licenseType: Free
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -1,11 +1,12 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example03Scene : MonoBehaviour
|
public class Example03Scene : MonoBehaviour
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Example03ScrollView scrollView = null;
|
Example03ScrollView scrollView;
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,21 +1,17 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example03ScrollView : FancyScrollView<Example03CellDto, Example03ScrollViewContext>
|
public class Example03ScrollView : FancyScrollView<Example03CellDto, Example03ScrollViewContext>
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
ScrollPositionController scrollPositionController = null;
|
ScrollPositionController scrollPositionController;
|
||||||
|
|
||||||
new void Awake()
|
void Awake()
|
||||||
{
|
{
|
||||||
scrollPositionController.OnUpdatePosition.AddListener(UpdatePosition);
|
scrollPositionController.OnUpdatePosition(p => UpdatePosition(p));
|
||||||
|
|
||||||
// Add OnItemSelected event listener
|
|
||||||
scrollPositionController.OnItemSelected.AddListener(CellSelected);
|
|
||||||
|
|
||||||
SetContext(new Example03ScrollViewContext { OnPressedCell = OnPressedCell });
|
SetContext(new Example03ScrollViewContext { OnPressedCell = OnPressedCell });
|
||||||
base.Awake();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateData(List<Example03CellDto> data)
|
public void UpdateData(List<Example03CellDto> data)
|
||||||
|
@ -28,15 +24,7 @@ namespace UnityEngine.UI.Extensions.Examples
|
||||||
void OnPressedCell(Example03ScrollViewCell cell)
|
void OnPressedCell(Example03ScrollViewCell cell)
|
||||||
{
|
{
|
||||||
scrollPositionController.ScrollTo(cell.DataIndex, 0.4f);
|
scrollPositionController.ScrollTo(cell.DataIndex, 0.4f);
|
||||||
context.SelectedIndex = cell.DataIndex;
|
Context.SelectedIndex = cell.DataIndex;
|
||||||
UpdateContents();
|
|
||||||
}
|
|
||||||
|
|
||||||
// An event triggered when a cell is selected.
|
|
||||||
void CellSelected(int cellIndex)
|
|
||||||
{
|
|
||||||
// Update context.SelectedIndex and call UpdateContents for updating cell's content.
|
|
||||||
context.SelectedIndex = cellIndex;
|
|
||||||
UpdateContents();
|
UpdateContents();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,20 @@
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example03ScrollViewCell
|
public class Example03ScrollViewCell : FancyScrollViewCell<Example03CellDto, Example03ScrollViewContext>
|
||||||
: FancyScrollViewCell<Example03CellDto, Example03ScrollViewContext>
|
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Animator animator = null;
|
Animator animator;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Text message = null;
|
Text message;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Image image = null;
|
Image image;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
Button button = null;
|
Button button;
|
||||||
|
|
||||||
readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
static readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
||||||
Example03ScrollViewContext context;
|
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
@ -21,31 +22,21 @@
|
||||||
rectTransform.anchorMax = Vector2.one;
|
rectTransform.anchorMax = Vector2.one;
|
||||||
rectTransform.anchorMin = Vector2.zero;
|
rectTransform.anchorMin = Vector2.zero;
|
||||||
rectTransform.anchoredPosition3D = Vector3.zero;
|
rectTransform.anchoredPosition3D = Vector3.zero;
|
||||||
UpdatePosition(0);
|
|
||||||
|
|
||||||
button.onClick.AddListener(OnPressedCell);
|
button.onClick.AddListener(OnPressedCell);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// コンテキストを設定します
|
/// Updates the content.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context"></param>
|
/// <param name="itemData">Item data.</param>
|
||||||
public override void SetContext(Example03ScrollViewContext context)
|
|
||||||
{
|
|
||||||
this.context = context;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// セルの内容を更新します
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="itemData"></param>
|
|
||||||
public override void UpdateContent(Example03CellDto itemData)
|
public override void UpdateContent(Example03CellDto itemData)
|
||||||
{
|
{
|
||||||
message.text = itemData.Message;
|
message.text = itemData.Message;
|
||||||
|
|
||||||
if (context != null)
|
if (Context != null)
|
||||||
{
|
{
|
||||||
var isSelected = context.SelectedIndex == DataIndex;
|
var isSelected = Context.SelectedIndex == DataIndex;
|
||||||
image.color = isSelected
|
image.color = isSelected
|
||||||
? new Color32(0, 255, 255, 100)
|
? new Color32(0, 255, 255, 100)
|
||||||
: new Color32(255, 255, 255, 77);
|
: new Color32(255, 255, 255, 77);
|
||||||
|
@ -53,21 +44,30 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// セルの位置を更新します
|
/// Updates the position.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="position"></param>
|
/// <param name="position">Position.</param>
|
||||||
public override void UpdatePosition(float position)
|
public override void UpdatePosition(float position)
|
||||||
{
|
{
|
||||||
|
currentPosition = position;
|
||||||
animator.Play(scrollTriggerHash, -1, position);
|
animator.Play(scrollTriggerHash, -1, position);
|
||||||
animator.speed = 0;
|
animator.speed = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnPressedCell()
|
void OnPressedCell()
|
||||||
{
|
{
|
||||||
if (context != null)
|
if (Context != null)
|
||||||
{
|
{
|
||||||
context.OnPressedCell(this);
|
Context.OnPressedCell(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GameObject が非アクティブになると Animator がリセットされてしまうため
|
||||||
|
// 現在位置を保持しておいて OnEnable のタイミングで現在位置を再設定します
|
||||||
|
float currentPosition = 0;
|
||||||
|
void OnEnable()
|
||||||
|
{
|
||||||
|
UpdatePosition(currentPosition);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
namespace UnityEngine.UI.Extensions.Examples
|
using System;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
{
|
{
|
||||||
public class Example03ScrollViewContext
|
public class Example03ScrollViewContext
|
||||||
{
|
{
|
||||||
public System.Action<Example03ScrollViewCell> OnPressedCell;
|
public Action<Example03ScrollViewCell> OnPressedCell;
|
||||||
public int SelectedIndex;
|
public int SelectedIndex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 542c0e319fa7cad46be7c6a425ad62c1
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,935 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!29 &1
|
||||||
|
OcclusionCullingSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 2
|
||||||
|
m_OcclusionBakeSettings:
|
||||||
|
smallestOccluder: 5
|
||||||
|
smallestHole: 0.25
|
||||||
|
backfaceThreshold: 100
|
||||||
|
m_SceneGUID: 00000000000000000000000000000000
|
||||||
|
m_OcclusionCullingData: {fileID: 0}
|
||||||
|
--- !u!104 &2
|
||||||
|
RenderSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 9
|
||||||
|
m_Fog: 0
|
||||||
|
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||||
|
m_FogMode: 3
|
||||||
|
m_FogDensity: 0.01
|
||||||
|
m_LinearFogStart: 0
|
||||||
|
m_LinearFogEnd: 300
|
||||||
|
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
|
||||||
|
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
|
||||||
|
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
|
||||||
|
m_AmbientIntensity: 1
|
||||||
|
m_AmbientMode: 0
|
||||||
|
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
|
||||||
|
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_HaloStrength: 0.5
|
||||||
|
m_FlareStrength: 1
|
||||||
|
m_FlareFadeSpeed: 3
|
||||||
|
m_HaloTexture: {fileID: 0}
|
||||||
|
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_DefaultReflectionMode: 0
|
||||||
|
m_DefaultReflectionResolution: 128
|
||||||
|
m_ReflectionBounces: 1
|
||||||
|
m_ReflectionIntensity: 1
|
||||||
|
m_CustomReflection: {fileID: 0}
|
||||||
|
m_Sun: {fileID: 0}
|
||||||
|
m_IndirectSpecularColor: {r: 0.37311953, g: 0.38074014, b: 0.3587274, a: 1}
|
||||||
|
m_UseRadianceAmbientProbe: 0
|
||||||
|
--- !u!157 &3
|
||||||
|
LightmapSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 11
|
||||||
|
m_GIWorkflowMode: 0
|
||||||
|
m_GISettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_BounceScale: 1
|
||||||
|
m_IndirectOutputScale: 1
|
||||||
|
m_AlbedoBoost: 1
|
||||||
|
m_TemporalCoherenceThreshold: 1
|
||||||
|
m_EnvironmentLightingMode: 0
|
||||||
|
m_EnableBakedLightmaps: 1
|
||||||
|
m_EnableRealtimeLightmaps: 1
|
||||||
|
m_LightmapEditorSettings:
|
||||||
|
serializedVersion: 10
|
||||||
|
m_Resolution: 2
|
||||||
|
m_BakeResolution: 40
|
||||||
|
m_AtlasSize: 1024
|
||||||
|
m_AO: 0
|
||||||
|
m_AOMaxDistance: 1
|
||||||
|
m_CompAOExponent: 1
|
||||||
|
m_CompAOExponentDirect: 0
|
||||||
|
m_Padding: 2
|
||||||
|
m_LightmapParameters: {fileID: 0}
|
||||||
|
m_LightmapsBakeMode: 1
|
||||||
|
m_TextureCompression: 1
|
||||||
|
m_FinalGather: 0
|
||||||
|
m_FinalGatherFiltering: 1
|
||||||
|
m_FinalGatherRayCount: 256
|
||||||
|
m_ReflectionCompression: 2
|
||||||
|
m_MixedBakeMode: 1
|
||||||
|
m_BakeBackend: 0
|
||||||
|
m_PVRSampling: 1
|
||||||
|
m_PVRDirectSampleCount: 32
|
||||||
|
m_PVRSampleCount: 500
|
||||||
|
m_PVRBounces: 2
|
||||||
|
m_PVRFilterTypeDirect: 0
|
||||||
|
m_PVRFilterTypeIndirect: 0
|
||||||
|
m_PVRFilterTypeAO: 0
|
||||||
|
m_PVRFilteringMode: 1
|
||||||
|
m_PVRCulling: 1
|
||||||
|
m_PVRFilteringGaussRadiusDirect: 1
|
||||||
|
m_PVRFilteringGaussRadiusIndirect: 5
|
||||||
|
m_PVRFilteringGaussRadiusAO: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||||
|
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
|
m_ShowResolutionOverlay: 1
|
||||||
|
m_LightingDataAsset: {fileID: 0}
|
||||||
|
m_UseShadowmask: 0
|
||||||
|
--- !u!196 &4
|
||||||
|
NavMeshSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_BuildSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
agentTypeID: 0
|
||||||
|
agentRadius: 0.5
|
||||||
|
agentHeight: 2
|
||||||
|
agentSlope: 45
|
||||||
|
agentClimb: 0.4
|
||||||
|
ledgeDropHeight: 0
|
||||||
|
maxJumpAcrossDistance: 0
|
||||||
|
minRegionArea: 2
|
||||||
|
manualCellSize: 0
|
||||||
|
cellSize: 0.16666667
|
||||||
|
manualTileSize: 0
|
||||||
|
tileSize: 256
|
||||||
|
accuratePlacement: 0
|
||||||
|
debug:
|
||||||
|
m_Flags: 0
|
||||||
|
m_NavMeshData: {fileID: 0}
|
||||||
|
--- !u!1 &557640968
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 557640969}
|
||||||
|
- component: {fileID: 557640972}
|
||||||
|
- component: {fileID: 557640971}
|
||||||
|
- component: {fileID: 557640970}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: PrevCellButton
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &557640969
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 557640968}
|
||||||
|
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_Children:
|
||||||
|
- {fileID: 1739445888}
|
||||||
|
m_Father: {fileID: 650160439}
|
||||||
|
m_RootOrder: 1
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0.5}
|
||||||
|
m_AnchorMax: {x: 0, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 20, y: 0}
|
||||||
|
m_SizeDelta: {x: 60, y: 60}
|
||||||
|
m_Pivot: {x: 0, y: 0.5}
|
||||||
|
--- !u!114 &557640970
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 557640968}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 1
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 557640971}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
||||||
|
Culture=neutral, PublicKeyToken=null
|
||||||
|
--- !u!114 &557640971
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 557640968}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 10905, 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
|
||||||
|
--- !u!222 &557640972
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 557640968}
|
||||||
|
m_CullTransparentMesh: 0
|
||||||
|
--- !u!1 &650160435
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 650160439}
|
||||||
|
- component: {fileID: 650160438}
|
||||||
|
- component: {fileID: 650160437}
|
||||||
|
- component: {fileID: 650160436}
|
||||||
|
- component: {fileID: 650160440}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Canvas
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!114 &650160436
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 650160435}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_IgnoreReversedGraphics: 1
|
||||||
|
m_BlockingObjects: 0
|
||||||
|
m_BlockingMask:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 4294967295
|
||||||
|
--- !u!114 &650160437
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 650160435}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_UiScaleMode: 1
|
||||||
|
m_ReferencePixelsPerUnit: 100
|
||||||
|
m_ScaleFactor: 1
|
||||||
|
m_ReferenceResolution: {x: 1000, y: 720}
|
||||||
|
m_ScreenMatchMode: 0
|
||||||
|
m_MatchWidthOrHeight: 0
|
||||||
|
m_PhysicalUnit: 3
|
||||||
|
m_FallbackScreenDPI: 96
|
||||||
|
m_DefaultSpriteDPI: 96
|
||||||
|
m_DynamicPixelsPerUnit: 1
|
||||||
|
--- !u!223 &650160438
|
||||||
|
Canvas:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 650160435}
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 3
|
||||||
|
m_RenderMode: 1
|
||||||
|
m_Camera: {fileID: 777088607}
|
||||||
|
m_PlaneDistance: 100
|
||||||
|
m_PixelPerfect: 0
|
||||||
|
m_ReceivesEvents: 1
|
||||||
|
m_OverrideSorting: 0
|
||||||
|
m_OverridePixelPerfect: 0
|
||||||
|
m_SortingBucketNormalizedSize: 0
|
||||||
|
m_AdditionalShaderChannelsFlag: 25
|
||||||
|
m_SortingLayerID: 0
|
||||||
|
m_SortingOrder: 0
|
||||||
|
m_TargetDisplay: 0
|
||||||
|
--- !u!224 &650160439
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 650160435}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 0, y: 0, z: 0}
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 1492537696}
|
||||||
|
- {fileID: 557640969}
|
||||||
|
- {fileID: 1518742534}
|
||||||
|
- {fileID: 887029362}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_RootOrder: 1
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 0, y: 0}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 0, y: 0}
|
||||||
|
m_Pivot: {x: 0, y: 0}
|
||||||
|
--- !u!114 &650160440
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 650160435}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: ffef50039363c5244b22c9c6c6129c0a, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
scrollView: {fileID: 1492537697}
|
||||||
|
prevCellButton: {fileID: 557640970}
|
||||||
|
nextCellButton: {fileID: 1518742535}
|
||||||
|
selectedItemInfo: {fileID: 887029360}
|
||||||
|
--- !u!1 &777088603
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 777088608}
|
||||||
|
- component: {fileID: 777088607}
|
||||||
|
- component: {fileID: 777088605}
|
||||||
|
- component: {fileID: 777088604}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Main Camera
|
||||||
|
m_TagString: MainCamera
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!81 &777088604
|
||||||
|
AudioListener:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 777088603}
|
||||||
|
m_Enabled: 1
|
||||||
|
--- !u!124 &777088605
|
||||||
|
Behaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 777088603}
|
||||||
|
m_Enabled: 1
|
||||||
|
--- !u!20 &777088607
|
||||||
|
Camera:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 777088603}
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 2
|
||||||
|
m_ClearFlags: 2
|
||||||
|
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
|
m_projectionMatrixMode: 1
|
||||||
|
m_SensorSize: {x: 36, y: 24}
|
||||||
|
m_LensShift: {x: 0, y: 0}
|
||||||
|
m_FocalLength: 50
|
||||||
|
m_NormalizedViewPortRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
near clip plane: 0.3
|
||||||
|
far clip plane: 1000
|
||||||
|
field of view: 60
|
||||||
|
orthographic: 0
|
||||||
|
orthographic size: 5
|
||||||
|
m_Depth: -1
|
||||||
|
m_CullingMask:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 4294967295
|
||||||
|
m_RenderingPath: -1
|
||||||
|
m_TargetTexture: {fileID: 0}
|
||||||
|
m_TargetDisplay: 0
|
||||||
|
m_TargetEye: 3
|
||||||
|
m_HDR: 0
|
||||||
|
m_AllowMSAA: 1
|
||||||
|
m_AllowDynamicResolution: 0
|
||||||
|
m_ForceIntoRT: 0
|
||||||
|
m_OcclusionCulling: 1
|
||||||
|
m_StereoConvergence: 10
|
||||||
|
m_StereoSeparation: 0.022
|
||||||
|
--- !u!4 &777088608
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 777088603}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 1, z: -10}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1 &887029359
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 887029362}
|
||||||
|
- component: {fileID: 887029361}
|
||||||
|
- component: {fileID: 887029360}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: SelectedItemInfo
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!114 &887029360
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 887029359}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 24
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 2
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text: 'Selected item info: index {0}'
|
||||||
|
--- !u!222 &887029361
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 887029359}
|
||||||
|
m_CullTransparentMesh: 0
|
||||||
|
--- !u!224 &887029362
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 887029359}
|
||||||
|
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_Children: []
|
||||||
|
m_Father: {fileID: 650160439}
|
||||||
|
m_RootOrder: 3
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 1, y: 0}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 0, y: 100}
|
||||||
|
m_Pivot: {x: 0.5, y: 0}
|
||||||
|
--- !u!1 &1492537695
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1492537696}
|
||||||
|
- component: {fileID: 1492537702}
|
||||||
|
- component: {fileID: 1492537699}
|
||||||
|
- component: {fileID: 1492537697}
|
||||||
|
- component: {fileID: 1492537701}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: ScrollView
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &1492537696
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1492537695}
|
||||||
|
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_Children: []
|
||||||
|
m_Father: {fileID: 650160439}
|
||||||
|
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: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!114 &1492537697
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1492537695}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 56f1da0ed0c4e244182dffa658d69315, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
cellInterval: 0.15
|
||||||
|
cellOffset: 0.5
|
||||||
|
loop: 0
|
||||||
|
cellBase: {fileID: 1901728338085442, guid: d432cd8a052c847b0a9234295575210d, type: 2}
|
||||||
|
cellContainer: {fileID: 1492537696}
|
||||||
|
scrollPositionController: {fileID: 1492537699}
|
||||||
|
--- !u!114 &1492537699
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1492537695}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: cc9ad31350b1b6348b57c626195a562d, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
viewport: {fileID: 1492537696}
|
||||||
|
directionOfRecognize: 1
|
||||||
|
movementType: 1
|
||||||
|
elasticity: 0.1
|
||||||
|
scrollSensitivity: 6.7
|
||||||
|
inertia: 1
|
||||||
|
decelerationRate: 0.03
|
||||||
|
snap:
|
||||||
|
Enable: 1
|
||||||
|
VelocityThreshold: 0.5
|
||||||
|
Duration: 0.4
|
||||||
|
dataCount: 0
|
||||||
|
--- !u!114 &1492537701
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1492537695}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 0.3137255, g: 0.3137255, b: 0.3137255, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 1
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
--- !u!222 &1492537702
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1492537695}
|
||||||
|
m_CullTransparentMesh: 0
|
||||||
|
--- !u!1 &1518742533
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1518742534}
|
||||||
|
- component: {fileID: 1518742537}
|
||||||
|
- component: {fileID: 1518742536}
|
||||||
|
- component: {fileID: 1518742535}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: NextCellButton
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &1518742534
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1518742533}
|
||||||
|
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_Children:
|
||||||
|
- {fileID: 1978412734}
|
||||||
|
m_Father: {fileID: 650160439}
|
||||||
|
m_RootOrder: 2
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 1, y: 0.5}
|
||||||
|
m_AnchorMax: {x: 1, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: -20, y: 0}
|
||||||
|
m_SizeDelta: {x: 60, y: 60}
|
||||||
|
m_Pivot: {x: 1, y: 0.5}
|
||||||
|
--- !u!114 &1518742535
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1518742533}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 1
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 1518742536}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
||||||
|
Culture=neutral, PublicKeyToken=null
|
||||||
|
--- !u!114 &1518742536
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1518742533}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 10905, 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
|
||||||
|
--- !u!222 &1518742537
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1518742533}
|
||||||
|
m_CullTransparentMesh: 0
|
||||||
|
--- !u!1 &1739445887
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1739445888}
|
||||||
|
- component: {fileID: 1739445890}
|
||||||
|
- component: {fileID: 1739445889}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &1739445888
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1739445887}
|
||||||
|
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_Children: []
|
||||||
|
m_Father: {fileID: 557640969}
|
||||||
|
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: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!114 &1739445889
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1739445887}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 14
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 1
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text: Prev
|
||||||
|
--- !u!222 &1739445890
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1739445887}
|
||||||
|
m_CullTransparentMesh: 0
|
||||||
|
--- !u!1 &1770868449
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1770868452}
|
||||||
|
- component: {fileID: 1770868451}
|
||||||
|
- component: {fileID: 1770868450}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: EventSystem
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!114 &1770868450
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1770868449}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_HorizontalAxis: Horizontal
|
||||||
|
m_VerticalAxis: Vertical
|
||||||
|
m_SubmitButton: Submit
|
||||||
|
m_CancelButton: Cancel
|
||||||
|
m_InputActionsPerSecond: 10
|
||||||
|
m_RepeatDelay: 0.5
|
||||||
|
m_ForceModuleActive: 0
|
||||||
|
--- !u!114 &1770868451
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1770868449}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_FirstSelected: {fileID: 0}
|
||||||
|
m_sendNavigationEvents: 1
|
||||||
|
m_DragThreshold: 5
|
||||||
|
--- !u!4 &1770868452
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1770868449}
|
||||||
|
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_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_RootOrder: 2
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1 &1978412733
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1978412734}
|
||||||
|
- component: {fileID: 1978412736}
|
||||||
|
- component: {fileID: 1978412735}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &1978412734
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1978412733}
|
||||||
|
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_Children: []
|
||||||
|
m_Father: {fileID: 1518742534}
|
||||||
|
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: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!114 &1978412735
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1978412733}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 14
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 1
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text: Next
|
||||||
|
--- !u!222 &1978412736
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1978412733}
|
||||||
|
m_CullTransparentMesh: 0
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ff644be2cb161904ba6ec037baf31ad1
|
||||||
|
timeCreated: 1487505810
|
||||||
|
licenseType: Free
|
||||||
|
DefaultImporter:
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,285 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1001 &100100000
|
||||||
|
Prefab:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Modification:
|
||||||
|
m_TransformParent: {fileID: 0}
|
||||||
|
m_Modifications: []
|
||||||
|
m_RemovedComponents: []
|
||||||
|
m_ParentPrefab: {fileID: 0}
|
||||||
|
m_RootGameObject: {fileID: 1901728338085442}
|
||||||
|
m_IsPrefabParent: 1
|
||||||
|
--- !u!1 &1001946720026460
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224526580339526050}
|
||||||
|
- component: {fileID: 222985568554339304}
|
||||||
|
- component: {fileID: 114088381846444308}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1289454684641978
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224976398693394500}
|
||||||
|
- component: {fileID: 222091998879527630}
|
||||||
|
- component: {fileID: 114838212754810210}
|
||||||
|
- component: {fileID: 114221931273792762}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Image
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!1 &1901728338085442
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 224140112732779622}
|
||||||
|
- component: {fileID: 222038127920238080}
|
||||||
|
- component: {fileID: 95308934392137032}
|
||||||
|
- component: {fileID: 114212530390307856}
|
||||||
|
- component: {fileID: 225474622916379966}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Cell
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!95 &95308934392137032
|
||||||
|
Animator:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1901728338085442}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Avatar: {fileID: 0}
|
||||||
|
m_Controller: {fileID: 9100000, guid: 8bbdb068c73989c438aef167096a86cb, type: 2}
|
||||||
|
m_CullingMode: 0
|
||||||
|
m_UpdateMode: 0
|
||||||
|
m_ApplyRootMotion: 0
|
||||||
|
m_LinearVelocityBlending: 0
|
||||||
|
m_WarningMessage:
|
||||||
|
m_HasTransformHierarchy: 1
|
||||||
|
m_AllowConstantClipSamplingOptimization: 1
|
||||||
|
--- !u!114 &114088381846444308
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1001946720026460}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 30
|
||||||
|
m_FontStyle: 3
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 3
|
||||||
|
m_MaxSize: 40
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text:
|
||||||
|
--- !u!114 &114212530390307856
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1901728338085442}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 08f1e4cba8817f34ba916b510b19d736, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
animator: {fileID: 95308934392137032}
|
||||||
|
message: {fileID: 114088381846444308}
|
||||||
|
image: {fileID: 114838212754810210}
|
||||||
|
button: {fileID: 114221931273792762}
|
||||||
|
--- !u!114 &114221931273792762
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1289454684641978}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 0
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 114838212754810210}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
|
||||||
|
Culture=neutral, PublicKeyToken=null
|
||||||
|
--- !u!114 &114838212754810210
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1289454684641978}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
||||||
|
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
--- !u!222 &222038127920238080
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1901728338085442}
|
||||||
|
--- !u!222 &222091998879527630
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1289454684641978}
|
||||||
|
--- !u!222 &222985568554339304
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1001946720026460}
|
||||||
|
--- !u!224 &224140112732779622
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1901728338085442}
|
||||||
|
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_Children:
|
||||||
|
- {fileID: 224976398693394500}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
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: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224526580339526050
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1001946720026460}
|
||||||
|
m_LocalRotation: {x: 0.008726558, y: 0, z: 0, w: 0.999962}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 224976398693394500}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 1, 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: 160, y: 35}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!224 &224976398693394500
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1289454684641978}
|
||||||
|
m_LocalRotation: {x: 0.5, y: 0, z: 0, w: 0.8660254}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 276}
|
||||||
|
m_LocalScale: {x: 0.3, y: 0.3, z: 1}
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 224526580339526050}
|
||||||
|
m_Father: {fileID: 224140112732779622}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 60, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: -0.2, y: 0.5}
|
||||||
|
m_AnchorMax: {x: -0.2, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 200, y: 450}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!225 &225474622916379966
|
||||||
|
CanvasGroup:
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 100100000}
|
||||||
|
m_GameObject: {fileID: 1901728338085442}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Alpha: 1
|
||||||
|
m_Interactable: 1
|
||||||
|
m_BlocksRaycasts: 1
|
||||||
|
m_IgnoreParentGroups: 0
|
|
@ -0,0 +1,10 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d432cd8a052c847b0a9234295575210d
|
||||||
|
timeCreated: 1508240603
|
||||||
|
licenseType: Free
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,7 @@
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
|
{
|
||||||
|
public class Example04CellDto
|
||||||
|
{
|
||||||
|
public string Message;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 46be1f4ac9dc3e34e9d5fad8720d9048
|
||||||
|
timeCreated: 1487505929
|
||||||
|
licenseType: Free
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,38 @@
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
|
{
|
||||||
|
public class Example04Scene : MonoBehaviour
|
||||||
|
{
|
||||||
|
[SerializeField]
|
||||||
|
Example04ScrollView scrollView;
|
||||||
|
[SerializeField]
|
||||||
|
Button prevCellButton;
|
||||||
|
[SerializeField]
|
||||||
|
Button nextCellButton;
|
||||||
|
[SerializeField]
|
||||||
|
Text selectedItemInfo;
|
||||||
|
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
prevCellButton.onClick.AddListener(scrollView.SelectPrevCell);
|
||||||
|
nextCellButton.onClick.AddListener(scrollView.SelectNextCell);
|
||||||
|
scrollView.OnSelectedIndexChanged(HandleSelectedIndexChanged);
|
||||||
|
|
||||||
|
var cellData = Enumerable.Range(0, 20)
|
||||||
|
.Select(i => new Example04CellDto { Message = "Cell " + i })
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
scrollView.UpdateData(cellData);
|
||||||
|
scrollView.UpdateSelection(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void HandleSelectedIndexChanged(int index)
|
||||||
|
{
|
||||||
|
selectedItemInfo.text = String.Format("Selected item info: index {0}", index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ffef50039363c5244b22c9c6c6129c0a
|
||||||
|
timeCreated: 1487506430
|
||||||
|
licenseType: Free
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,77 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
|
{
|
||||||
|
public class Example04ScrollView : FancyScrollView<Example04CellDto, Example04ScrollViewContext>
|
||||||
|
{
|
||||||
|
[SerializeField]
|
||||||
|
ScrollPositionController scrollPositionController;
|
||||||
|
|
||||||
|
Action<int> onSelectedIndexChanged;
|
||||||
|
|
||||||
|
void Awake()
|
||||||
|
{
|
||||||
|
scrollPositionController.OnUpdatePosition(p => UpdatePosition(p));
|
||||||
|
scrollPositionController.OnItemSelected(HandleItemSelected);
|
||||||
|
|
||||||
|
SetContext(new Example04ScrollViewContext
|
||||||
|
{
|
||||||
|
OnPressedCell = OnPressedCell,
|
||||||
|
OnSelectedIndexChanged = index =>
|
||||||
|
{
|
||||||
|
if (onSelectedIndexChanged != null)
|
||||||
|
{
|
||||||
|
onSelectedIndexChanged(index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdateData(List<Example04CellDto> data)
|
||||||
|
{
|
||||||
|
cellData = data;
|
||||||
|
scrollPositionController.SetDataCount(cellData.Count);
|
||||||
|
UpdateContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdateSelection(int index)
|
||||||
|
{
|
||||||
|
if (index < 0 || index >= cellData.Count)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollPositionController.ScrollTo(index, 0.4f);
|
||||||
|
Context.SelectedIndex = index;
|
||||||
|
UpdateContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnSelectedIndexChanged(Action<int> onSelectedIndexChanged)
|
||||||
|
{
|
||||||
|
this.onSelectedIndexChanged = onSelectedIndexChanged;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SelectNextCell()
|
||||||
|
{
|
||||||
|
UpdateSelection(Context.SelectedIndex + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SelectPrevCell()
|
||||||
|
{
|
||||||
|
UpdateSelection(Context.SelectedIndex - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
void HandleItemSelected(int selectedItemIndex)
|
||||||
|
{
|
||||||
|
Context.SelectedIndex = selectedItemIndex;
|
||||||
|
UpdateContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
void OnPressedCell(Example04ScrollViewCell cell)
|
||||||
|
{
|
||||||
|
UpdateSelection(cell.DataIndex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 56f1da0ed0c4e244182dffa658d69315
|
||||||
|
timeCreated: 1487505830
|
||||||
|
licenseType: Free
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,68 @@
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
|
{
|
||||||
|
public class Example04ScrollViewCell : FancyScrollViewCell<Example04CellDto, Example04ScrollViewContext>
|
||||||
|
{
|
||||||
|
[SerializeField]
|
||||||
|
Animator animator;
|
||||||
|
[SerializeField]
|
||||||
|
Text message;
|
||||||
|
[SerializeField]
|
||||||
|
Image image;
|
||||||
|
[SerializeField]
|
||||||
|
Button button;
|
||||||
|
|
||||||
|
static readonly int scrollTriggerHash = Animator.StringToHash("scroll");
|
||||||
|
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
button.onClick.AddListener(OnPressedCell);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates the content.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="itemData">Item data.</param>
|
||||||
|
public override void UpdateContent(Example04CellDto itemData)
|
||||||
|
{
|
||||||
|
message.text = itemData.Message;
|
||||||
|
|
||||||
|
if (Context != null)
|
||||||
|
{
|
||||||
|
var isSelected = Context.SelectedIndex == DataIndex;
|
||||||
|
image.color = isSelected
|
||||||
|
? new Color32(0, 255, 255, 100)
|
||||||
|
: new Color32(255, 255, 255, 77);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates the position.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="position">Position.</param>
|
||||||
|
public override void UpdatePosition(float position)
|
||||||
|
{
|
||||||
|
currentPosition = position;
|
||||||
|
animator.Play(scrollTriggerHash, -1, position);
|
||||||
|
animator.speed = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void OnPressedCell()
|
||||||
|
{
|
||||||
|
if (Context != null)
|
||||||
|
{
|
||||||
|
Context.OnPressedCell(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// GameObject が非アクティブになると Animator がリセットされてしまうため
|
||||||
|
// 現在位置を保持しておいて OnEnable のタイミングで現在位置を再設定します
|
||||||
|
float currentPosition = 0;
|
||||||
|
void OnEnable()
|
||||||
|
{
|
||||||
|
UpdatePosition(currentPosition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 08f1e4cba8817f34ba916b510b19d736
|
||||||
|
timeCreated: 1487505842
|
||||||
|
licenseType: Free
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,31 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace UnityEngine.UI.Extensions.Examples
|
||||||
|
{
|
||||||
|
public class Example04ScrollViewContext
|
||||||
|
{
|
||||||
|
int selectedIndex = -1;
|
||||||
|
|
||||||
|
public int SelectedIndex
|
||||||
|
{
|
||||||
|
get { return selectedIndex; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (value == selectedIndex)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
selectedIndex = value;
|
||||||
|
|
||||||
|
if (OnSelectedIndexChanged != null)
|
||||||
|
{
|
||||||
|
OnSelectedIndexChanged(selectedIndex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Action<Example04ScrollViewCell> OnPressedCell;
|
||||||
|
public Action<int> OnSelectedIndexChanged;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1bc24697641338048b4ae874f1aac236
|
||||||
|
timeCreated: 1487505870
|
||||||
|
licenseType: Free
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -5,36 +5,32 @@ using System.Collections.Generic;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions
|
namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
public class FancyScrollView<TData, TContext> : MonoBehaviour where TContext : class
|
public abstract class FancyScrollView<TData, TContext> : MonoBehaviour where TContext : class
|
||||||
{
|
{
|
||||||
[SerializeField, Range(float.Epsilon, 1f)]
|
[SerializeField, Range(float.Epsilon, 1f)]
|
||||||
float cellInterval = 0;
|
float cellInterval;
|
||||||
[SerializeField, Range(0f, 1f)]
|
[SerializeField, Range(0f, 1f)]
|
||||||
float cellOffset = 0;
|
float cellOffset;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
bool loop = false;
|
bool loop;
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
GameObject cellBase = null;
|
GameObject cellBase;
|
||||||
|
[SerializeField]
|
||||||
|
Transform cellContainer;
|
||||||
|
|
||||||
|
readonly List<FancyScrollViewCell<TData, TContext>> cells = new List<FancyScrollViewCell<TData, TContext>>();
|
||||||
float currentPosition;
|
float currentPosition;
|
||||||
readonly List<FancyScrollViewCell<TData, TContext>> cells =
|
|
||||||
new List<FancyScrollViewCell<TData, TContext>>();
|
|
||||||
|
|
||||||
protected TContext context;
|
|
||||||
protected List<TData> cellData = new List<TData>();
|
protected List<TData> cellData = new List<TData>();
|
||||||
|
protected TContext Context { get; private set; }
|
||||||
protected void Awake()
|
|
||||||
{
|
|
||||||
cellBase.SetActive(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// コンテキストを設定します
|
/// Sets the context.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context"></param>
|
/// <param name="context">Context.</param>
|
||||||
protected void SetContext(TContext context)
|
protected void SetContext(TContext context)
|
||||||
{
|
{
|
||||||
this.context = context;
|
Context = context;
|
||||||
|
|
||||||
for (int i = 0; i < cells.Count; i++)
|
for (int i = 0; i < cells.Count; i++)
|
||||||
{
|
{
|
||||||
|
@ -43,120 +39,19 @@ namespace UnityEngine.UI.Extensions
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// セルを生成して返します
|
/// Updates the contents.
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
FancyScrollViewCell<TData, TContext> CreateCell()
|
|
||||||
{
|
|
||||||
var cellObject = Instantiate(cellBase);
|
|
||||||
cellObject.SetActive(true);
|
|
||||||
var cell = cellObject.GetComponent<FancyScrollViewCell<TData, TContext>>();
|
|
||||||
|
|
||||||
var cellRectTransform = cell.transform as RectTransform;
|
|
||||||
|
|
||||||
// 親要素の付け替えをおこなうとスケールやサイズが失われるため、変数に保持しておく
|
|
||||||
var scale = cell.transform.localScale;
|
|
||||||
var sizeDelta = Vector2.zero;
|
|
||||||
var offsetMin = Vector2.zero;
|
|
||||||
var offsetMax = Vector2.zero;
|
|
||||||
|
|
||||||
if (cellRectTransform)
|
|
||||||
{
|
|
||||||
sizeDelta = cellRectTransform.sizeDelta;
|
|
||||||
offsetMin = cellRectTransform.offsetMin;
|
|
||||||
offsetMax = cellRectTransform.offsetMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.transform.SetParent(cellBase.transform.parent);
|
|
||||||
|
|
||||||
cell.transform.localScale = scale;
|
|
||||||
if (cellRectTransform)
|
|
||||||
{
|
|
||||||
cellRectTransform.sizeDelta = sizeDelta;
|
|
||||||
cellRectTransform.offsetMin = offsetMin;
|
|
||||||
cellRectTransform.offsetMax = offsetMax;
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.SetContext(context);
|
|
||||||
cell.SetVisible(false);
|
|
||||||
|
|
||||||
return cell;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
|
||||||
float prevCellInterval, prevCellOffset;
|
|
||||||
bool prevLoop;
|
|
||||||
|
|
||||||
void LateUpdate()
|
|
||||||
{
|
|
||||||
if (prevLoop != loop ||
|
|
||||||
prevCellOffset != cellOffset ||
|
|
||||||
prevCellInterval != cellInterval)
|
|
||||||
{
|
|
||||||
UpdatePosition(currentPosition);
|
|
||||||
|
|
||||||
prevLoop = loop;
|
|
||||||
prevCellOffset = cellOffset;
|
|
||||||
prevCellInterval = cellInterval;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// セルの内容を更新します
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="cell"></param>
|
|
||||||
/// <param name="dataIndex"></param>
|
|
||||||
void UpdateCellForIndex(FancyScrollViewCell<TData, TContext> cell, int dataIndex)
|
|
||||||
{
|
|
||||||
if (loop)
|
|
||||||
{
|
|
||||||
dataIndex = GetLoopIndex(dataIndex, cellData.Count);
|
|
||||||
}
|
|
||||||
else if (dataIndex < 0 || dataIndex > cellData.Count - 1)
|
|
||||||
{
|
|
||||||
// セルに対応するデータが存在しなければセルを表示しない
|
|
||||||
cell.SetVisible(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cell.SetVisible(true);
|
|
||||||
cell.DataIndex = dataIndex;
|
|
||||||
cell.UpdateContent(cellData[dataIndex]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 円環構造の index を取得します
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="index"></param>
|
|
||||||
/// <param name="length"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
int GetLoopIndex(int index, int length)
|
|
||||||
{
|
|
||||||
if (index < 0)
|
|
||||||
{
|
|
||||||
index = (length - 1) + (index + 1) % length;
|
|
||||||
}
|
|
||||||
else if (index > length - 1)
|
|
||||||
{
|
|
||||||
index = index % length;
|
|
||||||
}
|
|
||||||
return index;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 表示内容を更新します
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected void UpdateContents()
|
protected void UpdateContents()
|
||||||
{
|
{
|
||||||
UpdatePosition(currentPosition);
|
UpdatePosition(currentPosition, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// スクロール位置を更新します
|
/// Updates the scroll position.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="position"></param>
|
/// <param name="position">Position.</param>
|
||||||
protected void UpdatePosition(float position)
|
/// <param name="forceUpdateContents">If set to <c>true</c> force update contents.</param>
|
||||||
|
protected void UpdatePosition(float position, bool forceUpdateContents = false)
|
||||||
{
|
{
|
||||||
currentPosition = position;
|
currentPosition = position;
|
||||||
|
|
||||||
|
@ -164,9 +59,8 @@ namespace UnityEngine.UI.Extensions
|
||||||
var firstCellPosition = (Mathf.Ceil(visibleMinPosition) - visibleMinPosition) * cellInterval;
|
var firstCellPosition = (Mathf.Ceil(visibleMinPosition) - visibleMinPosition) * cellInterval;
|
||||||
var dataStartIndex = Mathf.CeilToInt(visibleMinPosition);
|
var dataStartIndex = Mathf.CeilToInt(visibleMinPosition);
|
||||||
var count = 0;
|
var count = 0;
|
||||||
var cellIndex = 0;
|
|
||||||
|
|
||||||
for (float pos = firstCellPosition; pos <= 1f; pos += cellInterval, count++)
|
for (float p = firstCellPosition; p <= 1f; p += cellInterval, count++)
|
||||||
{
|
{
|
||||||
if (count >= cells.Count)
|
if (count >= cells.Count)
|
||||||
{
|
{
|
||||||
|
@ -176,33 +70,103 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
count = 0;
|
count = 0;
|
||||||
|
|
||||||
for (float pos = firstCellPosition; pos <= 1f; count++, pos += cellInterval)
|
for (float p = firstCellPosition; p <= 1f; p += cellInterval, count++)
|
||||||
{
|
{
|
||||||
var dataIndex = dataStartIndex + count;
|
var dataIndex = dataStartIndex + count;
|
||||||
cellIndex = GetLoopIndex(dataIndex, cells.Count);
|
var cell = cells[GetCircularIndex(dataIndex, cells.Count)];
|
||||||
if (cells[cellIndex].gameObject.activeSelf)
|
|
||||||
|
UpdateCell(cell, dataIndex, forceUpdateContents);
|
||||||
|
|
||||||
|
if (cell.gameObject.activeSelf)
|
||||||
{
|
{
|
||||||
cells[cellIndex].UpdatePosition(pos);
|
cell.UpdatePosition(p);
|
||||||
}
|
}
|
||||||
UpdateCellForIndex(cells[cellIndex], dataIndex);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cellIndex = GetLoopIndex(dataStartIndex + count, cells.Count);
|
while (count < cells.Count)
|
||||||
|
|
||||||
for (; count < cells.Count; count++, cellIndex = GetLoopIndex(dataStartIndex + count, cells.Count))
|
|
||||||
{
|
{
|
||||||
cells[cellIndex].SetVisible(false);
|
cells[GetCircularIndex(dataStartIndex + count, cells.Count)].SetVisible(false);
|
||||||
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates the cell.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cell">Cell.</param>
|
||||||
|
/// <param name="dataIndex">Data index.</param>
|
||||||
|
/// <param name="forceUpdateContents">If set to <c>true</c> force update contents.</param>
|
||||||
|
void UpdateCell(FancyScrollViewCell<TData, TContext> cell, int dataIndex, bool forceUpdateContents = false)
|
||||||
|
{
|
||||||
|
if (loop)
|
||||||
|
{
|
||||||
|
dataIndex = GetCircularIndex(dataIndex, cellData.Count);
|
||||||
|
}
|
||||||
|
else if (dataIndex < 0 || dataIndex > cellData.Count - 1)
|
||||||
|
{
|
||||||
|
// セルに対応するデータが存在しなければセルを表示しない
|
||||||
|
cell.SetVisible(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (forceUpdateContents || cell.DataIndex != dataIndex || !cell.IsVisible)
|
||||||
|
{
|
||||||
|
cell.DataIndex = dataIndex;
|
||||||
|
cell.SetVisible(true);
|
||||||
|
cell.UpdateContent(cellData[dataIndex]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Creates the cell.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>The cell.</returns>
|
||||||
|
FancyScrollViewCell<TData, TContext> CreateCell()
|
||||||
|
{
|
||||||
|
var cellObject = Instantiate(cellBase, cellContainer);
|
||||||
|
var cell = cellObject.GetComponent<FancyScrollViewCell<TData, TContext>>();
|
||||||
|
|
||||||
|
cell.SetContext(Context);
|
||||||
|
cell.SetVisible(false);
|
||||||
|
cell.DataIndex = -1;
|
||||||
|
|
||||||
|
return cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the circular index.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>The circular index.</returns>
|
||||||
|
/// <param name="index">Index.</param>
|
||||||
|
/// <param name="maxSize">Max size.</param>
|
||||||
|
int GetCircularIndex(int index, int maxSize)
|
||||||
|
{
|
||||||
|
return index < 0 ? maxSize - 1 + (index + 1) % maxSize : index % maxSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
bool cachedLoop;
|
||||||
|
float cachedCellInterval, cachedCellOffset;
|
||||||
|
|
||||||
|
void LateUpdate()
|
||||||
|
{
|
||||||
|
if (cachedLoop != loop || cachedCellOffset != cellOffset || cachedCellInterval != cellInterval)
|
||||||
|
{
|
||||||
|
cachedLoop = loop;
|
||||||
|
cachedCellOffset = cellOffset;
|
||||||
|
cachedCellInterval = cellInterval;
|
||||||
|
|
||||||
|
UpdatePosition(currentPosition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public sealed class FancyScrollViewNullContext
|
public sealed class FancyScrollViewNullContext
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class FancyScrollView<TData> : FancyScrollView<TData, FancyScrollViewNullContext>
|
public abstract class FancyScrollView<TData> : FancyScrollView<TData, FancyScrollViewNullContext>
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,50 +3,62 @@
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions
|
namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
|
public abstract class FancyScrollViewCell<TData, TContext> : MonoBehaviour where TContext : class
|
||||||
public class FancyScrollViewCell<TData, TContext> : MonoBehaviour where TContext : class
|
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// コンテキストを設定します
|
/// Gets or sets the index of the data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context"></param>
|
/// <value>The index of the data.</value>
|
||||||
|
public int DataIndex { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a value indicating whether this <see cref="T:FancyScrollView.FancyScrollViewCell`2"/> is visible.
|
||||||
|
/// </summary>
|
||||||
|
/// <value><c>true</c> if is visible; otherwise, <c>false</c>.</value>
|
||||||
|
public virtual bool IsVisible { get { return gameObject.activeSelf; } }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the context.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The context.</value>
|
||||||
|
protected TContext Context { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sets the context.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context">Context.</param>
|
||||||
public virtual void SetContext(TContext context)
|
public virtual void SetContext(TContext context)
|
||||||
{
|
{
|
||||||
|
Context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// セルの内容を更新します
|
/// Sets the visible.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="itemData"></param>
|
/// <param name="visible">If set to <c>true</c> visible.</param>
|
||||||
public virtual void UpdateContent(TData itemData)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// セルの位置を更新します
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="position"></param>
|
|
||||||
public virtual void UpdatePosition(float position)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// セルの表示/非表示を設定します
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="visible"></param>
|
|
||||||
public virtual void SetVisible(bool visible)
|
public virtual void SetVisible(bool visible)
|
||||||
{
|
{
|
||||||
gameObject.SetActive(visible);
|
gameObject.SetActive(visible);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// このセルで表示しているデータのインデックス
|
/// Updates the content.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int DataIndex { get; set; }
|
/// <param name="itemData">Item data.</param>
|
||||||
|
public virtual void UpdateContent(TData itemData)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates the position.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="position">Position.</param>
|
||||||
|
public virtual void UpdatePosition(float position)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class FancyScrollViewCell<TData> : FancyScrollViewCell<TData, FancyScrollViewNullContext>
|
public abstract class FancyScrollViewCell<TData> : FancyScrollViewCell<TData, FancyScrollViewNullContext>
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -7,317 +7,377 @@ using UnityEngine.EventSystems;
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions
|
namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
|
public class ScrollPositionController : UIBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler
|
||||||
|
{
|
||||||
|
[SerializeField]
|
||||||
|
RectTransform viewport;
|
||||||
|
[SerializeField]
|
||||||
|
ScrollDirection directionOfRecognize = ScrollDirection.Vertical;
|
||||||
|
[SerializeField]
|
||||||
|
MovementType movementType = MovementType.Elastic;
|
||||||
|
[SerializeField]
|
||||||
|
float elasticity = 0.1f;
|
||||||
|
[SerializeField]
|
||||||
|
float scrollSensitivity = 1f;
|
||||||
|
[SerializeField]
|
||||||
|
bool inertia = true;
|
||||||
|
[SerializeField, Tooltip("Only used when inertia is enabled")]
|
||||||
|
float decelerationRate = 0.03f;
|
||||||
|
[SerializeField, Tooltip("Only used when inertia is enabled")]
|
||||||
|
Snap snap = new Snap { Enable = true, VelocityThreshold = 0.5f, Duration = 0.3f };
|
||||||
|
[SerializeField]
|
||||||
|
int dataCount;
|
||||||
|
|
||||||
public class ScrollPositionController : UIBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler
|
readonly AutoScrollState autoScrollState = new AutoScrollState();
|
||||||
{
|
|
||||||
#region Sub-Classes
|
|
||||||
[System.Serializable]
|
|
||||||
public class UpdatePositionEvent : UnityEvent<float> { }
|
|
||||||
|
|
||||||
[System.Serializable]
|
Action<float> onUpdatePosition;
|
||||||
public class ItemSelectedEvent : UnityEvent<int> { }
|
Action<int> onItemSelected;
|
||||||
#endregion
|
|
||||||
|
|
||||||
[Serializable]
|
Vector2 pointerStartLocalPosition;
|
||||||
struct Snap
|
float dragStartScrollPosition;
|
||||||
{
|
float prevScrollPosition;
|
||||||
public bool Enable;
|
float currentScrollPosition;
|
||||||
public float VelocityThreshold;
|
|
||||||
public float Duration;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum ScrollDirection
|
bool dragging;
|
||||||
{
|
float velocity;
|
||||||
Vertical,
|
|
||||||
Horizontal,
|
|
||||||
}
|
|
||||||
|
|
||||||
enum MovementType
|
enum ScrollDirection
|
||||||
{
|
{
|
||||||
Unrestricted = ScrollRect.MovementType.Unrestricted,
|
Vertical,
|
||||||
Elastic = ScrollRect.MovementType.Elastic,
|
Horizontal,
|
||||||
Clamped = ScrollRect.MovementType.Clamped
|
}
|
||||||
}
|
|
||||||
|
|
||||||
[SerializeField]
|
enum MovementType
|
||||||
RectTransform viewport = null;
|
{
|
||||||
[SerializeField]
|
Unrestricted = ScrollRect.MovementType.Unrestricted,
|
||||||
ScrollDirection directionOfRecognize = ScrollDirection.Vertical;
|
Elastic = ScrollRect.MovementType.Elastic,
|
||||||
[SerializeField]
|
Clamped = ScrollRect.MovementType.Clamped
|
||||||
MovementType movementType = MovementType.Elastic;
|
}
|
||||||
[SerializeField]
|
|
||||||
float elasticity = 0.1f;
|
|
||||||
[SerializeField]
|
|
||||||
float scrollSensitivity = 1f;
|
|
||||||
[SerializeField]
|
|
||||||
bool inertia = true;
|
|
||||||
[SerializeField, Tooltip("Only used when inertia is enabled")]
|
|
||||||
float decelerationRate = 0.03f;
|
|
||||||
[SerializeField, Tooltip("Only used when inertia is enabled")]
|
|
||||||
Snap snap = new Snap { Enable = true, VelocityThreshold = 0.5f, Duration = 0.3f };
|
|
||||||
[SerializeField]
|
|
||||||
int dataCount;
|
|
||||||
|
|
||||||
#region Events
|
[Serializable]
|
||||||
[Tooltip("Event that fires when the position of an item changes")]
|
struct Snap
|
||||||
public UpdatePositionEvent OnUpdatePosition;
|
{
|
||||||
|
public bool Enable;
|
||||||
|
public float VelocityThreshold;
|
||||||
|
public float Duration;
|
||||||
|
}
|
||||||
|
|
||||||
[Tooltip("Event that fires when an item is selected/focused")]
|
class AutoScrollState
|
||||||
public ItemSelectedEvent OnItemSelected;
|
{
|
||||||
#endregion
|
public bool Enable;
|
||||||
|
public bool Elastic;
|
||||||
|
public float Duration;
|
||||||
|
public float StartTime;
|
||||||
|
public float EndScrollPosition;
|
||||||
|
|
||||||
Vector2 pointerStartLocalPosition;
|
public void Reset()
|
||||||
float dragStartScrollPosition;
|
{
|
||||||
float currentScrollPosition;
|
Enable = false;
|
||||||
bool dragging;
|
Elastic = false;
|
||||||
|
Duration = 0f;
|
||||||
|
StartTime = 0f;
|
||||||
|
EndScrollPosition = 0f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void IBeginDragHandler.OnBeginDrag(PointerEventData eventData)
|
public void OnUpdatePosition(Action<float> onUpdatePosition)
|
||||||
{
|
{
|
||||||
if (eventData.button != PointerEventData.InputButton.Left)
|
this.onUpdatePosition = onUpdatePosition;
|
||||||
{
|
}
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
pointerStartLocalPosition = Vector2.zero;
|
public void OnItemSelected(Action<int> onItemSelected)
|
||||||
RectTransformUtility.ScreenPointToLocalPointInRectangle(
|
{
|
||||||
viewport,
|
this.onItemSelected = onItemSelected;
|
||||||
eventData.position,
|
}
|
||||||
eventData.pressEventCamera,
|
|
||||||
out pointerStartLocalPosition);
|
|
||||||
|
|
||||||
dragStartScrollPosition = currentScrollPosition;
|
public void SetDataCount(int dataCount)
|
||||||
dragging = true;
|
{
|
||||||
}
|
this.dataCount = dataCount;
|
||||||
|
}
|
||||||
|
|
||||||
void IDragHandler.OnDrag(PointerEventData eventData)
|
public void ScrollTo(int index, float duration)
|
||||||
{
|
{
|
||||||
if (eventData.button != PointerEventData.InputButton.Left)
|
autoScrollState.Reset();
|
||||||
{
|
autoScrollState.Enable = true;
|
||||||
return;
|
autoScrollState.Duration = duration;
|
||||||
}
|
autoScrollState.StartTime = Time.unscaledTime;
|
||||||
|
autoScrollState.EndScrollPosition = CalculateDestinationIndex(index);
|
||||||
|
|
||||||
if (!dragging)
|
velocity = 0f;
|
||||||
{
|
dragStartScrollPosition = currentScrollPosition;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Vector2 localCursor;
|
ItemSelected(Mathf.RoundToInt(GetCircularPosition(autoScrollState.EndScrollPosition, dataCount)));
|
||||||
if (!RectTransformUtility.ScreenPointToLocalPointInRectangle(
|
}
|
||||||
viewport,
|
|
||||||
eventData.position,
|
|
||||||
eventData.pressEventCamera,
|
|
||||||
out localCursor))
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var pointerDelta = localCursor - pointerStartLocalPosition;
|
public void JumpTo(int index)
|
||||||
var position = (directionOfRecognize == ScrollDirection.Horizontal ? -pointerDelta.x : pointerDelta.y)
|
{
|
||||||
/ GetViewportSize()
|
autoScrollState.Reset();
|
||||||
* scrollSensitivity
|
|
||||||
+ dragStartScrollPosition;
|
|
||||||
|
|
||||||
var offset = CalculateOffset(position);
|
velocity = 0f;
|
||||||
position += offset;
|
dragging = false;
|
||||||
|
|
||||||
if (movementType == MovementType.Elastic)
|
index = CalculateDestinationIndex(index);
|
||||||
{
|
|
||||||
if (offset != 0)
|
|
||||||
{
|
|
||||||
position -= RubberDelta(offset, scrollSensitivity);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
UpdatePosition(position);
|
|
||||||
}
|
|
||||||
|
|
||||||
void IEndDragHandler.OnEndDrag(PointerEventData eventData)
|
ItemSelected(index);
|
||||||
{
|
UpdatePosition(index);
|
||||||
if (eventData.button != PointerEventData.InputButton.Left)
|
}
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
dragging = false;
|
void IBeginDragHandler.OnBeginDrag(PointerEventData eventData)
|
||||||
}
|
{
|
||||||
|
if (eventData.button != PointerEventData.InputButton.Left)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
float GetViewportSize()
|
pointerStartLocalPosition = Vector2.zero;
|
||||||
{
|
RectTransformUtility.ScreenPointToLocalPointInRectangle(
|
||||||
return directionOfRecognize == ScrollDirection.Horizontal
|
viewport,
|
||||||
? viewport.rect.size.x
|
eventData.position,
|
||||||
: viewport.rect.size.y;
|
eventData.pressEventCamera,
|
||||||
}
|
out pointerStartLocalPosition);
|
||||||
|
|
||||||
float CalculateOffset(float position)
|
dragStartScrollPosition = currentScrollPosition;
|
||||||
{
|
dragging = true;
|
||||||
if (movementType == MovementType.Unrestricted)
|
autoScrollState.Reset();
|
||||||
{
|
}
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (position < 0)
|
|
||||||
{
|
|
||||||
return -position;
|
|
||||||
}
|
|
||||||
if (position > dataCount - 1)
|
|
||||||
{
|
|
||||||
return (dataCount - 1) - position;
|
|
||||||
}
|
|
||||||
return 0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
void UpdatePosition(float position)
|
void IDragHandler.OnDrag(PointerEventData eventData)
|
||||||
{
|
{
|
||||||
currentScrollPosition = position;
|
if (eventData.button != PointerEventData.InputButton.Left)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (OnUpdatePosition != null)
|
if (!dragging)
|
||||||
{
|
{
|
||||||
OnUpdatePosition.Invoke(currentScrollPosition);
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
float RubberDelta(float overStretching, float viewSize)
|
Vector2 localCursor;
|
||||||
{
|
if (!RectTransformUtility.ScreenPointToLocalPointInRectangle(
|
||||||
return (1 - (1 / ((Mathf.Abs(overStretching) * 0.55f / viewSize) + 1))) * viewSize * Mathf.Sign(overStretching);
|
viewport,
|
||||||
}
|
eventData.position,
|
||||||
|
eventData.pressEventCamera,
|
||||||
|
out localCursor))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
//public void OnUpdatePosition(Action<float> onUpdatePosition)
|
var pointerDelta = localCursor - pointerStartLocalPosition;
|
||||||
//{
|
var position = (directionOfRecognize == ScrollDirection.Horizontal ? -pointerDelta.x : pointerDelta.y)
|
||||||
// this.onUpdatePosition = onUpdatePosition;
|
/ GetViewportSize()
|
||||||
//}
|
* scrollSensitivity
|
||||||
|
+ dragStartScrollPosition;
|
||||||
|
|
||||||
public void SetDataCount(int dataCont)
|
var offset = CalculateOffset(position);
|
||||||
{
|
position += offset;
|
||||||
this.dataCount = dataCont;
|
|
||||||
}
|
|
||||||
|
|
||||||
float velocity;
|
if (movementType == MovementType.Elastic)
|
||||||
float prevScrollPosition;
|
{
|
||||||
|
if (offset != 0f)
|
||||||
|
{
|
||||||
|
position -= RubberDelta(offset, scrollSensitivity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool autoScrolling;
|
UpdatePosition(position);
|
||||||
float autoScrollDuration;
|
}
|
||||||
float autoScrollStartTime;
|
|
||||||
float autoScrollPosition;
|
|
||||||
|
|
||||||
void Update()
|
void IEndDragHandler.OnEndDrag(PointerEventData eventData)
|
||||||
{
|
{
|
||||||
var deltaTime = Time.unscaledDeltaTime;
|
if (eventData.button != PointerEventData.InputButton.Left)
|
||||||
var offset = CalculateOffset(currentScrollPosition);
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (autoScrolling)
|
dragging = false;
|
||||||
{
|
}
|
||||||
var alpha = Mathf.Clamp01((Time.unscaledTime - autoScrollStartTime) / Mathf.Max(autoScrollDuration, float.Epsilon));
|
|
||||||
var position = Mathf.Lerp(dragStartScrollPosition, autoScrollPosition, EaseInOutCubic(0, 1, alpha));
|
|
||||||
UpdatePosition(position);
|
|
||||||
|
|
||||||
if (Mathf.Approximately(alpha, 1f))
|
float GetViewportSize()
|
||||||
{
|
{
|
||||||
autoScrolling = false;
|
return directionOfRecognize == ScrollDirection.Horizontal
|
||||||
// Auto scrolling is completed, get the item's index and firing OnItemSelected event.
|
? viewport.rect.size.x
|
||||||
if(OnItemSelected != null)
|
: viewport.rect.size.y;
|
||||||
{
|
}
|
||||||
OnItemSelected.Invoke(Mathf.RoundToInt(GetLoopPosition(autoScrollPosition, dataCount)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (!dragging && (offset != 0 || velocity != 0))
|
|
||||||
{
|
|
||||||
var position = currentScrollPosition;
|
|
||||||
// Apply spring physics if movement is elastic and content has an offset from the view.
|
|
||||||
if (movementType == MovementType.Elastic && offset != 0)
|
|
||||||
{
|
|
||||||
var speed = velocity;
|
|
||||||
position = Mathf.SmoothDamp(currentScrollPosition, currentScrollPosition + offset, ref speed, elasticity, Mathf.Infinity, deltaTime);
|
|
||||||
velocity = speed;
|
|
||||||
}
|
|
||||||
// Else move content according to velocity with deceleration applied.
|
|
||||||
else if (inertia)
|
|
||||||
{
|
|
||||||
velocity *= Mathf.Pow(decelerationRate, deltaTime);
|
|
||||||
if (Mathf.Abs(velocity) < 0.001f)
|
|
||||||
velocity = 0;
|
|
||||||
position += velocity * deltaTime;
|
|
||||||
|
|
||||||
if (snap.Enable && Mathf.Abs(velocity) < snap.VelocityThreshold)
|
float CalculateOffset(float position)
|
||||||
{
|
{
|
||||||
ScrollTo(Mathf.RoundToInt(currentScrollPosition), snap.Duration);
|
if (movementType == MovementType.Unrestricted)
|
||||||
}
|
{
|
||||||
}
|
return 0f;
|
||||||
// If we have neither elaticity or friction, there shouldn't be any velocity.
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
velocity = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (velocity != 0)
|
if (position < 0f)
|
||||||
{
|
{
|
||||||
if (movementType == MovementType.Clamped)
|
return -position;
|
||||||
{
|
}
|
||||||
offset = CalculateOffset(position);
|
|
||||||
position += offset;
|
|
||||||
}
|
|
||||||
UpdatePosition(position);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!autoScrolling && dragging && inertia)
|
if (position > dataCount - 1)
|
||||||
{
|
{
|
||||||
var newVelocity = (currentScrollPosition - prevScrollPosition) / deltaTime;
|
return dataCount - 1 - position;
|
||||||
velocity = Mathf.Lerp(velocity, newVelocity, deltaTime * 10f);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (currentScrollPosition != prevScrollPosition)
|
return 0f;
|
||||||
{
|
}
|
||||||
prevScrollPosition = currentScrollPosition;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ScrollTo(int index, float duration)
|
void UpdatePosition(float position)
|
||||||
{
|
{
|
||||||
velocity = 0;
|
currentScrollPosition = position;
|
||||||
autoScrolling = true;
|
|
||||||
autoScrollDuration = duration;
|
|
||||||
autoScrollStartTime = Time.unscaledTime;
|
|
||||||
dragStartScrollPosition = currentScrollPosition;
|
|
||||||
|
|
||||||
autoScrollPosition = movementType == MovementType.Unrestricted
|
if (onUpdatePosition != null)
|
||||||
? CalculateClosestPosition(index)
|
{
|
||||||
: index;
|
onUpdatePosition(currentScrollPosition);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
float CalculateClosestPosition(int index)
|
void ItemSelected(int index)
|
||||||
{
|
{
|
||||||
var diff = GetLoopPosition(index, dataCount)
|
if (onItemSelected != null)
|
||||||
- GetLoopPosition(currentScrollPosition, dataCount);
|
{
|
||||||
|
onItemSelected(index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (Mathf.Abs(diff) > dataCount * 0.5f)
|
float RubberDelta(float overStretching, float viewSize)
|
||||||
{
|
{
|
||||||
diff = Mathf.Sign(-diff) * (dataCount - Mathf.Abs(diff));
|
return (1 - (1 / ((Mathf.Abs(overStretching) * 0.55f / viewSize) + 1))) * viewSize * Mathf.Sign(overStretching);
|
||||||
}
|
}
|
||||||
return diff + currentScrollPosition;
|
|
||||||
}
|
|
||||||
|
|
||||||
float GetLoopPosition(float position, int length)
|
void Update()
|
||||||
{
|
{
|
||||||
if (position < 0)
|
var deltaTime = Time.unscaledDeltaTime;
|
||||||
{
|
var offset = CalculateOffset(currentScrollPosition);
|
||||||
position = (length - 1) + (position + 1) % length;
|
|
||||||
}
|
|
||||||
else if (position > length - 1)
|
|
||||||
{
|
|
||||||
position = position % length;
|
|
||||||
}
|
|
||||||
return position;
|
|
||||||
}
|
|
||||||
|
|
||||||
float EaseInOutCubic(float start, float end, float value)
|
if (autoScrollState.Enable)
|
||||||
{
|
{
|
||||||
value /= 0.5f;
|
var position = 0f;
|
||||||
end -= start;
|
|
||||||
if (value < 1f)
|
if (autoScrollState.Elastic)
|
||||||
{
|
{
|
||||||
return end * 0.5f * value * value * value + start;
|
var speed = velocity;
|
||||||
}
|
position = Mathf.SmoothDamp(currentScrollPosition, currentScrollPosition + offset, ref speed, elasticity, Mathf.Infinity, deltaTime);
|
||||||
value -= 2f;
|
velocity = speed;
|
||||||
return end * 0.5f * (value * value * value + 2f) + start;
|
|
||||||
}
|
if (Mathf.Abs(velocity) < 0.01f)
|
||||||
}
|
{
|
||||||
|
position = Mathf.Clamp(Mathf.RoundToInt(position), 0, dataCount - 1);
|
||||||
|
velocity = 0f;
|
||||||
|
autoScrollState.Reset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var alpha = Mathf.Clamp01((Time.unscaledTime - autoScrollState.StartTime) / Mathf.Max(autoScrollState.Duration, float.Epsilon));
|
||||||
|
position = Mathf.Lerp(dragStartScrollPosition, autoScrollState.EndScrollPosition, EaseInOutCubic(0, 1, alpha));
|
||||||
|
|
||||||
|
if (Mathf.Approximately(alpha, 1f))
|
||||||
|
{
|
||||||
|
autoScrollState.Reset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
UpdatePosition(position);
|
||||||
|
}
|
||||||
|
else if (!dragging && (!Mathf.Approximately(offset, 0f) || !Mathf.Approximately(velocity, 0f)))
|
||||||
|
{
|
||||||
|
var position = currentScrollPosition;
|
||||||
|
|
||||||
|
if (movementType == MovementType.Elastic && !Mathf.Approximately(offset, 0f))
|
||||||
|
{
|
||||||
|
autoScrollState.Reset();
|
||||||
|
autoScrollState.Enable = true;
|
||||||
|
autoScrollState.Elastic = true;
|
||||||
|
|
||||||
|
ItemSelected(Mathf.Clamp(Mathf.RoundToInt(position), 0, dataCount - 1));
|
||||||
|
}
|
||||||
|
else if (inertia)
|
||||||
|
{
|
||||||
|
velocity *= Mathf.Pow(decelerationRate, deltaTime);
|
||||||
|
|
||||||
|
if (Mathf.Abs(velocity) < 0.001f)
|
||||||
|
{
|
||||||
|
velocity = 0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
position += velocity * deltaTime;
|
||||||
|
|
||||||
|
if (snap.Enable && Mathf.Abs(velocity) < snap.VelocityThreshold)
|
||||||
|
{
|
||||||
|
ScrollTo(Mathf.RoundToInt(currentScrollPosition), snap.Duration);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
velocity = 0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Mathf.Approximately(velocity, 0f))
|
||||||
|
{
|
||||||
|
if (movementType == MovementType.Clamped)
|
||||||
|
{
|
||||||
|
offset = CalculateOffset(position);
|
||||||
|
position += offset;
|
||||||
|
|
||||||
|
if (Mathf.Approximately(position, 0f) || Mathf.Approximately(position, dataCount - 1f))
|
||||||
|
{
|
||||||
|
velocity = 0f;
|
||||||
|
ItemSelected(Mathf.RoundToInt(position));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
UpdatePosition(position);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!autoScrollState.Enable && dragging && inertia)
|
||||||
|
{
|
||||||
|
var newVelocity = (currentScrollPosition - prevScrollPosition) / deltaTime;
|
||||||
|
velocity = Mathf.Lerp(velocity, newVelocity, deltaTime * 10f);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentScrollPosition != prevScrollPosition)
|
||||||
|
{
|
||||||
|
prevScrollPosition = currentScrollPosition;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int CalculateDestinationIndex(int index)
|
||||||
|
{
|
||||||
|
return movementType == MovementType.Unrestricted
|
||||||
|
? CalculateClosestIndex(index)
|
||||||
|
: Mathf.Clamp(index, 0, dataCount - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
int CalculateClosestIndex(int index)
|
||||||
|
{
|
||||||
|
var diff = GetCircularPosition(index, dataCount)
|
||||||
|
- GetCircularPosition(currentScrollPosition, dataCount);
|
||||||
|
|
||||||
|
if (Mathf.Abs(diff) > dataCount * 0.5f)
|
||||||
|
{
|
||||||
|
diff = Mathf.Sign(-diff) * (dataCount - Mathf.Abs(diff));
|
||||||
|
}
|
||||||
|
|
||||||
|
return Mathf.RoundToInt(diff + currentScrollPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
float GetCircularPosition(float position, int length)
|
||||||
|
{
|
||||||
|
return position < 0 ? length - 1 + (position + 1) % length : position % length;
|
||||||
|
}
|
||||||
|
|
||||||
|
float EaseInOutCubic(float start, float end, float value)
|
||||||
|
{
|
||||||
|
value /= 0.5f;
|
||||||
|
end -= start;
|
||||||
|
|
||||||
|
if (value < 1f)
|
||||||
|
{
|
||||||
|
return end * 0.5f * value * value * value + start;
|
||||||
|
}
|
||||||
|
|
||||||
|
value -= 2f;
|
||||||
|
return end * 0.5f * (value * value * value + 2f) + start;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue