From 90e1b5e89f610214ef80c437522a9f47a384202e Mon Sep 17 00:00:00 2001 From: pharan Date: Mon, 15 May 2017 12:48:05 +0800 Subject: [PATCH] [unity] First phase update examples. --- .../1 The Spine GameObject.unity | 177 +- .../4 Object Oriented Sample.unity | 2761 +++++++++++++---- .../Getting Started/5 Basic Platformer.unity | 970 ++++-- .../Getting Started/6 SkeletonGraphic.unity | 237 +- .../Scripts/SpineBeginnerTwo.cs | 8 + .../Scripts/SpineboyBeginnerView.cs | 9 +- .../Other Examples/AtlasRegionAttacher.unity | 104 +- .../Examples/Other Examples/Dragon.unity | 112 +- .../Other Examples/Mix and Match.unity | 824 +++-- .../SkeletonRenderSeparator.unity | 2332 +++++++++++--- .../Other Examples/Sprite Shaders.unity | 234 +- .../Assets/Examples/Scripts/MixAndMatch.cs | 91 +- .../Examples/Scripts/RaggedySpineboy.cs | 4 - .../Sample Components/AtlasRegionAttacher.cs | 5 + .../Sample Components/BoneLocalOverride.cs | 53 + .../BoneLocalOverride.cs.meta | 12 + .../Scripts/Sample Components}/CustomSkin.cs | 0 .../Sample Components}/CustomSkin.cs.meta | 0 .../SkeletonColorInitialize.cs | 51 + .../SkeletonColorInitialize.cs.meta | 12 + .../SlotTintBlackFollower.cs | 0 .../SlotTintBlackFollower.cs.meta | 0 .../Sample Components/SpriteAttacher.cs | 4 +- .../Examples/Spine/Dragon/dragon_Atlas.asset | Bin 4216 -> 600 bytes .../Examples/Spine/Dragon/dragon_dragon.mat | Bin 4240 -> 707 bytes .../Examples/Spine/Dragon/dragon_dragon2.mat | Bin 4240 -> 708 bytes .../Examples/Spine/Eyes/eyes_Atlas.asset | Bin 4204 -> 527 bytes .../Examples/Spine/Eyes/eyes_Material.mat | Bin 4240 -> 707 bytes .../Equipment/Equipment_Atlas.asset | Bin 4208 -> 532 bytes .../Equipment/Equipment_Material.mat | Bin 4244 -> 712 bytes .../Spine/FootSoldier/FS_White_Atlas.asset | Bin 4208 -> 531 bytes .../Spine/FootSoldier/FS_White_Material.mat | Bin 4244 -> 711 bytes .../Examples/Spine/Gauge/Gauge_Atlas.asset | Bin 4204 -> 528 bytes .../Examples/Spine/Gauge/Gauge_Material.mat | Bin 4240 -> 708 bytes .../Spine/Goblins/goblins_Atlas.asset | Bin 4208 -> 530 bytes .../Spine/Goblins/goblins_Material.mat | Bin 4240 -> 710 bytes .../Examples/Spine/Hero/hero-mesh_Atlas.asset | Bin 4208 -> 532 bytes .../Spine/Hero/hero-mesh_Material.mat | Bin 4244 -> 712 bytes .../Raggedy Spineboy_Atlas.asset | Bin 4216 -> 539 bytes .../Raggedy Spineboy_Material.mat | Bin 4252 -> 719 bytes .../Examples/Spine/Raptor/raptor.png.meta | 530 +++- .../Examples/Spine/Raptor/raptor_Atlas.asset | Bin 4204 -> 529 bytes .../Examples/Spine/Raptor/raptor_Material.mat | Bin 4240 -> 709 bytes .../Spine/Spineboy/Equips.meta} | 4 +- .../Spine/Spineboy/Equips/freezegun.png | Bin 0 -> 36729 bytes .../Spine/Spineboy/Equips/freezegun.png.meta | 76 + .../Spineboy/Equips/goggles-tacticalvisor.png | Bin 0 -> 46967 bytes .../Equips/goggles-tacticalvisor.png.meta | 92 + .../Examples/Spine/Spineboy/spineboy.json | 974 +++++- .../Examples/Spine/Spineboy/spineboy.png.meta | 2 +- .../Spine/Spineboy/spineboy_Atlas.asset | Bin 4208 -> 531 bytes .../Spine/Spineboy/spineboy_Material.mat | Bin 5060 -> 839 bytes .../Spine/Spineboy/spineboy_Material.mat.meta | 2 +- .../Spineboy/spineboy_SkeletonData.asset | 2 +- .../Examples/Spine/Spineunitygirl/Doi.json | 5 +- .../Spine/Spineunitygirl/Doi_Atlas.asset | Bin 4204 -> 526 bytes .../Spine/Spineunitygirl/Doi_Material.mat | Bin 4236 -> 706 bytes .../stretchyman-diffuse-pma.png.meta | 2 +- .../stretchyman-diffuse-pma_Atlas.asset | Bin 4224 -> 546 bytes .../stretchyman-diffuse-pma_Material.mat | 140 +- .../Spine/Strechyman/stretchyman.json | 529 +++- .../Modules/SlotTintBlackFollower.meta | 9 - 62 files changed, 7976 insertions(+), 2391 deletions(-) create mode 100644 spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs create mode 100644 spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs.meta rename spine-unity/Assets/{spine-unity/Modules/CustomSkin => Examples/Scripts/Sample Components}/CustomSkin.cs (100%) rename spine-unity/Assets/{spine-unity/Modules/CustomSkin => Examples/Scripts/Sample Components}/CustomSkin.cs.meta (100%) create mode 100644 spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs create mode 100644 spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs.meta rename spine-unity/Assets/{spine-unity/Modules/SlotTintBlackFollower => Examples/Scripts/Sample Components}/SlotTintBlackFollower.cs (100%) rename spine-unity/Assets/{spine-unity/Modules/SlotTintBlackFollower => Examples/Scripts/Sample Components}/SlotTintBlackFollower.cs.meta (100%) rename spine-unity/Assets/{spine-unity/Modules/CustomSkin.meta => Examples/Spine/Spineboy/Equips.meta} (67%) create mode 100644 spine-unity/Assets/Examples/Spine/Spineboy/Equips/freezegun.png create mode 100644 spine-unity/Assets/Examples/Spine/Spineboy/Equips/freezegun.png.meta create mode 100644 spine-unity/Assets/Examples/Spine/Spineboy/Equips/goggles-tacticalvisor.png create mode 100644 spine-unity/Assets/Examples/Spine/Spineboy/Equips/goggles-tacticalvisor.png.meta delete mode 100644 spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower.meta diff --git a/spine-unity/Assets/Examples/Getting Started/1 The Spine GameObject.unity b/spine-unity/Assets/Examples/Getting Started/1 The Spine GameObject.unity index c9e13e349..1330d64e4 100644 --- a/spine-unity/Assets/Examples/Getting Started/1 The Spine GameObject.unity +++ b/spine-unity/Assets/Examples/Getting Started/1 The Spine GameObject.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 6 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -37,12 +38,12 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 6 + serializedVersion: 9 m_GIWorkflowMode: 1 - m_LightmapsMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -53,50 +54,73 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 3 + serializedVersion: 8 m_Resolution: 2 m_BakeResolution: 40 m_TextureWidth: 1024 m_TextureHeight: 1024 + m_AO: 0 m_AOMaxDistance: 1 - m_Padding: 2 m_CompAOExponent: 0 + m_CompAOExponentDirect: 0 + m_Padding: 2 m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 m_TextureCompression: 1 m_FinalGather: 0 + m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666667 manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &139638498 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 139638502} - - 33: {fileID: 139638501} - - 23: {fileID: 139638500} - - 114: {fileID: 139638499} - - 114: {fileID: 139638503} + - component: {fileID: 139638502} + - component: {fileID: 139638501} + - component: {fileID: 139638500} + - component: {fileID: 139638499} + - component: {fileID: 139638503} + - component: {fileID: 139638504} m_Layer: 0 m_Name: Spine GameObject (SpineUnityGirl) m_TagString: Untagged @@ -117,14 +141,18 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 3c48535ae5679204c950a22a7caaa5a4, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 - calculateNormals: 0 + clearStateOnDisable: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 - frontFacing: 0 logErrors: 0 disableRenderingOnOverride: 1 _animationName: main @@ -139,22 +167,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 2745674eb28031e499ac70ef825b153e, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &139638501 MeshFilter: @@ -175,6 +209,7 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &139638503 MonoBehaviour: m_ObjectHideFlags: 0 @@ -189,16 +224,27 @@ MonoBehaviour: blinkAnimation: blink minimumDelay: 0.15 maximumDelay: 3 +--- !u!114 &139638504 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 139638498} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b337e07bc016684dabf04793dd00ea3, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &199409354 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 199409355} - - 23: {fileID: 199409357} - - 102: {fileID: 199409356} + - component: {fileID: 199409355} + - component: {fileID: 199409357} + - component: {fileID: 199409356} m_Layer: 0 m_Name: Description m_TagString: Untagged @@ -218,6 +264,7 @@ Transform: m_Children: [] m_Father: {fileID: 926099112} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &199409356 TextMesh: serializedVersion: 3 @@ -271,35 +318,41 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &611702901 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 611702906} - - 20: {fileID: 611702905} - - 92: {fileID: 611702904} - - 124: {fileID: 611702903} - - 81: {fileID: 611702902} + - component: {fileID: 611702906} + - component: {fileID: 611702905} + - component: {fileID: 611702904} + - component: {fileID: 611702903} + - component: {fileID: 611702902} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -358,6 +411,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -374,14 +429,15 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &926099111 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 926099112} + - component: {fileID: 926099112} m_Layer: 0 m_Name: LABELS m_TagString: Untagged @@ -404,16 +460,17 @@ Transform: - {fileID: 1945923979} m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1209538363 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1209538364} - - 23: {fileID: 1209538366} - - 102: {fileID: 1209538365} + - component: {fileID: 1209538364} + - component: {fileID: 1209538366} + - component: {fileID: 1209538365} m_Layer: 0 m_Name: Description (1) m_TagString: Untagged @@ -433,6 +490,7 @@ Transform: m_Children: [] m_Father: {fileID: 926099112} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &1209538365 TextMesh: serializedVersion: 3 @@ -463,33 +521,39 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &1945923976 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1945923979} - - 23: {fileID: 1945923978} - - 102: {fileID: 1945923977} + - component: {fileID: 1945923979} + - component: {fileID: 1945923978} + - component: {fileID: 1945923977} m_Layer: 0 m_Name: play mode m_TagString: Untagged @@ -527,22 +591,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!4 &1945923979 Transform: @@ -556,3 +626,4 @@ Transform: m_Children: [] m_Father: {fileID: 926099112} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/spine-unity/Assets/Examples/Getting Started/4 Object Oriented Sample.unity b/spine-unity/Assets/Examples/Getting Started/4 Object Oriented Sample.unity index f93e4070c..b962de8fd 100644 --- a/spine-unity/Assets/Examples/Getting Started/4 Object Oriented Sample.unity +++ b/spine-unity/Assets/Examples/Getting Started/4 Object Oriented Sample.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 6 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -37,12 +38,12 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 6 + serializedVersion: 9 m_GIWorkflowMode: 1 - m_LightmapsMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -53,47 +54,69 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 3 + serializedVersion: 8 m_Resolution: 2 m_BakeResolution: 40 m_TextureWidth: 1024 m_TextureHeight: 1024 + m_AO: 0 m_AOMaxDistance: 1 - m_Padding: 2 m_CompAOExponent: 0 + m_CompAOExponentDirect: 0 + m_Padding: 2 m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 m_TextureCompression: 1 m_FinalGather: 0 + m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666667 manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &299828572 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 299828573} - - 114: {fileID: 299828574} + - component: {fileID: 299828573} + - component: {fileID: 299828574} m_Layer: 0 m_Name: PLAYER Spineboy m_TagString: Untagged @@ -114,6 +137,7 @@ Transform: - {fileID: 816033313} m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &299828574 MonoBehaviour: m_ObjectHideFlags: 0 @@ -134,11 +158,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 320097518} - - 23: {fileID: 320097520} - - 102: {fileID: 320097519} + - component: {fileID: 320097518} + - component: {fileID: 320097520} + - component: {fileID: 320097519} m_Layer: 0 m_Name: play mode m_TagString: Untagged @@ -158,6 +182,7 @@ Transform: m_Children: [] m_Father: {fileID: 1573724995} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &320097519 TextMesh: serializedVersion: 3 @@ -190,35 +215,41 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &611702901 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 611702906} - - 20: {fileID: 611702905} - - 92: {fileID: 611702904} - - 124: {fileID: 611702903} - - 81: {fileID: 611702902} + - component: {fileID: 611702906} + - component: {fileID: 611702905} + - component: {fileID: 611702904} + - component: {fileID: 611702903} + - component: {fileID: 611702902} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -277,6 +308,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -293,16 +326,17 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &811622967 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 811622971} - - 33: {fileID: 811622970} - - 23: {fileID: 811622969} + - component: {fileID: 811622971} + - component: {fileID: 811622970} + - component: {fileID: 811622969} m_Layer: 0 m_Name: PLATFORM platform m_TagString: Untagged @@ -319,22 +353,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 0 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 1 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &811622970 MeshFilter: @@ -355,19 +395,20 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &816033309 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 816033313} - - 114: {fileID: 816033314} - - 33: {fileID: 816033312} - - 23: {fileID: 816033311} - - 114: {fileID: 816033310} - - 114: {fileID: 816033315} + - component: {fileID: 816033313} + - component: {fileID: 816033314} + - component: {fileID: 816033312} + - component: {fileID: 816033311} + - component: {fileID: 816033310} + - component: {fileID: 816033315} m_Layer: 0 m_Name: VIEW Spineboy m_TagString: Untagged @@ -388,14 +429,18 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 44691b56ed7d1f04da0cbc2a52a91b8d, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 - calculateNormals: 0 + clearStateOnDisable: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 - frontFacing: 0 logErrors: 0 disableRenderingOnOverride: 1 _animationName: idle @@ -410,22 +455,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 - m_Materials: - - {fileID: 2100000, guid: 4083cd422558e2540a62bbafb94f57b5, type: 2} - m_SubsetIndices: - m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 m_ReflectionProbeUsage: 0 + m_Materials: + - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &816033312 MeshFilter: @@ -450,6 +501,7 @@ Transform: - {fileID: 2088845777} m_Father: {fileID: 299828573} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &816033314 MonoBehaviour: m_ObjectHideFlags: 0 @@ -482,20 +534,21 @@ MonoBehaviour: m_GameObject: {fileID: 816033309} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 7f726fb798ad621458c431cb9966d91d, type: 3} + m_Script: {fileID: 11500000, guid: af275876c7b01264b85161629a9bc217, type: 3} m_Name: m_EditorClassIdentifier: - boneRoot: {fileID: 0} - skeletonRenderer: {fileID: 816033310} + skeletonAnimation: {fileID: 816033310} + boneName: shoot target + camera: {fileID: 611702905} --- !u!1 &1090490184 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1090490185} - - 82: {fileID: 1090490186} + - component: {fileID: 1090490185} + - component: {fileID: 1090490186} m_Layer: 0 m_Name: AUDIO Gun m_TagString: Untagged @@ -515,6 +568,7 @@ Transform: m_Children: [] m_Father: {fileID: 816033313} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!82 &1090490186 AudioSource: m_ObjectHideFlags: 0 @@ -531,6 +585,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -543,12 +598,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -559,7 +616,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -570,7 +628,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -581,7 +640,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -594,10 +654,10 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1147196157} - - 114: {fileID: 1147196156} + - component: {fileID: 1147196157} + - component: {fileID: 1147196156} m_Layer: 0 m_Name: PLAYER INPUT m_TagString: Untagged @@ -632,15 +692,16 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1420150642 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1420150643} - - 82: {fileID: 1420150644} + - component: {fileID: 1420150643} + - component: {fileID: 1420150644} m_Layer: 0 m_Name: AUDIO Jump m_TagString: Untagged @@ -660,6 +721,7 @@ Transform: m_Children: [] m_Father: {fileID: 816033313} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!82 &1420150644 AudioSource: m_ObjectHideFlags: 0 @@ -676,6 +738,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -688,12 +751,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -704,7 +769,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -715,7 +781,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -726,7 +793,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -739,11 +807,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1447233439} - - 23: {fileID: 1447233441} - - 102: {fileID: 1447233440} + - component: {fileID: 1447233439} + - component: {fileID: 1447233441} + - component: {fileID: 1447233440} m_Layer: 0 m_Name: Description m_TagString: Untagged @@ -763,6 +831,7 @@ Transform: m_Children: [] m_Father: {fileID: 1573724995} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &1447233440 TextMesh: serializedVersion: 3 @@ -808,31 +877,37 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &1573724994 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1573724995} + - component: {fileID: 1573724995} m_Layer: 0 m_Name: LABELS m_TagString: Untagged @@ -854,16 +929,17 @@ Transform: - {fileID: 320097518} m_Father: {fileID: 0} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1858851854 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1858851855} - - 82: {fileID: 1858851856} - - 82: {fileID: 1858851857} + - component: {fileID: 1858851855} + - component: {fileID: 1858851856} + - component: {fileID: 1858851857} m_Layer: 0 m_Name: AUDIO Footsteps m_TagString: Untagged @@ -883,6 +959,7 @@ Transform: m_Children: [] m_Father: {fileID: 816033313} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!82 &1858851856 AudioSource: m_ObjectHideFlags: 0 @@ -899,6 +976,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -911,12 +989,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -927,7 +1007,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -938,7 +1019,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -949,7 +1031,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -973,6 +1056,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -985,12 +1069,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1001,7 +1087,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -1012,7 +1099,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -1023,7 +1111,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -1036,12 +1125,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 2088845777} - - 198: {fileID: 2088845780} - - 199: {fileID: 2088845779} - - 114: {fileID: 2088845778} + - component: {fileID: 2088845777} + - component: {fileID: 2088845780} + - component: {fileID: 2088845779} + - component: {fileID: 2088845778} m_Layer: 0 m_Name: PARTICLES Gun m_TagString: Untagged @@ -1056,11 +1145,12 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2088845776} m_LocalRotation: {x: 0, y: 0, z: 0.08045987, w: 0.99675786} - m_LocalPosition: {x: 2.9172332, y: 3.7448013, z: 0} + m_LocalPosition: {x: 2.9171321, y: 3.744694, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 816033313} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &2088845778 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1076,9 +1166,12 @@ MonoBehaviour: boneName: gunTip followZPosition: 0 followBoneRotation: 0 - resetOnAwake: 1 + followSkeletonFlip: 1 + followLocalScale: 0 + initializeOnAwake: 1 --- !u!199 &2088845779 ParticleSystemRenderer: + serializedVersion: 3 m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} @@ -1086,22 +1179,29 @@ ParticleSystemRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: - m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 m_ReflectionProbeUsage: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 m_RenderMode: 0 m_SortMode: 0 @@ -1114,6 +1214,8 @@ ParticleSystemRenderer: m_NormalDirection: 1 m_RenderAlignment: 0 m_Pivot: {x: 0, y: 0, z: 0} + m_UseCustomVertexStreams: 0 + m_VertexStreams: 0001030405 m_Mesh: {fileID: 0} m_Mesh1: {fileID: 0} m_Mesh2: {fileID: 0} @@ -1124,14 +1226,21 @@ ParticleSystem: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2088845776} - serializedVersion: 2 + serializedVersion: 5 lengthInSec: 0.5 + simulationSpeed: 1 + looping: 0 + prewarm: 0 + playOnAwake: 0 + autoRandomSeed: 1 startDelay: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -1142,7 +1251,8 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0.6666667 inSlope: 0 outSlope: 0 @@ -1150,23 +1260,21 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 0 - minMaxState: 0 - speed: 1 - randomSeed: 0 - looping: 0 - prewarm: 0 - playOnAwake: 0 - moveWithTransform: 0 + moveWithTransform: 1 + moveWithCustomTransform: {fileID: 0} scalingMode: 1 + randomSeed: 1048114582 InitialModule: - serializedVersion: 2 + serializedVersion: 3 enabled: 1 startLifetime: + minMaxState: 3 scalar: 0.5 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -1177,7 +1285,8 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0.6 inSlope: 0 outSlope: 0 @@ -1185,13 +1294,14 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 0 - minMaxState: 3 startSpeed: + minMaxState: 3 scalar: 35 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -1202,7 +1312,8 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0.14285715 inSlope: 0 outSlope: 0 @@ -1210,33 +1321,19 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 0 - minMaxState: 3 startColor: + serializedVersion: 2 + minMaxState: 2 maxGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -1253,33 +1350,19 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -1296,21 +1379,19 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 - minColor: - serializedVersion: 2 - rgba: 4290444031 - maxColor: - serializedVersion: 2 - rgba: 4280189183 - minMaxState: 2 + minColor: {r: 1, g: 0.98039216, b: 0.7294118, a: 1} + maxColor: {r: 1, g: 0.5019608, b: 0.11764706, a: 1} startSize: + minMaxState: 3 scalar: 0.5 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 @@ -1321,7 +1402,8 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0.4 inSlope: 0 outSlope: 0 @@ -1329,18 +1411,74 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 0 + startSizeY: minMaxState: 3 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 0 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 0 + startSizeZ: + minMaxState: 3 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 0 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 0 startRotationX: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1351,12 +1489,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1364,18 +1504,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startRotationY: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1386,12 +1528,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1399,18 +1543,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startRotation: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1421,12 +1567,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1434,46 +1582,173 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 randomizeRotationDirection: 0 - gravityModifier: 0 maxNumParticles: 1000 + size3D: 0 rotation3D: 0 + gravityModifier: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 ShapeModule: - serializedVersion: 2 + serializedVersion: 4 enabled: 1 type: 10 - radius: 1 angle: 25 length: 5 boxX: 1 boxY: 1 boxZ: 1 - arc: 360 + radius: + value: 1 + mode: 0 + spread: 0 + speed: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + arc: + value: 360 + mode: 0 + spread: 0 + speed: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 placementMode: 0 m_Mesh: {fileID: 0} m_MeshRenderer: {fileID: 0} m_SkinnedMeshRenderer: {fileID: 0} m_MeshMaterialIndex: 0 m_MeshNormalOffset: 0 + m_MeshScale: 1 m_UseMeshMaterialIndex: 0 m_UseMeshColors: 1 - randomDirection: 0 + alignToDirection: 0 + randomDirectionAmount: 0 + sphericalDirectionAmount: 0 EmissionModule: enabled: 1 - serializedVersion: 2 - m_Type: 0 - rate: + serializedVersion: 4 + rateOverTime: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1484,12 +1759,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1497,38 +1774,74 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 + rateOverDistance: minMaxState: 0 - cnt0: 3 - cnt1: 2 - cnt2: 30 - cnt3: 30 - cntmax0: 6 - cntmax1: 3 - cntmax2: 30 - cntmax3: 30 - time0: 0.1 - time1: 0.23 - time2: 0 - time3: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 m_BurstCount: 1 + m_Bursts: + - time: 0.1 + minCount: 3 + maxCount: 6 + cycleCount: 1 + repeatInterval: 0.01 SizeModule: enabled: 1 curve: + minMaxState: 1 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0.49025977 inSlope: 5.260957 outSlope: 5.260957 tangentMode: 0 - - time: 0.07977591 + - serializedVersion: 2 + time: 0.07977591 value: 0.9935065 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 0.6800895 + - serializedVersion: 2 + time: 0.6800895 value: 0.22727275 inSlope: 0 outSlope: 0 @@ -1539,12 +1852,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1552,224 +1867,286 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 - RotationModule: - enabled: 0 - x: - scalar: 0 - maxCurve: - serializedVersion: 2 - m_Curve: - - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - - time: 1 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - minCurve: - serializedVersion: 2 - m_Curve: - - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - - time: 1 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - minMaxState: 0 y: - scalar: 0 - maxCurve: - serializedVersion: 2 - m_Curve: - - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - - time: 1 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - minCurve: - serializedVersion: 2 - m_Curve: - - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - - time: 1 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - minMaxState: 0 - curve: - scalar: 0.7853982 - maxCurve: - serializedVersion: 2 - m_Curve: - - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - - time: 1 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - minCurve: - serializedVersion: 2 - m_Curve: - - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - - time: 1 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - minMaxState: 0 - separateAxes: 0 - ColorModule: - enabled: 1 - gradient: - maxGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 16777215 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 - ctime0: 0 - ctime1: 65535 - ctime2: 0 - ctime3: 0 - ctime4: 0 - ctime5: 0 - ctime6: 0 - ctime7: 0 - atime0: 0 - atime1: 65535 - atime2: 0 - atime3: 0 - atime4: 0 - atime5: 0 - atime6: 0 - atime7: 0 - m_NumColorKeys: 2 - m_NumAlphaKeys: 2 - minGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 - ctime0: 0 - ctime1: 65535 - ctime2: 0 - ctime3: 0 - ctime4: 0 - ctime5: 0 - ctime6: 0 - ctime7: 0 - atime0: 0 - atime1: 65535 - atime2: 0 - atime3: 0 - atime4: 0 - atime5: 0 - atime6: 0 - atime7: 0 - m_NumColorKeys: 2 - m_NumAlphaKeys: 2 - minColor: - serializedVersion: 2 - rgba: 4294967295 - maxColor: - serializedVersion: 2 - rgba: 4294967295 minMaxState: 1 - UVModule: - enabled: 0 - frameOverTime: scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + z: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + separateAxes: 0 + RotationModule: + enabled: 0 + x: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + y: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + curve: + minMaxState: 0 + scalar: 0.7853982 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + separateAxes: 0 + ColorModule: + enabled: 1 + gradient: + serializedVersion: 2 + minMaxState: 1 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 0} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + UVModule: + enabled: 0 + frameOverTime: + minMaxState: 1 + scalar: 0.9999 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 1 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 1 outSlope: 0 @@ -1780,12 +2157,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 1 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 1 outSlope: 0 @@ -1793,26 +2172,70 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 + startFrame: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 tilesX: 1 tilesY: 1 animationType: 0 rowIndex: 0 cycles: 1 + uvChannelMask: -1 + flipU: 0 + flipV: 0 randomRow: 1 VelocityModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1823,12 +2246,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1836,18 +2261,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1858,12 +2285,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1871,18 +2300,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 z: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1893,12 +2324,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1906,22 +2339,24 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 inWorldSpace: 0 InheritVelocityModule: enabled: 0 m_Mode: 0 m_Curve: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1932,12 +2367,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1945,20 +2382,22 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 ForceModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1969,12 +2408,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1982,18 +2423,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2004,12 +2447,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2017,18 +2462,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 z: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2039,12 +2486,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2052,7 +2501,6 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 inWorldSpace: 0 randomizePerFrame: 0 ExternalForcesModule: @@ -2061,16 +2509,19 @@ ParticleSystem: ClampVelocityModule: enabled: 1 x: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2081,12 +2532,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2094,18 +2547,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2116,12 +2571,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2129,18 +2586,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 z: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2151,12 +2610,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2164,18 +2625,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 magnitude: + minMaxState: 1 scalar: 20 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 0.22147654 + - serializedVersion: 2 + time: 0.22147654 value: 0.038961004 inSlope: 0 outSlope: 0 @@ -2186,12 +2649,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2199,23 +2664,25 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 separateAxis: 0 inWorldSpace: 0 dampen: 0.8 - SizeBySpeedModule: + NoiseModule: enabled: 0 - curve: + strength: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2226,12 +2693,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2239,21 +2708,385 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 + strengthY: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + strengthZ: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + separateAxes: 0 + frequency: 0.5 + damping: 1 + octaves: 1 + octaveMultiplier: 0.5 + octaveScale: 2 + quality: 2 + scrollSpeed: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remap: minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remapY: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remapZ: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remapEnabled: 0 + SizeBySpeedModule: + enabled: 0 + curve: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + y: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + z: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 range: {x: 0, y: 1} + separateAxes: 0 RotationBySpeedModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2264,12 +3097,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2277,18 +3112,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2299,12 +3136,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2312,18 +3151,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 curve: + minMaxState: 0 scalar: 0.7853982 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2334,12 +3175,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2347,37 +3190,23 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 separateAxes: 0 range: {x: 0, y: 1} ColorBySpeedModule: enabled: 0 gradient: + serializedVersion: 2 + minMaxState: 1 maxGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -2394,33 +3223,19 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -2437,19 +3252,15 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 - minColor: - serializedVersion: 2 - rgba: 4294967295 - maxColor: - serializedVersion: 2 - rgba: 4294967295 - minMaxState: 1 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} range: {x: 0, y: 1} CollisionModule: enabled: 0 - serializedVersion: 2 + serializedVersion: 3 type: 0 collisionMode: 0 plane0: {fileID: 0} @@ -2459,16 +3270,19 @@ ParticleSystem: plane4: {fileID: 0} plane5: {fileID: 0} m_Dampen: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2479,12 +3293,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2492,18 +3308,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 m_Bounce: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2514,12 +3332,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2527,18 +3347,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 m_EnergyLossOnCollision: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2549,12 +3371,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2562,8 +3386,8 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 minKillSpeed: 0 + maxKillSpeed: 10000 radiusScale: 1 collidesWith: serializedVersion: 2 @@ -2574,11 +3398,768 @@ ParticleSystem: collisionMessages: 0 collidesWithDynamic: 1 interiorCollisions: 1 - SubModule: + TriggerModule: enabled: 0 - subEmitterBirth: {fileID: 0} - subEmitterBirth1: {fileID: 0} - subEmitterCollision: {fileID: 0} - subEmitterCollision1: {fileID: 0} - subEmitterDeath: {fileID: 0} - subEmitterDeath1: {fileID: 0} + collisionShape0: {fileID: 0} + collisionShape1: {fileID: 0} + collisionShape2: {fileID: 0} + collisionShape3: {fileID: 0} + collisionShape4: {fileID: 0} + collisionShape5: {fileID: 0} + inside: 1 + outside: 0 + enter: 0 + exit: 0 + radiusScale: 1 + SubModule: + serializedVersion: 2 + enabled: 0 + subEmitters: + - emitter: {fileID: 0} + type: 0 + properties: 0 + LightsModule: + enabled: 0 + ratio: 0 + light: {fileID: 0} + randomDistribution: 1 + color: 1 + range: 1 + intensity: 1 + rangeCurve: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + intensityCurve: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + maxLights: 20 + TrailModule: + enabled: 0 + ratio: 1 + lifetime: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minVertexDistance: 0.2 + textureMode: 0 + worldSpace: 0 + dieWithParticles: 1 + sizeAffectsWidth: 1 + sizeAffectsLifetime: 0 + inheritParticleColor: 1 + colorOverLifetime: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + widthOverTrail: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorOverTrail: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + CustomDataModule: + enabled: 0 + mode0: 0 + vectorComponentCount0: 4 + color0: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + vector0_0: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector0_1: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector0_2: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector0_3: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + mode1: 0 + vectorComponentCount1: 4 + color1: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + vector1_0: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector1_1: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector1_2: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector1_3: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 diff --git a/spine-unity/Assets/Examples/Getting Started/5 Basic Platformer.unity b/spine-unity/Assets/Examples/Getting Started/5 Basic Platformer.unity index e5fb0f497..add0138e1 100644 --- a/spine-unity/Assets/Examples/Getting Started/5 Basic Platformer.unity +++ b/spine-unity/Assets/Examples/Getting Started/5 Basic Platformer.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 6 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.07352942, g: 0.07352942, b: 0.07352942, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -37,12 +38,12 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 6 + serializedVersion: 9 m_GIWorkflowMode: 1 - m_LightmapsMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -53,48 +54,70 @@ LightmapSettings: m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 3 + serializedVersion: 8 m_Resolution: 1 m_BakeResolution: 10 m_TextureWidth: 1024 m_TextureHeight: 1024 + m_AO: 0 m_AOMaxDistance: 1 - m_Padding: 2 m_CompAOExponent: 0 + m_CompAOExponentDirect: 0 + m_Padding: 2 m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 m_TextureCompression: 0 m_FinalGather: 0 + m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !u!196 &5 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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666666 manualCellSize: 0 + cellSize: 0.16666666 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &16304516 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 16304517} - - 23: {fileID: 16304519} - - 102: {fileID: 16304518} + - component: {fileID: 16304517} + - component: {fileID: 16304519} + - component: {fileID: 16304518} m_Layer: 0 m_Name: Description 2 m_TagString: Untagged @@ -114,6 +137,7 @@ Transform: m_Children: [] m_Father: {fileID: 1381317420} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &16304518 TextMesh: serializedVersion: 3 @@ -146,33 +170,39 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 0 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &74654461 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 74654462} - - 33: {fileID: 74654464} - - 23: {fileID: 74654463} + - component: {fileID: 74654462} + - component: {fileID: 74654464} + - component: {fileID: 74654463} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -192,6 +222,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &74654463 MeshRenderer: m_ObjectHideFlags: 0 @@ -201,22 +232,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &74654464 MeshFilter: @@ -230,12 +267,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 84997714} - - 33: {fileID: 84997717} - - 65: {fileID: 84997716} - - 23: {fileID: 84997715} + - component: {fileID: 84997714} + - component: {fileID: 84997717} + - component: {fileID: 84997716} + - component: {fileID: 84997715} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -255,6 +292,7 @@ Transform: m_Children: [] m_Father: {fileID: 854723183} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &84997715 MeshRenderer: m_ObjectHideFlags: 0 @@ -264,22 +302,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &84997716 BoxCollider: @@ -305,12 +349,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 217488463} - - 33: {fileID: 217488466} - - 65: {fileID: 217488465} - - 23: {fileID: 217488464} + - component: {fileID: 217488463} + - component: {fileID: 217488466} + - component: {fileID: 217488465} + - component: {fileID: 217488464} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -330,6 +374,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &217488464 MeshRenderer: m_ObjectHideFlags: 0 @@ -339,22 +384,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &217488465 BoxCollider: @@ -380,12 +431,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 271085429} - - 33: {fileID: 271085432} - - 65: {fileID: 271085431} - - 23: {fileID: 271085430} + - component: {fileID: 271085429} + - component: {fileID: 271085432} + - component: {fileID: 271085431} + - component: {fileID: 271085430} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -405,6 +456,7 @@ Transform: m_Children: [] m_Father: {fileID: 854723183} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &271085430 MeshRenderer: m_ObjectHideFlags: 0 @@ -414,22 +466,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &271085431 BoxCollider: @@ -455,9 +513,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 300192068} + - component: {fileID: 300192068} m_Layer: 9 m_Name: Audio m_TagString: Untagged @@ -480,17 +538,18 @@ Transform: - {fileID: 666622920} m_Father: {fileID: 1204355831} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &308770407 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 308770408} - - 33: {fileID: 308770411} - - 65: {fileID: 308770410} - - 23: {fileID: 308770409} + - component: {fileID: 308770408} + - component: {fileID: 308770411} + - component: {fileID: 308770410} + - component: {fileID: 308770409} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -510,6 +569,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &308770409 MeshRenderer: m_ObjectHideFlags: 0 @@ -519,22 +579,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &308770410 BoxCollider: @@ -560,11 +626,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 380101355} - - 114: {fileID: 380101354} - - 114: {fileID: 380101353} + - component: {fileID: 380101355} + - component: {fileID: 380101354} + - component: {fileID: 380101353} m_Layer: 0 m_Name: R_Ground m_TagString: Untagged @@ -604,16 +670,14 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: b238dfcde8209044b97d23f62bcaadf6, type: 3} m_Name: m_EditorClassIdentifier: + boneName: R_Ground + parentReference: {fileID: 0} mode: 0 - zPosition: 1 position: 1 rotation: 1 scale: 1 - flip: 0 - flipX: 0 + zPosition: 1 overrideAlpha: 1 - boneName: R_Ground - parentReference: {fileID: 0} --- !u!4 &380101355 Transform: m_ObjectHideFlags: 0 @@ -621,21 +685,22 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 380101352} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0.3405, y: 0.0025999993, z: 0} + m_LocalPosition: {x: 0.34059998, y: 0.0025999993, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 985424158} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &417291116 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 417291117} - - 23: {fileID: 417291119} - - 102: {fileID: 417291118} + - component: {fileID: 417291117} + - component: {fileID: 417291119} + - component: {fileID: 417291118} m_Layer: 0 m_Name: Description m_TagString: Untagged @@ -655,6 +720,7 @@ Transform: m_Children: [] m_Father: {fileID: 1381317420} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &417291118 TextMesh: serializedVersion: 3 @@ -701,32 +767,38 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 0 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &443343503 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 443343504} - - 82: {fileID: 443343505} + - component: {fileID: 443343504} + - component: {fileID: 443343505} m_Layer: 9 m_Name: Hardfall m_TagString: Untagged @@ -746,6 +818,7 @@ Transform: m_Children: [] m_Father: {fileID: 300192068} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!82 &443343505 AudioSource: m_ObjectHideFlags: 0 @@ -762,6 +835,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -774,12 +848,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -790,7 +866,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -801,7 +878,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -812,7 +890,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -825,11 +904,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 522034803} - - 23: {fileID: 522034805} - - 102: {fileID: 522034804} + - component: {fileID: 522034803} + - component: {fileID: 522034805} + - component: {fileID: 522034804} m_Layer: 0 m_Name: Play Mode m_TagString: Untagged @@ -849,6 +928,7 @@ Transform: m_Children: [] m_Father: {fileID: 1381317420} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &522034804 TextMesh: serializedVersion: 3 @@ -881,33 +961,39 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 0 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &529901551 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 529901552} - - 33: {fileID: 529901554} - - 23: {fileID: 529901553} + - component: {fileID: 529901552} + - component: {fileID: 529901554} + - component: {fileID: 529901553} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -927,6 +1013,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &529901553 MeshRenderer: m_ObjectHideFlags: 0 @@ -936,22 +1023,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &529901554 MeshFilter: @@ -965,12 +1058,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 542594153} - - 33: {fileID: 542594156} - - 65: {fileID: 542594155} - - 23: {fileID: 542594154} + - component: {fileID: 542594153} + - component: {fileID: 542594156} + - component: {fileID: 542594155} + - component: {fileID: 542594154} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -990,6 +1083,7 @@ Transform: m_Children: [] m_Father: {fileID: 854723183} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &542594154 MeshRenderer: m_ObjectHideFlags: 0 @@ -999,22 +1093,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &542594155 BoxCollider: @@ -1040,12 +1140,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 593931657} - - 33: {fileID: 593931656} - - 65: {fileID: 593931655} - - 23: {fileID: 593931654} + - component: {fileID: 593931657} + - component: {fileID: 593931656} + - component: {fileID: 593931655} + - component: {fileID: 593931654} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1062,22 +1162,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &593931655 BoxCollider: @@ -1110,17 +1216,18 @@ Transform: m_Children: [] m_Father: {fileID: 939146564} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &645096665 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 645096669} - - 33: {fileID: 645096668} - - 65: {fileID: 645096667} - - 23: {fileID: 645096666} + - component: {fileID: 645096669} + - component: {fileID: 645096668} + - component: {fileID: 645096667} + - component: {fileID: 645096666} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1137,22 +1244,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &645096667 BoxCollider: @@ -1185,18 +1298,19 @@ Transform: m_Children: [] m_Father: {fileID: 939146564} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &658011008 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 658011009} - - 33: {fileID: 658011013} - - 23: {fileID: 658011012} - - 114: {fileID: 658011011} - - 114: {fileID: 658011010} + - component: {fileID: 658011009} + - component: {fileID: 658011013} + - component: {fileID: 658011012} + - component: {fileID: 658011011} + - component: {fileID: 658011010} m_Layer: 0 m_Name: Hero m_TagString: Untagged @@ -1217,6 +1331,7 @@ Transform: - {fileID: 1776464689} m_Father: {fileID: 1621947181} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &658011010 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1243,14 +1358,18 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: a5967d74cd1f3c741ba7758da7511bcf, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 - calculateNormals: 0 + clearStateOnDisable: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 - frontFacing: 0 logErrors: 0 disableRenderingOnOverride: 1 _animationName: Idle @@ -1265,22 +1384,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: b04b8c6e4c57e78449f243c27617a2cd, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &658011013 MeshFilter: @@ -1294,10 +1419,10 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 666622920} - - 82: {fileID: 666622921} + - component: {fileID: 666622920} + - component: {fileID: 666622921} m_Layer: 9 m_Name: Footstep m_TagString: Untagged @@ -1317,6 +1442,7 @@ Transform: m_Children: [] m_Father: {fileID: 300192068} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!82 &666622921 AudioSource: m_ObjectHideFlags: 0 @@ -1333,6 +1459,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -1345,12 +1472,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1361,7 +1490,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -1372,7 +1502,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -1383,7 +1514,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -1396,11 +1528,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 790644141} - - 33: {fileID: 790644143} - - 23: {fileID: 790644142} + - component: {fileID: 790644141} + - component: {fileID: 790644143} + - component: {fileID: 790644142} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1420,6 +1552,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &790644142 MeshRenderer: m_ObjectHideFlags: 0 @@ -1429,22 +1562,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &790644143 MeshFilter: @@ -1458,12 +1597,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 810733600} - - 33: {fileID: 810733603} - - 65: {fileID: 810733602} - - 23: {fileID: 810733601} + - component: {fileID: 810733600} + - component: {fileID: 810733603} + - component: {fileID: 810733602} + - component: {fileID: 810733601} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1483,6 +1622,7 @@ Transform: m_Children: [] m_Father: {fileID: 854723183} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &810733601 MeshRenderer: m_ObjectHideFlags: 0 @@ -1492,22 +1632,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &810733602 BoxCollider: @@ -1533,9 +1679,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 854723183} + - component: {fileID: 854723183} m_Layer: 10 m_Name: Stairs m_TagString: Untagged @@ -1560,14 +1706,15 @@ Transform: - {fileID: 271085429} m_Father: {fileID: 1436083682} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &939146563 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 939146564} + - component: {fileID: 939146564} m_Layer: 10 m_Name: Stairs m_TagString: Untagged @@ -1592,15 +1739,16 @@ Transform: - {fileID: 1545825323} m_Father: {fileID: 1436083682} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &985424157 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 985424158} - - 114: {fileID: 985424159} + - component: {fileID: 985424158} + - component: {fileID: 985424159} m_Layer: 0 m_Name: root m_TagString: Untagged @@ -1622,6 +1770,7 @@ Transform: - {fileID: 380101355} m_Father: {fileID: 1776464689} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &985424159 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1633,26 +1782,24 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: b238dfcde8209044b97d23f62bcaadf6, type: 3} m_Name: m_EditorClassIdentifier: + boneName: root + parentReference: {fileID: 0} mode: 0 - zPosition: 1 position: 1 rotation: 1 scale: 1 - flip: 0 - flipX: 0 + zPosition: 1 overrideAlpha: 1 - boneName: root - parentReference: {fileID: 0} --- !u!1 &1018673310 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1018673311} - - 114: {fileID: 1018673313} - - 114: {fileID: 1018673312} + - component: {fileID: 1018673311} + - component: {fileID: 1018673313} + - component: {fileID: 1018673312} m_Layer: 0 m_Name: L_Ground m_TagString: Untagged @@ -1667,11 +1814,12 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1018673310} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -0.3843, y: 0.0025999993, z: 0} + m_LocalPosition: {x: -0.3844, y: 0.0025999993, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 985424158} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &1018673312 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1704,25 +1852,23 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: b238dfcde8209044b97d23f62bcaadf6, type: 3} m_Name: m_EditorClassIdentifier: + boneName: L_Ground + parentReference: {fileID: 0} mode: 0 - zPosition: 1 position: 1 rotation: 1 scale: 1 - flip: 0 - flipX: 0 + zPosition: 1 overrideAlpha: 1 - boneName: L_Ground - parentReference: {fileID: 0} --- !u!1 &1074999553 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1074999555} - - 108: {fileID: 1074999554} + - component: {fileID: 1074999555} + - component: {fileID: 1074999554} m_Layer: 0 m_Name: Directional light m_TagString: Untagged @@ -1737,7 +1883,7 @@ Light: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1074999553} m_Enabled: 1 - serializedVersion: 6 + serializedVersion: 8 m_Type: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 @@ -1745,8 +1891,9 @@ Light: m_SpotAngle: 30 m_CookieSize: 10 m_Shadows: - m_Type: 1 + m_Type: 2 m_Resolution: -1 + m_CustomResolution: -1 m_Strength: 0.172 m_Bias: 0.05 m_NormalBias: 0.4 @@ -1759,10 +1906,12 @@ Light: serializedVersion: 2 m_Bits: 4294967295 m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 - m_AreaSize: {x: 1, y: 1} --- !u!4 &1074999555 Transform: m_ObjectHideFlags: 0 @@ -1775,17 +1924,18 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1081850950 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1081850954} - - 33: {fileID: 1081850953} - - 65: {fileID: 1081850952} - - 23: {fileID: 1081850951} + - component: {fileID: 1081850954} + - component: {fileID: 1081850953} + - component: {fileID: 1081850952} + - component: {fileID: 1081850951} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1802,22 +1952,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1081850952 BoxCollider: @@ -1850,17 +2006,18 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1112695302 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1112695306} - - 33: {fileID: 1112695305} - - 65: {fileID: 1112695304} - - 23: {fileID: 1112695303} + - component: {fileID: 1112695306} + - component: {fileID: 1112695305} + - component: {fileID: 1112695304} + - component: {fileID: 1112695303} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1877,22 +2034,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1112695304 BoxCollider: @@ -1925,16 +2088,17 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1152613752 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1152613753} - - 33: {fileID: 1152613755} - - 23: {fileID: 1152613754} + - component: {fileID: 1152613753} + - component: {fileID: 1152613755} + - component: {fileID: 1152613754} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -1954,6 +2118,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1152613754 MeshRenderer: m_ObjectHideFlags: 0 @@ -1963,22 +2128,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1152613755 MeshFilter: @@ -1992,14 +2163,14 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1178284506} - - 20: {fileID: 1178284510} - - 92: {fileID: 1178284509} - - 124: {fileID: 1178284508} - - 81: {fileID: 1178284507} - - 114: {fileID: 1178284511} + - component: {fileID: 1178284506} + - component: {fileID: 1178284510} + - component: {fileID: 1178284509} + - component: {fileID: 1178284508} + - component: {fileID: 1178284507} + - component: {fileID: 1178284511} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -2019,6 +2190,7 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!81 &1178284507 AudioListener: m_ObjectHideFlags: 0 @@ -2070,6 +2242,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -2095,11 +2269,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1204355831} - - 143: {fileID: 1204355832} - - 114: {fileID: 1204355833} + - component: {fileID: 1204355831} + - component: {fileID: 1204355832} + - component: {fileID: 1204355833} m_Layer: 9 m_Name: Player m_TagString: Untagged @@ -2121,6 +2295,7 @@ Transform: - {fileID: 300192068} m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!143 &1204355832 CharacterController: m_ObjectHideFlags: 0 @@ -2177,12 +2352,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1217440898} - - 33: {fileID: 1217440897} - - 65: {fileID: 1217440896} - - 23: {fileID: 1217440895} + - component: {fileID: 1217440898} + - component: {fileID: 1217440897} + - component: {fileID: 1217440896} + - component: {fileID: 1217440895} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2199,22 +2374,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1217440896 BoxCollider: @@ -2247,17 +2428,18 @@ Transform: m_Children: [] m_Father: {fileID: 939146564} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1239889109 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1239889110} - - 33: {fileID: 1239889113} - - 65: {fileID: 1239889112} - - 23: {fileID: 1239889111} + - component: {fileID: 1239889110} + - component: {fileID: 1239889113} + - component: {fileID: 1239889112} + - component: {fileID: 1239889111} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2277,6 +2459,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1239889111 MeshRenderer: m_ObjectHideFlags: 0 @@ -2286,22 +2469,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1239889112 BoxCollider: @@ -2327,9 +2516,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1381317420} + - component: {fileID: 1381317420} m_Layer: 0 m_Name: LABELS m_TagString: Untagged @@ -2353,14 +2542,15 @@ Transform: - {fileID: 1512255394} m_Father: {fileID: 0} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1436083681 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1436083682} + - component: {fileID: 1436083682} m_Layer: 10 m_Name: Environment m_TagString: Untagged @@ -2399,17 +2589,18 @@ Transform: - {fileID: 1437394976} m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1437394975 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1437394976} - - 33: {fileID: 1437394979} - - 65: {fileID: 1437394978} - - 23: {fileID: 1437394977} + - component: {fileID: 1437394976} + - component: {fileID: 1437394979} + - component: {fileID: 1437394978} + - component: {fileID: 1437394977} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2429,6 +2620,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1437394977 MeshRenderer: m_ObjectHideFlags: 0 @@ -2438,22 +2630,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1437394978 BoxCollider: @@ -2479,11 +2677,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1506465911} - - 33: {fileID: 1506465913} - - 23: {fileID: 1506465912} + - component: {fileID: 1506465911} + - component: {fileID: 1506465913} + - component: {fileID: 1506465912} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2503,6 +2701,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1506465912 MeshRenderer: m_ObjectHideFlags: 0 @@ -2512,22 +2711,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1506465913 MeshFilter: @@ -2541,11 +2746,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1512255394} - - 23: {fileID: 1512255396} - - 102: {fileID: 1512255395} + - component: {fileID: 1512255394} + - component: {fileID: 1512255396} + - component: {fileID: 1512255395} m_Layer: 0 m_Name: Description 3 m_TagString: Untagged @@ -2565,6 +2770,7 @@ Transform: m_Children: [] m_Father: {fileID: 1381317420} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!102 &1512255395 TextMesh: serializedVersion: 3 @@ -2612,33 +2818,39 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 0 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!1 &1527457426 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1527457427} - - 33: {fileID: 1527457429} - - 23: {fileID: 1527457428} + - component: {fileID: 1527457427} + - component: {fileID: 1527457429} + - component: {fileID: 1527457428} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2658,6 +2870,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1527457428 MeshRenderer: m_ObjectHideFlags: 0 @@ -2667,22 +2880,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1527457429 MeshFilter: @@ -2696,12 +2915,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1545825323} - - 33: {fileID: 1545825326} - - 65: {fileID: 1545825325} - - 23: {fileID: 1545825324} + - component: {fileID: 1545825323} + - component: {fileID: 1545825326} + - component: {fileID: 1545825325} + - component: {fileID: 1545825324} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2721,6 +2940,7 @@ Transform: m_Children: [] m_Father: {fileID: 939146564} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1545825324 MeshRenderer: m_ObjectHideFlags: 0 @@ -2730,22 +2950,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1545825325 BoxCollider: @@ -2771,12 +2997,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1615467379} - - 33: {fileID: 1615467382} - - 65: {fileID: 1615467381} - - 23: {fileID: 1615467380} + - component: {fileID: 1615467379} + - component: {fileID: 1615467382} + - component: {fileID: 1615467381} + - component: {fileID: 1615467380} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2796,6 +3022,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1615467380 MeshRenderer: m_ObjectHideFlags: 0 @@ -2805,22 +3032,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1615467381 BoxCollider: @@ -2846,9 +3079,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1621947181} + - component: {fileID: 1621947181} m_Layer: 0 m_Name: Graphics m_TagString: Untagged @@ -2869,14 +3102,15 @@ Transform: - {fileID: 658011009} m_Father: {fileID: 1204355831} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1776464688 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1776464689} + - component: {fileID: 1776464689} m_Layer: 0 m_Name: SkeletonUtility-Root m_TagString: Untagged @@ -2897,17 +3131,18 @@ Transform: - {fileID: 985424158} m_Father: {fileID: 658011009} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1791832837 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1791832841} - - 33: {fileID: 1791832840} - - 65: {fileID: 1791832839} - - 23: {fileID: 1791832838} + - component: {fileID: 1791832841} + - component: {fileID: 1791832840} + - component: {fileID: 1791832839} + - component: {fileID: 1791832838} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -2924,22 +3159,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1791832839 BoxCollider: @@ -2972,17 +3213,18 @@ Transform: m_Children: [] m_Father: {fileID: 939146564} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1803534916 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1803534917} - - 33: {fileID: 1803534920} - - 65: {fileID: 1803534919} - - 23: {fileID: 1803534918} + - component: {fileID: 1803534917} + - component: {fileID: 1803534920} + - component: {fileID: 1803534919} + - component: {fileID: 1803534918} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -3002,6 +3244,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1803534918 MeshRenderer: m_ObjectHideFlags: 0 @@ -3011,22 +3254,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1803534919 BoxCollider: @@ -3052,10 +3301,10 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1845666708} - - 82: {fileID: 1845666709} + - component: {fileID: 1845666708} + - component: {fileID: 1845666709} m_Layer: 9 m_Name: Jump m_TagString: Untagged @@ -3075,6 +3324,7 @@ Transform: m_Children: [] m_Father: {fileID: 300192068} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!82 &1845666709 AudioSource: m_ObjectHideFlags: 0 @@ -3091,6 +3341,7 @@ AudioSource: Loop: 0 Mute: 0 Spatialize: 0 + SpatializePostEffects: 0 Priority: 128 DopplerLevel: 1 MinDistance: 1 @@ -3103,12 +3354,14 @@ AudioSource: rolloffCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -3119,7 +3372,8 @@ AudioSource: panLevelCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -3130,7 +3384,8 @@ AudioSource: spreadCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -3141,7 +3396,8 @@ AudioSource: reverbZoneMixCustomCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 @@ -3154,12 +3410,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1943525034} - - 33: {fileID: 1943525037} - - 65: {fileID: 1943525036} - - 23: {fileID: 1943525035} + - component: {fileID: 1943525034} + - component: {fileID: 1943525037} + - component: {fileID: 1943525036} + - component: {fileID: 1943525035} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -3179,6 +3435,7 @@ Transform: m_Children: [] m_Father: {fileID: 854723183} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1943525035 MeshRenderer: m_ObjectHideFlags: 0 @@ -3188,22 +3445,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &1943525036 BoxCollider: @@ -3229,11 +3492,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1982529759} - - 33: {fileID: 1982529761} - - 23: {fileID: 1982529760} + - component: {fileID: 1982529759} + - component: {fileID: 1982529761} + - component: {fileID: 1982529760} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -3253,6 +3516,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &1982529760 MeshRenderer: m_ObjectHideFlags: 0 @@ -3262,22 +3526,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1982529761 MeshFilter: @@ -3291,11 +3561,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 2019593955} - - 33: {fileID: 2019593957} - - 23: {fileID: 2019593956} + - component: {fileID: 2019593955} + - component: {fileID: 2019593957} + - component: {fileID: 2019593956} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -3315,6 +3585,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &2019593956 MeshRenderer: m_ObjectHideFlags: 0 @@ -3324,22 +3595,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &2019593957 MeshFilter: @@ -3353,12 +3630,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 2038851861} - - 33: {fileID: 2038851864} - - 65: {fileID: 2038851863} - - 23: {fileID: 2038851862} + - component: {fileID: 2038851861} + - component: {fileID: 2038851864} + - component: {fileID: 2038851863} + - component: {fileID: 2038851862} m_Layer: 10 m_Name: Cube m_TagString: Untagged @@ -3378,6 +3655,7 @@ Transform: m_Children: [] m_Father: {fileID: 1436083682} m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!23 &2038851862 MeshRenderer: m_ObjectHideFlags: 0 @@ -3387,22 +3665,28 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} - m_UseLightProbes: 0 - m_ReflectionProbeUsage: 1 m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!65 &2038851863 BoxCollider: diff --git a/spine-unity/Assets/Examples/Getting Started/6 SkeletonGraphic.unity b/spine-unity/Assets/Examples/Getting Started/6 SkeletonGraphic.unity index 9deef7c07..0ba2006ea 100644 --- a/spine-unity/Assets/Examples/Getting Started/6 SkeletonGraphic.unity +++ b/spine-unity/Assets/Examples/Getting Started/6 SkeletonGraphic.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 7 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -41,7 +42,7 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -53,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 4 + serializedVersion: 8 m_Resolution: 2 m_BakeResolution: 40 m_TextureWidth: 1024 @@ -66,40 +67,57 @@ LightmapSettings: m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_DirectLightInLightProbes: 1 m_FinalGather: 0 m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666667 manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &57002143 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 57002144} - - 222: {fileID: 57002146} - - 114: {fileID: 57002145} + - component: {fileID: 57002144} + - component: {fileID: 57002146} + - component: {fileID: 57002145} m_Layer: 5 m_Name: SkeletonGraphic (Doi) m_TagString: Untagged @@ -116,11 +134,11 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 189134935} m_Father: {fileID: 289700665} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -13.605, y: 239} @@ -152,6 +170,15 @@ MonoBehaviour: timeScale: 1 freeze: 0 unscaledTime: 0 + meshGenerator: + settings: + useClipping: 1 + zSpacing: 0 + pmaVertexColors: 1 + tintBlack: 0 + calculateTangents: 0 + addNormals: 0 + immutableTriangles: 0 --- !u!222 &57002146 CanvasRenderer: m_ObjectHideFlags: 0 @@ -163,11 +190,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 189134935} - - 222: {fileID: 189134937} - - 114: {fileID: 189134936} + - component: {fileID: 189134935} + - component: {fileID: 189134937} + - component: {fileID: 189134936} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -184,10 +211,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 57002144} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} m_AnchoredPosition: {x: 0, y: 30} @@ -237,12 +264,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 249902688} - - 223: {fileID: 249902687} - - 114: {fileID: 249902686} - - 114: {fileID: 249902685} + - component: {fileID: 249902688} + - component: {fileID: 249902687} + - component: {fileID: 249902686} + - component: {fileID: 249902685} m_Layer: 5 m_Name: Canvas m_TagString: Untagged @@ -294,7 +321,7 @@ Canvas: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 249902684} m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 3 m_RenderMode: 0 m_Camera: {fileID: 0} m_PlaneDistance: 100 @@ -303,6 +330,7 @@ Canvas: m_OverrideSorting: 0 m_OverridePixelPerfect: 0 m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 m_SortingLayerID: 0 m_SortingOrder: 0 m_TargetDisplay: 0 @@ -315,12 +343,12 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 941001663} - {fileID: 774800194} 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} @@ -331,9 +359,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 289700665} + - component: {fileID: 289700665} m_Layer: 5 m_Name: Content m_TagString: Untagged @@ -350,12 +378,12 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 57002144} - {fileID: 1384013133} m_Father: {fileID: 2133858527} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0.000004069, y: 0} @@ -366,13 +394,13 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 611702906} - - 20: {fileID: 611702905} - - 92: {fileID: 611702904} - - 124: {fileID: 611702903} - - 81: {fileID: 611702902} + - component: {fileID: 611702906} + - component: {fileID: 611702905} + - component: {fileID: 611702904} + - component: {fileID: 611702903} + - component: {fileID: 611702902} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -431,6 +459,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -444,20 +474,20 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &774800193 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 774800194} - - 222: {fileID: 774800196} - - 114: {fileID: 774800195} + - component: {fileID: 774800194} + - component: {fileID: 774800196} + - component: {fileID: 774800195} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -474,10 +504,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 249902688} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 220, y: 4} @@ -531,12 +561,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 852403708} - - 222: {fileID: 852403711} - - 114: {fileID: 852403710} - - 114: {fileID: 852403709} + - component: {fileID: 852403708} + - component: {fileID: 852403711} + - component: {fileID: 852403710} + - component: {fileID: 852403709} m_Layer: 5 m_Name: Scrollbar Horizontal m_TagString: Untagged @@ -553,11 +583,11 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1351078838} m_Father: {fileID: 941001663} 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} @@ -647,12 +677,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 941001663} - - 114: {fileID: 941001666} - - 222: {fileID: 941001665} - - 114: {fileID: 941001664} + - component: {fileID: 941001663} + - component: {fileID: 941001666} + - component: {fileID: 941001665} + - component: {fileID: 941001664} m_Layer: 5 m_Name: Scroll View m_TagString: Untagged @@ -669,13 +699,13 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2133858527} - {fileID: 852403708} - {fileID: 1428602577} m_Father: {fileID: 249902688} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: -305, y: 4} @@ -750,11 +780,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1066372096} - - 222: {fileID: 1066372098} - - 114: {fileID: 1066372097} + - component: {fileID: 1066372096} + - component: {fileID: 1066372098} + - component: {fileID: 1066372097} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -771,10 +801,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1384013133} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} m_AnchoredPosition: {x: 0, y: 30} @@ -824,9 +854,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1351078838} + - component: {fileID: 1351078838} m_Layer: 5 m_Name: Sliding Area m_TagString: Untagged @@ -843,11 +873,11 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1918252543} m_Father: {fileID: 852403708} 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} @@ -858,11 +888,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1384013133} - - 222: {fileID: 1384013135} - - 114: {fileID: 1384013134} + - component: {fileID: 1384013133} + - component: {fileID: 1384013135} + - component: {fileID: 1384013134} m_Layer: 5 m_Name: SkeletonGraphic (Spineboy) m_TagString: Untagged @@ -879,14 +909,14 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1066372096} m_Father: {fileID: 289700665} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 2.1965, y: -641.1} + m_AnchoredPosition: {x: 2.1965027, y: -641.1} m_SizeDelta: {x: 535.3857, y: 654.491} m_Pivot: {x: 0.52951497, y: 0.007486398} --- !u!114 &1384013134 @@ -915,6 +945,15 @@ MonoBehaviour: timeScale: 1 freeze: 0 unscaledTime: 0 + meshGenerator: + settings: + useClipping: 1 + zSpacing: 0 + pmaVertexColors: 1 + tintBlack: 0 + calculateTangents: 0 + addNormals: 0 + immutableTriangles: 0 --- !u!222 &1384013135 CanvasRenderer: m_ObjectHideFlags: 0 @@ -926,12 +965,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1428602577} - - 222: {fileID: 1428602580} - - 114: {fileID: 1428602579} - - 114: {fileID: 1428602578} + - component: {fileID: 1428602577} + - component: {fileID: 1428602580} + - component: {fileID: 1428602579} + - component: {fileID: 1428602578} m_Layer: 5 m_Name: Scrollbar Vertical m_TagString: Untagged @@ -948,11 +987,11 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1582800778} m_Father: {fileID: 941001663} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 0} m_AnchoredPosition: {x: 0, y: 0} @@ -1042,9 +1081,9 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1582800778} + - component: {fileID: 1582800778} m_Layer: 5 m_Name: Sliding Area m_TagString: Untagged @@ -1061,11 +1100,11 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2091633435} m_Father: {fileID: 1428602577} 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} @@ -1076,11 +1115,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1765558470} - - 114: {fileID: 1765558469} - - 114: {fileID: 1765558468} + - component: {fileID: 1765558470} + - component: {fileID: 1765558469} + - component: {fileID: 1765558468} m_Layer: 0 m_Name: EventSystem m_TagString: Untagged @@ -1129,20 +1168,20 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1918252542 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1918252543} - - 222: {fileID: 1918252545} - - 114: {fileID: 1918252544} + - component: {fileID: 1918252543} + - component: {fileID: 1918252545} + - component: {fileID: 1918252544} m_Layer: 5 m_Name: Handle m_TagString: Untagged @@ -1159,10 +1198,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1351078838} m_RootOrder: 0 + 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} @@ -1206,11 +1245,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 2091633435} - - 222: {fileID: 2091633437} - - 114: {fileID: 2091633436} + - component: {fileID: 2091633435} + - component: {fileID: 2091633437} + - component: {fileID: 2091633436} m_Layer: 5 m_Name: Handle m_TagString: Untagged @@ -1227,10 +1266,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1582800778} m_RootOrder: 0 + 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} @@ -1274,12 +1313,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 2133858527} - - 114: {fileID: 2133858530} - - 222: {fileID: 2133858529} - - 114: {fileID: 2133858528} + - component: {fileID: 2133858527} + - component: {fileID: 2133858530} + - component: {fileID: 2133858529} + - component: {fileID: 2133858528} m_Layer: 5 m_Name: Viewport m_TagString: Untagged @@ -1296,11 +1335,11 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 289700665} m_Father: {fileID: 941001663} m_RootOrder: 0 + 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} diff --git a/spine-unity/Assets/Examples/Getting Started/Scripts/SpineBeginnerTwo.cs b/spine-unity/Assets/Examples/Getting Started/Scripts/SpineBeginnerTwo.cs index ab89ae727..36c2094a4 100644 --- a/spine-unity/Assets/Examples/Getting Started/Scripts/SpineBeginnerTwo.cs +++ b/spine-unity/Assets/Examples/Getting Started/Scripts/SpineBeginnerTwo.cs @@ -90,6 +90,14 @@ namespace Spine.Unity.Examples { } } + + void Track_Complete (TrackEntry trackEntry) { Debug.Log("Complete " + trackEntry.Animation.Name); } + + void Track_End (TrackEntry trackEntry) { Debug.Log("End " + trackEntry.Animation.Name); } + + void HandleStart (TrackEntry trackEntry) { Debug.Log("Start " + trackEntry.Animation.Name); } + + } } diff --git a/spine-unity/Assets/Examples/Getting Started/Scripts/SpineboyBeginnerView.cs b/spine-unity/Assets/Examples/Getting Started/Scripts/SpineboyBeginnerView.cs index 89fbb0b4d..8f623846e 100644 --- a/spine-unity/Assets/Examples/Getting Started/Scripts/SpineboyBeginnerView.cs +++ b/spine-unity/Assets/Examples/Getting Started/Scripts/SpineboyBeginnerView.cs @@ -122,11 +122,14 @@ namespace Spine.Unity.Examples { #region Transient Actions public void PlayShoot () { // Play the shoot animation on track 1. - skeletonAnimation.AnimationState.SetAnimation(1, shoot, false); - skeletonAnimation.AnimationState.AddEmptyAnimation(1, .3f, .3f); + var track = skeletonAnimation.AnimationState.SetAnimation(1, shoot, false); + track.AttachmentThreshold = 1f; + track.MixDuration = 0f; + var empty = skeletonAnimation.state.AddEmptyAnimation(1, 0.5f, 0.1f); + empty.AttachmentThreshold = 1f; gunSource.pitch = GetRandomPitch(gunsoundPitchOffset); gunSource.Play(); - gunParticles.randomSeed = (uint)Random.Range(0, 100); + //gunParticles.randomSeed = (uint)Random.Range(0, 100); gunParticles.Play(); } diff --git a/spine-unity/Assets/Examples/Other Examples/AtlasRegionAttacher.unity b/spine-unity/Assets/Examples/Other Examples/AtlasRegionAttacher.unity index d2ab7ed3e..c0d3a5acb 100644 --- a/spine-unity/Assets/Examples/Other Examples/AtlasRegionAttacher.unity +++ b/spine-unity/Assets/Examples/Other Examples/AtlasRegionAttacher.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 7 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -41,7 +42,7 @@ RenderSettings: --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -53,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 4 + serializedVersion: 8 m_Resolution: 1 m_BakeResolution: 50 m_TextureWidth: 1024 @@ -66,42 +67,59 @@ LightmapSettings: m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 0 - m_DirectLightInLightProbes: 1 m_FinalGather: 0 m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !u!196 &5 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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666666 manualCellSize: 0 + cellSize: 0.16666666 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &626664551 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 626664556} - - 20: {fileID: 626664555} - - 92: {fileID: 626664554} - - 124: {fileID: 626664553} - - 81: {fileID: 626664552} + - component: {fileID: 626664556} + - component: {fileID: 626664555} + - component: {fileID: 626664554} + - component: {fileID: 626664553} + - component: {fileID: 626664552} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -160,6 +178,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -173,23 +193,24 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1263080508 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1263080514} - - 33: {fileID: 1263080513} - - 23: {fileID: 1263080512} - - 114: {fileID: 1263080511} - - 114: {fileID: 1263080510} - - 114: {fileID: 1263080509} + - component: {fileID: 1263080514} + - component: {fileID: 1263080513} + - component: {fileID: 1263080512} + - component: {fileID: 1263080511} + - component: {fileID: 1263080510} + - component: {fileID: 1263080509} + - component: {fileID: 1263080515} m_Layer: 0 m_Name: FootSoldier m_TagString: Untagged @@ -231,6 +252,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: atlasAsset: {fileID: 11400000, guid: c574489dd067c2b4cb4dc165a4c410cc, type: 2} + inheritProperties: 1 attachments: - slot: Weapon region: Equipment/sword1 @@ -249,13 +271,17 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: e57cdb51287d3924ebb2ececf816733b, type: 2} initialSkinName: White + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] - zSpacing: 0 - renderMeshes: 1 + zSpacing: -0.1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 logErrors: 0 disableRenderingOnOverride: 1 @@ -276,7 +302,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 5a3598dafa118754db95756064347da7, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -284,12 +312,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1263080513 MeshFilter: @@ -307,7 +336,20 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1263080515 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1263080508} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7f726fb798ad621458c431cb9966d91d, type: 3} + m_Name: + m_EditorClassIdentifier: + boneRoot: {fileID: 0} + skeletonRenderer: {fileID: 1263080511} diff --git a/spine-unity/Assets/Examples/Other Examples/Dragon.unity b/spine-unity/Assets/Examples/Other Examples/Dragon.unity index 1ee90cec7..8b30bfb10 100644 --- a/spine-unity/Assets/Examples/Other Examples/Dragon.unity +++ b/spine-unity/Assets/Examples/Other Examples/Dragon.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 7 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -41,7 +42,7 @@ RenderSettings: --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -53,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 4 + serializedVersion: 8 m_Resolution: 1 m_BakeResolution: 50 m_TextureWidth: 1024 @@ -66,39 +67,56 @@ LightmapSettings: m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 0 - m_DirectLightInLightProbes: 1 m_FinalGather: 0 m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !u!196 &5 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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666666 manualCellSize: 0 + cellSize: 0.16666666 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &133751936 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 133751938} - - 108: {fileID: 133751937} + - component: {fileID: 133751938} + - component: {fileID: 133751937} m_Layer: 0 m_Name: Directional light m_TagString: Untagged @@ -113,7 +131,7 @@ Light: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 133751936} m_Enabled: 1 - serializedVersion: 7 + serializedVersion: 8 m_Type: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1.1 @@ -138,6 +156,8 @@ Light: m_Lightmapping: 1 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &133751938 @@ -149,20 +169,20 @@ Transform: m_LocalRotation: {x: -0.25000006, y: 0.24999964, z: -0.06698721, w: -0.9330128} m_LocalPosition: {x: 0, y: 4.27, z: 15.66} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 30, y: -30, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 30, y: -30, z: 0} --- !u!1 &560289061 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 560289065} - - 33: {fileID: 560289064} - - 23: {fileID: 560289062} + - component: {fileID: 560289065} + - component: {fileID: 560289064} + - component: {fileID: 560289062} m_Layer: 0 m_Name: ground Cube m_TagString: Untagged @@ -184,7 +204,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -192,12 +214,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &560289064 MeshFilter: @@ -215,22 +238,22 @@ Transform: m_LocalRotation: {x: -0.17233427, y: 0, z: 0, w: 0.9850386} m_LocalPosition: {x: 0, y: -3.0956457, z: 3.37} m_LocalScale: {x: 17, y: 0.64, z: 20} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1604340971 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1604340976} - - 20: {fileID: 1604340975} - - 92: {fileID: 1604340974} - - 124: {fileID: 1604340973} - - 81: {fileID: 1604340972} + - component: {fileID: 1604340976} + - component: {fileID: 1604340975} + - component: {fileID: 1604340974} + - component: {fileID: 1604340973} + - component: {fileID: 1604340972} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -289,6 +312,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -302,21 +327,21 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: -0.16189003, z: -2.45} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2143290130 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 100000, guid: d51ed5943e10bcb4394b5eec480293f8, type: 2} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 2143290134} - - 33: {fileID: 2143290133} - - 23: {fileID: 2143290132} - - 114: {fileID: 2143290131} + - component: {fileID: 2143290134} + - component: {fileID: 2143290133} + - component: {fileID: 2143290132} + - component: {fileID: 2143290131} m_Layer: 0 m_Name: dragon m_TagString: Untagged @@ -338,13 +363,17 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 76506fa7fbeed084ab2dfb084648c628, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 1 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 1 calculateTangents: 0 logErrors: 0 disableRenderingOnOverride: 1 @@ -377,7 +406,9 @@ MeshRenderer: - {fileID: 2100000, guid: 3277fd5561d95724e83c6ca4a1dd28a4, type: 2} - {fileID: 2100000, guid: d58543c96f991934ca874395eb40222c, type: 2} - {fileID: 2100000, guid: 3277fd5561d95724e83c6ca4a1dd28a4, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -385,12 +416,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &2143290133 MeshFilter: @@ -409,7 +441,7 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/spine-unity/Assets/Examples/Other Examples/Mix and Match.unity b/spine-unity/Assets/Examples/Other Examples/Mix and Match.unity index bb8145282..f81364577 100644 --- a/spine-unity/Assets/Examples/Other Examples/Mix and Match.unity +++ b/spine-unity/Assets/Examples/Other Examples/Mix and Match.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 7 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -41,7 +42,7 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -53,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 4 + serializedVersion: 8 m_Resolution: 2 m_BakeResolution: 40 m_TextureWidth: 1024 @@ -66,230 +67,57 @@ LightmapSettings: m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_DirectLightInLightProbes: 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_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666667 manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &164478200 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 4 - m_Component: - - 4: {fileID: 164478205} - - 114: {fileID: 164478201} - - 33: {fileID: 164478204} - - 23: {fileID: 164478203} - - 114: {fileID: 164478202} - m_Layer: 0 - m_Name: Equipped Hero [see my inspector!] - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &164478201 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 164478200} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fdd7c8b428f700c438a6a14addca0346, type: 3} - m_Name: - m_EditorClassIdentifier: - handSource: {fileID: 11400000, guid: b4b8457d6cb8fec49a40be5b71d79e51, type: 2} - handRegion: front_fist_closed - handAttachmentName: hand1 - handSlot: hand1 - newHandOffset: {x: 0.34, y: -0.07} - newHandRotation: 62.23 - handTexture: {fileID: 0} - dagger: {fileID: 21300000, guid: 2412d1d8498463f49ae6ebe3a66ffae9, type: 3} - daggerName: dagger - weaponSlot: weapon - applyHeadRegion: 0 - headSource: {fileID: 11400000, guid: a9d85e8796d75384199c06f6fdbb0d73, type: 2} - headRegion: head - headSlot: head - headAttachmentName: head - repack: 1 - repackedShader: {fileID: 4800000, guid: 1e8a610c9e01c3648bac42585e5fc676, type: 3} - runtimeAtlas: {fileID: 0} - runtimeMaterial: {fileID: 0} ---- !u!114 &164478202 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 164478200} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d247ba06193faa74d9335f5481b2b56c, type: 3} - m_Name: - m_EditorClassIdentifier: - skeletonDataAsset: {fileID: 11400000, guid: a5967d74cd1f3c741ba7758da7511bcf, type: 2} - initialSkinName: default - separatorSlotNames: [] - zSpacing: 0 - renderMeshes: 1 - immutableTriangles: 0 - pmaVertexColors: 1 - clearStateOnDisable: 0 - calculateNormals: 0 - calculateTangents: 0 - logErrors: 0 - disableRenderingOnOverride: 1 - _animationName: Run - loop: 1 - timeScale: 1 ---- !u!23 &164478203 -MeshRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 164478200} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: b04b8c6e4c57e78449f243c27617a2cd, type: 2} - m_SubsetIndices: - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingOrder: 0 ---- !u!33 &164478204 -MeshFilter: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 164478200} - m_Mesh: {fileID: 0} ---- !u!4 &164478205 -Transform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 164478200} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 1.36, y: -0.15, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 ---- !u!1 &325050139 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 4 - m_Component: - - 4: {fileID: 325050143} - - 33: {fileID: 325050142} - - 23: {fileID: 325050140} - m_Layer: 0 - m_Name: Raggedy Atlas - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!23 &325050140 -MeshRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 325050139} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 4ad4f7167d4983147ad870f93ebc9416, type: 2} - m_SubsetIndices: - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 1 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingOrder: 0 ---- !u!33 &325050142 -MeshFilter: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 325050139} - m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &325050143 -Transform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 325050139} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -4.22, y: 3.36, z: 0} - m_LocalScale: {x: 2.7800474, y: 2.7800474, z: 2.7800474} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_Children: [] - m_Father: {fileID: 635124235} - m_RootOrder: 0 --- !u!1 &379340246 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 379340247} - - 222: {fileID: 379340249} - - 114: {fileID: 379340248} + - component: {fileID: 379340247} + - component: {fileID: 379340249} + - component: {fileID: 379340248} m_Layer: 5 m_Name: Text (2) m_TagString: Untagged @@ -306,13 +134,13 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1442798444} - m_RootOrder: 2 + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -181, y: 451} + m_AnchoredPosition: {x: 727, y: 327} m_SizeDelta: {x: 160, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &379340248 @@ -347,7 +175,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: Sourced from Unity Sprite. + m_Text: Attachments from Unity Sprites. --- !u!222 &379340249 CanvasRenderer: m_ObjectHideFlags: 0 @@ -359,13 +187,13 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 520624629} - - 20: {fileID: 520624628} - - 92: {fileID: 520624627} - - 124: {fileID: 520624626} - - 81: {fileID: 520624625} + - component: {fileID: 520624629} + - component: {fileID: 520624628} + - component: {fileID: 520624627} + - component: {fileID: 520624626} + - component: {fileID: 520624625} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -403,7 +231,7 @@ Camera: m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 - m_BackGroundColor: {r: 0.32828724, g: 0.2661116, b: 0.33823532, a: 0} + m_BackGroundColor: {r: 0.41379324, g: 0.29411763, b: 0.58823526, a: 0} m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -424,6 +252,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -437,20 +267,20 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &554311660 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 554311661} - - 222: {fileID: 554311663} - - 114: {fileID: 554311662} + - component: {fileID: 554311661} + - component: {fileID: 554311663} + - component: {fileID: 554311662} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -467,10 +297,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1442798444} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 713, y: 478} @@ -520,11 +350,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 635124235} + - component: {fileID: 635124235} m_Layer: 0 - m_Name: Sources + m_Name: Source Sprites Preview m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -539,23 +369,22 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - - {fileID: 325050143} - - {fileID: 1344877042} - - {fileID: 1082233923} + - {fileID: 1987410362} + - {fileID: 1104169620} m_Father: {fileID: 0} - m_RootOrder: 4 + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &952321879 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 952321880} - - 222: {fileID: 952321882} - - 114: {fileID: 952321881} + - component: {fileID: 952321880} + - component: {fileID: 952321882} + - component: {fileID: 952321881} m_Layer: 5 m_Name: Text (4) m_TagString: Untagged @@ -572,13 +401,13 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1442798444} - m_RootOrder: 4 + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 476, y: -45} + m_AnchoredPosition: {x: -612, y: -383} m_SizeDelta: {x: 160, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &952321881 @@ -620,28 +449,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 952321879} ---- !u!1 &1082233921 +--- !u!1 &1104169619 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1082233923} - - 212: {fileID: 1082233922} + - component: {fileID: 1104169620} + - component: {fileID: 1104169621} m_Layer: 0 - m_Name: dagger sprite + m_Name: goggles-tacticalvisor m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!212 &1082233922 +--- !u!4 &1104169620 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1104169619} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 5.74, y: 0.7, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 635124235} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1104169621 SpriteRenderer: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1082233921} + m_GameObject: {fileID: 1104169619} m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 0 @@ -650,7 +492,9 @@ SpriteRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -658,40 +502,32 @@ SpriteRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 1 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: 2412d1d8498463f49ae6ebe3a66ffae9, type: 3} + m_Sprite: {fileID: 21300000, guid: 4f554405f8f06164db0773d689da243c, type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 ---- !u!4 &1082233923 -Transform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1082233921} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.37, y: 4.51, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_Children: [] - m_Father: {fileID: 635124235} - m_RootOrder: 2 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 --- !u!1 &1262477660 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1262477661} - - 222: {fileID: 1262477663} - - 114: {fileID: 1262477662} + - component: {fileID: 1262477661} + - component: {fileID: 1262477663} + - component: {fileID: 1262477662} m_Layer: 5 m_Name: Text (5) m_TagString: Untagged @@ -708,13 +544,13 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1442798444} - m_RootOrder: 5 + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 330.5, y: -247} + m_AnchoredPosition: {x: 608, y: -253} m_SizeDelta: {x: 661, y: 181} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1262477662 @@ -749,9 +585,9 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 'The sample script on Equipped Hero shows how to create a new custom Spine.Skin, - create new attachments from various sources, and repack that skin into a runtime - atlas to optimize draw calls/batching. + m_Text: 'The sample script on Equipped Spineboy shows how to create a new custom + Spine.Skin, create new attachments from Unity Sprites, and repack that skin into + a runtime atlas to optimize draw calls/batching. Enter PLAY MODE in Unity to see the changes.' @@ -761,156 +597,16 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1262477660} ---- !u!1 &1279309432 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 4 - m_Component: - - 224: {fileID: 1279309433} - - 222: {fileID: 1279309435} - - 114: {fileID: 1279309434} - m_Layer: 5 - m_Name: Text (1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1279309433 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1279309432} - 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_Children: [] - m_Father: {fileID: 1442798444} - m_RootOrder: 1 - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -342, y: 129} - m_SizeDelta: {x: 160, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1279309434 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1279309432} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, 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_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 0 - m_MaxSize: 55 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: Sourced from atlases. ---- !u!222 &1279309435 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1279309432} ---- !u!1 &1344877038 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 4 - m_Component: - - 4: {fileID: 1344877042} - - 33: {fileID: 1344877041} - - 23: {fileID: 1344877039} - m_Layer: 0 - m_Name: Spineboy Atlas - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!23 &1344877039 -MeshRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1344877038} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 1 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingOrder: 0 ---- !u!33 &1344877041 -MeshFilter: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1344877038} - m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &1344877042 -Transform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1344877038} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -3.72, y: 0.03, z: 0} - m_LocalScale: {x: 9.797575, y: 9.797575, z: 9.797575} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_Children: [] - m_Father: {fileID: 635124235} - m_RootOrder: 1 --- !u!1 &1442798440 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1442798444} - - 223: {fileID: 1442798443} - - 114: {fileID: 1442798442} + - component: {fileID: 1442798444} + - component: {fileID: 1442798443} + - component: {fileID: 1442798442} m_Layer: 5 m_Name: Canvas m_TagString: Untagged @@ -946,7 +642,7 @@ Canvas: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1442798440} m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 3 m_RenderMode: 0 m_Camera: {fileID: 0} m_PlaneDistance: 100 @@ -955,6 +651,7 @@ Canvas: m_OverrideSorting: 0 m_OverridePixelPerfect: 0 m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 1 m_SortingLayerID: 0 m_SortingOrder: 0 m_TargetDisplay: 0 @@ -967,31 +664,144 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 554311661} - - {fileID: 1279309433} - {fileID: 379340247} - {fileID: 1620489274} - {fileID: 952321880} - {fileID: 1262477661} m_Father: {fileID: 0} - m_RootOrder: 3 + 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!1 &1544416362 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1544416366} + - component: {fileID: 1544416365} + - component: {fileID: 1544416364} + - component: {fileID: 1544416363} + - component: {fileID: 1544416367} + m_Layer: 0 + m_Name: Original Spineboy + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1544416363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1544416362} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d247ba06193faa74d9335f5481b2b56c, type: 3} + m_Name: + m_EditorClassIdentifier: + skeletonDataAsset: {fileID: 11400000, guid: 44691b56ed7d1f04da0cbc2a52a91b8d, type: 2} + initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 + separatorSlotNames: [] + zSpacing: 0 + useClipping: 1 + immutableTriangles: 0 + pmaVertexColors: 1 + clearStateOnDisable: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 + calculateTangents: 0 + logErrors: 0 + disableRenderingOnOverride: 1 + _animationName: run + loop: 1 + timeScale: 1 +--- !u!23 &1544416364 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1544416362} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1544416365 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1544416362} + m_Mesh: {fileID: 0} +--- !u!4 &1544416366 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1544416362} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -5.04, y: -3.26, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1544416367 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1544416362} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e3501002f468384b80d5853d04e19ca, type: 3} + m_Name: + m_EditorClassIdentifier: + skeletonColor: {r: 0.8866126, g: 0.7977941, b: 0.9117647, a: 1} + slotSettings: [] --- !u!1 &1620489273 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1620489274} - - 222: {fileID: 1620489276} - - 114: {fileID: 1620489275} + - component: {fileID: 1620489274} + - component: {fileID: 1620489276} + - component: {fileID: 1620489275} m_Layer: 5 m_Name: Text (3) m_TagString: Untagged @@ -1008,13 +818,13 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1442798444} - m_RootOrder: 3 + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 127, y: -45} + m_AnchoredPosition: {x: 81, y: -376} m_SizeDelta: {x: 160, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1620489275 @@ -1056,56 +866,62 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1620489273} ---- !u!1 &1673248251 +--- !u!1 &1703211037 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1673248255} - - 33: {fileID: 1673248254} - - 23: {fileID: 1673248253} - - 114: {fileID: 1673248252} + - component: {fileID: 1703211041} + - component: {fileID: 1703211040} + - component: {fileID: 1703211039} + - component: {fileID: 1703211038} + - component: {fileID: 1703211042} + - component: {fileID: 1703211043} m_Layer: 0 - m_Name: Original Hero + m_Name: Equipped Spineboy m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &1673248252 +--- !u!114 &1703211038 MonoBehaviour: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1673248251} + m_GameObject: {fileID: 1703211037} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: d247ba06193faa74d9335f5481b2b56c, type: 3} m_Name: m_EditorClassIdentifier: - skeletonDataAsset: {fileID: 11400000, guid: a5967d74cd1f3c741ba7758da7511bcf, type: 2} + skeletonDataAsset: {fileID: 11400000, guid: 44691b56ed7d1f04da0cbc2a52a91b8d, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 logErrors: 0 disableRenderingOnOverride: 1 - _animationName: Run + _animationName: run loop: 1 timeScale: 1 ---- !u!23 &1673248253 +--- !u!23 &1703211039 MeshRenderer: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1673248251} + m_GameObject: {fileID: 1703211037} m_Enabled: 1 m_CastShadows: 1 m_ReceiveShadows: 1 @@ -1113,8 +929,10 @@ MeshRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_Materials: - - {fileID: 2100000, guid: b04b8c6e4c57e78449f243c27617a2cd, type: 2} - m_SubsetIndices: + - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -1122,30 +940,132 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 - m_SortingOrder: 0 ---- !u!33 &1673248254 + m_SortingLayer: 0 + m_SortingOrder: 16 +--- !u!33 &1703211040 MeshFilter: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1673248251} + m_GameObject: {fileID: 1703211037} m_Mesh: {fileID: 0} ---- !u!4 &1673248255 +--- !u!4 &1703211041 Transform: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1673248251} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 4.49, y: -0.18, z: 0} + m_GameObject: {fileID: 1703211037} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 1.31, y: -3.2, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 1 + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1703211042 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1703211037} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdd7c8b428f700c438a6a14addca0346, type: 3} + m_Name: + m_EditorClassIdentifier: + visorSprite: {fileID: 21300000, guid: 4f554405f8f06164db0773d689da243c, type: 3} + visorSlot: goggles + visorKey: goggles + gunSprite: {fileID: 21300000, guid: 02c4cbcce432ae74bb2d965060e64d29, type: 3} + gunSlot: gun + gunKey: gun + repack: 1 + sourceMaterial: {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} + runtimeAtlas: {fileID: 0} + runtimeMaterial: {fileID: 0} +--- !u!114 &1703211043 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1703211037} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b337e07bc016684dabf04793dd00ea3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1987410361 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1987410362} + - component: {fileID: 1987410363} + m_Layer: 0 + m_Name: freezegun + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1987410362 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1987410361} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 7.169, y: 1.543, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 635124235} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1987410363 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1987410361} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 02c4cbcce432ae74bb2d965060e64d29, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 diff --git a/spine-unity/Assets/Examples/Other Examples/SkeletonRenderSeparator.unity b/spine-unity/Assets/Examples/Other Examples/SkeletonRenderSeparator.unity index 716f8eaf9..63d1e53e1 100644 --- a/spine-unity/Assets/Examples/Other Examples/SkeletonRenderSeparator.unity +++ b/spine-unity/Assets/Examples/Other Examples/SkeletonRenderSeparator.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 7 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -41,7 +42,7 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -53,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 4 + serializedVersion: 8 m_Resolution: 2 m_BakeResolution: 40 m_TextureWidth: 1024 @@ -66,41 +67,58 @@ LightmapSettings: m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_DirectLightInLightProbes: 1 m_FinalGather: 0 m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666667 manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &51877969 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 51877973} - - 223: {fileID: 51877972} - - 114: {fileID: 51877971} - - 114: {fileID: 51877970} + - component: {fileID: 51877973} + - component: {fileID: 51877972} + - component: {fileID: 51877971} + - component: {fileID: 51877970} m_Layer: 5 m_Name: World Canvas (1) m_TagString: Untagged @@ -152,7 +170,7 @@ Canvas: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 51877969} m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 3 m_RenderMode: 2 m_Camera: {fileID: 0} m_PlaneDistance: 100 @@ -161,6 +179,7 @@ Canvas: m_OverrideSorting: 0 m_OverridePixelPerfect: 0 m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 m_SortingLayerID: 0 m_SortingOrder: 2 m_TargetDisplay: 0 @@ -173,11 +192,11 @@ RectTransform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 0.02, y: 0.02, z: 0.1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2142418131} m_Father: {fileID: 0} m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 6.56, y: -2.09} @@ -188,13 +207,13 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 93048079} - - 33: {fileID: 93048078} - - 23: {fileID: 93048077} - - 114: {fileID: 93048076} - - 114: {fileID: 93048075} + - component: {fileID: 93048079} + - component: {fileID: 93048078} + - component: {fileID: 93048077} + - component: {fileID: 93048076} + - component: {fileID: 93048075} m_Layer: 0 m_Name: Spine GameObject (spineboy) (1) m_TagString: Untagged @@ -232,14 +251,18 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 44691b56ed7d1f04da0cbc2a52a91b8d, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: - --B zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 logErrors: 0 disableRenderingOnOverride: 1 @@ -261,7 +284,9 @@ MeshRenderer: m_Materials: - {fileID: 0} - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -269,12 +294,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &93048078 MeshFilter: @@ -292,24 +318,24 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 6.75, y: -0.08, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1769987563} - {fileID: 1619823304} - {fileID: 565117362} m_Father: {fileID: 0} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &122287539 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 122287543} - - 33: {fileID: 122287542} - - 23: {fileID: 122287541} - - 114: {fileID: 122287540} + - component: {fileID: 122287543} + - component: {fileID: 122287542} + - component: {fileID: 122287541} + - component: {fileID: 122287540} m_Layer: 0 m_Name: 0 m_TagString: Untagged @@ -342,7 +368,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -350,12 +378,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &122287542 MeshFilter: @@ -373,21 +402,21 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1918225119} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &565117361 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 565117362} - - 198: {fileID: 565117365} - - 114: {fileID: 565117364} - - 199: {fileID: 565117363} + - component: {fileID: 565117362} + - component: {fileID: 565117365} + - component: {fileID: 565117364} + - component: {fileID: 565117363} m_Layer: 0 m_Name: Particle System m_TagString: Untagged @@ -404,12 +433,13 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: -1.3626752, y: 3.7231483, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 93048079} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!199 &565117363 ParticleSystemRenderer: + serializedVersion: 3 m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} @@ -422,7 +452,10 @@ ParticleSystemRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -430,12 +463,13 @@ ParticleSystemRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 3 m_RenderMode: 0 m_SortMode: 0 @@ -448,6 +482,8 @@ ParticleSystemRenderer: m_NormalDirection: 1 m_RenderAlignment: 0 m_Pivot: {x: 0, y: 0, z: 0} + m_UseCustomVertexStreams: 0 + m_VertexStreams: 0001030405 m_Mesh: {fileID: 0} m_Mesh1: {fileID: 0} m_Mesh2: {fileID: 0} @@ -468,6 +504,7 @@ MonoBehaviour: followZPosition: 0 followBoneRotation: 0 followSkeletonFlip: 0 + followLocalScale: 0 initializeOnAwake: 1 --- !u!198 &565117365 ParticleSystem: @@ -475,19 +512,27 @@ ParticleSystem: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 565117361} - serializedVersion: 4 + serializedVersion: 5 lengthInSec: 5 + simulationSpeed: 1 + looping: 1 + prewarm: 0 + playOnAwake: 1 + autoRandomSeed: 1 startDelay: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -498,12 +543,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -511,29 +558,27 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 - speed: 1 - looping: 1 - prewarm: 0 - playOnAwake: 1 - moveWithTransform: 0 - autoRandomSeed: 1 + moveWithTransform: 1 + moveWithCustomTransform: {fileID: 0} scalingMode: 1 randomSeed: 0 InitialModule: - serializedVersion: 2 + serializedVersion: 3 enabled: 1 startLifetime: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -544,12 +589,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -557,18 +604,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startSpeed: + minMaxState: 0 scalar: 1.5 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -579,12 +628,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -592,34 +643,19 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startColor: serializedVersion: 2 + minMaxState: 0 maxGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -636,33 +672,19 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -679,22 +701,25 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minColor: {r: 1, g: 1, b: 1, a: 1} maxColor: {r: 1, g: 0.5176471, b: 0, a: 1} - minMaxState: 0 startSize: + minMaxState: 0 scalar: 0.5 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -705,12 +730,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -718,18 +745,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startSizeY: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -740,12 +769,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -753,18 +784,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startSizeZ: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -775,12 +808,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -788,18 +823,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startRotationX: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -810,12 +847,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -823,18 +862,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startRotationY: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -845,12 +886,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -858,18 +901,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 startRotation: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -880,12 +925,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -893,47 +940,173 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 randomizeRotationDirection: 0 - gravityModifier: 0 maxNumParticles: 100 size3D: 0 rotation3D: 0 + gravityModifier: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 ShapeModule: - serializedVersion: 2 + serializedVersion: 4 enabled: 1 type: 11 - radius: 0.46 angle: 25 length: 5 boxX: 1 boxY: 1 boxZ: 1 - arc: 360 + radius: + value: 0.46 + mode: 0 + spread: 0 + speed: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + arc: + value: 360 + mode: 0 + spread: 0 + speed: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 placementMode: 0 m_Mesh: {fileID: 0} m_MeshRenderer: {fileID: 0} m_SkinnedMeshRenderer: {fileID: 0} m_MeshMaterialIndex: 0 m_MeshNormalOffset: 0 + m_MeshScale: 1 m_UseMeshMaterialIndex: 0 m_UseMeshColors: 1 - randomDirection: 0 + alignToDirection: 0 + randomDirectionAmount: 0 + sphericalDirectionAmount: 0 EmissionModule: enabled: 1 - serializedVersion: 2 - m_Type: 0 - rate: + serializedVersion: 4 + rateOverTime: + minMaxState: 0 scalar: 50 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -944,12 +1117,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -957,38 +1132,69 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 + rateOverDistance: minMaxState: 0 - cnt0: 30 - cnt1: 30 - cnt2: 30 - cnt3: 30 - cntmax0: 30 - cntmax1: 30 - cntmax2: 30 - cntmax3: 30 - time0: 0 - time1: 0 - time2: 0 - time3: 0 - m_BurstCount: 0 - SizeModule: - enabled: 1 - curve: - scalar: 1 + scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 0.50268817 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_BurstCount: 0 + m_Bursts: [] + SizeModule: + enabled: 1 + curve: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 0.50268817 value: 0.058479548 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -999,12 +1205,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1012,18 +1220,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 y: + minMaxState: 1 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1034,12 +1244,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1047,18 +1259,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 z: + minMaxState: 1 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1069,12 +1283,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1082,21 +1298,23 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 separateAxes: 0 RotationModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1107,12 +1325,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1120,18 +1340,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1142,12 +1364,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1155,18 +1379,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 curve: + minMaxState: 0 scalar: 0.7853982 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1177,12 +1403,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1190,37 +1418,22 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 separateAxes: 0 ColorModule: enabled: 0 gradient: serializedVersion: 2 + minMaxState: 1 maxGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -1237,33 +1450,19 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -1280,24 +1479,27 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minColor: {r: 1, g: 1, b: 1, a: 1} maxColor: {r: 1, g: 1, b: 1, a: 1} - minMaxState: 1 UVModule: enabled: 0 frameOverTime: + minMaxState: 1 scalar: 0.9999 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 1 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 1 outSlope: 0 @@ -1308,12 +1510,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 1 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 1 outSlope: 0 @@ -1321,18 +1525,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 startFrame: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1343,12 +1549,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1356,27 +1564,31 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 tilesX: 1 tilesY: 1 animationType: 0 rowIndex: 0 cycles: 1 uvChannelMask: -1 + flipU: 0 + flipV: 0 randomRow: 1 VelocityModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1387,12 +1599,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1400,18 +1614,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1422,12 +1638,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1435,18 +1653,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 z: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1457,12 +1677,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1470,22 +1692,24 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 inWorldSpace: 0 InheritVelocityModule: enabled: 0 m_Mode: 0 m_Curve: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1496,12 +1720,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1509,20 +1735,22 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 ForceModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1533,12 +1761,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1546,18 +1776,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1568,12 +1800,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1581,18 +1815,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 z: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1603,12 +1839,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1616,7 +1854,6 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 inWorldSpace: 0 randomizePerFrame: 0 ExternalForcesModule: @@ -1625,16 +1862,19 @@ ParticleSystem: ClampVelocityModule: enabled: 1 x: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1645,12 +1885,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1658,18 +1900,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1680,12 +1924,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1693,18 +1939,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 z: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1715,12 +1963,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1728,18 +1978,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 magnitude: + minMaxState: 1 scalar: 20 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 0.4112903 + - serializedVersion: 2 + time: 0.4112903 value: 0.04678368 inSlope: 0 outSlope: 0 @@ -1750,12 +2002,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1763,23 +2017,308 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 separateAxis: 0 inWorldSpace: 0 dampen: 0.8 + NoiseModule: + enabled: 0 + strength: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + strengthY: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + strengthZ: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + separateAxes: 0 + frequency: 0.5 + damping: 1 + octaves: 1 + octaveMultiplier: 0.5 + octaveScale: 2 + quality: 2 + scrollSpeed: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remap: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remapY: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remapZ: + minMaxState: 1 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: -1 + inSlope: 0 + outSlope: 2 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 2 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + remapEnabled: 0 SizeBySpeedModule: enabled: 0 curve: + minMaxState: 1 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1790,12 +2329,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1803,18 +2344,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 y: + minMaxState: 1 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1825,12 +2368,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1838,18 +2383,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 z: + minMaxState: 1 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1860,12 +2407,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1873,22 +2422,24 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 1 range: {x: 0, y: 1} separateAxes: 0 RotationBySpeedModule: enabled: 0 x: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1899,12 +2450,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1912,18 +2465,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 y: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1934,12 +2489,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1947,18 +2504,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 curve: + minMaxState: 0 scalar: 0.7853982 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -1969,12 +2528,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -1982,38 +2543,23 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 separateAxes: 0 range: {x: 0, y: 1} ColorBySpeedModule: enabled: 0 gradient: serializedVersion: 2 + minMaxState: 1 maxGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -2030,33 +2576,19 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minGradient: - key0: - serializedVersion: 2 - rgba: 4294967295 - key1: - serializedVersion: 2 - rgba: 4294967295 - key2: - serializedVersion: 2 - rgba: 0 - key3: - serializedVersion: 2 - rgba: 0 - key4: - serializedVersion: 2 - rgba: 0 - key5: - serializedVersion: 2 - rgba: 0 - key6: - serializedVersion: 2 - rgba: 0 - key7: - serializedVersion: 2 - rgba: 0 + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} ctime0: 0 ctime1: 65535 ctime2: 0 @@ -2073,11 +2605,11 @@ ParticleSystem: atime5: 0 atime6: 0 atime7: 0 + m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 minColor: {r: 1, g: 1, b: 1, a: 1} maxColor: {r: 1, g: 1, b: 1, a: 1} - minMaxState: 1 range: {x: 0, y: 1} CollisionModule: enabled: 0 @@ -2091,16 +2623,19 @@ ParticleSystem: plane4: {fileID: 0} plane5: {fileID: 0} m_Dampen: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2111,12 +2646,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2124,18 +2661,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 m_Bounce: + minMaxState: 0 scalar: 1 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2146,12 +2685,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2159,18 +2700,20 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 m_EnergyLossOnCollision: + minMaxState: 0 scalar: 0 maxCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 1 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 1 inSlope: 0 outSlope: 0 @@ -2181,12 +2724,14 @@ ParticleSystem: minCurve: serializedVersion: 2 m_Curve: - - time: 0 + - serializedVersion: 2 + time: 0 value: 0 inSlope: 0 outSlope: 0 tangentMode: 0 - - time: 1 + - serializedVersion: 2 + time: 1 value: 0 inSlope: 0 outSlope: 0 @@ -2194,7 +2739,6 @@ ParticleSystem: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 - minMaxState: 0 minKillSpeed: 0 maxKillSpeed: 10000 radiusScale: 1 @@ -2221,24 +2765,768 @@ ParticleSystem: exit: 0 radiusScale: 1 SubModule: + serializedVersion: 2 enabled: 0 - subEmitterBirth: {fileID: 0} - subEmitterBirth1: {fileID: 0} - subEmitterCollision: {fileID: 0} - subEmitterCollision1: {fileID: 0} - subEmitterDeath: {fileID: 0} - subEmitterDeath1: {fileID: 0} + subEmitters: + - emitter: {fileID: 0} + type: 0 + properties: 0 + LightsModule: + enabled: 0 + ratio: 0 + light: {fileID: 0} + randomDistribution: 1 + color: 1 + range: 1 + intensity: 1 + rangeCurve: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + intensityCurve: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + maxLights: 20 + TrailModule: + enabled: 0 + ratio: 1 + lifetime: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minVertexDistance: 0.2 + textureMode: 0 + worldSpace: 0 + dieWithParticles: 1 + sizeAffectsWidth: 1 + sizeAffectsLifetime: 0 + inheritParticleColor: 1 + colorOverLifetime: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + widthOverTrail: + minMaxState: 0 + scalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorOverTrail: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + CustomDataModule: + enabled: 0 + mode0: 0 + vectorComponentCount0: 4 + color0: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + vector0_0: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector0_1: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector0_2: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector0_3: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + mode1: 0 + vectorComponentCount1: 4 + color1: + serializedVersion: 2 + minMaxState: 0 + maxGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + minColor: {r: 1, g: 1, b: 1, a: 1} + maxColor: {r: 1, g: 1, b: 1, a: 1} + vector1_0: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector1_1: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector1_2: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + vector1_3: + minMaxState: 0 + scalar: 0 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + - serializedVersion: 2 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 --- !u!1 &624843593 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 624843597} - - 223: {fileID: 624843596} - - 114: {fileID: 624843595} - - 114: {fileID: 624843594} + - component: {fileID: 624843597} + - component: {fileID: 624843596} + - component: {fileID: 624843595} + - component: {fileID: 624843594} m_Layer: 5 m_Name: World Canvas m_TagString: Untagged @@ -2290,7 +3578,7 @@ Canvas: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 624843593} m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 3 m_RenderMode: 2 m_Camera: {fileID: 0} m_PlaneDistance: 100 @@ -2299,6 +3587,7 @@ Canvas: m_OverrideSorting: 0 m_OverridePixelPerfect: 0 m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 m_SortingLayerID: 0 m_SortingOrder: 0 m_TargetDisplay: 0 @@ -2311,11 +3600,11 @@ RectTransform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 0.02, y: 0.02, z: 0.1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1618699050} m_Father: {fileID: 0} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: -2.83, y: 4.73} @@ -2326,10 +3615,10 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 774732877} - - 212: {fileID: 774732876} + - component: {fileID: 774732877} + - component: {fileID: 774732876} m_Layer: 0 m_Name: square32 m_TagString: Untagged @@ -2351,7 +3640,9 @@ SpriteRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -2359,17 +3650,22 @@ SpriteRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 1 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 1 m_Sprite: {fileID: 21300000, guid: 718074e4e56a5404e824bf8e6571ea7d, type: 3} m_Color: {r: 0.18002023, g: 0.36764705, b: 0, a: 0.709} m_FlipX: 0 m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 --- !u!4 &774732877 Transform: m_ObjectHideFlags: 0 @@ -2379,19 +3675,19 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 5.5483284, y: 48.482475, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1675659861} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1149289853 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1149289854} - - 212: {fileID: 1149289855} + - component: {fileID: 1149289854} + - component: {fileID: 1149289855} m_Layer: 0 m_Name: square32 (2) m_TagString: Untagged @@ -2408,10 +3704,10 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0.06, y: 0, z: 0} m_LocalScale: {x: 4.661441, y: 48.482475, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1675659861} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &1149289855 SpriteRenderer: m_ObjectHideFlags: 0 @@ -2426,7 +3722,9 @@ SpriteRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -2434,26 +3732,31 @@ SpriteRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 1 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 2 m_Sprite: {fileID: 21300000, guid: 718074e4e56a5404e824bf8e6571ea7d, type: 3} m_Color: {r: 0.33843803, g: 0.6911765, b: 0, a: 0.353} m_FlipX: 0 m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 --- !u!1 &1406277772 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1406277773} - - 212: {fileID: 1406277774} + - component: {fileID: 1406277773} + - component: {fileID: 1406277774} m_Layer: 0 m_Name: square32 (1) m_TagString: Untagged @@ -2470,10 +3773,10 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0.44, y: 0, z: 0} m_LocalScale: {x: 0.44441086, y: 48.482475, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1675659861} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!212 &1406277774 SpriteRenderer: m_ObjectHideFlags: 0 @@ -2488,7 +3791,9 @@ SpriteRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -2496,29 +3801,34 @@ SpriteRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 1 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 3 m_Sprite: {fileID: 21300000, guid: 718074e4e56a5404e824bf8e6571ea7d, type: 3} m_Color: {r: 0.48965502, g: 1, b: 0, a: 0.928} m_FlipX: 0 m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 --- !u!1 &1498924765 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1498924770} - - 20: {fileID: 1498924769} - - 92: {fileID: 1498924768} - - 124: {fileID: 1498924767} - - 81: {fileID: 1498924766} + - component: {fileID: 1498924770} + - component: {fileID: 1498924769} + - component: {fileID: 1498924768} + - component: {fileID: 1498924767} + - component: {fileID: 1498924766} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -2577,6 +3887,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -2590,20 +3902,20 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1618699049 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 1618699050} - - 222: {fileID: 1618699052} - - 114: {fileID: 1618699051} + - component: {fileID: 1618699050} + - component: {fileID: 1618699052} + - component: {fileID: 1618699051} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -2620,10 +3932,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 624843597} 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} @@ -2678,12 +3990,12 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1619823304} - - 33: {fileID: 1619823303} - - 23: {fileID: 1619823302} - - 114: {fileID: 1619823301} + - component: {fileID: 1619823304} + - component: {fileID: 1619823303} + - component: {fileID: 1619823302} + - component: {fileID: 1619823301} m_Layer: 0 m_Name: 1 m_TagString: Untagged @@ -2716,7 +4028,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -2724,12 +4038,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 5 --- !u!33 &1619823303 MeshFilter: @@ -2747,18 +4062,18 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 93048079} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1675659860 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1675659861} + - component: {fileID: 1675659861} m_Layer: 0 m_Name: Pole Sprites m_TagString: Untagged @@ -2775,24 +4090,24 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 3.5889997, y: 0.001999855, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 774732877} - {fileID: 1149289854} - {fileID: 1406277773} m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1698487791 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1698487795} - - 33: {fileID: 1698487794} - - 23: {fileID: 1698487793} - - 114: {fileID: 1698487792} + - component: {fileID: 1698487795} + - component: {fileID: 1698487794} + - component: {fileID: 1698487793} + - component: {fileID: 1698487792} m_Layer: 0 m_Name: 1 m_TagString: Untagged @@ -2825,7 +4140,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -2833,12 +4150,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 5 --- !u!33 &1698487794 MeshFilter: @@ -2856,21 +4174,21 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1918225119} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1769987559 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1769987563} - - 33: {fileID: 1769987562} - - 23: {fileID: 1769987561} - - 114: {fileID: 1769987560} + - component: {fileID: 1769987563} + - component: {fileID: 1769987562} + - component: {fileID: 1769987561} + - component: {fileID: 1769987560} m_Layer: 0 m_Name: 0 m_TagString: Untagged @@ -2903,7 +4221,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -2911,12 +4231,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1769987562 MeshFilter: @@ -2934,23 +4255,23 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 93048079} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1918225114 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1918225119} - - 33: {fileID: 1918225118} - - 23: {fileID: 1918225117} - - 114: {fileID: 1918225116} - - 114: {fileID: 1918225115} - - 114: {fileID: 1918225120} + - component: {fileID: 1918225119} + - component: {fileID: 1918225118} + - component: {fileID: 1918225117} + - component: {fileID: 1918225116} + - component: {fileID: 1918225115} + - component: {fileID: 1918225120} m_Layer: 0 m_Name: Spine GameObject (spineboy) m_TagString: Untagged @@ -2988,14 +4309,18 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 44691b56ed7d1f04da0cbc2a52a91b8d, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: - --A zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 0 logErrors: 0 disableRenderingOnOverride: 1 @@ -3017,7 +4342,9 @@ MeshRenderer: m_Materials: - {fileID: 0} - {fileID: 2100000, guid: 1455e88fdb81ccc45bdeaedd657bad4d, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -3025,12 +4352,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1918225118 MeshFilter: @@ -3048,12 +4376,12 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: -6.18, y: -3.53, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 122287543} - {fileID: 1698487795} m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &1918225120 MonoBehaviour: m_ObjectHideFlags: 0 @@ -3076,11 +4404,11 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 224: {fileID: 2142418131} - - 222: {fileID: 2142418133} - - 114: {fileID: 2142418132} + - component: {fileID: 2142418131} + - component: {fileID: 2142418133} + - component: {fileID: 2142418132} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -3097,10 +4425,10 @@ RectTransform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 51877973} 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} diff --git a/spine-unity/Assets/Examples/Other Examples/Sprite Shaders.unity b/spine-unity/Assets/Examples/Other Examples/Sprite Shaders.unity index 92d9eb64c..e29e3ec30 100644 --- a/spine-unity/Assets/Examples/Other Examples/Sprite Shaders.unity +++ b/spine-unity/Assets/Examples/Other Examples/Sprite Shaders.unity @@ -1,19 +1,19 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 -SceneSettings: +OcclusionCullingSettings: m_ObjectHideFlags: 0 - m_PVSData: - m_PVSObjectsArray: [] - m_PVSPortalsArray: [] + 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: 7 + serializedVersion: 8 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -25,6 +25,7 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} m_SkyboxMaterial: {fileID: 0} m_HaloStrength: 0.5 m_FlareStrength: 1 @@ -41,7 +42,7 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 9 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -53,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 0 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 4 + serializedVersion: 8 m_Resolution: 2 m_BakeResolution: 40 m_TextureWidth: 1024 @@ -66,39 +67,56 @@ LightmapSettings: m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_DirectLightInLightProbes: 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_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 m_LightingDataAsset: {fileID: 0} - m_RuntimeCPUUsage: 25 + m_ShadowMaskMode: 2 --- !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 - accuratePlacement: 0 minRegionArea: 2 - cellSize: 0.16666667 manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 m_NavMeshData: {fileID: 0} --- !u!1 &188173730 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 188173732} - - 108: {fileID: 188173731} + - component: {fileID: 188173732} + - component: {fileID: 188173731} m_Layer: 0 m_Name: '[LIGHT] Spotlight' m_TagString: Untagged @@ -113,7 +131,7 @@ Light: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 188173730} m_Enabled: 1 - serializedVersion: 7 + serializedVersion: 8 m_Type: 0 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 2.57 @@ -138,6 +156,8 @@ Light: m_Lightmapping: 4 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &188173732 @@ -149,18 +169,18 @@ Transform: m_LocalRotation: {x: 0.28993335, y: -0.20459291, z: -0.5390386, w: 0.7638834} m_LocalPosition: {x: -1.85, y: 2.64, z: -6.397} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 12.793, y: -40.131, z: -75.40501} m_Children: [] m_Father: {fileID: 195821303} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 12.793, y: -40.131, z: -75.40501} --- !u!1 &195821302 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 195821303} + - component: {fileID: 195821303} m_Layer: 0 m_Name: LIGHTS m_TagString: Untagged @@ -177,7 +197,6 @@ Transform: 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: - {fileID: 935283315} - {fileID: 188173732} @@ -185,15 +204,16 @@ Transform: - {fileID: 770573971} m_Father: {fileID: 0} m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &770573969 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 770573971} - - 108: {fileID: 770573970} + - component: {fileID: 770573971} + - component: {fileID: 770573970} m_Layer: 0 m_Name: '[LIGHT] Green Spotlight' m_TagString: Untagged @@ -208,7 +228,7 @@ Light: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 770573969} m_Enabled: 1 - serializedVersion: 7 + serializedVersion: 8 m_Type: 0 m_Color: {r: 0.07586217, g: 1, b: 0, a: 1} m_Intensity: 2.68 @@ -233,6 +253,8 @@ Light: m_Lightmapping: 4 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &770573971 @@ -244,20 +266,20 @@ Transform: m_LocalRotation: {x: 0.0023665242, y: -0.5134523, z: -0.8581137, w: 0.0014160047} m_LocalPosition: {x: 4.56, y: -8.77, z: -3.03} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 241.77, y: 179.351, z: 0.57199097} m_Children: [] m_Father: {fileID: 195821303} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 241.77, y: 179.351, z: 0.57199097} --- !u!1 &845252278 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 845252281} - - 33: {fileID: 845252280} - - 23: {fileID: 845252279} + - component: {fileID: 845252281} + - component: {fileID: 845252280} + - component: {fileID: 845252279} m_Layer: 0 m_Name: Wall m_TagString: Untagged @@ -279,7 +301,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -287,12 +311,13 @@ MeshRenderer: m_PreserveUVs: 1 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &845252280 MeshFilter: @@ -310,21 +335,21 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0.28, y: 0.77, z: 2} m_LocalScale: {x: 19.353024, y: 6.9264994, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &933136133 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 933136137} - - 33: {fileID: 933136136} - - 23: {fileID: 933136135} - - 114: {fileID: 933136134} + - component: {fileID: 933136137} + - component: {fileID: 933136136} + - component: {fileID: 933136135} + - component: {fileID: 933136134} m_Layer: 0 m_Name: stretchyman static m_TagString: Untagged @@ -345,13 +370,17 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 162719d41016c854abf0355feb0e14e8, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 1 logErrors: 0 disableRenderingOnOverride: 1 @@ -369,7 +398,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 824cfb62bcbe3db49a3ce6db7e3757d1, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -377,12 +408,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &933136136 MeshFilter: @@ -400,19 +432,19 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: -5.61, y: -3.69, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &935283313 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 935283315} - - 108: {fileID: 935283314} + - component: {fileID: 935283315} + - component: {fileID: 935283314} m_Layer: 0 m_Name: '[LIGHT] Point light' m_TagString: Untagged @@ -427,7 +459,7 @@ Light: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 935283313} m_Enabled: 1 - serializedVersion: 7 + serializedVersion: 8 m_Type: 2 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 @@ -452,6 +484,8 @@ Light: m_Lightmapping: 4 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &935283315 @@ -463,19 +497,19 @@ Transform: m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: -5.81, y: 0.56, z: -0.9} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 195821303} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1313996752 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1313996753} - - 212: {fileID: 1313996754} + - component: {fileID: 1313996753} + - component: {fileID: 1313996754} m_Layer: 0 m_Name: New Sprite m_TagString: Untagged @@ -492,10 +526,10 @@ Transform: m_LocalRotation: {x: 0.27059805, y: 0.65328157, z: 0.27059805, w: 0.6532815} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 90.00001, z: 45} m_Children: [] m_Father: {fileID: 1387304066} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 90.00001, z: 45} --- !u!212 &1313996754 SpriteRenderer: m_ObjectHideFlags: 0 @@ -510,7 +544,9 @@ SpriteRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -518,27 +554,32 @@ SpriteRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 1 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 m_Sprite: {fileID: 21300000, guid: 718074e4e56a5404e824bf8e6571ea7d, type: 3} m_Color: {r: 1, g: 0, b: 0, a: 1} m_FlipX: 0 m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 --- !u!1 &1387304064 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1387304066} - - 108: {fileID: 1387304065} - - 114: {fileID: 1387304067} + - component: {fileID: 1387304066} + - component: {fileID: 1387304065} + - component: {fileID: 1387304067} m_Layer: 0 m_Name: '[LIGHT] Rotating light' m_TagString: Untagged @@ -553,7 +594,7 @@ Light: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1387304064} m_Enabled: 1 - serializedVersion: 7 + serializedVersion: 8 m_Type: 1 m_Color: {r: 1, g: 0.14482759, b: 0, a: 1} m_Intensity: 1.96 @@ -578,6 +619,8 @@ Light: m_Lightmapping: 4 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &1387304066 @@ -589,12 +632,12 @@ Transform: m_LocalRotation: {x: -0.7059173, y: -0.04099956, z: 0.705917, w: -0.04099958} m_LocalPosition: {x: 0.077, y: 3.594, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: -186.648, y: 89.99999, z: 0} m_Children: - {fileID: 1313996753} - {fileID: 1443231423} m_Father: {fileID: 195821303} m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: -186.648, y: 89.99999, z: 0} --- !u!114 &1387304067 MonoBehaviour: m_ObjectHideFlags: 0 @@ -613,10 +656,10 @@ GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1443231423} - - 212: {fileID: 1443231424} + - component: {fileID: 1443231423} + - component: {fileID: 1443231424} m_Layer: 0 m_Name: New Sprite (1) m_TagString: Untagged @@ -633,10 +676,10 @@ Transform: m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.70710677} m_LocalPosition: {x: 0, y: 0.015, z: -0.234} m_LocalScale: {x: 1.5390148, y: 1.5390143, z: 1.5390143} - m_LocalEulerAnglesHint: {x: 0, y: 90.00001, z: 0} m_Children: [] m_Father: {fileID: 1387304066} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 90.00001, z: 0} --- !u!212 &1443231424 SpriteRenderer: m_ObjectHideFlags: 0 @@ -651,7 +694,9 @@ SpriteRenderer: m_ReflectionProbeUsage: 0 m_Materials: - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -659,28 +704,34 @@ SpriteRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 1 + m_SelectedEditorRenderState: 0 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 7 m_Sprite: {fileID: 21300000, guid: 718074e4e56a5404e824bf8e6571ea7d, type: 3} m_Color: {r: 0, g: 0, b: 0, a: 1} m_FlipX: 0 m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 --- !u!1 &1628453470 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1628453474} - - 33: {fileID: 1628453473} - - 23: {fileID: 1628453472} - - 114: {fileID: 1628453471} + - component: {fileID: 1628453474} + - component: {fileID: 1628453473} + - component: {fileID: 1628453472} + - component: {fileID: 1628453471} + - component: {fileID: 1628453475} m_Layer: 0 m_Name: stretchyman animated m_TagString: Untagged @@ -701,13 +752,17 @@ MonoBehaviour: m_EditorClassIdentifier: skeletonDataAsset: {fileID: 11400000, guid: 162719d41016c854abf0355feb0e14e8, type: 2} initialSkinName: default + initialFlipX: 0 + initialFlipY: 0 separatorSlotNames: [] zSpacing: 0 - renderMeshes: 1 + useClipping: 1 immutableTriangles: 0 pmaVertexColors: 1 clearStateOnDisable: 0 - calculateNormals: 0 + tintBlack: 0 + singleSubmesh: 0 + addNormals: 0 calculateTangents: 1 logErrors: 0 disableRenderingOnOverride: 1 @@ -728,7 +783,9 @@ MeshRenderer: m_ReflectionProbeUsage: 1 m_Materials: - {fileID: 2100000, guid: 824cfb62bcbe3db49a3ce6db7e3757d1, type: 2} - m_SubsetIndices: + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 m_StaticBatchRoot: {fileID: 0} m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} @@ -736,12 +793,13 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_SelectedWireframeHidden: 0 + m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 + m_SortingLayer: 0 m_SortingOrder: 0 --- !u!33 &1628453473 MeshFilter: @@ -757,24 +815,34 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1628453470} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -6.47, y: -3.59, z: 1.03} + m_LocalPosition: {x: -6.47, y: -3.59, z: -1} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!210 &1628453475 +SortingGroup: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1628453470} + m_Enabled: 1 + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 --- !u!1 &1667748200 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - serializedVersion: 4 + serializedVersion: 5 m_Component: - - 4: {fileID: 1667748205} - - 20: {fileID: 1667748204} - - 92: {fileID: 1667748203} - - 124: {fileID: 1667748202} - - 81: {fileID: 1667748201} + - component: {fileID: 1667748205} + - component: {fileID: 1667748204} + - component: {fileID: 1667748203} + - component: {fileID: 1667748202} + - component: {fileID: 1667748201} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -833,6 +901,8 @@ Camera: m_TargetDisplay: 0 m_TargetEye: 3 m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 @@ -846,7 +916,7 @@ Transform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/spine-unity/Assets/Examples/Scripts/MixAndMatch.cs b/spine-unity/Assets/Examples/Scripts/MixAndMatch.cs index 9c062fa9b..aab0bbe94 100644 --- a/spine-unity/Assets/Examples/Scripts/MixAndMatch.cs +++ b/spine-unity/Assets/Examples/Scripts/MixAndMatch.cs @@ -35,36 +35,33 @@ namespace Spine.Unity.Examples { public class MixAndMatch : MonoBehaviour { #region Inspector - [Header("From AtlasAsset")] - public AtlasAsset handSource; - [SpineAtlasRegion("handSource")] public string handRegion = "hand"; - [SpineAttachment] public string handAttachmentName; - [SpineSlot] public string handSlot; - public Vector2 newHandOffset; - public float newHandRotation; + [Header("Visor")] + public Sprite visorSprite; + [SpineSlot] public string visorSlot; + [SpineAttachment(slotField:"visorSlot")] public string visorKey = "goggles"; - [Header("From Sprite")] - public Sprite dagger; - public string daggerName = "dagger"; - [SpineSlot] public string weaponSlot; - - [Header("MeshAttachment.SetRegion")] - public bool applyHeadRegion = false; - public AtlasAsset headSource; - [SpineAtlasRegion("headSource")] public string headRegion; - [SpineSlot] public string headSlot; - [SpineAttachment] public string headAttachmentName; + [Header("Gun")] + public Sprite gunSprite; + [SpineSlot] public string gunSlot; + [SpineAttachment(slotField:"gunSlot")] public string gunKey = "gun"; [Header("Runtime Repack")] public bool repack = true; - public Shader repackedShader; + public Material sourceMaterial; [Header("Do not assign")] public Texture2D runtimeAtlas; public Material runtimeMaterial; - #endregion + void OnValidate () { + if (sourceMaterial == null) { + var skeletonAnimation = GetComponent(); + if (skeletonAnimation != null) + sourceMaterial = skeletonAnimation.SkeletonDataAsset.atlasAssets[0].materials[0]; + } + } + void Start () { var skeletonAnimation = GetComponent(); var skeleton = skeletonAnimation.Skeleton; @@ -72,38 +69,44 @@ namespace Spine.Unity.Examples { // All attachment changes will be applied to the skin. We use a clone so other instances will not be affected. var newSkin = skeleton.UnshareSkin(true, false, skeletonAnimation.AnimationState); - // Case 1: Create an attachment from an atlas. - RegionAttachment newHand = handSource.GetAtlas().FindRegion(handRegion).ToRegionAttachment("new hand"); - newHand.SetPositionOffset(newHandOffset); - newHand.Rotation = newHandRotation; - newHand.UpdateOffset(); - int handSlotIndex = skeleton.FindSlotIndex(handSlot); - newSkin.AddAttachment(handSlotIndex, handAttachmentName, newHand); + // NOTE: sprite textures need to be full rect. + var originalSkin = skeleton.Data.DefaultSkin; - // Case 2: Create an attachment from a Unity Sprite (Sprite texture needs to be Read/Write Enabled in the inspector. - RegionAttachment newWeapon = dagger.ToRegionAttachmentPMAClone(Shader.Find("Spine/Skeleton")); - newWeapon.SetScale(1.5f, 1.5f); - newWeapon.UpdateOffset(); - int weaponSlotIndex = skeleton.FindSlotIndex(weaponSlot); - newSkin.AddAttachment(weaponSlotIndex, daggerName, newWeapon); + int visorSlotIndex = skeleton.FindSlotIndex(visorSlot); + RegionAttachment originalVisor = originalSkin.GetAttachment(visorSlotIndex, visorKey) as RegionAttachment; + RegionAttachment newVisor = visorSprite.ToRegionAttachmentPMAClone(sourceMaterial); + newVisor.X = originalVisor.X; + newVisor.Y = originalVisor.Y; + newVisor.Rotation = originalVisor.Rotation; + newSkin.AddAttachment(visorSlotIndex, visorKey, newVisor); + + + int gunSlotIndex = skeleton.FindSlotIndex(gunSlot); + RegionAttachment originalGun = originalSkin.GetAttachment(gunSlotIndex, gunKey) as RegionAttachment; + RegionAttachment newGun = gunSprite.ToRegionAttachmentPMAClone(sourceMaterial); + newGun.x = originalGun.x; + newGun.y = originalGun.y; + newGun.Rotation = originalGun.Rotation; + newSkin.AddAttachment(gunSlotIndex, gunKey, newGun); // Case 3: Change an existing attachment's backing region. - if (applyHeadRegion) { - AtlasRegion spineBoyHead = headSource.GetAtlas().FindRegion(headRegion); - int headSlotIndex = skeleton.FindSlotIndex(headSlot); - var newHead = newSkin.GetAttachment(headSlotIndex, headAttachmentName).GetClone(true); - newHead.SetRegion(spineBoyHead); - newSkin.AddAttachment(headSlotIndex, headAttachmentName, newHead); - } +// if (applyHeadRegion) { +// AtlasRegion spineBoyHead = headSource.GetAtlas().FindRegion(headRegion); +// int headSlotIndex = skeleton.FindSlotIndex(headSlot); +// var newHead = newSkin.GetAttachment(headSlotIndex, headAttachmentName).GetClone(true); +// newHead.SetRegion(spineBoyHead); +// newSkin.AddAttachment(headSlotIndex, headAttachmentName, newHead); +// } // Case 4: Repacking a mixed-and-matched skin to minimize draw calls. // Repacking requires that you set all source textures/sprites/atlases to be Read/Write enabled in the inspector. - if (repack) - newSkin = newSkin.GetRepackedSkin("repacked", repackedShader, out runtimeMaterial, out runtimeAtlas); + if (repack) { + newSkin = newSkin.GetRepackedSkin("repacked", sourceMaterial, out runtimeMaterial, out runtimeAtlas); + } skeleton.SetSkin(newSkin); - skeleton.SetToSetupPose(); - skeleton.SetAttachment(weaponSlot, daggerName); + skeleton.SetSlotsToSetupPose(); + skeletonAnimation.Update(0); Resources.UnloadUnusedAssets(); } diff --git a/spine-unity/Assets/Examples/Scripts/RaggedySpineboy.cs b/spine-unity/Assets/Examples/Scripts/RaggedySpineboy.cs index d1f39b98e..f73b6dcd5 100644 --- a/spine-unity/Assets/Examples/Scripts/RaggedySpineboy.cs +++ b/spine-unity/Assets/Examples/Scripts/RaggedySpineboy.cs @@ -49,11 +49,7 @@ namespace Spine.Unity.Examples { void AddRigidbody () { var rb = gameObject.AddComponent(); - #if UNITY_5_1 || UNITY_5_2 || UNITY_5_3_OR_NEWER rb.freezeRotation = true; - #else - rb.fixedAngle = true; - #endif naturalCollider.enabled = true; } diff --git a/spine-unity/Assets/Examples/Scripts/Sample Components/AtlasRegionAttacher.cs b/spine-unity/Assets/Examples/Scripts/Sample Components/AtlasRegionAttacher.cs index 37060ad17..ba2321a64 100644 --- a/spine-unity/Assets/Examples/Scripts/Sample Components/AtlasRegionAttacher.cs +++ b/spine-unity/Assets/Examples/Scripts/Sample Components/AtlasRegionAttacher.cs @@ -53,11 +53,16 @@ namespace Spine.Unity.Modules { Atlas atlas; + void Start () { + + } + void Awake () { GetComponent().OnRebuild += Apply; } void Apply (SkeletonRenderer skeletonRenderer) { + if (!this.enabled) return; atlas = atlasAsset.GetAtlas(); float scale = skeletonRenderer.skeletonDataAsset.scale; diff --git a/spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs b/spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs new file mode 100644 index 000000000..e6809c5a9 --- /dev/null +++ b/spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs @@ -0,0 +1,53 @@ +using UnityEngine; +using Spine; +using Spine.Unity; + +namespace Spine.Unity.Modules { + public class BoneLocalOverride : MonoBehaviour { + + [SpineBone] + public string boneName; + + [Space] + [Range(0, 1)] public float alpha = 1; + + [Space] + public bool overridePosition = true; + public Vector2 localPosition; + + public bool overrideRotation = true; + [Range(0, 360)] public float rotation = 0; + + ISkeletonAnimation spineComponent; + Bone bone; + + void Awake () { + spineComponent = GetComponent(); + if (spineComponent == null) { this.enabled = false; return; } + spineComponent.UpdateLocal += OverrideLocal; + + if (bone == null) { this.enabled = false; return; } + } + + void OverrideLocal (ISkeletonAnimation animated) { + if (bone == null || bone.Data.Name != boneName) { + if (string.IsNullOrEmpty(boneName)) return; + bone = spineComponent.Skeleton.FindBone(boneName); + if (bone == null) { + Debug.LogFormat("Cannot find bone: '{0}'", boneName); + return; + } + } + + if (overridePosition) { + bone.X = Mathf.Lerp(bone.X, localPosition.x, alpha); + bone.Y = Mathf.Lerp(bone.Y, localPosition.y, alpha); + } + + if (overrideRotation) + bone.Rotation = Mathf.Lerp(bone.Rotation, rotation, alpha); + } + + } +} + diff --git a/spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs.meta b/spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs.meta new file mode 100644 index 000000000..03c47fd6b --- /dev/null +++ b/spine-unity/Assets/Examples/Scripts/Sample Components/BoneLocalOverride.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 61e6f96a4b02648479575d8b9127f5ed +timeCreated: 1492782100 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/spine-unity/Assets/spine-unity/Modules/CustomSkin/CustomSkin.cs b/spine-unity/Assets/Examples/Scripts/Sample Components/CustomSkin.cs similarity index 100% rename from spine-unity/Assets/spine-unity/Modules/CustomSkin/CustomSkin.cs rename to spine-unity/Assets/Examples/Scripts/Sample Components/CustomSkin.cs diff --git a/spine-unity/Assets/spine-unity/Modules/CustomSkin/CustomSkin.cs.meta b/spine-unity/Assets/Examples/Scripts/Sample Components/CustomSkin.cs.meta similarity index 100% rename from spine-unity/Assets/spine-unity/Modules/CustomSkin/CustomSkin.cs.meta rename to spine-unity/Assets/Examples/Scripts/Sample Components/CustomSkin.cs.meta diff --git a/spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs b/spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs new file mode 100644 index 000000000..1aaec4e24 --- /dev/null +++ b/spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs @@ -0,0 +1,51 @@ +using System.Collections.Generic; +using UnityEngine; +using Spine; +using Spine.Unity; + +namespace Spine.Unity.Examples { + /// + /// Stores and serializes initial settings for a Spine Skeleton component. The settings only get applied on Start at runtime. + public class SkeletonColorInitialize : MonoBehaviour { + public Color skeletonColor = Color.white; + public List slotSettings = new List(); + + [System.Serializable] + public class SlotSettings { + [SpineSlot] + public string slot = string.Empty; + public Color color = Color.white; + } + + void OnValidate () { + var skeletonComponent = GetComponent(); + if (skeletonComponent != null) { + skeletonComponent.Skeleton.SetSlotsToSetupPose(); + + var animationStateComponent = GetComponent(); + if (animationStateComponent != null && animationStateComponent.AnimationState != null) { + animationStateComponent.AnimationState.Apply(skeletonComponent.Skeleton); + } + } + + ApplySettings(); + } + + void Start () { + ApplySettings(); + } + + void ApplySettings () { + var skeletonComponent = GetComponent(); + if (skeletonComponent != null) { + var skeleton = skeletonComponent.Skeleton; + skeleton.SetColor(skeletonColor); + + foreach (var s in slotSettings) + skeleton.FindSlot(s.slot).SetColor(s.color); + } + } + + } + +} \ No newline at end of file diff --git a/spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs.meta b/spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs.meta new file mode 100644 index 000000000..d6ee51b04 --- /dev/null +++ b/spine-unity/Assets/Examples/Scripts/Sample Components/SkeletonColorInitialize.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7e3501002f468384b80d5853d04e19ca +timeCreated: 1494113429 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower/SlotTintBlackFollower.cs b/spine-unity/Assets/Examples/Scripts/Sample Components/SlotTintBlackFollower.cs similarity index 100% rename from spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower/SlotTintBlackFollower.cs rename to spine-unity/Assets/Examples/Scripts/Sample Components/SlotTintBlackFollower.cs diff --git a/spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower/SlotTintBlackFollower.cs.meta b/spine-unity/Assets/Examples/Scripts/Sample Components/SlotTintBlackFollower.cs.meta similarity index 100% rename from spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower/SlotTintBlackFollower.cs.meta rename to spine-unity/Assets/Examples/Scripts/Sample Components/SlotTintBlackFollower.cs.meta diff --git a/spine-unity/Assets/Examples/Scripts/Sample Components/SpriteAttacher.cs b/spine-unity/Assets/Examples/Scripts/Sample Components/SpriteAttacher.cs index e17622d22..995d0274e 100644 --- a/spine-unity/Assets/Examples/Scripts/Sample Components/SpriteAttacher.cs +++ b/spine-unity/Assets/Examples/Scripts/Sample Components/SpriteAttacher.cs @@ -55,7 +55,7 @@ namespace Spine.Unity.Modules { apma = skeletonRenderer.pmaVertexColors; } else { var skeletonGraphic = skeletonComponent as SkeletonGraphic; - apma = skeletonGraphic != null && skeletonGraphic.SpineMeshGenerator.PremultiplyVertexColors; + apma = skeletonGraphic != null && skeletonGraphic.MeshGenerator.settings.pmaVertexColors; } if (apma) { @@ -98,7 +98,7 @@ namespace Spine.Unity.Modules { else { var skeletonGraphic = skeletonComponent as SkeletonGraphic; if (skeletonGraphic != null) - this.applyPMA = skeletonGraphic.SpineMeshGenerator.PremultiplyVertexColors; + this.applyPMA = skeletonGraphic.MeshGenerator.settings.pmaVertexColors; } Shader attachmentShader = applyPMA ? Shader.Find(DefaultPMAShader) : Shader.Find(DefaultStraightAlphaShader); diff --git a/spine-unity/Assets/Examples/Spine/Dragon/dragon_Atlas.asset b/spine-unity/Assets/Examples/Spine/Dragon/dragon_Atlas.asset index 122900adb7b28a034b375443c4805c8cb9dbca1d..de8ead202c2bb767c58441e37ccd2982f24a20c4 100644 GIT binary patch literal 600 zcmZ{gT~ER=7=`co74-tI7+JgSqrF1~BoQUi8?VUQuURuT(sd@p_}}dy#t}j2uEbeYSo=c#22kx7iZibT`OD$-CP6L!zd#*-c1{F&{-y)K4*{=r(L|zeek(ZtnC4 zeA%XRe1y<$`yxKI^p95QMFnNcQGC4KIBh^|!0FnbBpiJkTj|w9ko*iZtJ-T~>=Rm}fa!@w)cIGQ+2fyEkW4lrzur*dYj=~Ij%_77eFi>`eKw}9- zD67bU7|;}$(wTv@NR`Y473T;L%CbZ@(3lt-Y@`yQLMzmAp{Y$t6G^U`>@F_c zsko9#g}M>JN<_q^3oUNMokbVEz)cYZLFl4_@qBY1O!^-PGccK%-<5Ek@-e$eOztsqc5z{&SS*; z6&_)oeLP<0%(*%@d}J*+I%|}8RcEcjRh<@(3yQMNRYwPVB;{OlKI;{(>TK}1pgGQS zly#6_D>PWh_2CS2d>6ji&3}^j{o(Api8+d3N7Vc`OJ;L*-!_j6I?ek&W*zvCQx%qs z7f0AnRB%3U5(#j>)DQ6*nKORUqoywTxKH>3~v632y9yhAH_X8ZBo62JFQbSE0Xy-vUN_Tfa zGkNm8NQ;X@@_{Q$z#EZ>AWTM9=Z)2sO(@Xl?z&OGT(x8NHX7lM4ufzpxjz> zK~uPw2e6B@)A?%S=Ki}k_pILf_{^P4doS*u z1ubB`%w^bXA}LPk=t(N#;omn!NiTbn4ggZhxF_2%{uTTl91E5gJ1qAE8Zr)NzH}P&oqX@r%A%Y3w8G*~FOqVL}-B9q{uQGamgjNy**1J;KeJyLH=5 z4r4tJppUE@b@mXZr~_)PDj;qhHW<`!3_dmKUA8p0s?x$?GX{80(X-+tY+8 zc}c#+s9U#ZEHCSNUd5d8JZt%&b6wtNCf_0Fx`)WM4>|RG&hnD{fHCXI8b1%Gv2Nd^ zzdvEj-~J1PFi!@xe)oQVQ8UByzyGS`Ww` z-_7{DJ$y6cr+PRqMxE0cpY;g4+E z;m(b}4viJ{hASTpZ`&L>JagsPZ!6V<^XrD@&g~ET73f!>Ux9uF`W5I`;Qv*C-=nqI zZ$#mOIbg2;#~$aKkTHI9U*(4`jB9+KUYPZR5U&ROu1~M=>wuQxb&+n2d-?s1SCb^F N*X8Hy*ZKM>{{qMcsbl~E diff --git a/spine-unity/Assets/Examples/Spine/Dragon/dragon_dragon2.mat b/spine-unity/Assets/Examples/Spine/Dragon/dragon_dragon2.mat index 2aab8fb558c5c4b4615e76298c15d71e607fb27b..7872333268981b016bd6bed30229ce4c80d1ff40 100644 GIT binary patch literal 708 zcmZuvOK;mS48G@AsE6*96qfv`<6DunTd`(Km!QBf35;ASs@Hxme#Ye#U2~yNh@1WISOW+G;e~A5(QEhkh;+&a2sCu?Shg*&D%=aAs@p zXf<@zj4>B)`X{P8v`!DEVg-f!`qTb9O8;Ifyy~EJ6-#1xW3hq#1}qvsK`QpE(H&mD zCCKkrm}^5WhFt#1e}o<@rYy9Bsi&Wa#O*yOw66$R87rQ%cGRk397`y8BA1wOnHE{O z2bqby%rS3dabC=sKORUro$8q6KH%}kU=?)`J#KV+?|V2rca_KBrGY)QV4MddwQ28w z=41Rz*Q?R_q5q7A%DWwLB##9rrt_B2J80K%pt6Il(k^JJ$$SIOA<2CG7JatxfNEoh z16r>sPQm{^K^hZ%y~D>#^YDyYuzC&JP;BA_ZiM*JQb8}TApRPfkX#hYWyVF?aFG?I zY%-aHD9S83FX4}&1U}~I*IA{@_~5O4M1~?U@CYu U`k`rPGiXr*yRTP6H`r++PvNf9i~s-t literal 4240 zcmeH~Piz!b9LImN+uc@B5d;ANyP%@@XGO4zT5F}W7NMaC8gF&#zTF+OooQyL*d`q2 zM1m(S9*kT#XiQ9u@dO8NTuAU_JQei_@j^IwAr0&I``+x!ytOCK`y;>3d!P5_JHJ0W z!;Hw#HIc_IiO6OgaS$1)j#LlU56gp2r{j45+ekZ|uU2pGS-ZVs`Oc@O?p@h=dHW1# z0qbQh!`=`{aY{!|QV|dTzAH-lvnS~QAf=3Z@({+qgFlR8!SaIq35{XQxxbj>Rp>mA z`B1jj)wxiR^m?XK%I(kVFg~-tAbFiZ%RQNf{twV${Je&j@|=SAD&nD&GiGm`yr|>c zg>x9^26F91IgP!a!#Uq*xhK$&F*x(3)1dF<`-o&3a5T)P|R7Ryb)KEa%MJr1X_kE~}CWAd$pF!Fog=P_nH`e%}oyLEeln>Baqww)Zt zdJdzHtQ&Q95T@hcfLuKrWp zKTa)IpTE=f^eY)JVD%!#m*Ldki=)vm=(_!w@qLyToxGm5e89=;8FCowlds#egeiGR zzQm|oxBZrvbv>_Q&Ul`)e9*Zr?=zF{kaOJwWwXP#bCOG?^F9E6Rt zeq+X8l#jw7S(%NaMHMG2XPQbS6!p)kS_T6}m9uJjGCbFo&|gsI97D`fvJ@+x_L<*O zvMehYpQ_i}T5GBm`H2oBYDIBdVrj^{_$&ylvazC%{By~U%zJ^X9y$Ndwz=xW#lQD; zZrwdFTGSi%?w!IPJ7uK$SJ3qbny`i~t`@?<(`W5I`pkIN01^N~Ee-+?&XD#*{ zQ8;G~cv05>V~_Do$QZx5uku3|#x=fA&&~Kjh*txC*QeL`bwEq;x=1(1z5M>ht4R{o N>+k^!5QX>r3Nz4&AYbA@?2WcSkxGlyE}hUhzED>oL5WidRs8olpsGPtJy^2u z-MjDI@NKq!WH5$c_&Qs%K|5d$cd9L|JH}?5Rr^uI0aOr%VOIqZ?8aZbJHfgtt6O@< zPg}LM3K-jOpY;c2?!g*b6u4^?9O*!ff)>OKSM6s{j7PPwel2cE!Djn4&7JutY z+|z%(^AdGIMlm>B&5dTU3T%3_@BFh_86Vf?mTJX(4Li-khwc#wc?DpiR7wv8 ze&#ezg+_zqd5p}bsUW%rK)))BMboW5{M}~+SDqr52KWSlgb|4rlT^!;$KaDrF^ZBO I&*&6<16S9Zi2wiq literal 4204 zcmeH~&1(}u7{=d8QX8!wsr9R_)d&S^!JyO-1c?c?A+;2u^x~nG1-CS1+e&tk=H#Aw z6Y->?LcJ8B6ve-xH?J)!h*Z3Y2NCpCq49lYXO~I;1et-!%>3q^XWn@xdl;hBIiie9 zMBUtSLzK_ua~G$FXs6X`3BjNtF=aNI-(NRB76#tFIzO0yp9?;Jn||{5VdeIH$_bUL(nU1yKRb)C+b3%blY_mvLzD9gF_eD-Qw*Vz|yLCc)yB-f2e&AFh>#Wh@SsJ$wIF0dno3Ds=V(i>%f29st9DfxWs;< zg7bxwD1j%XzQt>h&tY&`lXR0~XSrhB6Z24iNa-H|4+7-brhgQ?1m3QX`{bpP>-xuI zE@*)JSGdBP6I@Yt`_L;{$aNo1#$3=QpJ|xKIIqPm%I-W*g;?eTpCcdoG(OIK_<(#) z$2`?`FZe%(zNJXdC#!g^<~Od6+^zcyjgdv)nfK}o^F^AQs?=R)^g4HHwm-ui8P`AI zEc#{7bNnLNzH57kqB+}l8g<+CRM5B@7v;vhPwDp>|Axg?ZI~0$R`ZP{_>O4S8hsR4 z+m&Z8hQ*!IcE5yl;c0J2_g100y0(*k`JnnUq<=n%m9HBUV@uD|J&*mtTlhdtF%B39 zj0462|{J)4%%|m%1tYIRuBC$i8(J9Q55-Z!r7aI$Nnrf z;Ls@O$^~OK{HdQP@6cE^=#phr?hm)scdXreCGo0*)|M;|<*mU6sx27QZibZXSED+- zeoK(wFEH1dR5Ypl)BgxPmJBDfhrd?B-0mJEniu#q4~Cbl9hEE@#~d;q*9FGBUS(-s zL7gTd7bu!KJI|KPO-Ev0%{FGb4>!RYN%)fZ5`-Z>GlpN z9_^l&UXRud{b$r<@6(7QX+)eRtuut)L%V?^+4izhSlW zXq=)t75{q!tI+5Vdwjgq4^Oy=QCdnq$x)MJj)XlS(+88 zNJS-!O2ox^E?$M^IX&yHhR$<7Qs_%I(bw-bA9@;1W6{m+IJCpX`@ySj0Lm?Z$?$q~ UL(|a1pm*x0`@?$Z1~Vt}2Nhw{GXMYp literal 4240 zcmeH~Piz!b9LImN+uc?`0srtvL{>$`e+7jKXe|ZW1%!qo)o>C=`*wH8cBh%0LO0?0IqyxxLnmj<-Y9uq z$GHL5FwSM<+VgS@Yfr&BUv9Z4(2x;0^QF_E@8tWaW`<|ue9Uqa=K;(a&q^F6(d(T! z*~O*eTurXsjq`EKO}|cH&b*$0)7VGWvxYJGlY}tx``~9WW<2_5l90P~Tf@bgyLDSj z4r4txp^vN^b=DCk9WMW-(t$h8-pzC2^O(O-r>^1d6v&3#?{ zXSsfqTCP5Sr%UOVQl7)v3m9L5Q~x;}jebto?YopeZ+YIy>jlgEoV+%Z!&ske-CiV2 z$P4m0MxDC7WO-57^BU%i=Vi2>bymqS>Msw-o-mQJ1jSSyoWjKIYgc?ez%WrTkiG|?@MjnecWZ&yM5ek zx!cEgEO-0(F8ES?946Q9_VGQ-3&MJ`kE|QtTQt6}_`Jh)zIzCh|K>Ytxts4^a#(l1 z`v?+SoQ$L4@#!EAqw)DzHJU-#7?GKi<)E$(jbSk9 z$2AP}y5lu}T17lr} zXMSDDytFVrTB$U(R=FPfu?{4xhfz}^smiC~vmmh2@{&IC&qX^j`vSRhb*^LoJ-V|Tvsw|rdwYHDh6q0l;EXy)49uvdXz1$q_eRiIaaUIqSN1^7Lx zTB>={ZdA;ENk+I6GRALi?tMAq|K{9JV|~!T)_~vj$pXI)XbHB9bYoo0?{92P;;>SY LUvJ#t_EY`^tVqYF zW=G%b@NKq!WH145_&Qs%K|5d;cd{*wJp|b#t%{M)0i-t`k2@7Wup4*r?s)5}tZwNY zzf9HE(qpXHKC2H(?Ssi^k>jqBjGw+YHEC2Etf{nTi)7#0|sxm1!v+XM z1&P+NN`)VQ$l@&WiMXCB3_Xi3v5qs)Yz%EY!N-mTpPXm|dkghY;d2^i;w0eP%zH^iPm^VKOtnedn2XpUEDEC~<@+ zStFwD+;c~iNoUf>r-tZXyWJLoL0w`>zHh9&XnY(VeD&<;vCO-)_vzczlfU!Dt7mIJ zKlCS!!<;t34NJNOdBa2=OSI)`4_wgmIC-!6St7_oE;wSD`4;YD+kD-10C#KJ1gs=c*6;BQ9u}-)V&Bcwd8i#QHi9_*m8hpFB#j00tlXIQ$^CxGzkcAOM))-meQ7l19N!Vm z7^4q8W3~8nVMJWZtqw>?f381jzrA!aKVSLUdv~eu%cs@s{pNVzLh}c diff --git a/spine-unity/Assets/Examples/Spine/FootSoldier/Equipment/Equipment_Material.mat b/spine-unity/Assets/Examples/Spine/FootSoldier/Equipment/Equipment_Material.mat index a5e8eb96383eef7a654323e50f61e48805bd51c3..d64b6613ae6f82e1bd4e435a338fbc4726e80563 100644 GIT binary patch literal 712 zcmZuv-EY${5P$Dq;XRC}c8c@0G;dSsU}A-`R+A7y)g?Y>Mu`(_XRILp_nnI4@_5#lm-E&fdg4@@KXI zheknL&KR@dPyIr1i^i&6mn^4pclcC&$J)JD0xw%=Y{{Zf-WrrpZNZ>+(@4pFOV#4l zTN?TEV&+PdiYAqR`X8aglC6J?YUqgO@YhcO@9sdLc>zj`;CjxQQHhdqEFkAmy~K#u zNuCxJ)M=a*8D_H1&+|ER$ARdR$;(9d0gpd>BWR1Dajlv=*TL|#Sr&?G4Hd1Stpi;v z-P{6Yq}}u8tI@i?yFpF%K94w(#)1>lIz!WYXf`mAZ7(a7^;}{S--5MBG+)03ogLhx z*qVMo;}q4Y_}^+NMFC(bm)CZY0*t>!c#lkz6V~mJy338 Xm<+E**Gox#daNGZ9aeqYn<2v&5{4MIYysxD9~gv0_NfyxT8>Psw8+hrFlKvm8E-#fmVYqDbP6P?UG-@S9@ zJZ8psM8-~wto~d?*5HVP$i(=>__q3Xx!&vbJP+V@(q8Y2vzInqyR?4s@*A^Pk8L=* zZU(e~`7);=Pl=>BrKgQl#KYfLMM+P3l8yk|#+>_n#{|)>weqO^%c}~H59Pv=e8M8M{ zUes}J#5s&}1-aIu9KhPQp|n?8?g@Oz6qNZ=De&*)yGk>|^Ksr}xry^-*o^0993|E3 zojBRW<>FjJuGNk67Ryb)UWd)RZiQ0VN7l26G5KwT5b~?w?_tb%^lg%oyLDU3#hSZy zTSpFIJvXC|tQ-BTCrrslbYH&A_y)^MPQG`5n|#YoUpA6!EjxX=({kf~1^USAZUQ&g zb^YJP_0#m_`saPRoc~J33z+=~^>+lX`g zJS=iPgN7SF7h%!Q6U4doeLvd=c;C;HmYY6ahRu3Tkf)5_?c)y1-9F-dsb#Q_Puulw zAD^+@?c=kSyM25Pe7QbOl52JQ_`KyMVLjPL){XBi3g1_J-l00*7YNh;<~wb~Ae%DN8!z+xTt zK)oElmhrs<{CdXs4RBtJe)ea4#!pln_$`^6OXA7ue2_$Obum$4Cy2r+X&SgMDi0-6)>#0PGJM&7|!w)LMRn_Rel6iQ2EI5N96fs;-hw z5(i=9kl&c`7v$A2NS5Z}XhFrv(!r)u37z^!)O-d5MK6ccVl_O{kQmJ{V2kOh#(BZ4kd)5JAdKs1k0+d?)477 zY}M8xKxn^tm7h9yPgdz!0oz6(eEwe5+JIa^txI>I2=r}ip%;&ya_VswrPFl@#VtOE zz5Z`@T7oRJ5{R6orpmgizHzb6YkP1#WkT3F$p~#*>!%@+gj18@OcF2&&^SlI=z{=0-E0b2mfpq%15@w>RKR=LC2Z-;5`?VUzuPz zq&a3WjW~%iOtr)i8O5a38Ivr#HUYja3q{k_AO3Y3k!wwe8P60LAS6o}Rg$xmB{-om MO%>Zc6arQcL8+k#5;w#Is}v#?N)Isvx+PoEA0&$;Jq?0_ z2lXg|hj>r~DHXw!=&7E(TIxYW@FJe1-YOX1cXqQ(`X|Udn9R&)-+brocd~~eiku>f zE)mfH_uLVslBwj`*-`r2ZnuSCP*a$qpPD~jG(V4xyn1^2OzLA&e)&H8=+FK9^rfX= z8$;39FsBu{VM(tbIYuN|qODd-a6!+*BwzEhh@XdCaKt+Ee(pouJRYL2tZ|s<$Pa5g z$vP)_zSDo!(YYHUx#sKa(DHSi9*yfdy#W_=o^@{dI@lwlo^{u=OXIrE?tlwwah*lh zL4AGDV4;o=*O=qI@Xnq3E4=Sdf8RaK5rQ4j>))%G$Mt>p1zgY--uETzz<->okSbrC zV?WWr`M^n7;9;d7<29&fKe%dPy3V-QQblSJfE# LxJ1PJ;%fd6%}K8< diff --git a/spine-unity/Assets/Examples/Spine/FootSoldier/FS_White_Material.mat b/spine-unity/Assets/Examples/Spine/FootSoldier/FS_White_Material.mat index 3658d1fbe7bd4105592ef49d63c480c9318b8847..1205343eb31a65cb54268ad67e88c73e30780138 100644 GIT binary patch literal 711 zcmZuv!ET#C5WV{=HizV7A{GP2+#)AVqsFZpTdArlLIXSCtzfZsmo#qGf6wfaMu}Pu zfM(vC_vY=Me!E!TGJeh{r@M=5b~2nW3r#*KX^%5;UiIBH3OUawK@hlZ#MxQIL-$P9 zU{OnG^9f_d|H)q{?ok`rtDL1&?uyUl53KA5DR9+7V{#Vy@9(E6vxk-=}as5K~bR+c=9adP;? z#u?BY=8K$$yeN`jOIsU>h=;##@{;`ENzw;MS4KU#1LF(ecjB6}JSV@w$5z-}pU?0S z_}Kw_Af4;@`6MUF k6W_{KV<1_1XlJ(PXxhMPK|2z0${Je*ka8J&A7V%KY8M8M* zp4V}1!XC!ChFoi24rA>HP}*xP_XIv<9LjvD6!>@Yy-PF0vvJ;SxruWhY{qjBu9E2W zPMqxGYH<#dYjxvXZ@KB$JFuD8y-*7K$a>Z=CclpmLVg4MBa9i3{+J}>ZrwI;vF2{w zHj+bF&#mYq>qb9Agb8_{?#ovxAGW;U6d`7fnBhuKdtJ^`iwhj2CibGmM)QvR^zc_*(&Ebnvj+C~mxeX@0X zlrSML$Y&UJ>h_rBMP1L+uo=&G%ln=C@;Nj44mkIHoLuXGQ_m+XFUXG=v!1N+lTZrl z_C5Oh3&#BHKSc=fq+k2*Jnv6yW_b4VKVo@NF2VP&u=$KW0~IN0KPQpzMOb~%ox~Y_ z85TL8LBoxoE3oM2IpWOvj-Op!yyNG2%S|7z!)854$rHx!_VESF-9F-dsinJ*FWL2O zA78fI?c*z!yM25We6>D~k!yAP_?qPfVLjPL){XBi3g1_J-l00**9nvV<~w1zo9}LN zNO!(_2orKQ-@TT*`A%By<~s$xTE1m+t!}=2j~ZT(w-5pI<-2n~RHTHtqOQX~uvmv_ zsF&e4Q~pL5zn$^}U7RUWpTb7)YbGP z2D5%#!$7Z_tN9Bm;ie8SY<*CN;rZoITW%d|irs7tl zxb1zvu4GwOFg{eNG_|jCJ@jK8NLUY}rbJSeW8$+QkkZXl5w7fjPQ3i&%d+jI>=l*4|J7NkmEX;)%Sj?W`Fa**X(q_}}dy#t~x=P1^Up z@BO|vew%L|5t))`{5oHuQ8z*!3fWc89}_*z>-~gcLSz)jabG2bp__2w{zRL)s&CCZ ze7d@8WQ5Ru_pCll?jM{s%MyxKB7FYdHpYV5LSrg_kx2AqU1`?$L2?>s)|EF+1?AuR z3ijr|-bDqfG+H8ZwpwWC>*f!|OWwGHA2<`j&q*ez=v?TAR1v{!hBHOLrc8)jB#dCg zF$2r!1o`8^NR(WNp8}CYE9eTdoBI;l!SK8AY}Y#Eb=H|iqELfgvka*R2uxfNq+o#w zPE$H#vkX{3;CYg3ON~f@vTFheyK+#r{qE!6g;H|mDL@IOl?F_)N(@UCheTn{Gh?|R J`p1)=qHp84oTmT) literal 4204 zcmeH~&1(}u7{=d8qSe-q`2Dd~BUG&(qEbTI+H##+CgjedR+(xWr->IwfgIIb+NPk{mYZ5GN04_^3TyHs}Bo97jOUh z)|#}Aa@a6eENK$tcM|z5QJ1TIa6z>=`5$;Lq2dq=juA11UsVVzfH1$>-%nxxS%V%?_1V^|F~7*%Xo2? z{X_-l3n!5Sk4t@v*C3yr;IhW)8pn=v#duf51N{!AzZ=~5k!OSc9`GD^qdxAFmrAbd z?~AygcJ80&3UBsvMOp8|0m%Zc`*1Mgf)@Bp-8{y5EpAcP=Xof=G9UOH`p~NJ0q(;G zgG49B? zw(HKcm#Ph(103e<;J{E?(aMP4T`JUASa?9)j3J<9nrYe z_sF+a3QwPRiyOI>HVLUVH*@TG?}PrCp|0iAFKU+p`sUfvQgiIW;HOs~i}%(Zf58W8 zigCa=U>ql9f9|3uYKp1Gm^&x1=I5FK0Dtp`-sH@ JBGrfJZtg*#c?HPI;CRluQHqLjETQ0Wv%r`)X_1vR zG+C0DIp%Fsd?@D39ri?>PCh2O&v^K$ji3#J#V0+^f^1w*Y7qRdK+zP(M|0*w8PDN;6<;2atp&`csV-V Sw)8USp?dVNTk2k$DUrVha?|ku literal 4240 zcmeH~J8T?P6o$|2de_F`;RHyW7?UMWo+crfr!j_PHwlgvhXj-^4EXNupxqs7b~e}& z#WWy6m4*V5CKLz-2_dSaK%$@lg$kt#4^c!3WeS=o%I5#?oxPg7xT4-;9nU@Ay>sR~ zW@hh*j9e5MJ0l|Nal}DndTM%VPj#Q%?smJL2k;LGjjvpP=je@do6l}q z0L@{($Z5#)A_-3EY9kTx@b^_-lJ7l9h5+fxs3&(}d>Q<19CMcEZg!dpY_A|%=(;U{R~^~$szdv27VYnui+&;C+F=&JXCVV?9Gwq zb(|A8hjEUQYt73stbHF!d!6N;z=zC2nJ<+B|4zR5Xl8ge&U-C4aUO)tc<#ed620Du zlU-aZ&h_M4-8eT`Zu)f+HuJh4N?{*a&pO8B4-i7gZ-9S@G2_vO{tY&t(WjvzCGF=N^1T9U2)c(j!~cLq z&S%hY?7;O_ZEfkD?aZ~o$srJ$$#^mv)s-1HF8LQ zzONG|`W z!*8YhjXr)m<@0@<7o(peDPQno6$O4n78m1aro0ryVN_m;RjVC@tyyWFsss&n_y7ir zeq6^uuRC7%msG@QGqQtuwfaFAEwurT1hsnH^p`6Qzean1ryYmQH&qK~9_y%%l6D*g zt=b8{w%{+zTdg2oU5vtI6~(K^>q^CR>Yr9iDGU_7oKP#}*6Fsi{H8MJ7-FX4PNaC+ zdwxU7imYOMv|4RzUzJAa$2yR(5k_r^q$cl*&w@Zo>q`2_e`oB->>WEld9^wJdHLk%m*W%L4b7Z87!E2hsKB5Cg9;2PFsQ))s{p?{ z5Bi;&I%Rh%<`;XGJ0TywN8I-n%jE>ewfEx*69HHpJ& MRers6iQ7-P14Y=Y>Hq)$ diff --git a/spine-unity/Assets/Examples/Spine/Goblins/goblins_Atlas.asset b/spine-unity/Assets/Examples/Spine/Goblins/goblins_Atlas.asset index d6f3e301cf69034a22f9069eac9f87fb92543763..6f377a39e980ae0c8aef26edfaef11a16e13d4ef 100644 GIT binary patch literal 530 zcmZ`#K~KUk7`^XTlmng^>DP5YdqV{z5hc-!C-SvxXU*8i)|n8)f474eM~po*Y2W+a z_ud=6%{Pw(#t;o(=PNR32gGA8+tT@Cl8tq>A2A9bqd1N`6o8YPaMA8Wo2smC%{zX& zs;y;2$bR>%K8*GcE;Gvl^F|VS{@&KcqS|6@N`Ik9@?~9N*7t#O>T%YkH+6}{Uwnmo z^WW^EL{*qf5;#jOGUu!MkBb*wyMym31El99Ba*i+Oyfj>;C4o53eZlt5LzT0s7WbD z%h`zdNx-nJ{fBqqcS)>ufvi-#IkOznm=so6!E+n&4? z>q&%y?LiTWDBc85(p#?N31g6$$gBQ&tvqNH4gC{`EiA( zS?46rw*}8ao%=EJmIIwFO1`SIRpF{mPs9bCXPtY24)(~)XWjK|SGcOPBjSP?ayHA2^8|cwFimyax5`1D7pMW1L&#hWY-8`}#wH{sC~$L!Djv2f=gT-TF9BUMjh& ze>mcT26=pe8@xHf4YApWqmubt_2F2=1+DTs6?l&KHMmD?uJgE$Wj*jY^r27TqdbNW zsOLn)6J6(m|D*3)g4B9a0WX)`)`)`P^2Mfzr?3NFu)3z?Pq zvId!_#j?Pnk>#SCGk-h~c{Vwj=sw`_$6yuh5H)Ued+&QVJndD);-!I_mN3qPk=nF( zKnWTDy!UE!e&|1=A$y-j97!V)gmm80^bXoJ9LRQ%RoVqEHHmM)IV75|-=fYI9#C!U za6s!d)v5U3OUPoQ-|z78(mXuPC5+P2hH4WoVB?4%Eg5>ghxB!5MN==ZL78#6IG1%^ z!h#pb70(scHP2s#7B~azRzepzA1U-XJJL7oHXV8$P21IHEW{$FUWr0fz~LAYliEbGy4tPt~Nl24^CR z+GwIHHm+pDhM1TT!wN!7T)4rYF)^$_jSB)UT(Dqc$h7}|Z}m;xc2=(YOitH5-@SF} zJgRDLi40v5S#erKR^o_*$jI=>@Q(UUS?qK=o(HgswA11ZPr@$h%9DCq@H(g8raGU~~F7+(XwAIE~_1^FF5Hp1rmVvY~P z&vUScvbnCG&kBA|5I^WA>`# zMIGmQoWnSmk!vl=L9G13F4`^n1KF$X%H*xNP&3GQdQBu9$ ziIZJiD$bSUTHQDww%qjVC~W5S2$aG;vYt(h$sZ+zklz76g)!sNw@FIw)@?NxYwp%< z4LOAM+=xE1ZuGO3FeM+*efcWm>ntxh`9212@+~`kSx>ID?DXYv%Z>kK=p(PY0o+{I z_5TFdSLw_3&--*K|CNjvF#9>iXQ1@|B#y>^LD%hk#y44Bbn<%2@&PBW&Eyc)CttUx z2~+Zte1TE7ZqHa=*7dvyoAEqr`Ji)MK4&K1A?LbV$h8hR_1tQCNxs9F^<<5=K`E@; zx9IN`jCt>GCxm!1sQq`J_vbY;Jb(WWTV9qM@ck=nKBF%{MJn3QS>$^i)&O(|agP56 zi=5A(;l|G&u;}L{;@tYKpPfCt>*r<5O&@Q=W<5v9Q^xQ1@fFM6KH`0;rMHi-+4XK8 zU$@-t;~SQ{eS8yqsXmU9YjykhmgOa3J=sUrjqfcA-&cIzp*r8U3Df`PTeaNH_Z@Ob zZ@%vmrsQtEyDWF}-EFy>?>P8U`PRs_y7}@wYIsSGAOhygcjsQHNCk6cU59^Qu@3v7 zUXI_(_<=2vWX7MZwfqL{U32Xunt5M^IP>6~np4tF z;vj4s_8XJ_tb7m#$--0|&8j$AIMh@sp;P~)n$BRL=;g4Q9}iEqCG=;MImZw)mCVJ8 zr+w(Rl+4Ql#s}*4w)RzPMSh|KiCR(ImRK5cLVOkkQdwTnNB*3)BeO4%Kfhl6{a-6a zYZrgq{OQfRtwvEVxckZC&&5+$Ce97s{H6N$<*K2%bNj=71^N}}SD;^keg*m!_j@F{gi(J^wzOc diff --git a/spine-unity/Assets/Examples/Spine/Hero/hero-mesh_Atlas.asset b/spine-unity/Assets/Examples/Spine/Hero/hero-mesh_Atlas.asset index 56acecfdeb65b62a134d6e3785fd7ad095e2b4de..dc4bd66b2e1a77c5f237e848fa2d4e8c0b1beff4 100644 GIT binary patch literal 532 zcmZ{gOK-w35QOjf73M%s1lf-B@{P7YkxGlyUV1_sX9KSCK#o%hRs8olpsGQrK3KA6 zcJ$4TKW6J^!luj{zt5Ir)QyORo$P9Dk3l|FO*P?^G3oif->ZxXa_27EA8*~%%{}hn zOE;a79wF8CHTy(mpLC9k5_YX5^!&XsSU|P`gSEX_B>66MiK|CvISo9k+M=nUyw#Ub z;eWI98nO~|N!U4Ro@?8f8;Un&^uZ3284J%%CS=!XHw{t7Qc)x{$ru!oNK=&tf>8{q zfI{#IvBv{S5?qL19FZh@G>u_kO;V~pUP(hwuQ-Ir-hO+JV@Bb~8v#ZREiY!qP3KxiRB1Bqn5hxx< NEC#Of-%Nh;egMklo(KQ{ literal 4208 zcmeH~&1(}u7{=d8qE+KZ{QlThQz%%A#*a1>p`;15v8@y$^deZxf?Jc2H0|yx%|-U4 zAcz-11P}2df`}qsz2zWywJ1_V5JY+syj3v1&+KNI^iPm^VKOtnedn2XpUEDED0ZAE zu}DO_x#x~3ol2+9%n#DvR;wih16yKBe60U`UjIDY|N7~Pf%J!zxB7kl(VzSIE2E3Q zKJ_GwUQV0kh9zBsykR1bC0cT|2QKJYl)N|mEEeP;7aXy|d^`6MZa$CDSJpVdbL2-A zo?@M2Jl_&LYwO&Jkk<@!HYxe4&Sr(HI$a?bG{ic$0v+s;lg~Qq*{X0=XIsbxHMq`M z)s=e7?$3ZLdN zd_X-%Lmulm7yKW6-(sZJlMHyF;MybO*Gq2A9$$8?1*cS7$WV1IU#eJ>7kE%G-69WU zUf+zh?B*QDax-MQ71Kc$RZZ8jOJ>ChlBR=sMsCdeWPiWpUqA3sBmA0(zSUpJIldz* z86!~t#*}H_t{>)b3 z&`9X38Dlp5$)6}5&{(Ne#R@79yW9FZHtwSoc-2E^D;9_H+F%Ry8Vo8oja2McD|@_t zPb0ry&0H%|QKa%u|1%6&u{|0c4QThfzkULEvj>6Z6(}o%>pAO2DJsUXgo4M-0%P8! zMON0(WJzA;n72)FUd)+09*91jyi9bT@c2U;L0bfk8`8emy{wSdbBRfO4b~#jeEk-5Ht>jI zZS(<+lT@eTf3G18jbXRNr%UztJQp!aODd{OIFAh@ZZu@*lE})>L}V3?IEaju$I3gZqjIO)?Rp--1Ek&V=htp-ynS=s!malXE}mU~ zX6-a+4)aA$LtYd~a7tGjiHL{4ukw<7<4H0ENLNNZxeMc;!SBW~XL(Mp!^bArT%XVI zGW=|TJ(AA#{Ct#?Ll}NcZK7l&`nE;N<%txXHKZ^koCN)}qswhb%Y#m!Xfm?nZEP zUDyA^Tt7))u7BRAOZhLQJcrp&Fg^pN|3`2%{&Tu+7gGMH<#{Ks$1ERm^4d%eVSTc7 zdz>&KFUV<(dUbok@}jQiMc9nzNy~?w>+(4>`Hnc(-Ab-?#Hr^~mKWqQ#;hl6{4|up zx_yoQUcs36{xgISPlmPs-t)dqGsCm@f7$Y){0iSc!R9l%9V$}Ne$FD_Yp{l(JBTy< zH(2C+1`RiUZos0S=ZG`wdwxdyc+b!CmYY7_g3Wr4ktdAb?c)oUyM4s_QcHgyU$X1n zKE7iwC)eus@iof}!g{igtQ+536uz(cyhC-quM;N!&3DprH{YG) zkp6sk5hmnrzPl}V^W9^)o9`6(Qu$WMwYvH8J!*JC-bMt>m+#KKP>~Ymin&S|@EbBS6G!7yvq2n2Qwylo;DhwJ{Via2dXcCcS{-VdYMHo$?PR*#$hT&3aHXz!kH$6@m=)xw#F=GDBC zb{qw*+7Z7t?a#^4RuFe)qHs<{ap!PdshCdvQ))JafuffqYGJB%sx2+QsmwWsn5lR^ zQatU1-%zq39gGiFt8MM8(g^)n2NE{Is4bDyuc^jYvsKB5Cg9;2PFsQ)) zt^mIa>naMjHC4NQ%12 diff --git a/spine-unity/Assets/Examples/Spine/Raggedy Spineboy/Raggedy Spineboy_Atlas.asset b/spine-unity/Assets/Examples/Spine/Raggedy Spineboy/Raggedy Spineboy_Atlas.asset index d92752ae65fd37cb8723b562b6580c0eba624c2d..a5a9288523d8332d2ebc2361fedffe9722ce79f4 100644 GIT binary patch literal 539 zcmZ{h!B4_46vprSE6M>+jO=Y?TYEzVBoQUz#S?j5+gURgnDe$Ywu|I6s}7Se0N|eQ`+XOHk{fpg{qZ(cS>394 z{4`ZtbB~b2{#kse%sv>YmIdYwC&9VAt(8Wx#afm2BH`pqn?kMco#ZsotV^rv5{tk6 z6&}=ovx^c%p(H18wpvJItNIVcF00Ma4x9mI=S?OgZ;hMASOB9s4N?K9W6D^@A_{?; z1r#+6C&YF~#YuD_esV;dykMRy*^%ARluA_Her^kF1{`rlqbNm8!#HJ_MDiL2U2F!6rvC>2H`@@dJSj@56NnQ@SsDRN TP^L+sS)@e9D8xUW;mP|3n2?}# literal 4216 zcmeH~&1(}u7{=d8qEYKd{Qij52oqsDceXut)XWt}^|4)(~ZXYKWD*0`>-CE$YQxXvNg zL46(2V4;=|SD53y@XoFJCwSkV{=VCoBLq95*S}pckL&yH2)LjD-uD&jz<->okSbrC zVL#Ep`M^nJz{5&E&TCN5E^yVtbd_@_xnaIL;GTYuufGReO4Qk=zZX0M-mZ`H+3x1VO0-&Zu!uu@dA(G z1L`>v@JQRa;Q#3P79qW!gwKmbr*@%#wB%H4{SC*i)JxS$nx=+xrLvvB#Dk*cOz=SE zb=|NVPPSgRoitfa*{UOprYy&rydF!JQ?M~}`I?pZ63&Se*7qR&>B@)kZ& z6UG7KfN{V$U>q317(l2jsO4v diff --git a/spine-unity/Assets/Examples/Spine/Raggedy Spineboy/Raggedy Spineboy_Material.mat b/spine-unity/Assets/Examples/Spine/Raggedy Spineboy/Raggedy Spineboy_Material.mat index 9361d8494c3066a7c471b06e6c0f22de4b6cb35d..869eece953db8afc56361e1808b23048e7bcb8a5 100644 GIT binary patch literal 719 zcmZuv!EV$r5WVkLxQBAut>R>pCb?Bh3l&{hx~obEq1D8mq(+GyIZkOn{5xZ(RIR`V z%bI!f-puoye!1A*Fn-1tr-zGo>|{J)4w`b*%1wzp6Q*0n5$EM%wOaXX%-NfmNB%6f z;Ls{)%LQXYc&VQ#@6Zm)=#pg=?v9_T?Gu~ zPnC$1EEmNZ3c6y+&odBNoffZ5^PHY_FQE0Dk7W9iO?3O&=0j^z*8{pa9ffpQ0$+I5 c8X(^Sm>S-U&eSz63GJ+}?v5MN8aq4k2eIba7ytkO literal 4252 zcmeH~J8T?P6o$|2de^OKO zifKTCJ`K1@gODO2L={UQQBXh>swh=>hyo=kQ;-5hS^odt*{ivWE9yPg@!a#>J7>;g zX7-NA$ePHeRT0^YBMu@H;}he1>U-r@x7+nRfcr?h-P4z^jNZJmZRP6whp(U6zPfb| zw1D|Cry(zjq&TIkja0-qVlAnA{ppHgmp-Vft5>kE?iGirLd2zX9HvMdkG=r*TFx+nDOY_Bqew2wuOr|ck8y5 z9Kw3;L?2l<`q@U9k`L*=e39|(mY1A-?*}*emYu%rAlF)U`tpF~#{UNNk=GpsH`jIj zKgjjd^yT{JeY&3iO2!MA{S;$9T=f4Cj>dmM*X`?!KWur?$?Flzhn&2|$RVsxzHW~a zrsO6045MD%9<#ix>v;|~<9XcjVduJh&P=`|&UK$8*E-_V^C`*FN3R=1C@SzZ#>lYL~}_}-%MeZ}V;s`GuFF#T`7)0VsWzCjM@ z&-YEjl-$jCpXF}8`z?3#odI7j-zvFQH($O-4KK;Nh=BR>-FW~iQo&qV*Wn*ntivqS z%ki5Tf4h(0%J{)P&Wq8{p^VS@iHbwNDf9D5JULSflPI29NmQ#HMy)AXJYEf(YIZ*c z^M2C6K(AY9_%#)C+KlYrpz3@W#kDrTp)hD9i~drz=?Ap;Ew__s@u+Iy%p=QcSxGyI z!&Y$259a(Od8ZX7o%uLgQgPB*XegD?seekEXRtc zo%EYZR-}XR;d;HTeN~&0pXflMW)!z2mOxI3&w@ZI8!P(Ae|%T=g!=;d^Q$dCT-!8R zJ$HWWk^!5QX>r3Nz4&pj_ev;*GXIkxGlyE}hWXK2ujAL5WidRs8olpsGPtJy^2u z-MjDI@NKq!WH5$c_&Qs%K|5d$ccLw=J0^Ops{JUA07MXmVOIsOKSM6fSo3tHWK$*HGVm5%BXi@)_H z?&-hYd5N+hEf}1w=GwZd{zLJiYI|@!XMpsaWW;u@_1&0B$hnzDQweA?p64o0I7F02 z91V|0%pDITSaKnL@g)>x_q^EK==3m?13!1F5vt)sLV&V}Dmr7@#CLSbBt`X2L%VN=V%MX7y8pD+*r`QllqY&c^Q;t5R0b>%12q{T_ IJmXXF4J13Bl>h($ literal 4204 zcmeH~&1(}u7{=d8qE+ih{Qg*LBNVJX1f_-|NKA-{Rw+jG;-QuWQ<{>rC0V4o?a7-+ zPg3wuFGZ-Lc=RUp7Vu=zgG!+uqz4guYr*(DvzukoKS6e2GBdw<=b3k&$sR@|c1|Q- z5s`yv(TJpyspN(6LHXNiwUh#=X)N(ijh`HFy#_ zy%_KE=h`}tBjPUmIy;PbQ)j2aO`WcQE4c)nN4^gC$m+Sye0Ce$)Y%hoB@4)N6gteW zn;H;m`)~`K=i-^$`A=Zqb${P|;4BJ`nECJ5%;V<12Li6-2KHTo4*ln?Dp$v=i|~_` z92YJsLmt)o7S=GIL*%+f`d44vrcKMUY?#xOLeSJu9Swap;NS-33PN^-@VeT zldacFPFifIV%HfZRof}m%66sh2aWjSwB8u|WHw&o*DDpj^>PwfZM@Nh-;qpO!%tmn zvoQZWrygWB`!tkq&4xYqaVa-{yIK8kU8Oww&fXgkLwl2yiW71 zsG!c0MX|s|Q|HTk&fIYz?sPIT(S5?>4{Zdk5Hzl3``~&Qp4VE0;)Q~Wc2L%Vs-hXClVw9FtRGV-f8%Eq{$k59*ByU5@lAJI33W{c#tRT;_ zDiKiSoTq|UF~XbBJf~;f)zEp)CklPej`a1rO@|&w(^zy7ip7{{O4?QRS8gAZ*%tSnf*{3syS&svMn1%!qoV7$R--`yRu-Dzg0*d`w4 zqKTfkc#;bjBQYVwZ~zh#4_-8I(QpDa9t?QoKw=DG{r}&0_RYL&PoDQ_o}Kskz3)8p ze9TPW5$U@kvf_-0ti%xqk($YpE;^FV>yd>XwlJo%5l~GTYVSE$(5gc=t=j1o|SPz@)^BFz@ zKU-nR7%8|Pz|n>hEuW;~DMD2ZP0 z#K|r$73WHFt!|vFEI0l705o&l}n!9xy zB!{q`>(NKnjegb;CgeT3FJGm6t>pzL->1M$zD1`m>&UehoxVJ6x$(aoedKkAz|D1C z|Icv!1bw;wd7m!jzm)PEWv)k%S zZn@jXH!OGi_$K&LeHh|$1%L~GKvX87A-&+*EulT$}b-r&CCjZTM!g4p?-Qf3c`^Dql=3M*R#D*BWqLY}#wKTiIE*G2V%2B{VPjloPn3hYIDmKLACgC7|k>R4h7X(JnPSu>wcB?p7~}R&c3G_IP=K7npe_{ zqo7ee=2xfuIXT`4;>GDGoKsP}c(kTeOsD>7HIu?X(aSNlFxfcWl!ia6%sGabsdzq8 zJnbXDu4F+LF+N`9hrTB{PE4e_kXPz zD_{O;_|re{*Q;6n-KyyS*yG#@8R0iK_rA0^$Ne-`2Mufu_+6h|;nx8r!FG{qglqZzjjc%> NRw{Di`gLwUcNpB=ciwN$p4~tDqo?O~ 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

B|E2p=4j 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

oMFQ4~eSP(accilx|E2vZajbR`UI5XUyO z##F7zgw{|DvBC_?1j|HTHm6(1jdR9zbvdtn_q)eWoIBgAR;x0+50V)M1j|ZlX+zpj zJRBh;mz9JPFc76~)CcajPA@ePVwHH=f92HkX=vBB?W)pmT8z;Rf_xt0cml1Nyu9bb z1K1N$Ie>BivSKNl3Y^Jh7`B%u(i)u2LU|r2T|0*;g2ZvsWR)ujG8vLg2I6NVV73E6 z5Zvc@d!B6@*VjCL0!=;aklgI$OPeMgGOL-HB@V)nnUnEy&&_;y>B)HSW4E2z4y>;e z6~j>)LhT=3ix%Xsxd`U(DpD9bfBtzosYo0K!Aby=$--ekL*NPE$HruR<$55>{pdHh z&b)H#(-W>*a^l8g4qv!_@Y(02+}p?div78;Qb7<@B{0SfAby-|e=X14MCb z0%CmQ@#?-#Rc*G|Wk;ZWA2y})M(X2+T~(N&q1u7SS5;GmvZ!worg66r|$1 z(avg6e5_;qu8w1l_U0V@s^&>^W;QCvQE@d0B?wgM_6NOzyB>sp=JDuQwGv`{AwUy_eFZJ!&lN%i9_k&V74yqMfHgPtxiQy}06%AN9#a(EhP*_S%5JifQ}ZYus!*O({!fWulYwM1fbYZP3sUtnaV3+D z_ROE(pFiVN>NO}BZE|KMlpTMyrZok4l9bG z!AHNfW8IB)Q9(^mlu=QF{H>ydF(|w|!Ei8ua{)}3M1fZXxBy%-a9F62&t|at!G|Zl zbR#ac}FZQ6o-aPtu;Ajh5{15gk+($FcCy7 z@qs>-Qi}>0B$9YcCe2ABUjqTbDB{Y#e*J&XeN*Yta?hqceZ5*lasYfJOQ)2hwa)k% zA!~HbTBk|CO@M8%f{a*XM4%)QGc8~#S?q!=VB45^0yB?y9H-6CILh-#{0vMsCt*{Q z2@X9h(x;y!g%w9S>^Ky3_nJNba;<;uFMiBl>U~Z;!9%U!pG+XWcfUmY08|^G;xaMq zmB=(Fy$QDN^4HP@jDiBjpfGm+TreC2;2Z#pL`0=8Fo%R(vf{u>zB!+#2iHH-cK&Z~ zo|Dfv1vg%J$%AHae^1YIoAp3X50{EX849a;BjQ*lBF7#YfT*I2w)L$nMf3CX($vNu~uSZyfihj5*uSpY}i^rC{CBp!6l9z zBJqf-IoAuD^SP+S^G$1G6E(NCskUhcIrH9iacAq?*@bHN-e}MJKkZ(0%Z={+)qeQI zcZ_HHykkr^4s>G<>jcGkRCFMt0Puo~`L_VV7!+O^aG0M)4NCwhh=i0(GkYv>nll;h zFPHh!pZ?^q+j@KQUtMvny2(c?r zV`3Pw3|J--1rjC%npK=}oN6JPt2ShFQCnM^88>c%?woV5f5f}qI;}9iqpDkj*4yuk=8(AjL zI?83O*+3+WV?@SKY>lMFu$#D-s)l70V))i3|f)fnvoRWgT}Qo6Uu}Ts~+Y-)Y8An53s1z96^kjjx%J zZ*Ob4`H*AXbDq7Qkq8$*9}j%N2lip4BeCY1RNsgc|FQG{BmQ$TDoXg9UDPosyfUER zr&0R^D{`tLI*ouPu_zJ1){0Z`JudjZ{ow;^CcNXGJEnAG3YA-5cln)BSYE&O$;Zcc zckgaAVHlGjsKPcFMJ_8XmPCcdAdDgcb7Yvbm&wLXKI>=N+OoN>ss57l&TgBtWI>@= zESaQPkw_p=brAxRegvtH5{AV_kkl%dqu)J|&P~R|?E0>L=ISrYHNXDhj?KHahhl{Y zFln;Ej@Ilt9#k@A=fGMbfu&?bI#x-P5IDpY*KwjkE?+DZ8mk=>C)u{HDSGCLWeta) zed^rO*KQnt)YVsFQ&{TD0N-y0Zq6oS&-MEmqB>`}gagUTdp+_f<@(TnWNJieb=T z2rj!0LZZB}7EokJJ1%E@-*0Tx+4eTKY06ap$k(0M(LAx!3o2CuPD+fmZBdK_3dAI% zyc?xvhLSj;5hQ75N=lT;=<_fjV$JLnEAG#~@Z}xf{qgsa#sTlo z15egP1OW~lZyr6X@Mpnb3<_iCZ&{USA%MzZSoE}>rid;iqLTqQuow~%E@XVpxvu@u zgAa|n^zJ(*WR+We=!6R&-IBp`y<48QdZ@gwf2imUg+VTcaHOa)R-7lLEF7)L^Sn%B zgUYtHx_)!BGy8<&n&+Odvbj1`O8SJE6EGwpfpBVm!c0;F!pMRqda-SDBd_5^U?9Up zp6hy#{O0z3*IfO{b$fR0h+za8AWaYkv8Oa?R>mPFMFdAFxZpq&g}%~3CYy`Ae1ZIl zlM2(8Ee^UCA3k~WS8iDG*5Cff@qnLC0zS-1bWk4^)F2Rzf&uD2z9fJ!28CBH7%~7_ z3CIvotVWS_wO&QQTZm|e2uctMU9DAHE@wCH?9RRare99Ed!WzxdFx>tJ5D}o-N3G0 zJEf z25FZSc}m3|YjTyc8Lh=3j$Kw^*2@^b&=7kEAFLaeEy}smXHEa{$F4kT_4+4J0DXKs zrHT#Z6*74X^N*rRFb^WlAFG%C;*)A_% z+|=9AdGJ^N@$wZry1R?*z&jd&doW^n64nWac9e+tk_N&U6vn`y31|V30f0&rl>op| z>Uc%;79u(nK+%ZAImhL;Y}P)yX-mU9JCA$q11$>m^CY9YMMhWYVZnqZ~KFfZMyddKf3*~ zd+*t{e|LApam>lCD1xW7Zft0Da@j0=Dw;3E90r>w?DJN-?DRiYb6Lg@x6@G+T7MS zZAx2YgvTvBtl^+lD_g^2IZlEA5@Ld_z2m24NMg1a210G)6V*i#BuXhe{PjfO^n094 z)-CPc-Lvjzzq$4C-`)1qmdBqMFhNK<*;J)6+Tq65Rwtita5J9AO_L^NT8=opJ@T^4 zkNt;>jy))wt^DA1ue+n*=x?0ym9O453I_5bDZ>BSCEECRa3RN_Fm^`3aQS5#f(8It zBqImm?ty`RhgGg6ms>@^g-o<4Z7-;_Wpe?n&~NU0sQn+-+|xb?iEf^M%EJpUJm=AU zJ-exI*Y0dkt-6xUG`r*4Ta8i~WHNfr*{6(m8}ix&p-qB;Gy+gbM?rGANhqyE)Wk$2 zQ<4?{DQ2s*Hc1~;Qr=`{A!1RU>%>E)!5zQ5@1Ct|9(i=#>RY$R1A{T*Si4G*c0ISb zwbjivx3~@CI&y`T%i6f34pE_EBDL zFc^cv*!e?XAOM9_fYbmi1i|isfx*1zwdXwVL;}tsqC+9#_>NO)%jU|v_xAbUxaGGK zKDTR2e!Ab-_oFi|dbqG+;f`ovKzyw;gJCc!fMf>-2YJ%UBRe`5AJ!NZ%TcYH5p|=| zP+V(b04cV$mnt!Vm@Kgpf`jd^ZWbvKK#VJTW-5!Q*rCI z3db?A5c|2Dmmk-WY3Q0<;01GAyyZ)dc+<%zUeI0KXKsJ{CEXqQ9Pb?HzvkTQum5-a z;Z8)n9Dy(fg|YL;;805^yy5FWsPvUeCEsx-`r0{;fRl;n5Qt#ngtI~dTZgbb}D_{S%XC|&#^ejh_-nVz}q`uyL1*fCEF#XiyCJV%hu`((}kh%)Q zNI5e3ePL!{#dhS+kfs~T)=~(il;Mny{~s~OR=}Fx$D>!GYVau4N<8Q*PxJEcMflXl5|*#>a>O$7-}LV zD`ja!R}fCq3ijP>xTELU;ysVtYzK?IX3O?Hac^H}L0WaRHpT}Z)Df*Zvgwy^dG|#h zxbtT-?|j2W-HRrS4|f%ZvLdpnYUB63=KAX&c_qPM3<_iCe*%X>no{VR;X!&?szX5# zcv`n8<|QOpMMO(IrP|uExoW8rR&T#|P2&e1dtl-oSbX}RrCU$F^wPCe9S`Ovjh{Mg z`Qq8}P{mkl>lDPgAI_z-+20&y{8{Cx3p`ps3Gtz%bLKN%g_7j*Pj31 zhQh{|z=a!w!r1wrL=6Q18Kldgk(4kQgaCqSXiPyfAHqb(lE})8<94;?^5wq$gVo>O z{XpB5>mME03&F=19RKX{^UvG9^%w$0XrIfWI zq?l}4iUgQNDP=??`M%`WmR*O%n5cUH6E~Ue-d$jZM6orlq@UA7>q$-?EJZK@F2*gA|$6DRr+}hpp1#{iLN^0r1G0S{qblKQ0yc$8t~&F&>+XCdfnW>@W9Kgg14EEaMaWvz zFbs%vwy8EWG)I8*Sm^k?>r83RWP+alV(I2b9&P;RM;>hIf#{DeIiYgi2j4R|^SI?D zWsHrjC=S$|+8Yvar8 z5{*G&?ELv~xa=}F1%pG$v|_U5Ep<>%VKJ0O5Yr)8PN3s*j`CvM zN7gj{KCJi`Ogl7w`x`GR&U?f8#ir&$Y(*$CMoDam1W5@}gqg{vt<99Ib0k}9enidW zl>l;`Ox)YQv$AIGJy1$lXHVYy%-T&;KJ-uTdBeXhU07K-b!ugAvBVmrv?Zl1eW&c$ zkIekaHNh+Sc^!ko*!fGrzyMqt0YS}!z2-gWrV&J#Mh}eyEC+Cwubq|6xomS7M&(D> zZH&M5-~)x94D4-~(K;UQU3ucrQEz|C;FKd5l|81|iZF=8MsecRl(a@e>~N%TfSD@@ zAgvtd5=m|C+<7Qs=9=(GmMJ-nb@zZ#j+rcGOL`;$**zu&VXQ}KPQnlL>&ZN)Lw zIVT=d?p%39HQShtSYSW|D|Xlz8i^+pLou_X3zeR}+x9-QW$n#Ze)0_~I}3%5u1+-= zMxq5;S&9tHS3)J9o_+1LW0zqJ3S;N53<$=E5Lp96?ZIiZ;7ii?5CZ4`a0CfX^hm92 z^fH}3>*~N@vHZ;Dt?KrtpYngvv&$V+tPW~yx2H^*9j;ikI2eD(>}vC(L&MBLU4}EB zg-9eo7?-N$uy3H)_rx>hUw`KF2X*A6^`s*g*?nQ;B!k%SE#bF@<$ZImxpw#1Gd2c= zvGcc&9_r8V3r`3dfG>ciB%;Uzm`{S^97`)b)-&>+m-n<26wBrEuHD`8JJ~ZzPz*$dhQyW!Y#isvPB^Y>a`UR?hnFHvDl$eSiBxt0_|V*I zu3bI$ER8{7?EL=)1nQ!PVRz@$t+}R4SR?}GK_pnHEFG={i#^t}T*t}zjx)qerJ-_J zibEyo-`|g2dwaQ99O5{NnT?f#=U2Ph+v9v&ljF5Fa_lOq#<8UlKz#$iC+A*stsQ%2 z#-K2E{(j(44+Q|g+-t6t^_O2(D{X2d5kww>=}Ksc5*)*p77<~*W+hBi)>?&HYomy5 zZ3UgN7J-dXjzg)6u`;q@$pf$nz!h_^x%RQKXJZTsW9RP-4gz4#9})TL0O6z?wA&$= z$3jaPSVV$Z1hfHgC0)}dgvgS_Ht~fO0M;hahe{vc0Pu;iC}9i=W9MaX)?a>^lfK($ z2$+bZrFtfSxd7$>m?S_`dig6zIxCU>I*(*$!zFXCx%QE?bw`g|Rbs#?BZN#?IIojv@}2Zk&6~Sm)v&JO2+y(h@q><*^R{0000+yO literal 0 HcmV?d00001 diff --git a/spine-unity/Assets/Examples/Spine/Spineboy/Equips/goggles-tacticalvisor.png.meta b/spine-unity/Assets/Examples/Spine/Spineboy/Equips/goggles-tacticalvisor.png.meta new file mode 100644 index 000000000..ed7f2934a --- /dev/null +++ b/spine-unity/Assets/Examples/Spine/Spineboy/Equips/goggles-tacticalvisor.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 4f554405f8f06164db0773d689da243c +timeCreated: 1489559534 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 0 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.json b/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.json index c292d314e..5b603a746 100644 --- a/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.json +++ b/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.json @@ -1,7 +1,7 @@ { "skeleton": { - "hash": "plE/WkyO3wvHACP5BGQggZYRRXM", - "spine": "3.6.07-beta", + "hash": "Y26zlNQJnWO557F8ZD/2NjtP3n0", + "spine": "3.6.09-beta", "width": 470.71, "height": 731.57, "images": "C:/Program Files (x86)/Spine/examples/spineboy/images/" @@ -3419,6 +3419,321 @@ } } }, + "jump rm": { + "slots": { + "front_fist": { + "attachment": [ + { "time": 0, "name": "front_fist_open" }, + { "time": 0.2, "name": "front_fist_closed" }, + { "time": 0.6667, "name": "front_fist_open" } + ] + }, + "mouth": { + "attachment": [ + { "time": 0, "name": "mouth_grind" } + ] + }, + "torso": { + "attachment": [ + { "time": 0, "name": "torso" } + ] + } + }, + "bones": { + "front_thigh": { + "rotate": [ + { + "time": 0, + "angle": 91.53, + "curve": [ 0.278, 0.46, 0.764, 1 ] + }, + { + "time": 0.2, + "angle": -35.84, + "curve": [ 0.761, 0, 0.75, 1 ] + }, + { "time": 0.4333, "angle": 127.74 }, + { + "time": 0.7333, + "angle": 48.18, + "curve": [ 0.227, 0.27, 0.433, 1 ] + }, + { "time": 0.8333, "angle": 25.35 }, + { "time": 0.9333, "angle": 45.38 }, + { "time": 1.0333, "angle": 38.12 }, + { "time": 1.1333, "angle": 25.35 }, + { "time": 1.3333, "angle": 91.53 } + ], + "translate": [ + { "time": 0, "x": -2.57, "y": 5.78 }, + { "time": 0.4333, "x": 8.3, "y": 7.99 }, + { "time": 0.7333, "x": 7.21, "y": -4 }, + { "time": 1.3333, "x": -2.57, "y": 5.78 } + ] + }, + "torso": { + "rotate": [ + { "time": 0, "angle": -42.64 }, + { "time": 0.2, "angle": -5.74 }, + { "time": 0.4333, "angle": -50.76 }, + { "time": 0.7333, "angle": 1.9 }, + { "time": 0.8333, "angle": 11.59 }, + { "time": 0.9667, "angle": -1.9 }, + { "time": 1.1333, "angle": 11.59 }, + { "time": 1.3333, "angle": -42.64 } + ] + }, + "rear_thigh": { + "rotate": [ + { "time": 0, "angle": -26.32 }, + { "time": 0.2, "angle": 121.44 }, + { "time": 0.4333, "angle": 70.55 }, + { + "time": 0.7333, + "angle": 79.9, + "curve": [ 0.296, 0.3, 0.59, 1 ] + }, + { "time": 0.8333, "angle": 99.12 }, + { "time": 0.9333, "angle": 74.06 }, + { "time": 1.0333, "angle": 98.05 }, + { "time": 1.1333, "angle": 99.12 }, + { "time": 1.3333, "angle": -26.32 } + ], + "translate": [ + { "time": 0, "x": -0.56, "y": -0.32 }, + { "time": 0.4333, "x": -8.5, "y": 10.58 }, + { "time": 0.7333, "x": -1.96, "y": -0.32 }, + { "time": 1.3333, "x": -0.56, "y": -0.32 } + ] + }, + "rear_shin": { + "rotate": [ + { "time": 0, "angle": -78.69 }, + { "time": 0.4333, "angle": -55.56 }, + { "time": 0.7333, "angle": -62.84 }, + { "time": 0.8333, "angle": -80.75 }, + { "time": 0.9333, "angle": -41.13 }, + { "time": 1.0333, "angle": -77.4 }, + { "time": 1.1333, "angle": -80.75 }, + { "time": 1.3333, "angle": -78.69 } + ] + }, + "front_upper_arm": { + "rotate": [ + { "time": 0, "angle": -22.62 }, + { "time": 0.2, "angle": -246.69 }, + { + "time": 0.6, + "angle": 11.28, + "curve": [ 0.246, 0, 0.633, 0.54 ] + }, + { + "time": 0.7333, + "angle": -57.46, + "curve": [ 0.38, 0.53, 0.745, 1 ] + }, + { "time": 0.8667, "angle": -112.6 }, + { "time": 0.9333, "angle": -102.17 }, + { "time": 1.0333, "angle": -108.61 }, + { "time": 1.1333, "angle": -112.6 }, + { "time": 1.3333, "angle": -22.62 } + ], + "translate": [ + { "time": 0, "x": 6.08, "y": 7.15 }, + { "time": 0.2, "x": 7.23, "y": -13.13, "curve": "stepped" }, + { "time": 0.7333, "x": 7.23, "y": -13.13 }, + { "time": 1.3333, "x": 6.08, "y": 7.15 } + ] + }, + "front_bracer": { + "rotate": [ + { "time": 0, "angle": 66.47 }, + { "time": 0.2, "angle": 42.4 }, + { "time": 0.4333, "angle": 26.06 }, + { "time": 0.7333, "angle": 13.28 }, + { "time": 0.8667, "angle": -28.65 }, + { "time": 0.9333, "angle": -22.31 }, + { "time": 1.0333, "angle": -35.39 }, + { "time": 1.1333, "angle": -28.65 }, + { "time": 1.3333, "angle": 66.47 } + ] + }, + "front_fist": { + "rotate": [ + { "time": 0, "angle": -28.43 }, + { "time": 0.4333, "angle": -45.61 }, + { "time": 0.7333, "angle": -53.66 }, + { "time": 0.8667, "angle": 7.56 }, + { "time": 0.9333, "angle": 31.16 }, + { "time": 1.0333, "angle": -32.59 }, + { "time": 1.1333, "angle": 7.56 }, + { "time": 1.3333, "angle": -28.43 } + ] + }, + "rear_upper_arm": { + "rotate": [ + { "time": 0, "angle": 39.69 }, + { "time": 0.2, "angle": 276.58 }, + { "time": 0.3, "angle": 17.74 }, + { "time": 0.4333, "angle": 83.38 }, + { + "time": 0.6, + "angle": -4.72, + "curve": [ 0.246, 0, 0.633, 0.54 ] + }, + { + "time": 0.7333, + "angle": -69.63, + "curve": [ 0.343, 0.36, 0.68, 0.71 ] + }, + { + "time": 0.7667, + "angle": 321.47, + "curve": [ 0.334, 0.33, 0.667, 0.67 ] + }, + { + "time": 0.8, + "angle": 33.71, + "curve": [ 0.359, 0.64, 0.694, 1 ] + }, + { "time": 0.8667, "angle": 34.56 }, + { "time": 1.0333, "angle": 71.97 }, + { "time": 1.1333, "angle": 34.56 }, + { "time": 1.3333, "angle": 39.69 } + ], + "translate": [ + { "time": 0, "x": -3.1, "y": -4.87 }, + { "time": 0.2, "x": 23.33, "y": 49.07 }, + { "time": 0.4333, "x": 20.78, "y": 40.21 }, + { "time": 1.3333, "x": -3.1, "y": -4.87 } + ] + }, + "rear_bracer": { + "rotate": [ + { "time": 0, "angle": 29.67 }, + { "time": 0.2, "angle": 45.07 }, + { "time": 0.4333, "angle": -4.35 }, + { "time": 0.7667, "angle": 61.69 }, + { "time": 0.8, "angle": 82.6 }, + { "time": 0.8667, "angle": 80.06 }, + { "time": 1.0333, "angle": 57.56 }, + { "time": 1.1333, "angle": 80.06 }, + { "time": 1.3333, "angle": 29.67 } + ] + }, + "neck": { + "rotate": [ + { "time": 0, "angle": 24.91 }, + { "time": 0.2, "angle": 16.32 }, + { "time": 0.4333, "angle": 7.45 }, + { "time": 0.7333, "angle": -20.35 }, + { "time": 0.8333, "angle": -0.69, "curve": "stepped" }, + { "time": 1.1333, "angle": -0.69 }, + { "time": 1.3333, "angle": 24.91 } + ] + }, + "head": { + "rotate": [ + { "time": 0, "angle": 24.92 }, + { "time": 0.2, "angle": 10.36 }, + { "time": 0.4333, "angle": 28.65 }, + { "time": 0.7333, "angle": -2.66 }, + { "time": 0.8333, "angle": -28.94, "curve": "stepped" }, + { "time": 1.1333, "angle": -28.94 }, + { "time": 1.3333, "angle": 24.92 } + ] + }, + "front_shin": { + "rotate": [ + { + "time": 0, + "angle": -90.63, + "curve": [ 0.416, 0.55, 0.743, 1 ] + }, + { + "time": 0.2, + "angle": -10.52, + "curve": [ 0.644, 0.01, 0.75, 1 ] + }, + { "time": 0.4333, "angle": -127.72 }, + { "time": 0.7333, "angle": -19.92 }, + { "time": 0.8333, "angle": -5.17 }, + { "time": 0.9333, "angle": -35.06 }, + { "time": 1.0333, "angle": -43.97 }, + { "time": 1.1333, "angle": -5.17 }, + { "time": 1.3333, "angle": -90.63 } + ] + }, + "front_foot": { + "rotate": [ + { "time": 0, "angle": -0.8 }, + { "time": 0.0333, "angle": 16.28 }, + { "time": 0.0667, "angle": 23.52 }, + { "time": 0.1, "angle": 21.02 }, + { "time": 0.1333, "angle": 10.93 }, + { "time": 0.2, "angle": -38.46 }, + { "time": 0.4333, "angle": 6.62 }, + { "time": 0.7333, "angle": -11.52 }, + { "time": 1.0333, "angle": -22.92 }, + { "time": 1.3333, "angle": -0.8 } + ] + }, + "rear_foot": { + "rotate": [ + { "time": 0, "angle": -12.78 }, + { "time": 0.2, "angle": 17.06 }, + { "time": 0.4333, "angle": 19.45 }, + { "time": 0.7333, "angle": 2.67 }, + { "time": 1.0333, "angle": -28.5 }, + { "time": 1.3333, "angle": -12.78 } + ] + }, + "gun": { + "rotate": [ + { "time": 0, "angle": 6.18 }, + { "time": 0.2, "angle": 30.81 }, + { "time": 0.4333, "angle": 13.26 }, + { "time": 0.7333, "angle": 14.98 }, + { "time": 0.7667, "angle": 25.65 }, + { "time": 0.8, "angle": 20.62 }, + { "time": 0.8667, "angle": 64.53 }, + { "time": 1.0333, "angle": 8.6 }, + { "time": 1.1333, "angle": 64.53 }, + { "time": 1.3333, "angle": 6.18 } + ] + }, + "root": { + "translate": [ + { + "time": 0, + "x": 0.04, + "y": 0.48, + "curve": [ 0.233, 1.01, 0.75, 1 ] + }, + { + "time": 0.2, + "x": 0.04, + "y": 261.61, + "curve": [ 0.232, 0.48, 0.599, 0.79 ] + }, + { + "time": 0.7667, + "x": 0.04, + "y": 675.33, + "curve": [ 0.33, 0.17, 0.661, 0.22 ] + }, + { "time": 1.1333, "x": 0.04, "y": 81.6 }, + { "time": 1.3333, "x": 0.04, "y": 0.48 } + ] + }, + "hip": { + "translate": [ + { "time": 0, "x": 0, "y": -79.87, "curve": "stepped" }, + { "time": 1.3333, "x": 0, "y": -79.87 } + ] + } + } + }, "lastframehidehead": { "slots": { "eye": { @@ -4223,6 +4538,388 @@ { "time": 0.4, "name": "footstep", "int": 1 } ] }, + "run rm": { + "slots": { + "front_fist": { + "attachment": [ + { "time": 0, "name": "front_fist_closed" } + ] + }, + "mouth": { + "attachment": [ + { "time": 0, "name": "mouth_grind" } + ] + }, + "torso": { + "attachment": [ + { "time": 0, "name": "torso" } + ] + } + }, + "bones": { + "front_thigh": { + "rotate": [ + { + "time": 0, + "angle": 42.05, + "curve": [ 0.196, 0.86, 0.75, 1 ] + }, + { "time": 0.0667, "angle": 46.08 }, + { "time": 0.1333, "angle": -20.29 }, + { "time": 0.2, "angle": -27.24 }, + { "time": 0.2667, "angle": -47.17 }, + { "time": 0.3333, "angle": -39.79 }, + { "time": 0.4, "angle": -25.86 }, + { "time": 0.4667, "angle": 14.35 }, + { "time": 0.5333, "angle": 55.63 }, + { "time": 0.6, "angle": 69.65 }, + { "time": 0.6667, "angle": 86.41 }, + { "time": 0.7333, "angle": 65.88 }, + { "time": 0.8, "angle": 42.05 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.0333, "x": -5.8, "y": 11.16 }, + { "time": 0.0667, "x": -5.13, "y": 11.55 }, + { "time": 0.1333, "x": -7.7, "y": 8.99 }, + { "time": 0.5333, "x": -1.26, "y": 3.83 }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "torso": { + "rotate": [ + { "time": 0, "angle": -39.71 }, + { "time": 0.2, "angle": -57.29 }, + { "time": 0.4, "angle": -39.71 }, + { "time": 0.6, "angle": -57.29 }, + { "time": 0.8, "angle": -39.71 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "rear_thigh": { + "rotate": [ + { "time": 0, "angle": -56.59 }, + { "time": 0.0667, "angle": -21.57 }, + { "time": 0.1333, "angle": 27.95 }, + { "time": 0.2, "angle": 42.43 }, + { "time": 0.2667, "angle": 62.37 }, + { "time": 0.3333, "angle": 45.43 }, + { "time": 0.4, "angle": 15.67 }, + { "time": 0.4667, "angle": 28.22 }, + { "time": 0.5333, "angle": -38.62 }, + { "time": 0.6, "angle": -53.27 }, + { "time": 0.6667, "angle": -79.31 }, + { "time": 0.7333, "angle": -86.47 }, + { "time": 0.8, "angle": -56.59 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.4, "x": -6.76, "y": -3.86 }, + { "time": 0.4333, "x": -15.85, "y": 7.28 }, + { "time": 0.4667, "x": -13.05, "y": 4.05 }, + { "time": 0.5, "x": -10.25, "y": 7.11 }, + { "time": 0.5333, "x": -9.02, "y": -5.15 }, + { "time": 0.6667, "x": -23.18, "y": -2.58 }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "rear_shin": { + "rotate": [ + { "time": 0, "angle": -74 }, + { "time": 0.0667, "angle": -83.38 }, + { "time": 0.1333, "angle": -106.7 }, + { "time": 0.2, "angle": -66.01 }, + { "time": 0.2667, "angle": -55.22 }, + { "time": 0.3333, "angle": -24.8 }, + { + "time": 0.4, + "angle": 18.44, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { "time": 0.4667, "angle": -56.65 }, + { + "time": 0.5333, + "angle": -11.95, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { "time": 0.6667, "angle": -41.27 }, + { "time": 0.7333, "angle": -43.61 }, + { "time": 0.8, "angle": -74 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "front_upper_arm": { + "rotate": [ + { "time": 0, "angle": -89.37 }, + { "time": 0.0667, "angle": -95.67 }, + { "time": 0.1333, "angle": -22.01 }, + { "time": 0.2, "angle": -316.04 }, + { "time": 0.2667, "angle": -274.94 }, + { "time": 0.3333, "angle": -273.74 }, + { "time": 0.4, "angle": -272.09 }, + { "time": 0.4667, "angle": -264.9 }, + { "time": 0.5333, "angle": -320.1 }, + { "time": 0.6, "angle": -50.84 }, + { "time": 0.6667, "angle": -81.73 }, + { "time": 0.7333, "angle": -83.92 }, + { "time": 0.8, "angle": -89.37 } + ], + "translate": [ + { "time": 0, "x": 6.25, "y": 10.05 }, + { "time": 0.2667, "x": 4.96, "y": -13.13 }, + { "time": 0.6, "x": -2.43, "y": 1.95 }, + { "time": 0.8, "x": 6.25, "y": 10.05 } + ] + }, + "front_bracer": { + "rotate": [ + { "time": 0, "angle": 33.44 }, + { "time": 0.0667, "angle": 20.54 }, + { "time": 0.1333, "angle": 15.26 }, + { "time": 0.2, "angle": 19.29 }, + { "time": 0.2667, "angle": 22.62 }, + { "time": 0.3333, "angle": 37.29 }, + { "time": 0.4, "angle": 41.53 }, + { "time": 0.4667, "angle": 31.74 }, + { "time": 0.5333, "angle": 67.45 }, + { "time": 0.6667, "angle": 39.77 }, + { "time": 0.7333, "angle": 30.95 }, + { "time": 0.8, "angle": 33.44 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "front_fist": { + "rotate": [ + { "time": 0, "angle": -19.76 }, + { "time": 0.0667, "angle": -37.11 }, + { "time": 0.1333, "angle": -50.8 }, + { "time": 0.2667, "angle": -12.69 }, + { "time": 0.3333, "angle": 3.01 }, + { "time": 0.4333, "angle": 12.06 }, + { "time": 0.5333, "angle": 13.26 }, + { "time": 0.8, "angle": -19.76 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "rear_upper_arm": { + "rotate": [ + { "time": 0, "angle": 68.68 }, + { "time": 0.0667, "angle": 73.89 }, + { "time": 0.1333, "angle": -9.64 }, + { "time": 0.2, "angle": 284.28 }, + { "time": 0.2667, "angle": 283.29 }, + { "time": 0.3333, "angle": 278.29 }, + { "time": 0.4, "angle": 271.03 }, + { "time": 0.4667, "angle": 263.2 }, + { "time": 0.5333, "angle": 314.26 }, + { "time": 0.6, "angle": 16.83 }, + { "time": 0.6667, "angle": 70.35 }, + { "time": 0.7333, "angle": 73.54 }, + { "time": 0.8, "angle": 68.68 } + ], + "translate": [ + { "time": 0, "x": -2.57, "y": -8.89 }, + { "time": 0.1333, "x": -4.68, "y": 7.21 }, + { "time": 0.2, "x": 21.73, "y": 51.18 }, + { "time": 0.6, "x": 4.33, "y": 2.06 }, + { "time": 0.8, "x": -2.57, "y": -8.89 } + ] + }, + "rear_bracer": { + "rotate": [ + { "time": 0, "angle": 31.05 }, + { "time": 0.0667, "angle": 28.28 }, + { "time": 0.1333, "angle": 49.36 }, + { "time": 0.2, "angle": 59.37 }, + { "time": 0.2667, "angle": 8.56 }, + { "time": 0.3333, "angle": 9.39 }, + { "time": 0.4, "angle": 11.51 }, + { "time": 0.4667, "angle": 7.22 }, + { "time": 0.5333, "angle": -18.44 }, + { "time": 0.6, "angle": 11.45 }, + { "time": 0.6667, "angle": 9.99 }, + { "time": 0.7333, "angle": 8.29 }, + { "time": 0.8, "angle": 31.05 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "neck": { + "rotate": [ + { "time": 0, "angle": 11.03 }, + { "time": 0.2, "angle": 13.59 }, + { "time": 0.4, "angle": 11.03 }, + { "time": 0.6, "angle": 13.59 }, + { "time": 0.8, "angle": 11.03 } + ] + }, + "head": { + "rotate": [ + { "time": 0, "angle": 11.03 }, + { "time": 0.1, "angle": 12.35 }, + { "time": 0.2, "angle": 25.55 }, + { "time": 0.4, "angle": 11.03 }, + { "time": 0.5, "angle": 12.35 }, + { "time": 0.6, "angle": 25.55 }, + { "time": 0.8, "angle": 11.03 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "front_shin": { + "rotate": [ + { + "time": 0, + "angle": 0, + "curve": [ 0.481, 0.01, 0.75, 1 ] + }, + { "time": 0.0667, "angle": -64.42 }, + { + "time": 0.1333, + "angle": -20.6, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { "time": 0.2667, "angle": -62.52 }, + { "time": 0.3333, "angle": -79.75 }, + { "time": 0.4, "angle": -78.28 }, + { + "time": 0.4667, + "angle": -118.96, + "curve": [ 0.93, 0.01, 0.953, 0.95 ] + }, + { "time": 0.6, "angle": -88.96 }, + { "time": 0.6667, "angle": -79.1 }, + { "time": 0.7333, "angle": -47.78 }, + { "time": 0.8, "angle": 0 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "front_foot": { + "rotate": [ + { "time": 0, "angle": 0 }, + { + "time": 0.0333, + "angle": -21.13, + "curve": [ 0.121, 0.24, 0.75, 1 ] + }, + { "time": 0.0667, "angle": 17.64 }, + { "time": 0.1, "angle": 29.93 }, + { "time": 0.1333, "angle": 16.45 }, + { "time": 0.2, "angle": -29.23 }, + { "time": 0.2667, "angle": -1.62 }, + { "time": 0.3333, "angle": -10.23 }, + { "time": 0.4667, "angle": -15.99 }, + { "time": 0.6, "angle": 9.03 }, + { "time": 0.7333, "angle": 17.33 }, + { "time": 0.8, "angle": 0 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "rear_foot": { + "rotate": [ + { "time": 0, "angle": 0 }, + { "time": 0.0667, "angle": -12.04 }, + { "time": 0.1333, "angle": -0.87 }, + { "time": 0.2, "angle": 25.81 }, + { "time": 0.2667, "angle": 4.71 }, + { + "time": 0.4, + "angle": 18.09, + "curve": [ 0.281, 0.74, 0.75, 1 ] + }, + { "time": 0.4333, "angle": -1.71 }, + { "time": 0.4667, "angle": 27.13 }, + { "time": 0.5, "angle": 38.84 }, + { "time": 0.5333, "angle": 30.77 }, + { "time": 0.5667, "angle": -20.49 }, + { "time": 0.6, "angle": -30.81 }, + { "time": 0.6667, "angle": -1.32 }, + { "time": 0.8, "angle": 0 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "gun": { + "rotate": [ + { "time": 0, "angle": 0 }, + { "time": 0.1333, "angle": 24.73 }, + { "time": 0.5, "angle": -11.88 }, + { "time": 0.8, "angle": 0 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "hip": { + "rotate": [ + { "time": 0, "angle": 0, "curve": "stepped" }, + { "time": 0.8, "angle": 0 } + ], + "translate": [ + { "time": 0, "x": -62.48, "y": -23.11 }, + { + "time": 0.0667, + "x": -62.48, + "y": -38.51, + "curve": [ 0.244, 0.04, 0.75, 1 ] + }, + { + "time": 0.2667, + "x": -62.48, + "y": 22.29, + "curve": [ 0.17, 0.53, 0.75, 1 ] + }, + { "time": 0.4, "x": -62.48, "y": -23.11 }, + { "time": 0.4333, "x": -62.48, "y": -24.59 }, + { + "time": 0.4667, + "x": -62.48, + "y": -43.29, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { "time": 0.6667, "x": -62.48, "y": 22.29 }, + { "time": 0.8, "x": -62.48, "y": -23.11 } + ] + }, + "root": { + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.8, "x": 1531.6, "y": 0 } + ] + } + }, + "events": [ + { "time": 0, "name": "footstep" }, + { "time": 0.4, "name": "footstep", "int": 1 } + ] + }, "shoot": { "slots": { "mouth": { @@ -4801,6 +5498,279 @@ ] } } + }, + "walk rm": { + "slots": { + "front_fist": { + "attachment": [ + { "time": 0, "name": "front_fist_closed" } + ] + }, + "mouth": { + "attachment": [ + { "time": 0, "name": "mouth_smile" } + ] + }, + "torso": { + "attachment": [ + { "time": 0, "name": "torso" } + ] + } + }, + "bones": { + "front_thigh": { + "rotate": [ + { "time": 0, "angle": 15.79 }, + { "time": 0.1, "angle": 27.4 }, + { "time": 0.2, "angle": -7.95 }, + { "time": 0.3, "angle": -16.95 }, + { "time": 0.4, "angle": -28.62 }, + { "time": 0.5, "angle": -19.31 }, + { "time": 0.6, "angle": -3.09 }, + { "time": 0.7, "angle": 29.52 }, + { "time": 0.8, "angle": 15.79 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.4, "x": -1.19, "y": 0.55 }, + { "time": 0.5, "x": 0.12, "y": 0.41 }, + { "time": 0.6, "x": 9.49, "y": 0.27 }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "front_shin": { + "rotate": [ + { "time": 0, "angle": 5.13 }, + { "time": 0.1, "angle": -20.88 }, + { "time": 0.2, "angle": 13.37 }, + { "time": 0.3, "angle": 15.99 }, + { "time": 0.4, "angle": 5.95 }, + { "time": 0.5, "angle": -26.77 }, + { "time": 0.7, "angle": -55.44 }, + { "time": 0.8, "angle": 5.13 } + ] + }, + "rear_thigh": { + "rotate": [ + { "time": 0, "angle": -34.38 }, + { "time": 0.1, "angle": -30.33 }, + { "time": 0.2, "angle": -37.22 }, + { "time": 0.3, "angle": 20.73 }, + { "time": 0.4, "angle": 8.69 }, + { "time": 0.5, "angle": 12.16 }, + { "time": 0.6, "angle": -24.62 }, + { "time": 0.7, "angle": -27.27 }, + { "time": 0.8, "angle": -34.38 } + ], + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.4, "x": 4.09, "y": -9.53 }, + { "time": 0.5, "x": 0, "y": 0 }, + { "time": 0.7, "x": -21.14, "y": -9.61 }, + { "time": 0.8, "x": 0, "y": 0 } + ] + }, + "rear_shin": { + "rotate": [ + { "time": 0, "angle": 14.26 }, + { "time": 0.1, "angle": -17.3 }, + { "time": 0.2, "angle": -12.68 }, + { "time": 0.3, "angle": -58.9 }, + { "time": 0.4, "angle": 15.95 }, + { "time": 0.5, "angle": -9.01 }, + { "time": 0.6, "angle": 26.07 }, + { "time": 0.7, "angle": 21.86 }, + { "time": 0.8, "angle": 14.26 } + ], + "scale": [ + { "time": 0, "x": 1, "y": 1 }, + { "time": 0.1, "x": 0.952, "y": 1 }, + { "time": 0.5, "x": 0.976, "y": 1 }, + { "time": 0.8, "x": 1, "y": 1 } + ] + }, + "rear_foot": { + "rotate": [ + { "time": 0, "angle": 10.13 }, + { "time": 0.1, "angle": 12.28 }, + { "time": 0.2, "angle": -2.95 }, + { "time": 0.3, "angle": 6.29 }, + { "time": 0.4, "angle": 13.46 }, + { "time": 0.5, "angle": -3.57 }, + { "time": 0.6, "angle": -0.97 }, + { "time": 0.7, "angle": 2.98 }, + { "time": 0.8, "angle": 10.13 } + ] + }, + "front_upper_arm": { + "rotate": [ + { "time": 0, "angle": -23.74 }, + { "time": 0.4, "angle": -320.57 }, + { "time": 0.8, "angle": -23.74 } + ] + }, + "rear_upper_arm": { + "rotate": [ + { "time": 0, "angle": 11.63 }, + { "time": 0.1, "angle": 19.37 }, + { "time": 0.4, "angle": 345.27 }, + { "time": 0.5, "angle": 343.44 }, + { "time": 0.8, "angle": 11.63 } + ] + }, + "torso": { + "rotate": [ + { "time": 0, "angle": -12.11 }, + { "time": 0.1667, "angle": -17.16 }, + { "time": 0.4, "angle": -12.11 }, + { "time": 0.5667, "angle": -15.81 }, + { "time": 0.8, "angle": -12.11 } + ] + }, + "neck": { + "rotate": [ + { "time": 0, "angle": 1.41 }, + { "time": 0.2333, "angle": -3.04 }, + { "time": 0.4, "angle": 1.41 }, + { "time": 0.6333, "angle": -3.04 }, + { "time": 0.8, "angle": 1.41 } + ] + }, + "head": { + "rotate": [ + { "time": 0, "angle": 6.98 }, + { "time": 0.1667, "angle": 8.02 }, + { "time": 0.2667, "angle": 12.65 }, + { "time": 0.4, "angle": 6.98 }, + { "time": 0.5667, "angle": 8.02 }, + { "time": 0.6667, "angle": 12.65 }, + { "time": 0.8, "angle": 6.98 } + ] + }, + "front_bracer": { + "rotate": [ + { "time": 0, "angle": 0 }, + { "time": 0.4, "angle": 20.6 }, + { "time": 0.8, "angle": 0 } + ] + }, + "front_foot": { + "rotate": [ + { "time": 0, "angle": 12.49 }, + { "time": 0.1, "angle": -8.34 }, + { "time": 0.2, "angle": -6.18 }, + { "time": 0.3, "angle": -0.76 }, + { "time": 0.3333, "angle": 3.89 }, + { "time": 0.4, "angle": 10.22 }, + { "time": 0.5, "angle": 11.44 }, + { "time": 0.6, "angle": -0.34 }, + { "time": 0.7, "angle": 0.15 }, + { "time": 0.8, "angle": 12.49 } + ] + }, + "rear_bracer": { + "rotate": [ + { "time": 0, "angle": 3.59 }, + { "time": 0.1, "angle": 5.51 }, + { "time": 0.4, "angle": -22.78 }, + { "time": 0.5, "angle": -9.65 }, + { "time": 0.8, "angle": 3.59 } + ] + }, + "front_fist": { + "rotate": [ + { "time": 0, "angle": -15.22 }, + { "time": 0.1, "angle": -51.4 }, + { "time": 0.4, "angle": -39.4 }, + { "time": 0.5, "angle": 19.26 }, + { "time": 0.8, "angle": -15.22 } + ] + }, + "gun": { + "rotate": [ + { + "time": 0, + "angle": -24.07, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { + "time": 0.1, + "angle": -10.95, + "curve": [ 0.381, 0.55, 0.742, 1 ] + }, + { + "time": 0.4, + "angle": 25.34, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { + "time": 0.6667, + "angle": -27.48, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { "time": 0.8, "angle": -24.07 } + ] + }, + "hip": { + "translate": [ + { + "time": 0, + "x": -23.93, + "y": 3.22, + "curve": [ 0.519, 0.04, 0.807, 0.61 ] + }, + { + "time": 0.1, + "x": -23.93, + "y": -9.25, + "curve": [ 0.136, 0.34, 0.601, 1 ] + }, + { + "time": 0.2, + "x": -23.93, + "y": 4.36, + "curve": [ 0.204, 0.69, 0.75, 1 ] + }, + { + "time": 0.3, + "x": -23.93, + "y": 2.39, + "curve": [ 0.25, 0, 0.75, 1 ] + }, + { + "time": 0.4, + "x": -23.93, + "y": -2.5, + "curve": [ 0.693, 0.02, 0.75, 1 ] + }, + { + "time": 0.5, + "x": -23.93, + "y": -10.32, + "curve": [ 0.236, 0.78, 0.75, 1 ] + }, + { + "time": 0.6, + "x": -23.93, + "y": 4.36, + "curve": [ 0.287, 0.38, 0.719, 0.77 ] + }, + { + "time": 0.7, + "x": -23.93, + "y": 10.35, + "curve": [ 0.616, 0, 0.75, 1 ] + }, + { "time": 0.8, "x": -23.93, "y": 3.22 } + ] + }, + "root": { + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.8, "x": 393.49, "y": 1.08 } + ] + } + } } } } \ No newline at end of file diff --git a/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.png.meta b/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.png.meta index b46f4c42d..ce5881e3b 100644 --- a/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.png.meta +++ b/spine-unity/Assets/Examples/Spine/Spineboy/spineboy.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 49bb65eefe08e424bbf7a38bc98ec638 -timeCreated: 1487920372 +timeCreated: 1489559535 licenseType: Free TextureImporter: fileIDToRecycleName: diff --git a/spine-unity/Assets/Examples/Spine/Spineboy/spineboy_Atlas.asset b/spine-unity/Assets/Examples/Spine/Spineboy/spineboy_Atlas.asset index 0f232b8ee2419d88e6e9d4f983b1a0c6df8e39e8..6938779a2cceb94ce905539c89f1d528ecc06d06 100644 GIT binary patch literal 531 zcmZ`#%WlFj5WMFr%z>T=vJ>a!8*PCil@_VJ^n}*-nz{-JN}Nil;@|6lss>f{!IC|* zvokY(o2?%So3dd1I$M%aHzE#pqN}Vs#(Jvi{UoA{i69Ka9%YP^8-LOM1nau0Z}A;I zZQV5@AY{LNmLI6xgVnewVb=;m&)=H{4af~NSh)*DkS}9PT-|%hX~0=k4x0+fzxWdN z_}}cj0$HLKgq@}4+Pb>=ZCJ04Jw_~Q7_BU@v!5yWHAa~3}Mzy&X^OeBgz zqT;m3DDV`y&f_f4QVNm-S4Lf%0AH7dvhC{+e>;uXl_uj!f_ZMV%$ZV(CsHGz)@hPS L&|Lp$MyKE#T3DYH literal 4208 zcmeH~&ubGw6vy8ru~n-!{;tMqgo4#WP--ZG#Dv;l)k*{{c&KHyTe>ApLUxhtZBO2+ zM-eMH*p{1=JObRVU1lpM}A!4 z8P++#^Yy{AQ0HchyjGyIPRUnwx)iSJbVpp!an`vJ=wOe6eAZdd28F9S8zU~L$#qV$ z4(jWH1`CBgoMVpn!aIlc&+@)2!M>ZBBLq95*1ttEpR4=!MqJPt-uE%o@MOL? z#(tuK^MRAdgU6+Qir1i?ZQ!!S=_2ROal?Fj#C`ptKz|3g=b_FH{hi=>@J@Z4Coh#; z)!!X)L4!O#!42N@aYL;2VUJ`!SAEzUaY4)cP9r?W`=+=@tgUmOk7YgZIrO1l;p04p z52$B<#1kFog8!rMTY}Vj(g81(ochVpY0IhBM;ne=v8`$)NApuft89*)=0VADW_cj< z1}>Qmr(oNrlOw|^8#c0N-f+yiWt8n8X*`(cW@g31z zYV5X`S}oqaHzKa)R|h1d#pdF5w>f=b!ESWDdeD03)57IjzhC#gJ^$jz%IArfAD8ff z>d+2o2ebp)0quZxKs%rv&<8}P;oskzt+R5B Md|V>ZJ!v`r2e)^#>Hq)$ diff --git a/spine-unity/Assets/Examples/Spine/Spineboy/spineboy_Material.mat b/spine-unity/Assets/Examples/Spine/Spineboy/spineboy_Material.mat index ee79617ccd814e6889d2de2735cad25cf8372781..1a2f45e130205cae7e27389eb30149c6aebb296b 100644 GIT binary patch literal 839 zcmZuvO>f&U487-9sE6(p7ygRl_*P`?R;<~)CMYlrLqN;4qs^8ANp6!3`|qRVHfyoz zAlT&Ndwdknzg(_vS#%Li&Nr9u*x7K#EVRWSg*_(q1y}tv4x^};1VP}kam3!lQRvQO z1s1h{u9z@p{FnHN^*w4Mlq^_A;ePw6`i|Vb7d2jY(3*mUK3r;SpejM5v?HWozZ%iu z&0B)}eu24>q#{Y>pZrJYv0!E|Bv$IUeQw9su6IzQeo>R=zUe7z2T>O+!W^WV zo@8lW0Z-#uKEqkVvw1dU_P8hZWNc-m`+&zsrE4qnZ|Dy|)c3yt literal 5060 zcmeI0O>7%Q6vvGlm;l@5DF!Hl(b2cI8A7sq;(q*mt|v*?S-}1+Fh4e zLSiKZ5}e^gE)^0&LPCgBstSoiE}(Kkh(q}h2h?x@^}q#HHSa&WJM}n05qH1pWoLf# z=I#4fyW=J5yFfI!MnnTdJNQC0GCVSTuyly7w_2@4g25f2t=5N^uk5>aW%u&>tMgaS z?^)TEW18gk43=4*B?@>;OHKl!1poUaMZuQ|3VImARj3Kt#^WED-^ACX;z|02eeCBs z>{D%gnEgD&^S)>;_VaF%g0;v`y3M}b58?~$lhp2~SMdbRu>a5458}r?5&`xk6HjtH zP;kVY7zamMrA$ao(bM80T@G zBc5CNN`bW3;zSoWi*o>6svhTUiiiDrndiuBkQIVHqMj8VgWnFw0)CbGn>;UoB1D#c#>D&psPM zw7d?0v!Fihb-N!h08i8VJc{e~fZ`ch&sClyo(C20)$WVWS(tC1cHf7=rS@s{d_?gy zeZ^zc6E%L66@t2b!TtS)$9VQ117t~1uk;^(-XE7N+5U*uq9sc1N>M+ZiXyex+{$dBe9`O?$95;iXlM&CEzHlwmriBIH9nBUk-*L0c zzNmSYQ#(pkW7@LC>=X|cOuxbdX_v2sd z)KH!a=(kUIe*MRe(dpH154`jH-*!1%|KQ@{pMM2&6Bpk)yt=Y(zumU$#{TZ8TY+u` zx)tbFpj&}%1^#~p26&5Cw`yX^X&UOV5}ujpC{9Bpf5#iy+-yESJ3q&B{Ev>aaJ+`| zwK37C)^X0zB;eyCG!&e>j49!pmVL}#5=CbVd;GSJ>~p5~dgLX({HO0Z$E}+77QXQt z#mH7I59hEgY-N5q)2i`N2=6h13-~nz(PKa@jU4A^+g9PY?Ree>#~b$GeSk4vDAfI0j=uLQLlm75dgpZ59Q!3GSmo6Q_Z~Cats&>kpbKEA^ zJ%7UH!zGU)cwb?}IV$5|O!iE2ex^JRrek>b5ZX3Ri;^u0KG$3>MZV*j!I}l{c#ND= z6mmu+_p2J^eOJ`Veg%us{p>eARLM3S!`{;oLe|F>5tpV;jpLtC6pZ zLc=!Q89qweI8Gy|$Y|$ONc)%iS_{vMJT&c?-n8(Xte&v`FoxCp1pR)Ky4O;#5Kv|6T{AHVD-ROZI#7 zmg&Dw*H46vSk!-;E=jNH5f3}v6wV(-HcHF=fK$eFG#n0Flrc%}!bRH?t;?dk#}D{& zWmD;hkp1?>d}8V!U51MscC{w-{Jp8rg4sZYg}+cV`L-^{)htj>9nPxoSQU`p;!D`$ zf3x!fOpci*>?}3UoG+`J6t8LJ4!)zzSbT0WAiKteX&4)(q)ljI7}&8?Dpf)IlI#26B&;u5)DtNU>G_mUrm0B FegN?toIC&k literal 4204 zcmeH~&1(}u7{=d8qN&!8X#HNR5elXXL8+k#5)<17tF)xhi-%eQrZgpOBw0#xTM)d6 zdX$QXdJ#oLv3l{~sVBW!^dLp32kA-BQBCiUo{ML0=0Ayj*Svjqg0m<%V&=a~GnbqD?)JHo%h>lhbm%{CRXI9dorRyQ z?PMVEF*}WLgl!_=dON_r@xQfahPX|{(kZdd8L+H~7=5x&F zk(PVm|Izg=B4$2ukLUAt^}@i7l3l3|%-O}6TB$OVmg(_asazcFM<-vfC(+SyU8BW0 zJ6o$2?X(o^a-qg3nJ(DHYN=4Jc|k+oIITCvKAB%H@avYc*Sa~0e5=3Igx`@&S%dc- zYdtsrs83zbtaoWB51)0f+_|-Q>CNxIi|_8eUvp`7boTq{wvOTX57CXp+mTg%pg{>7 z2pk9;2pk9;2pk9;2pk9;2psrt9pD>+g>Ca4!S`=}r8J)9^MsQqd>Sk)UD18U@&OTV HkL&S2pG>e_ diff --git a/spine-unity/Assets/Examples/Spine/Spineunitygirl/Doi_Material.mat b/spine-unity/Assets/Examples/Spine/Spineunitygirl/Doi_Material.mat index 46f3079b99604d3e9304884bbf87036471fd1bee..bebbae8bbb2e15a9e56e9edab60d0a4d0d28bd14 100644 GIT binary patch literal 706 zcmZuv%Wm5+5WM>|{J)4!UYo(jC+GtkJ_fi8-%kQ55-Z!r8lo$NtRL z;Lu3us~KZ9{K;R~-l4HltBMs=9`>K>AK17Lvc;<&I$NDvDJ8>3@O&D|Vsf{;!iTw!McI%`13T2ETLGjk2v6#}W!2H%p9plNMQ7 zLz5+WnPV=RVo}VQJ06HQom@ly#sQsk%F$ zbd-D9c{N(6hcBqe-tCAZX+)eRtuut)LAQnj+4i!nw4SS-#5Z6q63w^oL1zmO*lvtI zpmCDwRQ&G+q@gkFcldaz9-eU#qqL-=+BD~91H_Gn487bz@;0gU`W_{KV<1_1XlJ(PTxhMPJ|3~;?{Je&j@SL3YJmR5}GiGm; zJg?*2fO8nPQH(Wn|zB-UpA0yEjoR9!gAw(8T!cUZUi^i zb^Z5q{V098{&}A+<-e5j9A>}5_zaZ(pTyDl&*{4Tl=97%=bgN^Sl;90wUr#g`ef_2 zjW8iE$k!OP>$ctUqORw8*ozUCeH9b zVUhD0G~D>P4vT(XAkM6B`x)%uZ9gwsZu)o&HtRV=o-ls5k1tv7_7U$(EuDRQ#jbbz z_^Rb@A78WF?c?jT&vs1H!Lp*>&ZT{ZhUW1_`c%v4%PYYAx!?8@2KT&zHgF4 zI`e&tFd=vI-D|m<@0jIozT@CagLP$sNn@UjtH19-<|uQA|=cfbsg@)VjcEF zy$rvX@&g_Ge#$30I4?#&2U9-j$0`c^x=c;Q(eU_m5QowDe5@MHAZ(1t%*k?4SNq2> znDXNq2729*nm?@~PMeV(OsIuV!f3h)a4@LW;u(LoT=%QA_s%uraONG=z?p~V)SQxL z90iT)QNKFr&&shz5HCzc;jD_{g(EekVmkFtsp%93ie8SY`SHf7rZoH+WzI3gOvQ7N z;%OiHbtUt%fbpS9rKx?D>!Ba(K*D+$H6@a&d>}px0x2yo=_7wm+mYE9$X`FK`StG= z!{zfAw|;TspL#W~7Yz1)-v90Di38_8F5dZU@!j_f&79jEb}P`WK(_+j3Un*bt-$}Q z0Qc%+VQ{j&PtpIaN4N_z!tZVFduefwduc2V8rT-_n?70OmjNZgR*`CiYx(VsZAlzf MDsuVKC2l?CUo6C|T>t<8 diff --git a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma.png.meta b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma.png.meta index a93f78f00..03e726b4c 100644 --- a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma.png.meta +++ b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 33f10ea7e20549d40a1c23a1adc3f760 -timeCreated: 1494093108 +timeCreated: 1487920372 licenseType: Free TextureImporter: fileIDToRecycleName: {} diff --git a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma_Atlas.asset b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma_Atlas.asset index ddd5b874c4d59e61fb112c5bc47e1c84b1f06c89..bcf2de1bad2144b8e480ec5e366731468c6fd98c 100644 GIT binary patch literal 546 zcmZ{hUu(iJ6vf~BDdK~BveKk!wRv-!I$>_Y_Od6rNp3Wwf22(ZGW_mKm9dH}4}s*I zd-&yK_%T~Q6FR2B@O`!_l5ycZ~H|RmF%!l!_n>!%n4?lRLjf-3r!KS>59v zzHHUjA|RyLzRFKj?#XIg_ig z1^zcXFG1$01)=AtxwfvVZz$eWZ4a)OOlfj{$%yP)>!%@=G~;F(O(g}B@+?zX%xQ#4 z#KCYjBJOxVLE;PXizgDKaWy)%KNe7i+8Wa~7#<4P&Rh;n59h%jo0awrSYxpk#B0!b z7QTlb6wj`hc*al}%@d`W#)LDeSQPPCdMxAs*G%BsvyeC4Z-jppGkTRdWn3AV`Y4I9 VmOO)4VXEZ><4H2n^f!~8f*%*Rr0)O# literal 4224 zcmeH~&1(}u7{=d8qE+ih{Qg*@5sF4JL1{w~Bqr1ZYl%eg;-QwsZb(X!mh4uV+nl_K z7eNFM^&);CO7G&qcBEQ%m_t73eg+08QPpCJ3fWM+Q*&NJ^mlRXSkbGQBq@B7W$cMEfbU`O=&w<_jxecx?97j%L5eabrUAEzp$$`_~E zPc(2oa1vSYu+lep4eHqeu3DHbbM6#3%y;_S)gScqcY#ZZI(zhYgJ;2e^>LoORB>H@ zug?V~czlK%yxGSMvDSzEin(0(;egKtE%7^z@Eq@JaF1A9=Rp^%df;={hnU8TJcbXb z=aA1MJ?Db|qw8CQ^m^hRFO{6;+5BYHnQrFi9IIhhryCinPZX*(YxF!1N~Tlcfyx`W zV$C@@+qRqxnNH2LkwtaWv6@x0W_w9RZ=O*b^FG;M&-m93>Gf_+M9Zz`ir_nCWdr#W%?x`Gu1-WGr8L;?hL>)zQW8Z^s_LZoK?z&&Ke91`#+A zI1o4xI1o4xI1o4xI1o4xIPl*(fI9>NefJ)L`;qN5E$4crRW}>S$!fVgYg@^gx;c@< Xl?4kpa9x;hUsPkP$E70PA6N5#RnWKm diff --git a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma_Material.mat b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma_Material.mat index b7041a081..32bbac2a3 100644 --- a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma_Material.mat +++ b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman-diffuse-pma_Material.mat @@ -8,136 +8,54 @@ Material: m_PrefabInternal: {fileID: 0} m_Name: stretchyman-diffuse-pma_Material m_Shader: {fileID: 4800000, guid: 2ce511398fb980f41b7d316c51534590, type: 3} - m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _EMISSION _FIXED_NORMALS _FIXED_NORMALS_MODELSPACE - _NORMALMAP _SPHERICAL_HARMONICS + m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _EMISSION _FIXED_NORMALS _NORMALMAP m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 m_CustomRenderQueue: 3000 stringTagMap: - AlphaDepth: true - IGNOREPROJECTOR: true - RenderType: Transparent + RenderType: Sprite + disabledShaderPasses: [] m_SavedProperties: - serializedVersion: 2 + serializedVersion: 3 m_TexEnvs: - - first: - name: _AlphaTex - second: + - _BlendTex: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - - first: - name: _BlendTex - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - - first: - name: _BumpMap - second: + - _BumpMap: m_Texture: {fileID: 2800000, guid: d00f264cbe0cc4a49a54a221ee812855, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - - first: - name: _DiffuseRamp - second: + - _DiffuseRamp: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - - first: - name: _EmissionMap - second: + - _EmissionMap: m_Texture: {fileID: 2800000, guid: 4cad8f072f658544a80ba2b271aec125, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - - first: - name: _MainTex - second: + - _MainTex: m_Texture: {fileID: 2800000, guid: 33f10ea7e20549d40a1c23a1adc3f760, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} - - first: - name: _MetallicGlossMap - second: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} m_Floats: - - first: - name: PixelSnap - second: 0 - - first: - name: _BlendAmount - second: 0 - - first: - name: _BlendMode - second: 0 - - first: - name: _Brightness - second: 1 - - first: - name: _BumpScale - second: 1 - - first: - name: _Cull - second: 0 - - first: - name: _CustomRenderQueue - second: 0 - - first: - name: _Cutoff - second: 0.1 - - first: - name: _DstBlend - second: 10 - - first: - name: _EmissionPower - second: 1 - - first: - name: _EnableExternalAlpha - second: 0 - - first: - name: _GlossMapScale - second: 1 - - first: - name: _Glossiness - second: 0.5 - - first: - name: _Hue - second: 0 - - first: - name: _Metallic - second: 0 - - first: - name: _RenderQueue - second: 0 - - first: - name: _RimPower - second: 5.41 - - first: - name: _Saturation - second: 1 - - first: - name: _ShadowAlphaCutoff - second: 0.1 - - first: - name: _SrcBlend - second: 1 - - first: - name: _ZWrite - second: 0 + - _BlendAmount: 0 + - _BlendMode: 0 + - _Brightness: 1 + - _Cull: 0 + - _Cutoff: 0.1 + - _DstBlend: 10 + - _EmissionPower: 1 + - _Hue: 0 + - _RenderQueue: 0 + - _RimPower: 1.79 + - _Saturation: 1 + - _ShadowAlphaCutoff: 0.1 + - _SrcBlend: 1 + - _ZWrite: 0 m_Colors: - - first: - name: _Color - second: {r: 1, g: 1, b: 1, a: 1} - - first: - name: _EmissionColor - second: {r: 1, g: 1, b: 1, a: 1} - - first: - name: _FixedNormal - second: {r: 0, g: 0, b: -1, a: 1} - - first: - name: _OverlayColor - second: {r: 0, g: 0, b: 0, a: 0} - - first: - name: _RimColor - second: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 1, g: 1, b: 1, a: 1} + - _FixedNormal: {r: 0, g: 0, b: -1, a: 1} + - _OverlayColor: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} diff --git a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman.json b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman.json index 4948e4229..163b5fafb 100644 --- a/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman.json +++ b/spine-unity/Assets/Examples/Spine/Strechyman/stretchyman.json @@ -1,5 +1,5 @@ { -"skeleton": { "hash": "RC7+qra2dmTzDIZaq6KhAjmvQgQ", "spine": "3.6.05-beta", "width": 264.48, "height": 570.11, "images": "./images/" }, +"skeleton": { "hash": "KY3BtcvfWgrgHa1F9mhQMNYi1tY", "spine": "3.6.09-beta", "width": 264.5, "height": 570.13, "images": "./images original/" }, "bones": [ { "name": "root" }, { "name": "hip", "parent": "root", "x": 28.61, "y": 289.9 }, @@ -172,7 +172,7 @@ "back arm": { "type": "mesh", "uvs": [ 0.74522, 0.00989, 0.64111, 0.05762, 0.56303, 0.1559, 0.42509, 0.25886, 0.28974, 0.359, 0.22988, 0.49565, 0.21166, 0.60797, 0.21166, 0.69782, 0.16481, 0.78674, 0.14139, 0.84757, 0.02427, 0.88501, 0.0529, 0.91871, 0.37824, 0.98797, 0.60468, 0.98235, 0.6307, 0.9056, 0.73481, 0.87752, 0.63591, 0.81762, 0.55262, 0.74181, 0.38084, 0.69876, 0.37824, 0.60797, 0.39906, 0.50876, 0.51358, 0.38521, 0.66194, 0.28881, 0.85454, 0.18398, 0.97687, 0.07541, 0.9144, 0.00989 ], - "triangles": [ 11, 9, 12, 9, 8, 12, 12, 8, 18, 13, 12, 14, 12, 18, 17, 18, 8, 7, 14, 12, 17, 11, 10, 9, 14, 16, 15, 14, 17, 16, 7, 19, 18, 7, 6, 19, 6, 5, 19, 19, 5, 20, 5, 4, 20, 20, 4, 21, 4, 3, 21, 21, 3, 22, 3, 2, 22, 22, 2, 23, 2, 1, 23, 23, 1, 24, 1, 0, 24, 0, 25, 24 ], + "triangles": [ 14, 17, 16, 14, 16, 15, 11, 10, 9, 14, 12, 17, 18, 8, 7, 12, 18, 17, 13, 12, 14, 12, 8, 18, 9, 8, 12, 11, 9, 12, 6, 5, 19, 7, 6, 19, 7, 19, 18, 20, 4, 21, 5, 4, 20, 19, 5, 20, 3, 2, 22, 21, 3, 22, 4, 3, 21, 0, 25, 24, 1, 0, 24, 23, 1, 24, 2, 1, 23, 22, 2, 23 ], "vertices": [ 1, 6, -7.68, -11.48, 1, 1, 6, 4.09, -13.63, 1, 1, 6, 23.49, -9.36, 1, 1, 7, 13.44, -9.23, 1, 2, 7, 35.2, -9.62, 0.50649, 8, -0.58, -9.66, 0.49351, 1, 8, 26.04, -6.39, 1, 1, 9, 14.15, -6.11, 1, 2, 9, 31.54, -5.57, 0.66493, 10, -3.33, -5.03, 0.33507, 1, 10, 13.08, -11.25, 1, 1, 10, 24.41, -14.89, 1, 1, 10, 30.15, -24.52, 1, 1, 10, 36.93, -23.54, 1, 1, 10, 54.08, -2.33, 1, 1, 10, 55.73, 14.15, 1, 1, 10, 41.39, 18.48, 1, 1, 10, 37.29, 26.87, 1, 1, 10, 24.66, 21.67, 1, 1, 10, 9.18, 18.1, 1, 2, 9, 31.33, 6.78, 0.47881, 10, -1.11, 7.12, 0.52119, 1, 9, 13.77, 6.04, 1, 2, 8, 24.98, 6.17, 0.89218, 9, -5.48, 6.96, 0.10782, 2, 7, 32.6, 7.29, 0.59842, 8, -0.32, 7.45, 0.40158, 1, 7, 11.08, 8.85, 1, 1, 6, 17.89, 11.88, 1, 1, 6, -4.82, 9.46, 1, 1, 6, -13.69, -0.69, 1 ], "hull": 26, "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 0, 50, 2, 48, 4, 46, 6, 44, 8, 42, 10, 40, 12, 38, 14, 36 ], @@ -184,7 +184,7 @@ "back leg": { "type": "mesh", "uvs": [ 0.502, 0.01179, 0.36076, 0.06379, 0.4057, 0.15046, 0.44743, 0.23916, 0.47953, 0.32991, 0.51163, 0.42269, 0.52127, 0.50629, 0.48274, 0.58888, 0.41212, 0.66025, 0.3126, 0.74182, 0.2163, 0.81625, 0.1232, 0.89272, 0.00763, 0.97429, 0.29655, 0.98958, 0.47407, 0.99222, 0.64004, 0.99468, 0.80989, 0.9896, 0.91291, 0.98652, 1, 0.95797, 0.8333, 0.94681, 0.71067, 0.9386, 0.57123, 0.92031, 0.41533, 0.89986, 0.3447, 0.89272, 0.36885, 0.87178, 0.42817, 0.82033, 0.502, 0.74794, 0.58226, 0.66943, 0.6593, 0.59092, 0.72993, 0.50528, 0.76524, 0.42167, 0.78129, 0.32481, 0.78771, 0.23406, 0.78771, 0.13924, 0.72351, 0.03728, 0.60152, 0.00567, 0.82117, 0.96898, 0.67873, 0.96396, 0.52111, 0.9574, 0.35936, 0.94214, 0.19388, 0.92922, 0.25375, 0.88159, 0.32792, 0.8184 ], - "triangles": [ 36, 20, 19, 17, 19, 18, 16, 37, 36, 17, 16, 36, 17, 36, 19, 38, 22, 21, 37, 21, 20, 38, 21, 37, 37, 20, 36, 15, 38, 37, 14, 38, 15, 15, 37, 16, 39, 23, 22, 40, 23, 39, 39, 22, 38, 13, 40, 39, 12, 40, 13, 14, 39, 38, 13, 39, 14, 9, 8, 26, 25, 42, 9, 10, 9, 42, 26, 25, 9, 24, 42, 25, 41, 10, 42, 41, 42, 24, 11, 10, 41, 23, 41, 24, 40, 11, 41, 40, 41, 23, 12, 11, 40, 26, 8, 27, 6, 5, 29, 28, 6, 29, 7, 6, 28, 27, 7, 28, 8, 7, 27, 29, 5, 30, 31, 5, 4, 30, 5, 31, 32, 4, 3, 31, 4, 32, 34, 1, 0, 34, 0, 35, 2, 1, 34, 2, 34, 33, 3, 2, 33, 32, 3, 33 ], + "triangles": [ 17, 36, 19, 17, 16, 36, 16, 37, 36, 17, 19, 18, 36, 20, 19, 15, 37, 16, 14, 38, 15, 15, 38, 37, 37, 20, 36, 38, 21, 37, 37, 21, 20, 38, 22, 21, 13, 39, 14, 14, 39, 38, 12, 40, 13, 13, 40, 39, 39, 22, 38, 40, 23, 39, 39, 23, 22, 12, 11, 40, 40, 41, 23, 40, 11, 41, 23, 41, 24, 11, 10, 41, 41, 42, 24, 41, 10, 42, 24, 42, 25, 26, 25, 9, 10, 9, 42, 25, 42, 9, 9, 8, 26, 26, 8, 27, 8, 7, 27, 27, 7, 28, 7, 6, 28, 28, 6, 29, 6, 5, 29, 29, 5, 30, 30, 5, 31, 31, 5, 4, 31, 4, 32, 32, 4, 3, 32, 3, 33, 3, 2, 33, 2, 34, 33, 2, 1, 34, 34, 0, 35, 34, 1, 0 ], "vertices": [ 1, 14, -19.79, -5.67, 1, 2, 14, -5.62, -22.28, 0.83363, 15, -41.07, -23.3, 0.16637, 2, 14, 22.31, -21.98, 0.65187, 15, -13.17, -21.89, 0.34813, 3, 14, 50.83, -22.11, 0.3172, 15, 15.33, -20.87, 0.43086, 16, -19.67, -21.09, 0.25193, 4, 14, 79.85, -23.29, 0.10792, 15, 44.37, -20.89, 0.35417, 16, 9.3, -19.2, 0.3192, 17, -25.22, -20.06, 0.21872, 4, 15, 74.06, -20.98, 0.16486, 16, 38.93, -17.34, 0.32776, 17, 4.09, -15.38, 0.29831, 18, -30.1, -17.16, 0.20907, 3, 16, 65.54, -17.61, 0.17523, 17, 30.6, -13.11, 0.39173, 18, -4.12, -11.42, 0.43304, 3, 17, 57.03, -15.71, 0.19718, 18, 22.43, -10.53, 0.52971, 19, -12.97, -9.81, 0.27311, 3, 18, 46.05, -13.47, 0.40991, 19, 10.84, -10.17, 0.34747, 20, -24.93, -10.51, 0.24261, 3, 18, 73.39, -18.69, 0.19432, 19, 38.58, -12.41, 0.37177, 20, 2.9, -10.99, 0.43391, 3, 19, 64.06, -14.98, 0.16664, 20, 28.49, -11.94, 0.56756, 21, -7.53, -11.48, 0.2658, 3, 20, 54.58, -12.37, 0.52114, 21, 18.56, -10.93, 0.36168, 11, -3.08, 24.95, 0.11718, 4, 20, 82.97, -14.36, 0.35144, 21, 47.01, -11.86, 0.29521, 11, -13.07, -1.67, 0.25118, 12, -46.3, 1.83, 0.10216, 1, 11, 16.37, -4.67, 1, 2, 11, 34.32, -4.37, 0.53487, 12, 0.74, -4.44, 0.46513, 3, 11, 51.1, -4.08, 0.14611, 12, 17.5, -5.42, 0.54314, 13, -15.51, -2.75, 0.31075, 2, 12, 34.67, -4.01, 0.40714, 13, 1.65, -4.36, 0.59286, 2, 12, 45.09, -3.16, 0.25726, 13, 12.05, -5.34, 0.74274, 2, 12, 53.99, 5.81, 0.25311, 13, 22.38, 1.94, 0.74689, 2, 12, 37.19, 9.56, 0.4029, 13, 6.5, 8.57, 0.5971, 3, 11, 57.07, 14.17, 0.13352, 12, 24.84, 12.33, 0.54644, 13, -5.18, 13.44, 0.32004, 4, 20, 47.09, 33.11, 0.13131, 11, 42.64, 19.08, 0.26349, 12, 10.82, 18.31, 0.49746, 13, -17.94, 21.78, 0.10773, 4, 20, 46.46, 16.09, 0.21159, 21, 9.37, 17.21, 0.1068, 11, 26.51, 24.57, 0.44951, 12, -4.85, 25.01, 0.23211, 3, 20, 46.8, 8.62, 0.40111, 21, 10, 9.75, 0.24543, 11, 19.24, 26.38, 0.35346, 3, 20, 39.71, 8.61, 0.5825, 21, 2.91, 9.47, 0.30792, 11, 21.25, 33.18, 0.10958, 3, 19, 59.17, 5.89, 0.21955, 20, 22.27, 8.58, 0.57946, 21, -14.51, 8.8, 0.20099, 3, 18, 71.84, 0.47, 0.21583, 19, 34.96, 6.47, 0.32263, 20, -1.92, 7.63, 0.46154, 3, 18, 45.81, 3.96, 0.40554, 19, 8.71, 7.12, 0.38602, 20, -28.17, 6.61, 0.20845, 3, 17, 56.79, 2.13, 0.25409, 18, 19.83, 7.12, 0.53006, 19, -17.46, 7.46, 0.21585, 3, 16, 66.18, 3.45, 0.22414, 17, 29.23, 7.92, 0.34135, 18, -8.25, 9.24, 0.43451, 4, 15, 76.6, 4.51, 0.19364, 16, 39.78, 8.26, 0.28887, 17, 2.49, 10.19, 0.33579, 18, -35.06, 7.97, 0.1817, 4, 14, 82.88, 7.08, 0.11658, 15, 46.18, 9.58, 0.35727, 16, 9.09, 11.32, 0.35745, 17, -28.36, 10.3, 0.16869, 3, 14, 54.46, 12.11, 0.35357, 15, 17.57, 13.46, 0.44494, 16, -19.71, 13.32, 0.20149, 2, 14, 24.65, 16.69, 0.65438, 15, -12.4, 16.85, 0.34562, 2, 14, -8.38, 15.21, 0.85331, 15, -45.34, 14.05, 0.14669, 1, 14, -20.19, 4.56, 1, 2, 12, 35.89, 2.53, 0.4051, 13, 3.99, 1.87, 0.5949, 3, 11, 54.38, 5.92, 0.13921, 12, 21.52, 4.3, 0.54495, 13, -9.85, 6.12, 0.31584, 2, 11, 37.79, 7.63, 0.44939, 12, 5.1, 7.27, 0.55061, 3, 20, 65.39, 20.7, 0.11858, 11, 20.6, 11.35, 0.75134, 12, -11.76, 12.27, 0.13008, 3, 20, 65.41, 1.81, 0.3968, 21, 24.3, 0.23, 0.28258, 11, 2.07, 14.98, 0.32063, 3, 20, 48.01, 0.08, 0.55395, 21, 6.94, -0.33, 0.33293, 11, 3.38, 30.47, 0.11312, 3, 19, 65.95, -2.97, 0.19447, 20, 24.96, -1.58, 0.57382, 21, -15.99, -0.43, 0.23171 ], "hull": 36, "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 34, 36, 44, 46, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 0, 70, 4, 66, 2, 68, 40, 42, 42, 44, 26, 28, 28, 30, 46, 48, 48, 50, 36, 38, 38, 40, 30, 32, 32, 34, 18, 52, 16, 54, 14, 56, 12, 58, 10, 60, 8, 62, 6, 64, 32, 72, 72, 38, 30, 74, 74, 40, 72, 74, 28, 76, 76, 42, 74, 76, 26, 78, 78, 44, 76, 78, 24, 80, 80, 46, 78, 80, 22, 82, 82, 48, 80, 82, 20, 84, 84, 50, 82, 84 ], @@ -195,7 +195,7 @@ "back leg path": { "back leg path": { "type": "path", - "lengths": [ 137.83, 291.74, 641.11 ], + "lengths": [ 137.84, 291.79, 641.23 ], "vertexCount": 9, "vertices": [ 1, 23, -43.15, 0.61, 1, 1, 23, -1.31, 0.44, 1, 1, 23, 63.08, -0.19, 1, 2, 23, 72.07, 13.66, 0.5, 24, -69.12, -16.08, 0.5, 2, 23, 135.75, 0.27, 0.5, 24, -3.96, -2.03, 0.5, 2, 23, 202.92, -15.14, 0.5, 24, 65, 14.1, 0.5, 1, 24, 71.09, -2.04, 1, 1, 24, 149.06, -1.74, 1, 1, 23, 368.48, -1.81, 1 ] } @@ -204,7 +204,7 @@ "body": { "type": "mesh", "uvs": [ 0.35966, 0.01351, 0.26864, 0.04108, 0.26204, 0.0954, 0.34119, 0.14478, 0.39792, 0.19457, 0.40451, 0.24272, 0.38077, 0.27893, 0.3597, 0.3004, 0.34119, 0.31926, 0.34989, 0.34326, 0.35834, 0.36658, 0.36552, 0.40164, 0.37234, 0.43499, 0.38397, 0.4944, 0.3956, 0.55971, 0.39884, 0.59858, 0.40142, 0.62955, 0.40216, 0.65662, 0.3461, 0.71564, 0.27077, 0.78176, 0.2201, 0.82128, 0.17618, 0.85553, 0.13115, 0.88833, 0.08238, 0.92385, 0.00342, 0.9796, 0.18836, 0.99127, 0.32172, 0.99284, 0.46266, 0.99451, 0.61643, 0.98608, 0.71618, 0.97182, 0.61851, 0.95821, 0.48967, 0.95043, 0.39458, 0.94083, 0.27772, 0.92904, 0.23408, 0.9232, 0.26692, 0.89774, 0.30681, 0.86681, 0.34203, 0.83415, 0.38369, 0.7955, 0.45642, 0.72874, 0.52708, 0.66845, 0.56032, 0.63345, 0.57541, 0.60109, 0.59357, 0.56214, 0.61643, 0.49732, 0.63513, 0.43963, 0.64345, 0.40462, 0.77081, 0.39011, 0.84585, 0.37025, 0.90983, 0.35331, 0.9674, 0.31915, 0.97302, 0.28585, 0.96448, 0.23351, 0.8952, 0.1681, 0.79346, 0.12643, 0.75179, 0.10879, 0.71799, 0.09448, 0.66817, 0.07237, 0.61343, 0.04807, 0.47868, 0.01411, 0.49846, 0.38826, 0.66315, 0.34728, 0.67333, 0.30664, 0.8188, 0.29655, 0.80971, 0.24505, 0.72829, 0.17902, 0.68147, 0.13902, 0.59191, 0.09711, 0.3904, 0.09012, 0.53695, 0.14981, 0.57563, 0.19616, 0.64483, 0.25077, 0.79855, 0.33476, 0.61751, 0.97167, 0.4773, 0.97061, 0.23795, 0.95673, 0.15272, 0.92355, 0.14158, 0.94886, 0.23861, 0.86092, 0.51732, 0.30354, 0.50696, 0.34527, 0.50634, 0.43735, 0.50334, 0.4959, 0.51086, 0.32558, 0.50355, 0.41057, 0.19543, 0.89241, 0.36492, 0.9641 ], - "triangles": [ 2, 1, 68, 68, 1, 58, 58, 1, 59, 1, 0, 59, 69, 67, 66, 3, 68, 69, 69, 68, 67, 3, 2, 68, 66, 56, 55, 66, 67, 56, 67, 57, 56, 67, 58, 57, 67, 68, 58, 5, 70, 71, 71, 70, 65, 5, 4, 70, 70, 66, 65, 4, 69, 70, 70, 69, 66, 4, 3, 69, 65, 54, 53, 65, 66, 54, 66, 55, 54, 46, 61, 47, 46, 80, 61, 80, 83, 61, 61, 62, 72, 61, 83, 62, 80, 9, 83, 9, 8, 83, 83, 79, 62, 8, 7, 83, 83, 7, 79, 71, 6, 5, 7, 6, 79, 79, 6, 62, 6, 71, 62, 47, 72, 48, 47, 61, 72, 48, 72, 49, 49, 72, 50, 72, 63, 50, 72, 62, 63, 50, 63, 51, 62, 64, 63, 63, 52, 51, 63, 64, 52, 71, 65, 64, 64, 53, 52, 64, 65, 53, 62, 71, 64, 26, 86, 27, 27, 74, 28, 27, 86, 74, 28, 73, 29, 28, 74, 73, 73, 30, 29, 74, 31, 73, 73, 31, 30, 86, 32, 74, 74, 32, 31, 25, 75, 26, 26, 75, 86, 24, 77, 25, 25, 77, 75, 24, 23, 77, 75, 33, 86, 86, 33, 32, 75, 77, 33, 77, 34, 33, 77, 76, 34, 77, 23, 76, 23, 22, 76, 76, 85, 34, 76, 22, 85, 34, 85, 35, 85, 78, 35, 22, 21, 85, 35, 78, 36, 85, 21, 78, 37, 36, 20, 21, 20, 78, 36, 78, 20, 20, 19, 37, 37, 19, 38, 19, 18, 38, 38, 18, 39, 18, 17, 39, 39, 17, 40, 41, 40, 16, 40, 17, 16, 42, 41, 15, 41, 16, 15, 43, 42, 14, 42, 15, 14, 14, 82, 43, 43, 82, 44, 14, 13, 82, 82, 81, 44, 44, 81, 45, 82, 13, 81, 13, 12, 81, 46, 45, 84, 12, 84, 81, 45, 81, 84, 12, 11, 84, 11, 60, 84, 84, 60, 46, 60, 80, 46, 11, 10, 60, 60, 10, 80, 10, 9, 80 ], + "triangles": [ 1, 0, 59, 58, 1, 59, 68, 1, 58, 2, 1, 68, 67, 68, 58, 67, 58, 57, 67, 57, 56, 66, 67, 56, 66, 56, 55, 3, 2, 68, 69, 68, 67, 3, 68, 69, 69, 67, 66, 66, 55, 54, 65, 66, 54, 65, 54, 53, 4, 3, 69, 70, 69, 66, 4, 69, 70, 70, 66, 65, 5, 4, 70, 71, 70, 65, 5, 70, 71, 6, 71, 62, 79, 6, 62, 7, 6, 79, 71, 6, 5, 83, 7, 79, 8, 7, 83, 83, 79, 62, 9, 8, 83, 80, 9, 83, 61, 83, 62, 61, 62, 72, 80, 83, 61, 46, 80, 61, 46, 61, 47, 62, 71, 64, 64, 65, 53, 64, 53, 52, 71, 65, 64, 63, 64, 52, 63, 52, 51, 62, 64, 63, 50, 63, 51, 72, 62, 63, 72, 63, 50, 49, 72, 50, 48, 72, 49, 47, 61, 72, 47, 72, 48, 74, 32, 31, 86, 32, 74, 73, 31, 30, 74, 31, 73, 73, 30, 29, 28, 74, 73, 28, 73, 29, 27, 86, 74, 27, 74, 28, 26, 86, 27, 75, 33, 86, 24, 23, 77, 25, 77, 75, 24, 77, 25, 26, 75, 86, 25, 75, 26, 22, 21, 85, 85, 78, 35, 34, 85, 35, 76, 22, 85, 76, 85, 34, 23, 22, 76, 77, 23, 76, 77, 76, 34, 77, 34, 33, 75, 77, 33, 86, 33, 32, 36, 78, 20, 21, 20, 78, 37, 36, 20, 85, 21, 78, 35, 78, 36, 38, 18, 39, 19, 18, 38, 37, 19, 38, 20, 19, 37, 40, 17, 16, 41, 40, 16, 39, 17, 40, 18, 17, 39, 42, 15, 14, 43, 42, 14, 41, 16, 15, 42, 41, 15, 14, 13, 82, 43, 82, 44, 14, 82, 43, 12, 11, 84, 45, 81, 84, 12, 84, 81, 46, 45, 84, 13, 12, 81, 82, 13, 81, 44, 81, 45, 82, 81, 44, 10, 9, 80, 60, 10, 80, 11, 10, 60, 60, 80, 46, 84, 60, 46, 11, 60, 84 ], "vertices": [ 1, 5, 30.85, 2.45, 1, 2, 4, 60.42, 12.42, 0.24859, 5, 22.32, 18.18, 0.75141, 2, 4, 39.47, 25.25, 0.44332, 5, -1.06, 25.72, 0.55668, 3, 3, 48.03, 29.46, 0.37431, 4, 14.55, 26.45, 0.47619, 5, -25.57, 21.02, 0.1495, 3, 2, 50.36, 32.58, 0.11243, 3, 24.29, 26.8, 0.64611, 4, -8.99, 30.5, 0.24146, 3, 35, -45.22, -8.81, 0.10611, 2, 28.69, 30.4, 0.49533, 3, 2.89, 30.85, 0.39856, 3, 35, -28.91, -12.45, 0.25802, 2, 12.15, 32.8, 0.60894, 3, -12.29, 37.84, 0.13304, 3, 35, -18.5, -14.05, 0.28714, 2, 2.34, 35.98, 0.51935, 26, -7.6, 18.95, 0.19351, 4, 35, -10.79, -18.35, 0.28478, 25, -42.03, 75.56, 0.10295, 2, -6.36, 37.32, 0.37494, 26, -10.2, 10.26, 0.23733, 3, 35, 0.92, -16.96, 0.34087, 2, -17.28, 35.45, 0.32141, 26, -8.2, -0.67, 0.33772, 4, 35, 10.64, -16.32, 0.32691, 36, -24.05, -14.9, 0.16082, 2, -27.58, 33.67, 0.14432, 26, -6.37, -11.05, 0.36794, 4, 35, 28.5, -15.63, 0.24237, 36, -9.55, -15.11, 0.27028, 37, -45.51, -19.12, 0.12132, 26, -3.65, -27.88, 0.36603, 4, 35, 41.59, -14.89, 0.21761, 36, 6.93, -15.35, 0.33285, 37, -26.85, -17.49, 0.20377, 26, -1.3, -43.28, 0.24577, 3, 36, 33.83, -15.81, 0.47179, 37, 0, -15.85, 0.42627, 38, -31.79, -17.82, 0.10194, 3, 36, 63.39, -16.48, 0.2126, 37, 29.52, -14.22, 0.42737, 38, -2.43, -14.39, 0.36002, 3, 37, 49.79, -15.51, 0.30179, 38, 14.85, -13.08, 0.47127, 39, -21.15, -15.64, 0.22695, 3, 37, 61.1, -13.41, 0.15443, 38, 29.03, -11.65, 0.50848, 39, -3.27, -12.45, 0.33708, 2, 38, 41.24, -10.8, 0.28079, 39, 8.41, -8.79, 0.71921, 2, 39, 36.24, -8.59, 0.56513, 40, -3.02, -8.84, 0.43487, 3, 39, 67.93, -10.06, 0.16322, 40, 28.69, -7.82, 0.53712, 41, -8.12, -7.7, 0.29966, 3, 40, 47.76, -8.47, 0.40201, 41, 10.97, -7.9, 0.45131, 42, -26.34, -6.21, 0.14668, 3, 40, 64.62, -8.06, 0.25017, 41, 27.8, -8.4, 0.46039, 42, -12.77, -8.82, 0.28944, 4, 40, 79.13, -10.24, 0.11858, 41, 42.33, -8.03, 0.26981, 42, 4.53, -8.38, 0.48104, 32, -1.56, 35.6, 0.13057, 2, 42, 20.84, -9.2, 0.728, 32, -5.38, 19.56, 0.272, 1, 32, -11.5, -7.3, 1, 4, 42, 43.23, 16.27, 0.2746, 32, 15.1, -7.51, 0.48158, 33, -12.29, -5.54, 0.12942, 34, -41.77, 0.94, 0.11439, 4, 42, 37, 33.94, 0.18804, 32, 33.71, -4.58, 0.34252, 33, 6.54, -5.76, 0.18297, 34, -23.2, -2.19, 0.28647, 3, 32, 53.35, -1.59, 0.21646, 33, 26.41, -6.09, 0.26516, 34, -3.62, -5.59, 0.51838, 2, 33, 47.99, -1.76, 0.15753, 34, 18.37, -4.66, 0.84247, 1, 34, 33.16, -0.12, 1, 2, 33, 47.98, 10.84, 0.17387, 34, 20.32, 7.79, 0.82613, 4, 42, 9.83, 48.43, 0.17572, 32, 53.29, 18.7, 0.17038, 33, 29.73, 13.92, 0.136, 34, 2.77, 13.66, 0.5179, 4, 42, 11.45, 34.58, 0.26313, 32, 39.26, 20.56, 0.23037, 33, 16.21, 18.1, 0.15679, 34, -9.94, 19.88, 0.3497, 4, 42, 12.41, 17.13, 0.37057, 32, 22.11, 22.5, 0.30409, 33, -0.38, 22.88, 0.18235, 34, -25.59, 27.17, 0.14299, 3, 42, 12.34, 10.44, 0.4464, 32, 15.56, 23.92, 0.2976, 33, -6.59, 25.37, 0.256, 5, 40, 75.96, 9.07, 0.10563, 41, 38.15, 11.09, 0.25495, 42, 1.65, 10.97, 0.33578, 32, 17.99, 34.75, 0.16323, 33, -2.39, 35.65, 0.14041, 3, 40, 62.62, 10.94, 0.26064, 41, 26.05, 10.62, 0.49792, 42, -15.15, 10.14, 0.24144, 3, 40, 47.27, 9.67, 0.40348, 41, 9.53, 10.2, 0.4787, 42, -26.59, 11.94, 0.11781, 3, 39, 69.23, 6.98, 0.16044, 40, 28.64, 9.27, 0.53936, 41, -7.95, 9.39, 0.3002, 2, 39, 37.36, 8.01, 0.57649, 40, -3.21, 7.8, 0.42351, 2, 38, 45.49, 7.11, 0.2935, 39, 8.38, 9.61, 0.7065, 3, 37, 62.85, 9, 0.15446, 38, 29.41, 10.82, 0.49324, 39, -8.13, 9.49, 0.3523, 3, 37, 52.15, 9.28, 0.30575, 38, 12.84, 11.74, 0.46742, 39, -26.12, 8.77, 0.22683, 3, 36, 66.66, 11.26, 0.21798, 37, 30.62, 13.69, 0.42844, 38, -3.05, 13.54, 0.35358, 3, 36, 37.7, 16.76, 0.48246, 37, 1.32, 16.92, 0.41752, 38, -32.5, 14.97, 0.10002, 4, 35, 44.35, 22.12, 0.2346, 36, 11.91, 21.43, 0.43853, 37, -24.76, 19.57, 0.2068, 2, -58.29, -7.2, 0.12007, 4, 35, 28.55, 23.57, 0.31081, 36, -3.77, 23.84, 0.19158, 25, -76.76, 29.23, 0.21531, 2, -42.43, -7.46, 0.28231, 3, 35, 22.31, 41.64, 0.18196, 25, -69.84, 12.47, 0.43955, 2, -34.84, -25, 0.37848, 3, 35, 19.78, 51.42, 0.1392, 25, -59.84, 2.53, 0.47896, 2, -23.9, -35.17, 0.38184, 3, 35, 6.03, 61.54, 0.10543, 25, -52.71, -5.88, 0.51007, 2, -17.11, -43.61, 0.38449, 2, 25, -37.16, -13.14, 0.67427, 2, -1.22, -50.83, 0.32573, 1, 25, -22.09, -13.06, 1, 2, 25, 1.45, -10.49, 0.89019, 2, 37.4, -48.18, 0.10981, 3, 25, 30.41, 0.97, 0.4302, 2, 66.35, -36.73, 0.16237, 3, 19.98, -44.2, 0.40743, 2, 3, 41.58, -34.52, 0.68165, 4, -9.45, -33.21, 0.31835, 2, 3, 50.69, -30.62, 0.51066, 4, 0.38, -31.99, 0.48934, 3, 3, 58.07, -27.45, 0.26484, 4, 8.35, -31.01, 0.61475, 5, -18.05, -36.28, 0.12041, 3, 3, 69.4, -22.88, 0.17396, 4, 20.51, -29.78, 0.5644, 5, -6.53, -32.23, 0.26164, 2, 4, 33.86, -28.42, 0.29085, 5, 6.13, -27.77, 0.70915, 2, 4, 56.55, -19.38, 0.17381, 5, 26.05, -13.63, 0.82619, 5, 35, 20.79, 3.26, 0.38867, 36, -12.74, 4.03, 0.17698, 25, -69.84, 50.18, 0.10105, 2, -36.22, 13.38, 0.19581, 26, 13.98, -19.25, 0.13749, 4, 35, 2.69, 26.81, 0.26409, 25, -50.86, 29.21, 0.2337, 2, -16.39, -8.73, 0.34628, 26, 35.79, -0.49, 0.15592, 3, 35, -15.65, 28.57, 0.15678, 25, -33.54, 28.78, 0.2916, 2, 2.03, -9.11, 0.55162, 1, 25, -28.18, 8.37, 1, 1, 25, -5.01, 11, 1, 3, 25, 24.12, 24.18, 0.12052, 2, 60.07, -13.52, 0.21384, 3, 20.53, -20.16, 0.66564, 2, 3, 39.64, -17.85, 0.59513, 4, -6.68, -16.66, 0.40487, 3, 3, 60.96, -9.87, 0.26252, 4, 16.02, -14.92, 0.55541, 5, -14.39, -18.85, 0.18206, 2, 4, 32.69, 8.3, 0.58729, 5, -3.66, 7.65, 0.41271, 2, 3, 39.53, 3.1, 0.47136, 4, -0.95, 3.5, 0.52864, 1, 3, 17.89, 2.56, 1, 2, 2, 27.01, -3.64, 0.67245, 3, -8.37, -1.32, 0.32755, 3, 35, -2.63, 46, 0.10033, 25, -45.42, 10.27, 0.52612, 2, -9.64, -27.47, 0.37356, 2, 33, 47.98, 4.75, 0.16598, 34, 19.38, 1.78, 0.83402, 4, 42, 19.56, 50.48, 0.12624, 32, 53.31, 9.51, 0.16908, 33, 28.22, 4.86, 0.24846, 34, -0.13, 4.94, 0.45621, 4, 42, 26.31, 16.82, 0.32786, 32, 18.97, 9.25, 0.38308, 33, -5.69, 10.34, 0.1588, 34, -32.78, 15.61, 0.13026, 2, 42, 16.97, -0.03, 0.66865, 32, 4.23, 21.71, 0.33135, 3, 42, 28.1, 2.86, 0.4826, 32, 4.92, 10.15, 0.31302, 33, -19.39, 13.57, 0.20437, 3, 40, 63.22, -0.58, 0.21069, 41, 25.96, 0.79, 0.49387, 42, -11.02, 1.48, 0.29545, 3, 35, -14.84, 8.09, 0.24448, 25, -33.35, 51.23, 0.16325, 2, 2.6, 13.54, 0.59227, 4, 35, 3.38, 4.96, 0.28616, 25, -51.81, 51.13, 0.16477, 2, -15.87, 13.44, 0.31892, 26, 13.85, -0.53, 0.23015, 4, 35, 46.09, 3.59, 0.2409, 36, 9.06, 3.1, 0.41152, 37, -28.46, 0.64, 0.21862, 26, 17.5, -43.07, 0.12896, 3, 36, 37.23, 1.25, 0.47745, 37, -0.08, 1.26, 0.42163, 38, -36.26, -5.26, 0.10093, 4, 35, -5.23, 6.3, 0.25594, 25, -43.11, 51.32, 0.15579, 2, -7.17, 13.63, 0.42092, 26, 14.17, 8.17, 0.16735, 4, 35, 33.04, 3.37, 0.36685, 36, -3.97, 3.61, 0.31093, 2, -45.33, 9.83, 0.17307, 26, 15.76, -30.15, 0.14915, 4, 40, 77.51, -1.16, 0.11479, 41, 40.24, 0.95, 0.26889, 42, 3.05, 0.72, 0.44973, 32, 7.66, 35.33, 0.16659, 4, 42, 22.73, 34.68, 0.22091, 32, 37.18, 9.39, 0.26956, 33, 12.3, 7.43, 0.20636, 34, -15.46, 9.95, 0.30317 ], "hull": 60, "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 24, 26, 26, 28, 32, 34, 34, 36, 36, 38, 46, 48, 48, 50, 54, 56, 56, 58, 58, 60, 60, 62, 66, 68, 76, 78, 78, 80, 80, 82, 86, 88, 88, 90, 90, 92, 92, 94, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 116, 118, 0, 118, 92, 120, 120, 20, 28, 86, 82, 32, 34, 80, 78, 36, 76, 38, 12, 124, 102, 126, 126, 124, 126, 128, 128, 130, 130, 132, 132, 134, 112, 134, 134, 136, 136, 4, 2, 116, 6, 138, 138, 132, 8, 140, 140, 130, 10, 142, 142, 128, 128, 104, 130, 106, 132, 108, 122, 92, 100, 144, 144, 122, 126, 144, 144, 94, 112, 114, 114, 116, 108, 110, 110, 112, 16, 18, 18, 20, 20, 22, 22, 24, 12, 14, 14, 16, 122, 124, 94, 96, 96, 98, 56, 146, 146, 60, 54, 148, 148, 62, 146, 148, 50, 150, 150, 66, 46, 152, 152, 68, 154, 152, 154, 48, 42, 156, 156, 72, 14, 158, 158, 124, 18, 160, 160, 122, 160, 120, 24, 162, 162, 90, 26, 164, 164, 88, 162, 164, 16, 166, 160, 166, 166, 158, 166, 124, 162, 168, 168, 120, 168, 22, 168, 92, 38, 40, 40, 42, 72, 74, 74, 76, 40, 74, 42, 44, 44, 46, 152, 170, 170, 156, 44, 170, 68, 70, 70, 72, 170, 70, 62, 64, 64, 66, 148, 172, 172, 150, 64, 172, 50, 52, 52, 54, 172, 52, 154, 66, 150, 154, 28, 30, 30, 32, 82, 84, 84, 86, 30, 84 ], @@ -216,7 +216,7 @@ "front arm": { "type": "mesh", "uvs": [ 0.71401, 0.00566, 0.67108, 0.08129, 0.60222, 0.15434, 0.53633, 0.21683, 0.44558, 0.28705, 0.34898, 0.35134, 0.29097, 0.38941, 0.25238, 0.41472, 0.22423, 0.44271, 0.19483, 0.47193, 0.15998, 0.50658, 0.09138, 0.59568, 0.05498, 0.70866, 0.02988, 0.81366, 0.01049, 0.94262, 0.10495, 0.98985, 0.25391, 0.97421, 0.31482, 0.88907, 0.28834, 0.82869, 0.13607, 0.74572, 0.14335, 0.71488, 0.18317, 0.62253, 0.25217, 0.54221, 0.29538, 0.50981, 0.33787, 0.47795, 0.38452, 0.45013, 0.43581, 0.41953, 0.54711, 0.3655, 0.68845, 0.29832, 0.74855, 0.35527, 0.85874, 0.38229, 0.99674, 0.37645, 0.95354, 0.33244, 0.91356, 0.29172, 0.87464, 0.25208, 0.83759, 0.21434, 0.78083, 0.12598, 0.78194, 0.0683, 0.6322, 0.23719, 0.66925, 0.15784, 0.75533, 0.20967, 0.7161, 0.11137 ], - "triangles": [ 30, 29, 33, 30, 32, 31, 40, 41, 36, 39, 41, 40, 40, 36, 35, 38, 39, 40, 28, 38, 40, 34, 28, 40, 34, 40, 35, 28, 34, 33, 29, 28, 33, 30, 33, 32, 41, 1, 0, 37, 41, 0, 36, 41, 37, 39, 1, 41, 39, 2, 1, 19, 12, 20, 13, 12, 19, 18, 15, 19, 16, 18, 17, 15, 13, 19, 15, 14, 13, 15, 18, 16, 21, 10, 22, 11, 10, 21, 20, 11, 21, 12, 11, 20, 9, 8, 23, 22, 9, 23, 10, 9, 22, 26, 5, 4, 25, 5, 26, 6, 5, 25, 24, 6, 25, 7, 6, 24, 23, 7, 24, 8, 7, 23, 38, 2, 39, 3, 2, 38, 27, 3, 38, 27, 38, 28, 4, 3, 27, 26, 4, 27 ], + "triangles": [ 30, 32, 31, 30, 29, 33, 30, 33, 32, 29, 28, 33, 28, 34, 33, 34, 40, 35, 34, 28, 40, 28, 38, 40, 38, 39, 40, 40, 36, 35, 39, 41, 40, 40, 41, 36, 39, 1, 41, 36, 41, 37, 37, 41, 0, 41, 1, 0, 39, 2, 1, 15, 18, 16, 15, 14, 13, 15, 13, 19, 16, 18, 17, 18, 15, 19, 13, 12, 19, 19, 12, 20, 12, 11, 20, 20, 11, 21, 11, 10, 21, 21, 10, 22, 10, 9, 22, 22, 9, 23, 9, 8, 23, 8, 7, 23, 23, 7, 24, 7, 6, 24, 24, 6, 25, 6, 5, 25, 25, 5, 26, 26, 5, 4, 26, 4, 27, 4, 3, 27, 27, 38, 28, 27, 3, 38, 3, 2, 38, 38, 2, 39 ], "vertices": [ 1, 47, 21.67, 6.08, 1, 2, 46, 18.13, 3.37, 0.16553, 47, 3.92, 4.24, 0.83447, 3, 27, -6.12, -15.24, 0.20965, 46, -0.05, 8.86, 0.53629, 5, 43.44, 6.81, 0.25406, 1, 27, 10.36, -12.02, 1, 2, 27, 30.62, -10.09, 0.88822, 28, -7.63, -10.15, 0.11178, 2, 27, 50.57, -9.69, 0.30996, 28, 12.31, -9.61, 0.69004, 2, 28, 24.21, -9.37, 0.86563, 29, -13.43, -6.2, 0.13437, 2, 28, 32.12, -9.22, 0.73143, 29, -5.73, -8.02, 0.26857, 2, 28, 39.35, -7.59, 0.54007, 29, 1.68, -8.25, 0.45993, 2, 28, 46.9, -5.88, 0.29037, 29, 9.42, -8.48, 0.70963, 2, 29, 18.59, -8.76, 0.66539, 30, -15.76, -5.13, 0.33461, 1, 30, 6.03, -8.58, 1, 2, 30, 31.42, -5.98, 0.39257, 31, 0.49, -6.36, 0.60743, 1, 31, 23.8, -9.31, 1, 1, 31, 52.37, -11.28, 1, 1, 31, 62.39, 2.72, 1, 1, 31, 58.29, 24.21, 1, 1, 31, 39.22, 32.48, 1, 1, 31, 26, 28.25, 1, 1, 31, 8.33, 5.63, 1, 2, 30, 28.81, 6.64, 0.48313, 31, 1.49, 6.49, 0.51687, 1, 30, 7.61, 5.9, 1, 3, 28, 51.67, 11.07, 0.10767, 29, 18.26, 6.75, 0.559, 30, -12.35, 10.01, 0.33333, 2, 28, 42.19, 10.25, 0.31464, 29, 8.88, 8.32, 0.68536, 2, 28, 32.87, 9.45, 0.59184, 29, -0.35, 9.86, 0.40816, 2, 28, 23.73, 9.7, 0.83036, 29, -9.14, 12.39, 0.16964, 2, 27, 52.08, 9.88, 0.29921, 28, 13.68, 9.98, 0.70079, 2, 27, 32.19, 12.6, 0.84687, 28, -6.24, 12.55, 0.15313, 1, 5, 9.42, 3.39, 1, 2, 5, -5.05, -1.59, 0.472, 4, 29.16, -0.35, 0.528, 1, 4, 16.13, -11.36, 1, 1, 4, 7.46, -29.44, 1, 2, 5, -8.23, -31.57, 0.5193, 4, 19, -28.74, 0.4807, 1, 5, 2, -28.43, 1, 1, 5, 11.96, -25.37, 1, 1, 5, 21.44, -22.45, 1, 3, 46, 12.7, -14.55, 0.25482, 47, 2.14, -14.4, 0.32231, 5, 42.47, -19.82, 0.42287, 1, 47, 13.64, -8.89, 1, 1, 27, 3.55, 0.91, 1, 2, 46, 1.72, -0.73, 0.5001, 5, 40.07, -2.34, 0.4999, 1, 5, 25.66, -11.25, 1, 3, 46, 13.4, -4.65, 0.33234, 47, 0.86, -4.56, 0.48165, 5, 48.12, -11.66, 0.18601 ], "hull": 38, "edges": [ 0, 2, 8, 10, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 70, 72, 72, 74, 0, 74, 56, 76, 6, 8, 76, 6, 4, 6, 4, 78, 78, 80, 80, 70, 2, 82, 82, 72, 82, 78, 78, 76, 2, 4, 56, 80, 56, 66, 62, 64, 64, 66, 66, 68, 68, 70, 44, 46, 46, 48, 18, 20, 46, 18, 10, 12, 12, 14, 48, 50, 50, 52, 12, 50, 14, 16, 16, 18 ], @@ -227,7 +227,7 @@ "front leg path": { "front leg path": { "type": "path", - "lengths": [ 140.43, 297.35, 652.05 ], + "lengths": [ 140.44, 297.38, 652.13 ], "vertexCount": 9, "vertices": [ 1, 44, -40.7, -0.42, 1, 1, 44, 1.49, -0.27, 1, 1, 44, 75.42, 0.33, 1, 2, 44, 82.92, 8.5, 0.5, 45, -58.75, -8.54, 0.5, 2, 44, 141.35, 0.53, 0.5, 45, 0.45, 0.71, 0.5, 2, 44, 208.27, -14.84, 0.5, 45, 68.84, 18.53, 0.5, 1, 45, 73.81, 1.42, 1, 1, 45, 156.58, 0.99, 1, 1, 44, 380.6, 0.76, 1 ] } @@ -236,7 +236,7 @@ "head": { "type": "mesh", "uvs": [ 0.49584, 0.01985, 0.30731, 0.05803, 0.14319, 0.17024, 0.02791, 0.36228, 0.04554, 0.57746, 0.16625, 0.73248, 0.18795, 0.84353, 0.30324, 0.96963, 0.42124, 0.91063, 0.58536, 0.9465, 0.76303, 0.93261, 0.86941, 0.786, 0.96784, 0.65034, 0.93351, 0.55575, 0.91494, 0.50457, 0.93281, 0.4436, 0.96241, 0.34261, 0.84984, 0.16793, 0.702, 0.06497, 0.71827, 0.40046, 0.55823, 0.46524, 0.67191, 0.56925, 0.61248, 0.74983, 0.29239, 0.55201, 0.68708, 0.30097, 0.49719, 0.31601, 0.38869, 0.29287, 0.30595, 0.24312, 0.32494, 0.40508, 0.40361, 0.55663, 0.63283, 0.6862, 0.7549, 0.67579, 0.72156, 0.43446, 0.60179, 0.47123, 0.67976, 0.53995, 0.86842, 0.4929 ], - "triangles": [ 7, 6, 8, 10, 9, 22, 9, 8, 22, 10, 22, 11, 22, 8, 23, 23, 8, 5, 8, 6, 5, 11, 22, 31, 22, 30, 31, 11, 31, 12, 23, 29, 22, 22, 29, 30, 5, 4, 23, 29, 20, 30, 30, 21, 31, 30, 20, 21, 31, 13, 12, 31, 14, 13, 31, 21, 14, 4, 3, 23, 21, 35, 14, 21, 34, 35, 20, 33, 21, 21, 33, 34, 23, 28, 29, 20, 29, 28, 20, 28, 25, 25, 28, 26, 23, 3, 28, 27, 3, 2, 3, 27, 28, 34, 32, 35, 34, 33, 32, 14, 35, 15, 15, 35, 19, 32, 33, 19, 33, 20, 19, 20, 24, 19, 20, 25, 24, 16, 15, 19, 19, 35, 32, 28, 27, 26, 19, 24, 16, 24, 17, 16, 18, 24, 25, 25, 26, 0, 24, 18, 17, 18, 25, 0, 27, 1, 26, 26, 1, 0, 27, 2, 1 ], + "triangles": [ 7, 6, 8, 27, 2, 1, 26, 1, 0, 27, 1, 26, 18, 25, 0, 24, 18, 17, 25, 26, 0, 18, 24, 25, 24, 17, 16, 19, 24, 16, 28, 27, 26, 19, 35, 32, 16, 15, 19, 20, 25, 24, 20, 24, 19, 33, 20, 19, 32, 33, 19, 15, 35, 19, 14, 35, 15, 34, 33, 32, 34, 32, 35, 3, 27, 28, 27, 3, 2, 23, 3, 28, 25, 28, 26, 20, 28, 25, 20, 29, 28, 23, 28, 29, 21, 33, 34, 20, 33, 21, 21, 34, 35, 21, 35, 14, 4, 3, 23, 31, 21, 14, 31, 14, 13, 31, 13, 12, 30, 20, 21, 30, 21, 31, 29, 20, 30, 5, 4, 23, 22, 29, 30, 23, 29, 22, 11, 31, 12, 22, 30, 31, 11, 22, 31, 8, 6, 5, 23, 8, 5, 22, 8, 23, 10, 22, 11, 9, 8, 22, 10, 9, 22 ], "vertices": [ 1, 48, 90.84, 8.15, 1, 1, 48, 81.71, 22.33, 1, 1, 48, 66.16, 32, 1, 1, 48, 44.35, 34.97, 1, 1, 48, 24.15, 26.25, 1, 1, 48, 12.72, 11.1, 1, 1, 47, 17.78, 6.07, 1, 1, 47, 10.71, -8.63, 1, 1, 48, 2.94, -15.85, 1, 1, 48, 4.23, -30.53, 1, 1, 48, 10.71, -44.65, 1, 1, 48, 27.9, -48.42, 1, 1, 48, 43.8, -51.91, 1, 1, 48, 51.91, -45.89, 1, 1, 48, 56.3, -42.64, 1, 1, 48, 62.68, -42.04, 1, 1, 48, 73.26, -41.06, 1, 1, 48, 86.82, -25.91, 1, 1, 48, 92.45, -10.3, 1, 1, 48, 60.63, -22.98, 1, 1, 48, 49.77, -12.03, 1, 1, 48, 43.05, -24.88, 1, 1, 48, 23.95, -26.11, 1, 1, 48, 33.73, 6.85, 1, 1, 48, 69.31, -17.05, 1, 1, 48, 62.37, -1.98, 1, 1, 48, 61.46, 7.71, 1, 1, 48, 63.86, 16.18, 1, 1, 48, 48.82, 9.15, 1, 1, 48, 36.5, -2.43, 1, 1, 48, 30.66, -25.63, 1, 1, 48, 35.19, -35.29, 1, 1, 48, 57.46, -24.4, 1, 1, 48, 50.45, -15.81, 1, 1, 48, 46.09, -24.53, 1, 1, 48, 56.08, -38.43, 1 ], "hull": 19, "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 32, 34, 34, 36, 0, 36, 28, 30, 30, 32, 30, 38, 38, 40, 40, 42, 42, 28, 20, 22, 22, 24, 22, 44, 44, 46, 32, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 24, 26, 26, 28, 62, 26, 64, 66, 66, 40, 66, 68, 68, 70, 70, 64 ], @@ -753,6 +753,519 @@ } } } + }, + "sneak rm": { + "bones": { + "hip": { + "rotate": [ + { "time": 0, "angle": 30.27, "curve": "stepped" }, + { "time": 0.1667, "angle": 30.27 }, + { "time": 0.3333, "angle": -31.29 }, + { "time": 0.5333, "angle": -44.75 }, + { "time": 0.7333, "angle": -25.5 }, + { "time": 0.9, "angle": -9.45 }, + { "time": 1.0667, "angle": 30.27 }, + { "time": 1.2333, "angle": -10.1 }, + { "time": 1.6333, "angle": -41.48 }, + { "time": 1.8, "angle": 30.27 } + ], + "translate": [ + { "time": 0, "x": -57.44, "y": -40.93 }, + { + "time": 0.1667, + "x": -16.16, + "y": -96.56, + "curve": [ 0.245, 0, 0.637, 0.56 ] + }, + { + "time": 0.2667, + "x": 86, + "y": -143.07, + "curve": [ 0.381, 0.55, 0.742, 1 ] + }, + { "time": 0.3333, "x": 145.45, "y": -159.28 }, + { "time": 0.4333, "x": 344.29, "y": -134.95 }, + { "time": 0.5333, "x": 543.14, "y": -81.1 }, + { "time": 0.7333, "x": 569.69, "y": -62.13 }, + { "time": 0.9, "x": 591.81, "y": -46.32 }, + { + "time": 1.0667, + "x": 653.14, + "y": -96.6, + "curve": [ 0.381, 0.55, 0.742, 1 ] + }, + { "time": 1.1333, "x": 710.17, "y": -143.1 }, + { "time": 1.2333, "x": 795.7, "y": -159.3 }, + { "time": 1.3333, "x": 986.95, "y": -153.35 }, + { "time": 1.4333, "x": 1178.2, "y": -111.89 }, + { "time": 1.6333, "x": 1195.1, "y": -62.1 }, + { "time": 1.8, "x": 1246.53, "y": -40.93 } + ] + }, + "front leg IK target": { + "translate": [ + { "time": 0, "x": -50.43, "y": 44.62 }, + { "time": 0.1667, "x": -50.43, "y": 46.55 }, + { "time": 0.3333, "x": -50.43, "y": 47 }, + { + "time": 0.5333, + "x": -26.43, + "y": 50.21, + "curve": [ 0.532, 0, 0.75, 1 ] + }, + { "time": 0.7333, "x": 566.44, "y": 107.27 }, + { "time": 0.9, "x": 1215.9, "y": 68.21 }, + { "time": 1.0667, "x": 1235.47, "y": 15.8 }, + { "time": 1.2333, "x": 1235.47, "y": 0.97 }, + { "time": 1.5667, "x": 1230.16, "y": 3.76 }, + { "time": 1.7, "x": 1244, "y": 26.77 }, + { "time": 1.8, "x": 1253.54, "y": 44.62 } + ] + }, + "front foot 1": { + "rotate": [ + { "time": 0, "angle": -48.39, "curve": "stepped" }, + { "time": 0.3333, "angle": -48.39 }, + { "time": 0.7, "angle": -121.35 }, + { "time": 0.8, "angle": -80.19 }, + { "time": 0.9, "angle": 45.59 }, + { "time": 1.0667, "angle": 2.11 }, + { "time": 1.2333, "angle": 4.65 }, + { "time": 1.5667, "angle": 5.67 }, + { "time": 1.8, "angle": -48.39 } + ], + "scale": [ + { "time": 0, "x": 1, "y": 1, "curve": "stepped" }, + { "time": 0.6, "x": 1, "y": 1 }, + { "time": 0.6333, "x": 0.955, "y": 1 }, + { "time": 0.7667, "x": 0.821, "y": 1 }, + { "time": 0.9, "x": 1, "y": 1 }, + { "time": 1.0667, "x": 0.851, "y": 1 }, + { "time": 1.3667, "x": 1, "y": 1 } + ] + }, + "front foot 3": { + "rotate": [ + { "time": 0, "angle": 36.33 }, + { "time": 0.3333, "angle": 28.46 }, + { "time": 0.5, "angle": 34.85 }, + { "time": 0.5333, "angle": 30.32 }, + { "time": 0.5667, "angle": 61.67 }, + { "time": 0.7, "angle": -19.47 }, + { "time": 0.9, "angle": -0.12 }, + { "time": 1.0667, "angle": -7.21 }, + { "time": 1.2333, "angle": -11.35 }, + { "time": 1.5667, "angle": -11.24 }, + { "time": 1.8, "angle": 36.33 } + ] + }, + "back leg IK target": { + "translate": [ + { "time": 0, "x": 516.79, "y": 86.68 }, + { "time": 0.1667, "x": 523.72, "y": 16.64 }, + { "time": 0.3333, "x": 523.03, "y": -5, "curve": "stepped" }, + { "time": 0.7, "x": 523.03, "y": -5 }, + { "time": 0.9, "x": 551.32, "y": 41.87 }, + { "time": 1.0667, "x": 554.24, "y": 44.45 }, + { "time": 1.1333, "x": 555.44, "y": 44.75 }, + { "time": 1.2, "x": 556.61, "y": 46.19, "curve": "stepped" }, + { "time": 1.4333, "x": 556.61, "y": 46.19 }, + { "time": 1.5, "x": 746.97, "y": 74.82 }, + { "time": 1.6333, "x": 1127.69, "y": 103.62 }, + { "time": 1.8, "x": 1820.76, "y": 86.68 } + ] + }, + "back foot 1": { + "rotate": [ + { "time": 0, "angle": 74.18 }, + { "time": 0.1667, "angle": -17.01 }, + { "time": 0.3333, "angle": 5.06 }, + { "time": 0.7, "angle": 3.74 }, + { "time": 0.9, "angle": -65.56 }, + { "time": 1.6333, "angle": -92.53 }, + { "time": 1.8, "angle": 74.18 } + ], + "scale": [ + { "time": 0, "x": 0.824, "y": 1 }, + { "time": 0.1667, "x": 0.754, "y": 1 }, + { "time": 0.3333, "x": 0.589, "y": 1 }, + { "time": 0.5667, "x": 0.91, "y": 1 }, + { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" }, + { "time": 1.4, "x": 1, "y": 1 }, + { "time": 1.5, "x": 0.845, "y": 1 }, + { "time": 1.8, "x": 0.824, "y": 1 } + ] + }, + "back foot 2": { + "rotate": [ + { "time": 0, "angle": 8.14 }, + { "time": 0.1667, "angle": -3.21 }, + { "time": 0.7, "angle": -1.14 }, + { "time": 0.9, "angle": 34.12 }, + { "time": 1.4333, "angle": 46.69 }, + { "time": 1.5333, "angle": -15.6 }, + { "time": 1.6333, "angle": -11.91 }, + { "time": 1.8, "angle": 8.14 } + ], + "scale": [ + { "time": 0, "x": 1, "y": 1 }, + { "time": 0.1667, "x": 0.835, "y": 1 }, + { "time": 0.3333, "x": 1, "y": 1 } + ] + }, + "front arm 1": { + "rotate": [ + { "time": 0, "angle": -39.72 }, + { "time": 0.1667, "angle": -37.3 }, + { "time": 0.3333, "angle": 30.67 }, + { + "time": 0.9, + "angle": -53.28, + "curve": [ 0.708, 0.01, 0.75, 1 ] + }, + { "time": 1.2333, "angle": 36 }, + { "time": 1.8, "angle": -39.72 } + ] + }, + "neck 1": { + "rotate": [ + { "time": 0, "angle": 21.95, "curve": "stepped" }, + { "time": 0.1667, "angle": 21.95 }, + { "time": 0.2667, "angle": 30.61 }, + { "time": 0.3333, "angle": 36.37 }, + { "time": 0.7333, "angle": 33.6 }, + { "time": 1.1667, "angle": 23.95 }, + { "time": 1.2333, "angle": 36.37 }, + { "time": 1.6333, "angle": 41.16 }, + { "time": 1.8, "angle": 21.95 } + ] + }, + "neck 2": { + "rotate": [ + { "time": 0, "angle": -22.93 }, + { "time": 0.1667, "angle": -23.96 }, + { "time": 0.2667, "angle": 8.84 }, + { "time": 0.3333, "angle": 30.71 }, + { "time": 0.7333, "angle": -3.37 }, + { "time": 0.9, "angle": -17.57 }, + { "time": 1.1667, "angle": 2.19 }, + { "time": 1.2333, "angle": 15.26 }, + { "time": 1.6333, "angle": 4.42 }, + { "time": 1.8, "angle": -22.93 } + ] + }, + "head": { + "rotate": [ + { "time": 0, "angle": -22.93 }, + { "time": 0.1667, "angle": -13.04 }, + { "time": 0.2667, "angle": 2.65 }, + { "time": 0.3333, "angle": 13.1 }, + { "time": 0.5, "angle": 13.1 }, + { "time": 0.7333, "angle": -18.91 }, + { "time": 0.9, "angle": -41.78 }, + { "time": 1.1667, "angle": -4 }, + { "time": 1.2333, "angle": -2.35 }, + { "time": 1.6333, "angle": -22.89 }, + { "time": 1.8, "angle": -22.93 } + ] + }, + "back arm 1": { + "rotate": [ + { "time": 0, "angle": -17.24 }, + { "time": 0.1667, "angle": -18.66 }, + { "time": 0.3333, "angle": 324.99 }, + { "time": 0.5667, "angle": -6.42 }, + { "time": 0.9, "angle": -14.83 }, + { "time": 1.0667, "angle": -16.91 }, + { "time": 1.2333, "angle": 1.49 }, + { "time": 1.4, "angle": 2.56 }, + { "time": 1.8, "angle": -17.24 } + ], + "translate": [ + { "time": 0, "x": -14.26, "y": -6.6 } + ] + }, + "back leg IK 1": { + "scale": [ + { "time": 0, "x": 2.186, "y": 1 }, + { "time": 0.1667, "x": 2.229, "y": 1 }, + { "time": 0.3333, "x": 1.532, "y": 1 }, + { "time": 0.4333, "x": 0.947, "y": 1 }, + { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" }, + { "time": 1.0667, "x": 1, "y": 1 }, + { "time": 1.1333, "x": 0.893, "y": 1 }, + { "time": 1.2333, "x": 0.957, "y": 1 }, + { "time": 1.4333, "x": 2.315, "y": 1 }, + { "time": 1.6333, "x": 0.774, "y": 1 }, + { "time": 1.8, "x": 2.186, "y": 1 } + ] + }, + "front leg 1": { + "scale": [ + { "time": 0, "x": 1, "y": 1.118 } + ] + }, + "back leg 1": { + "scale": [ + { "time": 0, "x": 1, "y": 1.039 } + ] + }, + "front leg IK 1": { + "scale": [ + { "time": 0, "x": 1, "y": 1 }, + { "time": 0.2667, "x": 0.859, "y": 1 }, + { "time": 0.3333, "x": 0.972, "y": 1 }, + { + "time": 0.5333, + "x": 2.356, + "y": 1, + "curve": [ 0.532, 0, 0.75, 1 ] + }, + { "time": 0.7, "x": 1, "y": 1 }, + { "time": 0.9, "x": 2.248, "y": 1 }, + { "time": 1.0667, "x": 2.003, "y": 1 }, + { "time": 1.2333, "x": 1.496, "y": 1 }, + { + "time": 1.3, + "x": 1.048, + "y": 1, + "curve": [ 0.34, 0.59, 0.765, 1 ] + }, + { "time": 1.4333, "x": 0.779, "y": 0.763 }, + { "time": 1.8, "x": 1, "y": 1 } + ] + }, + "front leg IK 2": { + "scale": [ + { "time": 0, "x": 1, "y": 1 } + ] + }, + "front arm 3": { + "rotate": [ + { "time": 0, "angle": 0 }, + { "time": 0.1667, "angle": 17.37 }, + { "time": 0.3333, "angle": 31.94 }, + { + "time": 0.9, + "angle": 4.76, + "curve": [ 0.708, 0.01, 0.75, 1 ] + }, + { "time": 1.2333, "angle": 39.97 }, + { "time": 1.8, "angle": 0 } + ] + }, + "spine 2": { + "rotate": [ + { "time": 0, "angle": -3.49 }, + { "time": 0.2667, "angle": -11.58 }, + { "time": 0.3333, "angle": -9.03 }, + { "time": 0.5, "angle": -2.66 }, + { "time": 0.7333, "angle": -5.78 }, + { "time": 1.1667, "angle": -11.58 }, + { "time": 1.2333, "angle": -6.7 }, + { "time": 1.6333, "angle": -2.5 }, + { "time": 1.8, "angle": -3.49 } + ] + }, + "spine 3": { + "rotate": [ + { "time": 0, "angle": -20.41 }, + { "time": 0.2667, "angle": -11.58 }, + { "time": 0.3333, "angle": -9.03 }, + { "time": 0.5, "angle": -2.66 }, + { "time": 0.7333, "angle": -10.54 }, + { "time": 0.9, "angle": -16.17 }, + { "time": 1.1667, "angle": -11.58 }, + { "time": 1.2333, "angle": -9.03 }, + { "time": 1.6333, "angle": -7.26 }, + { "time": 1.8, "angle": -20.41 } + ] + }, + "back arm 3": { + "rotate": [ + { "time": 0, "angle": 26.23 }, + { "time": 0.1667, "angle": 53.15 }, + { "time": 0.3333, "angle": 116.26 }, + { "time": 0.5667, "angle": 35.72 }, + { "time": 0.9, "angle": 39.33 }, + { "time": 1.0667, "angle": 41.19 }, + { "time": 1.2333, "angle": 78.1 }, + { "time": 1.4, "angle": 36.16 }, + { "time": 1.8, "angle": 26.23 } + ] + }, + "back foot 3": { + "rotate": [ + { "time": 0, "angle": 11.35 }, + { "time": 0.7, "angle": -4.24 }, + { "time": 0.9, "angle": 25.49, "curve": "stepped" }, + { "time": 1.4333, "angle": 25.49 }, + { "time": 1.5333, "angle": -30.52 }, + { "time": 1.6333, "angle": -20.54 }, + { "time": 1.8, "angle": 11.35 } + ], + "scale": [ + { "time": 0, "x": 1, "y": 1 }, + { "time": 0.1667, "x": 0.835, "y": 1 }, + { "time": 0.3333, "x": 1, "y": 1 } + ] + }, + "spine 1": { + "rotate": [ + { "time": 0, "angle": 10.81 }, + { "time": 0.2667, "angle": -28.7 }, + { "time": 0.3333, "angle": -24.32 }, + { "time": 0.5, "angle": -13.38 }, + { "time": 0.7333, "angle": 21.62 }, + { "time": 0.9, "angle": 46.61 }, + { "time": 1.1667, "angle": -28.7 }, + { "time": 1.2333, "angle": -43.34 }, + { "time": 1.6333, "angle": 24.89 }, + { "time": 1.8, "angle": 10.81 } + ] + }, + "spine 4": { + "rotate": [ + { "time": 0, "angle": 0 }, + { "time": 0.2667, "angle": -2.8 }, + { "time": 0.3333, "angle": -0.82 }, + { "time": 0.5, "angle": 4.14 }, + { "time": 0.7333, "angle": -3.74 }, + { "time": 0.9, "angle": -9.37 }, + { "time": 1.1667, "angle": -9.02 }, + { "time": 1.2333, "angle": -0.82 }, + { "time": 1.6333, "angle": 3.82 }, + { "time": 1.8, "angle": 0 } + ] + }, + "front foot 2": { + "rotate": [ + { "time": 0, "angle": 0 }, + { "time": 0.2667, "angle": -1.24 }, + { "time": 0.3333, "angle": -0.2 }, + { "time": 0.5, "angle": 22.72 }, + { "time": 0.5333, "angle": 26.87 }, + { "time": 0.7, "angle": -39.26 }, + { "time": 0.9, "angle": 11.27 }, + { "time": 1.0667, "angle": -18.18 }, + { "time": 1.2333, "angle": -2.64 }, + { "time": 1.5667, "angle": -5.84 }, + { "time": 1.8, "angle": 0 } + ] + }, + "belly": { + "translate": [ + { "time": 0, "x": 3.66, "y": -3.77 }, + { "time": 0.2667, "x": 13.83, "y": -3.82 }, + { "time": 0.6333, "x": -4.11, "y": -3.9 }, + { "time": 0.7667, "x": 10.21, "y": -2.92 }, + { "time": 0.8667, "x": 10.3, "y": -7.39 }, + { "time": 1.1, "x": -0.45, "y": -1.46 }, + { "time": 1.2333, "x": 12.38, "y": 2.33 }, + { "time": 1.3667, "x": 11.51, "y": 5.53 }, + { "time": 1.8, "x": 0, "y": 0 } + ] + }, + "butt": { + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 0.7667, "x": 9.88, "y": -25.41 }, + { "time": 0.8333, "x": 15.89, "y": -41.89 }, + { "time": 1.2333, "x": -12.49, "y": -33 }, + { "time": 1.8, "x": 0, "y": 0 } + ] + }, + "root": { + "translate": [ + { "time": 0, "x": 0, "y": 0 }, + { "time": 1.8, "x": -1276.66, "y": 0 } + ] + } + }, + "deform": { + "default": { + "back leg": { + "back leg": [ + { "time": 0.3 }, + { + "time": 0.3333, + "offset": 68, + "vertices": [ -1.72897, 2.75446, -1.5253, 2.94189, 0.0625, 3.6552, 0.01776, 3.65398, 0, 0, 0, 0, 0, 0, 0.0625, 3.6552, 0.01776, 3.65398, 0.90137, 3.54112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.98724, -1.57397, -0.03339, -2.08873, -0.0108, -2.08799, -0.51434, -2.02362, 0.98724, -1.57397, 0.87167, -1.68002, -0.03339, -2.08873, -0.0108, -2.08799 ] + }, + { "time": 0.4667, "curve": "stepped" }, + { "time": 1.3333 }, + { + "time": 1.4333, + "offset": 110, + "vertices": [ 2.52802, 0.00428, -0.03569, -4.90118, -3.71692, -3.19397, -4.88019, -0.43807, 5.17279, -0.0625, 5.1499, -0.4769, -0.07238, -10.06842, -7.6351, -6.56073, 6.64206, -0.09958, 6.61151, -0.62643, -0.09275, -12.93915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01242, -1.65533, -1.25543, -1.0787, 0.86096, 0.02682, -0.01242, -1.65533, -1.25543, -1.0787 ] + }, + { "time": 1.5 } + ] + }, + "back leg path": { + "back leg path": [ + { "time": 1.4333 }, + { + "time": 1.5, + "vertices": [ 4.67719, -35.44354, 0, 0, -11.37146, 49.53738, -20.9989, -109.72336, 65.45837, -90.53627, -9.56653, -24.74756, 11.45203, -23.93552, -19.0719, 47.32281, -47.53955, 18.58409, 34.69244, -51.5341, 0, 0, 13.30164, -100.17206 ] + }, + { + "time": 1.5667, + "vertices": [ -0.9635, -22.43964, 0, 0, -13.80389, 27.61459, -41.00647, -55.1597, 7.62653, -96.25755, -24.12604, -24.11285, 7.19531, -37.87421, -31.47302, 7.7796, -12.34546, -3.32329, 26.55981, -38.73888, 0, 0, -13.62085, -280.84912 ] + }, + { "time": 1.6667 } + ] + }, + "body": { + "body": [ + { "time": 0 }, + { + "time": 0.3333, + "offset": 164, + "vertices": [ -0.01179, 0.02892, 0.00917, 0.0298, 0, 0, 1.17781, 0.89836, 1.48063, -0.04942, -6.68858, -1.30629, 4.38938, 4.03926, 4.59584, 3.27733, 5.6365, -0.11035, -4.92264, -0.8036, 4.54263, 1.06504, 3.29334, 0.58414, 2.94214, -1.40272, -4.28855, -0.56444, 5.07103, -0.2119, 2.95891, -0.75666, 1.83514, -2.22984, -4.31062, 0.6261, 6.11538, -0.87569, 3.7923, -1.67126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.17404, 0.22007, 0.27404, 0.06016 ] + }, + { + "time": 0.5333, + "offset": 164, + "vertices": [ -0.01887, 0.04627, 0.01467, 0.04768, 0, 0, 1.8845, 1.43737, 2.369, -0.07908, 1.46056, -1.33223, -0.75053, -3.7334, -2.8232, -2.55492, -3.80252, -0.19385, 2.81923, -1.5031, -0.33163, -6.75651, -4.28408, -5.23484, -6.6292, -1.34549, 3.83379, -1.12045, 0.51382, -8.79961, -4.81918, -7.38011, -8.4004, -2.66889, 3.83379, -1.12045, 0.51382, -8.79961, -4.81918, -7.38011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.27846, 0.35212, 0.43846, 0.09625 ] + }, + { + "time": 0.6333, + "offset": 170, + "vertices": [ -2.09907, 0.04961, -1.94301, 1.46154, 1.74966, 0.25744, 0.3765, -3.44555, -2.34343, -2.73069, -3.66285, -0.53693, 0, 0, 0, 0, 0, 0, 0, 0, 1.91689, -0.56022, 0.25691, -4.39981, -2.40959, -3.69006, -4.2002, -1.33444, 1.91689, -0.56022, 0.25691, -4.39981, -2.40959, -3.69006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.66468, 1.25351, 0.05177, 1.41789 ] + }, + { "time": 0.7333 }, + { + "time": 0.7667, + "offset": 264, + "vertices": [ -2.27499, -1.60417, -2.23926, -1.61371, -2.2196, -1.74294, -1.80919, 2.86346, -1.11118, 2.362, -1.14221, 2.35901, 2.63101, 1.41101, 2.63216, 1.41742, -0.8147, 8.46568, 9.45621, 1.07874, 9.45622, 1.08002, -1.00012, 6.23984, 6.96738, 1.29987, 6.96741, 1.30219, -0.68823, 4.24005, 4.73441, 0.89532, 4.73448, 0.89594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.05484, 2.78093, 0.01666, 2.78223, 3.10776, -0.05573, 3.10799, -0.05426, -1.17972, 2.87598, -0.99005, 3.55937, 3.97198, 1.27319, 3.97208, 1.27423, -2.74237, 3.14401 ] + }, + { "time": 0.8333, "curve": "stepped" }, + { "time": 1.0667 }, + { + "time": 1.3333, + "offset": 142, + "vertices": [ 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.02271, -1.7984, 0.00684, -4.47887, -0.46118, -4.45537, -0.27441, -4.47041 ] + }, + { "time": 1.4333 } + ] + }, + "front leg path": { + "front leg path": [ + { "time": 0.5667 }, + { + "time": 0.6333, + "vertices": [ 0.16366, -9.90768, 0, 0, -1.90419, 16.9905, 16.55858, -93.6721, 21.4361, -76.03695, -0.72391, -31.37989, 8.2138, -30.29725, -24.90733, 16.177, -28.83566, 5.62576, 82.90022, -63.82897, 0, 0, -39.50021, -13.99933 ] + }, + { + "time": 0.7, + "vertices": [ 0.20398, -12.34892, 0, 0, -2.37338, 21.17692, 20.63858, -116.75269, 26.71791, -94.77228, -0.90228, -39.11182, 10.23766, -37.76243, -31.04443, 20.16298, -35.9407, 7.01193, 22.68159, 24.72715, 0, 0, -292.39255, -342.79443 ] + }, + { "time": 0.8 } + ] + } + } + } } } } \ No newline at end of file diff --git a/spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower.meta b/spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower.meta deleted file mode 100644 index 16b67436c..000000000 --- a/spine-unity/Assets/spine-unity/Modules/SlotTintBlackFollower.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 7e364d7a84acb894ea3f4bde752a09e8 -folderAsset: yes -timeCreated: 1489227060 -licenseType: Free -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: