This commit is contained in:
icon 2024-10-28 09:30:28 +08:00
commit 5e9944c991
343 changed files with 43664 additions and 28245 deletions

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 86ed3f909e6d3914d9721696f6b8f2d8
guid: aa0e2a01c163a024da7914114c074c67
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f38b3694c352b8c40ba8f16ed82a7209
guid: 83c0bcd4d3de5aa4db1ed0b531647b57
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -0,0 +1,21 @@
fileFormatVersion: 2
guid: a50bd9a009c8dfc4ebd88cc8101225a7
labels:
- Tween
- Tweening
- Animation
- HOTween
- Paths
- iTween
- DFTween
- LeanTween
- Ease
- Easing
- Shake
- Punch
- 2DToolkit
- TextMeshPro
- Text
folderAsset: yes
DefaultImporter:
userData:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: 34192c5e0d14aee43a0e86cc4823268a
TextScriptImporter:
userData:

Binary file not shown.

View File

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: 4f007001a22b3d24dae350342c4d19c8
DefaultImporter:
userData:

View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: a811bde74b26b53498b4f6d872b09b6d
PluginImporter:
serializedVersion: 1
iconMap: {}
executionOrder: {}
isPreloaded: 0
platformData:
Any:
enabled: 1
settings: {}
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
WindowsStoreApps:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,5 @@
fileFormatVersion: 2
guid: b27f58ae5d5c33a4bb2d1f4f34bd036d
folderAsset: yes
DefaultImporter:
userData:

View File

@ -0,0 +1,144 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>DOTweenEditor</name>
</assembly>
<members>
<member name="T:DG.DOTweenEditor.EditorCompatibilityUtils">
<summary>
Contains compatibility methods taken from DemiEditor (for when DOTween is without it)
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorCompatibilityUtils.FindObjectOfType``1(System.Boolean)">
<summary>
Warning: some versions of this method don't have the includeInactive parameter so it won't be taken into account
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorCompatibilityUtils.FindObjectOfType(System.Type,System.Boolean)">
<summary>
Warning: some versions of this method don't have the includeInactive parameter so it won't be taken into account
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorCompatibilityUtils.FindObjectsOfType``1(System.Boolean)">
<summary>
Warning: some versions of this method don't have the includeInactive parameter so it won't be taken into account
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorCompatibilityUtils.FindObjectsOfType(System.Type,System.Boolean)">
<summary>
Warning: some versions of this method don't have the includeInactive parameter so it won't be taken into account
</summary>
</member>
<member name="M:DG.DOTweenEditor.DOTweenEditorPreview.Start(System.Action)">
<summary>
Starts the update loop of tween in the editor. Has no effect during playMode.
</summary>
<param name="onPreviewUpdated">Eventual callback to call after every update</param>
</member>
<member name="M:DG.DOTweenEditor.DOTweenEditorPreview.Stop(System.Boolean,System.Boolean)">
<summary>
Stops the update loop and clears the onPreviewUpdated callback.
</summary>
<param name="resetTweenTargets">If TRUE also resets the tweened objects to their original state.
Note that this works by calling Rewind on all tweens, so it will work correctly
only if you have a single tween type per object and it wasn't killed</param>
<param name="clearTweens">If TRUE also kills any cached tween</param>
</member>
<member name="M:DG.DOTweenEditor.DOTweenEditorPreview.PrepareTweenForPreview(DG.Tweening.Tween,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Readies the tween for editor preview by setting its UpdateType to Manual plus eventual extra settings.
</summary>
<param name="t">The tween to ready</param>
<param name="clearCallbacks">If TRUE (recommended) removes all callbacks (OnComplete/Rewind/etc)</param>
<param name="preventAutoKill">If TRUE prevents the tween from being auto-killed at completion</param>
<param name="andPlay">If TRUE starts playing the tween immediately</param>
</member>
<member name="F:DG.DOTweenEditor.EditorVersion.Version">
<summary>Full major version + first minor version (ex: 2018.1f)</summary>
</member>
<member name="F:DG.DOTweenEditor.EditorVersion.MajorVersion">
<summary>Major version</summary>
</member>
<member name="F:DG.DOTweenEditor.EditorVersion.MinorVersion">
<summary>First minor version (ex: in 2018.1 it would be 1)</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.SetEditorTexture(UnityEngine.Texture2D,UnityEngine.FilterMode,System.Int32)">
<summary>
Checks that the given editor texture use the correct import settings,
and applies them if they're incorrect.
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.DOTweenSetupRequired">
<summary>
Returns TRUE if setup is required
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.AssetExists(System.String)">
<summary>
Returns TRUE if the file/directory at the given path exists.
</summary>
<param name="adbPath">Path, relative to Unity's project folder</param>
<returns></returns>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.ADBPathToFullPath(System.String)">
<summary>
Converts the given project-relative path to a full path,
with backward (\) slashes).
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.FullPathToADBPath(System.String)">
<summary>
Converts the given full path to a path usable with AssetDatabase methods
(relative to Unity's project folder, and with the correct Unity forward (/) slashes).
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.ConnectToSourceAsset``1(System.String,System.Boolean)">
<summary>
Connects to a <see cref="T:UnityEngine.ScriptableObject"/> asset.
If the asset already exists at the given path, loads it and returns it.
Otherwise, either returns NULL or automatically creates it before loading and returning it
(depending on the given parameters).
</summary>
<typeparam name="T">Asset type</typeparam>
<param name="adbFilePath">File path (relative to Unity's project folder)</param>
<param name="createIfMissing">If TRUE and the requested asset doesn't exist, forces its creation</param>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.GetAssemblyFilePath(System.Reflection.Assembly)">
<summary>
Full path for the given loaded assembly, assembly file included
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.AddGlobalDefine(System.String)">
<summary>
Adds the given global define if it's not already present
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.RemoveGlobalDefine(System.String)">
<summary>
Removes the given global define if it's present
</summary>
</member>
<member name="M:DG.DOTweenEditor.EditorUtils.HasGlobalDefine(System.String,System.Nullable{UnityEditor.BuildTargetGroup})">
<summary>
Returns TRUE if the given global define is present in all the <see cref="T:UnityEditor.BuildTargetGroup"/>
or only in the given <see cref="T:UnityEditor.BuildTargetGroup"/>, depending on passed parameters.<para/>
</summary>
<param name="id"></param>
<param name="buildTargetGroup"><see cref="T:UnityEditor.BuildTargetGroup"/>to use. Leave NULL to check in all of them.</param>
</member>
<member name="T:DG.DOTweenEditor.DOTweenDefines">
<summary>
Not used as menu item anymore, but as a utility function
</summary>
</member>
<member name="F:DG.DOTweenEditor.UnityEditorVersion.Version">
<summary>Full major version + first minor version (ex: 2018.1f)</summary>
</member>
<member name="F:DG.DOTweenEditor.UnityEditorVersion.MajorVersion">
<summary>Major version</summary>
</member>
<member name="F:DG.DOTweenEditor.UnityEditorVersion.MinorVersion">
<summary>First minor version (ex: in 2018.1 it would be 1)</summary>
</member>
</members>
</doc>

View File

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: 2e2c6224d345d9249acfa6e8ef40bb2d
TextScriptImporter:
userData:

View File

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: 8f46310a8b0a8f04a92993c37c713243
DefaultImporter:
userData:

View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 45d5034162d6cf04dbe46da84fc7d074
PluginImporter:
serializedVersion: 1
iconMap: {}
executionOrder: {}
isPreloaded: 0
platformData:
Any:
enabled: 0
settings: {}
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
WindowsStoreApps:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,5 @@
fileFormatVersion: 2
guid: 0034ebae0c2a9344e897db1160d71b6d
folderAsset: yes
DefaultImporter:
userData:

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,47 @@
fileFormatVersion: 2
guid: 8da095e39e9b4df488dfd436f81116d6
TextureImporter:
fileIDToRecycleName: {}
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 0
linearTexture: 1
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
seamlessCubemap: 0
textureFormat: -3
maxTextureSize: 128
textureSettings:
filterMode: 1
aniso: 1
mipBias: -1
wrapMode: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 1
textureType: 2
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 61521df2e071645488ba3d05e49289ae
timeCreated: 1602317874
licenseType: Store
TextureImporter:
fileIDToRecycleName: {}
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
filterMode: -1
aniso: -1
mipBias: -1
wrapMode: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
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
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,47 @@
fileFormatVersion: 2
guid: 7051dba417b3d53409f2918f1ea4938d
TextureImporter:
fileIDToRecycleName: {}
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 0
linearTexture: 1
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
seamlessCubemap: 0
textureFormat: -3
maxTextureSize: 256
textureSettings:
filterMode: 1
aniso: 1
mipBias: -1
wrapMode: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 1
textureType: 2
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,47 @@
fileFormatVersion: 2
guid: 519694efe2bb2914788b151fbd8c01f4
TextureImporter:
fileIDToRecycleName: {}
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 1
linearTexture: 0
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
filterMode: -1
aniso: -1
mipBias: -1
wrapMode: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 0
textureType: -1
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,47 @@
fileFormatVersion: 2
guid: 78a59ca99f8987941adb61f9e14a06a7
TextureImporter:
fileIDToRecycleName: {}
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 0
linearTexture: 1
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
seamlessCubemap: 0
textureFormat: -3
maxTextureSize: 512
textureSettings:
filterMode: 1
aniso: 1
mipBias: -1
wrapMode: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 1
textureType: 2
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:

View File

@ -0,0 +1,5 @@
fileFormatVersion: 2
guid: 143604b8bad857d47a6f7cc7a533e2dc
folderAsset: yes
DefaultImporter:
userData:

View File

@ -0,0 +1,198 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
#if true // MODULE_MARKER
using System;
using DG.Tweening.Core;
using DG.Tweening.Plugins.Options;
using UnityEngine;
using UnityEngine.Audio; // Required for AudioMixer
#pragma warning disable 1591
namespace DG.Tweening
{
public static class DOTweenModuleAudio
{
#region Shortcuts
#region Audio
/// <summary>Tweens an AudioSource's volume to the given value.
/// Also stores the AudioSource as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach (0 to 1)</param><param name="duration">The duration of the tween</param>
public static TweenerCore<float, float, FloatOptions> DOFade(this AudioSource target, float endValue, float duration)
{
if (endValue < 0) endValue = 0;
else if (endValue > 1) endValue = 1;
TweenerCore<float, float, FloatOptions> t = DOTween.To(() => target.volume, x => target.volume = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens an AudioSource's pitch to the given value.
/// Also stores the AudioSource as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<float, float, FloatOptions> DOPitch(this AudioSource target, float endValue, float duration)
{
TweenerCore<float, float, FloatOptions> t = DOTween.To(() => target.pitch, x => target.pitch = x, endValue, duration);
t.SetTarget(target);
return t;
}
#endregion
#region AudioMixer
/// <summary>Tweens an AudioMixer's exposed float to the given value.
/// Also stores the AudioMixer as the tween's target so it can be used for filtered operations.
/// Note that you need to manually expose a float in an AudioMixerGroup in order to be able to tween it from an AudioMixer.</summary>
/// <param name="floatName">Name given to the exposed float to set</param>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<float, float, FloatOptions> DOSetFloat(this AudioMixer target, string floatName, float endValue, float duration)
{
TweenerCore<float, float, FloatOptions> t = DOTween.To(()=> {
float currVal;
target.GetFloat(floatName, out currVal);
return currVal;
}, x=> target.SetFloat(floatName, x), endValue, duration);
t.SetTarget(target);
return t;
}
#region Operation Shortcuts
/// <summary>
/// Completes all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens completed
/// (meaning the tweens that don't have infinite loops and were not already complete)
/// </summary>
/// <param name="withCallbacks">For Sequences only: if TRUE also internal Sequence callbacks will be fired,
/// otherwise they will be ignored</param>
public static int DOComplete(this AudioMixer target, bool withCallbacks = false)
{
return DOTween.Complete(target, withCallbacks);
}
/// <summary>
/// Kills all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens killed.
/// </summary>
/// <param name="complete">If TRUE completes the tween before killing it</param>
public static int DOKill(this AudioMixer target, bool complete = false)
{
return DOTween.Kill(target, complete);
}
/// <summary>
/// Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens flipped.
/// </summary>
public static int DOFlip(this AudioMixer target)
{
return DOTween.Flip(target);
}
/// <summary>
/// Sends to the given position all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens involved.
/// </summary>
/// <param name="to">Time position to reach
/// (if higher than the whole tween duration the tween will simply reach its end)</param>
/// <param name="andPlay">If TRUE will play the tween after reaching the given position, otherwise it will pause it</param>
public static int DOGoto(this AudioMixer target, float to, bool andPlay = false)
{
return DOTween.Goto(target, to, andPlay);
}
/// <summary>
/// Pauses all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens paused.
/// </summary>
public static int DOPause(this AudioMixer target)
{
return DOTween.Pause(target);
}
/// <summary>
/// Plays all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens played.
/// </summary>
public static int DOPlay(this AudioMixer target)
{
return DOTween.Play(target);
}
/// <summary>
/// Plays backwards all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens played.
/// </summary>
public static int DOPlayBackwards(this AudioMixer target)
{
return DOTween.PlayBackwards(target);
}
/// <summary>
/// Plays forward all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens played.
/// </summary>
public static int DOPlayForward(this AudioMixer target)
{
return DOTween.PlayForward(target);
}
/// <summary>
/// Restarts all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens restarted.
/// </summary>
public static int DORestart(this AudioMixer target)
{
return DOTween.Restart(target);
}
/// <summary>
/// Rewinds all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens rewinded.
/// </summary>
public static int DORewind(this AudioMixer target)
{
return DOTween.Rewind(target);
}
/// <summary>
/// Smoothly rewinds all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens rewinded.
/// </summary>
public static int DOSmoothRewind(this AudioMixer target)
{
return DOTween.SmoothRewind(target);
}
/// <summary>
/// Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference
/// (meaning tweens that were started from this target, or that had this target added as an Id)
/// and returns the total number of tweens involved.
/// </summary>
public static int DOTogglePause(this AudioMixer target)
{
return DOTween.TogglePause(target);
}
#endregion
#endregion
#endregion
}
}
#endif

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b766d08851589514b97afb23c6f30a70
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,146 @@
using UnityEngine;
#if false || EPO_DOTWEEN // MODULE_MARKER
using EPOOutline;
using DG.Tweening.Plugins.Options;
using DG.Tweening;
using DG.Tweening.Core;
namespace DG.Tweening
{
public static class DOTweenModuleEPOOutline
{
public static int DOKill(this SerializedPass target, bool complete)
{
return DOTween.Kill(target, complete);
}
public static TweenerCore<float, float, FloatOptions> DOFloat(this SerializedPass target, string propertyName, float endValue, float duration)
{
var tweener = DOTween.To(() => target.GetFloat(propertyName), x => target.SetFloat(propertyName, x), endValue, duration);
tweener.SetOptions(true).SetTarget(target);
return tweener;
}
public static TweenerCore<Color, Color, ColorOptions> DOFade(this SerializedPass target, string propertyName, float endValue, float duration)
{
var tweener = DOTween.ToAlpha(() => target.GetColor(propertyName), x => target.SetColor(propertyName, x), endValue, duration);
tweener.SetOptions(true).SetTarget(target);
return tweener;
}
public static TweenerCore<Color, Color, ColorOptions> DOColor(this SerializedPass target, string propertyName, Color endValue, float duration)
{
var tweener = DOTween.To(() => target.GetColor(propertyName), x => target.SetColor(propertyName, x), endValue, duration);
tweener.SetOptions(false).SetTarget(target);
return tweener;
}
public static TweenerCore<Vector4, Vector4, VectorOptions> DOVector(this SerializedPass target, string propertyName, Vector4 endValue, float duration)
{
var tweener = DOTween.To(() => target.GetVector(propertyName), x => target.SetVector(propertyName, x), endValue, duration);
tweener.SetOptions(false).SetTarget(target);
return tweener;
}
public static TweenerCore<float, float, FloatOptions> DOFloat(this SerializedPass target, int propertyId, float endValue, float duration)
{
var tweener = DOTween.To(() => target.GetFloat(propertyId), x => target.SetFloat(propertyId, x), endValue, duration);
tweener.SetOptions(true).SetTarget(target);
return tweener;
}
public static TweenerCore<Color, Color, ColorOptions> DOFade(this SerializedPass target, int propertyId, float endValue, float duration)
{
var tweener = DOTween.ToAlpha(() => target.GetColor(propertyId), x => target.SetColor(propertyId, x), endValue, duration);
tweener.SetOptions(true).SetTarget(target);
return tweener;
}
public static TweenerCore<Color, Color, ColorOptions> DOColor(this SerializedPass target, int propertyId, Color endValue, float duration)
{
var tweener = DOTween.To(() => target.GetColor(propertyId), x => target.SetColor(propertyId, x), endValue, duration);
tweener.SetOptions(false).SetTarget(target);
return tweener;
}
public static TweenerCore<Vector4, Vector4, VectorOptions> DOVector(this SerializedPass target, int propertyId, Vector4 endValue, float duration)
{
var tweener = DOTween.To(() => target.GetVector(propertyId), x => target.SetVector(propertyId, x), endValue, duration);
tweener.SetOptions(false).SetTarget(target);
return tweener;
}
public static int DOKill(this Outlinable.OutlineProperties target, bool complete = false)
{
return DOTween.Kill(target, complete);
}
public static int DOKill(this Outliner target, bool complete = false)
{
return DOTween.Kill(target, complete);
}
/// <summary>
/// Controls the alpha (transparency) of the outline
/// </summary>
public static TweenerCore<Color, Color, ColorOptions> DOFade(this Outlinable.OutlineProperties target, float endValue, float duration)
{
var tweener = DOTween.ToAlpha(() => target.Color, x => target.Color = x, endValue, duration);
tweener.SetOptions(true).SetTarget(target);
return tweener;
}
/// <summary>
/// Controls the color of the outline
/// </summary>
public static TweenerCore<Color, Color, ColorOptions> DOColor(this Outlinable.OutlineProperties target, Color endValue, float duration)
{
var tweener = DOTween.To(() => target.Color, x => target.Color = x, endValue, duration);
tweener.SetOptions(false).SetTarget(target);
return tweener;
}
/// <summary>
/// Controls the amount of blur applied to the outline
/// </summary>
public static TweenerCore<float, float, FloatOptions> DOBlurShift(this Outlinable.OutlineProperties target, float endValue, float duration, bool snapping = false)
{
var tweener = DOTween.To(() => target.BlurShift, x => target.BlurShift = x, endValue, duration);
tweener.SetOptions(snapping).SetTarget(target);
return tweener;
}
/// <summary>
/// Controls the amount of blur applied to the outline
/// </summary>
public static TweenerCore<float, float, FloatOptions> DOBlurShift(this Outliner target, float endValue, float duration, bool snapping = false)
{
var tweener = DOTween.To(() => target.BlurShift, x => target.BlurShift = x, endValue, duration);
tweener.SetOptions(snapping).SetTarget(target);
return tweener;
}
/// <summary>
/// Controls the amount of dilation applied to the outline
/// </summary>
public static TweenerCore<float, float, FloatOptions> DODilateShift(this Outlinable.OutlineProperties target, float endValue, float duration, bool snapping = false)
{
var tweener = DOTween.To(() => target.DilateShift, x => target.DilateShift = x, endValue, duration);
tweener.SetOptions(snapping).SetTarget(target);
return tweener;
}
/// <summary>
/// Controls the amount of dilation applied to the outline
/// </summary>
public static TweenerCore<float, float, FloatOptions> DODilateShift(this Outliner target, float endValue, float duration, bool snapping = false)
{
var tweener = DOTween.To(() => target.DilateShift, x => target.DilateShift = x, endValue, duration);
tweener.SetOptions(snapping).SetTarget(target);
return tweener;
}
}
}
#endif

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: e944529dcaee98f4e9498d80e541d93e
timeCreated: 1602593330
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,216 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
#if true // MODULE_MARKER
using System;
using DG.Tweening.Core;
using DG.Tweening.Core.Enums;
using DG.Tweening.Plugins;
using DG.Tweening.Plugins.Core.PathCore;
using DG.Tweening.Plugins.Options;
using UnityEngine;
#pragma warning disable 1591
namespace DG.Tweening
{
public static class DOTweenModulePhysics
{
#region Shortcuts
#region Rigidbody
/// <summary>Tweens a Rigidbody's position to the given value.
/// Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOMove(this Rigidbody target, Vector3 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody's X position to the given value.
/// Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOMoveX(this Rigidbody target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, new Vector3(endValue, 0, 0), duration);
t.SetOptions(AxisConstraint.X, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody's Y position to the given value.
/// Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOMoveY(this Rigidbody target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, endValue, 0), duration);
t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody's Z position to the given value.
/// Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOMoveZ(this Rigidbody target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, 0, endValue), duration);
t.SetOptions(AxisConstraint.Z, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody's rotation to the given value.
/// Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="mode">Rotation mode</param>
public static TweenerCore<Quaternion, Vector3, QuaternionOptions> DORotate(this Rigidbody target, Vector3 endValue, float duration, RotateMode mode = RotateMode.Fast)
{
TweenerCore<Quaternion, Vector3, QuaternionOptions> t = DOTween.To(() => target.rotation, target.MoveRotation, endValue, duration);
t.SetTarget(target);
t.plugOptions.rotateMode = mode;
return t;
}
/// <summary>Tweens a Rigidbody's rotation so that it will look towards the given position.
/// Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="towards">The position to look at</param><param name="duration">The duration of the tween</param>
/// <param name="axisConstraint">Eventual axis constraint for the rotation</param>
/// <param name="up">The vector that defines in which direction up is (default: Vector3.up)</param>
public static TweenerCore<Quaternion, Vector3, QuaternionOptions> DOLookAt(this Rigidbody target, Vector3 towards, float duration, AxisConstraint axisConstraint = AxisConstraint.None, Vector3? up = null)
{
TweenerCore<Quaternion, Vector3, QuaternionOptions> t = DOTween.To(() => target.rotation, target.MoveRotation, towards, duration)
.SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetLookAt);
t.plugOptions.axisConstraint = axisConstraint;
t.plugOptions.up = (up == null) ? Vector3.up : (Vector3)up;
return t;
}
#region Special
/// <summary>Tweens a Rigidbody's position to the given value, while also applying a jump effect along the Y axis.
/// Returns a Sequence instead of a Tweener.
/// Also stores the Rigidbody as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param>
/// <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
/// <param name="numJumps">Total number of jumps</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Sequence DOJump(this Rigidbody target, Vector3 endValue, float jumpPower, int numJumps, float duration, bool snapping = false)
{
if (numJumps < 1) numJumps = 1;
float startPosY = 0;
float offsetY = -1;
bool offsetYSet = false;
Sequence s = DOTween.Sequence();
Tween yTween = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, jumpPower, 0), duration / (numJumps * 2))
.SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative()
.SetLoops(numJumps * 2, LoopType.Yoyo)
.OnStart(() => startPosY = target.position.y);
s.Append(DOTween.To(() => target.position, target.MovePosition, new Vector3(endValue.x, 0, 0), duration)
.SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear)
).Join(DOTween.To(() => target.position, target.MovePosition, new Vector3(0, 0, endValue.z), duration)
.SetOptions(AxisConstraint.Z, snapping).SetEase(Ease.Linear)
).Join(yTween)
.SetTarget(target).SetEase(DOTween.defaultEaseType);
yTween.OnUpdate(() => {
if (!offsetYSet) {
offsetYSet = true;
offsetY = s.isRelative ? endValue.y : endValue.y - startPosY;
}
Vector3 pos = target.position;
pos.y += DOVirtual.EasedValue(0, offsetY, yTween.ElapsedPercentage(), Ease.OutQuad);
target.MovePosition(pos);
});
return s;
}
/// <summary>Tweens a Rigidbody's position through the given path waypoints, using the chosen path algorithm.
/// Also stores the Rigidbody as the tween's target so it can be used for filtered operations.
/// <para>NOTE: to tween a rigidbody correctly it should be set to kinematic at least while being tweened.</para>
/// <para>BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug).
/// If you plan to publish there you should use a regular transform.DOPath.</para></summary>
/// <param name="path">The waypoints to go through</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="pathType">The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points)</param>
/// <param name="pathMode">The path mode: 3D, side-scroller 2D, top-down 2D</param>
/// <param name="resolution">The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive.
/// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints</param>
/// <param name="gizmoColor">The color of the path (shown when gizmos are active in the Play panel and the tween is running)</param>
public static TweenerCore<Vector3, Path, PathOptions> DOPath(
this Rigidbody target, Vector3[] path, float duration, PathType pathType = PathType.Linear,
PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null
)
{
if (resolution < 1) resolution = 1;
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => target.position, target.MovePosition, new Path(pathType, path, resolution, gizmoColor), duration)
.SetTarget(target).SetUpdate(UpdateType.Fixed);
t.plugOptions.isRigidbody = true;
t.plugOptions.mode = pathMode;
return t;
}
/// <summary>Tweens a Rigidbody's localPosition through the given path waypoints, using the chosen path algorithm.
/// Also stores the Rigidbody as the tween's target so it can be used for filtered operations
/// <para>NOTE: to tween a rigidbody correctly it should be set to kinematic at least while being tweened.</para>
/// <para>BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug).
/// If you plan to publish there you should use a regular transform.DOLocalPath.</para></summary>
/// <param name="path">The waypoint to go through</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="pathType">The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points)</param>
/// <param name="pathMode">The path mode: 3D, side-scroller 2D, top-down 2D</param>
/// <param name="resolution">The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive.
/// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints</param>
/// <param name="gizmoColor">The color of the path (shown when gizmos are active in the Play panel and the tween is running)</param>
public static TweenerCore<Vector3, Path, PathOptions> DOLocalPath(
this Rigidbody target, Vector3[] path, float duration, PathType pathType = PathType.Linear,
PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null
)
{
if (resolution < 1) resolution = 1;
Transform trans = target.transform;
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), new Path(pathType, path, resolution, gizmoColor), duration)
.SetTarget(target).SetUpdate(UpdateType.Fixed);
t.plugOptions.isRigidbody = true;
t.plugOptions.mode = pathMode;
t.plugOptions.useLocalPosition = true;
return t;
}
// Used by path editor when creating the actual tween, so it can pass a pre-compiled path
internal static TweenerCore<Vector3, Path, PathOptions> DOPath(
this Rigidbody target, Path path, float duration, PathMode pathMode = PathMode.Full3D
)
{
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => target.position, target.MovePosition, path, duration)
.SetTarget(target);
t.plugOptions.isRigidbody = true;
t.plugOptions.mode = pathMode;
return t;
}
internal static TweenerCore<Vector3, Path, PathOptions> DOLocalPath(
this Rigidbody target, Path path, float duration, PathMode pathMode = PathMode.Full3D
)
{
Transform trans = target.transform;
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), path, duration)
.SetTarget(target);
t.plugOptions.isRigidbody = true;
t.plugOptions.mode = pathMode;
t.plugOptions.useLocalPosition = true;
return t;
}
#endregion
#endregion
#endregion
}
}
#endif

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: dae9aa560b4242648a3affa2bfabc365
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,193 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
#if true // MODULE_MARKER
using System;
using DG.Tweening.Core;
using DG.Tweening.Plugins;
using DG.Tweening.Plugins.Core.PathCore;
using DG.Tweening.Plugins.Options;
using UnityEngine;
#pragma warning disable 1591
namespace DG.Tweening
{
public static class DOTweenModulePhysics2D
{
#region Shortcuts
#region Rigidbody2D Shortcuts
/// <summary>Tweens a Rigidbody2D's position to the given value.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOMove(this Rigidbody2D target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody2D's X position to the given value.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOMoveX(this Rigidbody2D target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, new Vector2(endValue, 0), duration);
t.SetOptions(AxisConstraint.X, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody2D's Y position to the given value.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOMoveY(this Rigidbody2D target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.position, target.MovePosition, new Vector2(0, endValue), duration);
t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a Rigidbody2D's rotation to the given value.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<float, float, FloatOptions> DORotate(this Rigidbody2D target, float endValue, float duration)
{
TweenerCore<float, float, FloatOptions> t = DOTween.To(() => target.rotation, target.MoveRotation, endValue, duration);
t.SetTarget(target);
return t;
}
#region Special
/// <summary>Tweens a Rigidbody2D's position to the given value, while also applying a jump effect along the Y axis.
/// Returns a Sequence instead of a Tweener.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations.
/// <para>IMPORTANT: a rigidbody2D can't be animated in a jump arc using MovePosition, so the tween will directly set the position</para></summary>
/// <param name="endValue">The end value to reach</param>
/// <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
/// <param name="numJumps">Total number of jumps</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Sequence DOJump(this Rigidbody2D target, Vector2 endValue, float jumpPower, int numJumps, float duration, bool snapping = false)
{
if (numJumps < 1) numJumps = 1;
float startPosY = 0;
float offsetY = -1;
bool offsetYSet = false;
Sequence s = DOTween.Sequence();
Tween yTween = DOTween.To(() => target.position, x => target.position = x, new Vector2(0, jumpPower), duration / (numJumps * 2))
.SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative()
.SetLoops(numJumps * 2, LoopType.Yoyo)
.OnStart(() => startPosY = target.position.y);
s.Append(DOTween.To(() => target.position, x => target.position = x, new Vector2(endValue.x, 0), duration)
.SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear)
).Join(yTween)
.SetTarget(target).SetEase(DOTween.defaultEaseType);
yTween.OnUpdate(() => {
if (!offsetYSet) {
offsetYSet = true;
offsetY = s.isRelative ? endValue.y : endValue.y - startPosY;
}
Vector3 pos = target.position;
pos.y += DOVirtual.EasedValue(0, offsetY, yTween.ElapsedPercentage(), Ease.OutQuad);
target.MovePosition(pos);
});
return s;
}
/// <summary>Tweens a Rigidbody2D's position through the given path waypoints, using the chosen path algorithm.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations.
/// <para>NOTE: to tween a Rigidbody2D correctly it should be set to kinematic at least while being tweened.</para>
/// <para>BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug).
/// If you plan to publish there you should use a regular transform.DOPath.</para></summary>
/// <param name="path">The waypoints to go through</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="pathType">The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points)</param>
/// <param name="pathMode">The path mode: 3D, side-scroller 2D, top-down 2D</param>
/// <param name="resolution">The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive.
/// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints</param>
/// <param name="gizmoColor">The color of the path (shown when gizmos are active in the Play panel and the tween is running)</param>
public static TweenerCore<Vector3, Path, PathOptions> DOPath(
this Rigidbody2D target, Vector2[] path, float duration, PathType pathType = PathType.Linear,
PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null
)
{
if (resolution < 1) resolution = 1;
int len = path.Length;
Vector3[] path3D = new Vector3[len];
for (int i = 0; i < len; ++i) path3D[i] = path[i];
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => target.position, x => target.MovePosition(x), new Path(pathType, path3D, resolution, gizmoColor), duration)
.SetTarget(target).SetUpdate(UpdateType.Fixed);
t.plugOptions.isRigidbody2D = true;
t.plugOptions.mode = pathMode;
return t;
}
/// <summary>Tweens a Rigidbody2D's localPosition through the given path waypoints, using the chosen path algorithm.
/// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations
/// <para>NOTE: to tween a Rigidbody2D correctly it should be set to kinematic at least while being tweened.</para>
/// <para>BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug).
/// If you plan to publish there you should use a regular transform.DOLocalPath.</para></summary>
/// <param name="path">The waypoint to go through</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="pathType">The type of path: Linear (straight path), CatmullRom (curved CatmullRom path) or CubicBezier (curved with control points)</param>
/// <param name="pathMode">The path mode: 3D, side-scroller 2D, top-down 2D</param>
/// <param name="resolution">The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive.
/// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints</param>
/// <param name="gizmoColor">The color of the path (shown when gizmos are active in the Play panel and the tween is running)</param>
public static TweenerCore<Vector3, Path, PathOptions> DOLocalPath(
this Rigidbody2D target, Vector2[] path, float duration, PathType pathType = PathType.Linear,
PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null
)
{
if (resolution < 1) resolution = 1;
int len = path.Length;
Vector3[] path3D = new Vector3[len];
for (int i = 0; i < len; ++i) path3D[i] = path[i];
Transform trans = target.transform;
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), new Path(pathType, path3D, resolution, gizmoColor), duration)
.SetTarget(target).SetUpdate(UpdateType.Fixed);
t.plugOptions.isRigidbody2D = true;
t.plugOptions.mode = pathMode;
t.plugOptions.useLocalPosition = true;
return t;
}
// Used by path editor when creating the actual tween, so it can pass a pre-compiled path
internal static TweenerCore<Vector3, Path, PathOptions> DOPath(
this Rigidbody2D target, Path path, float duration, PathMode pathMode = PathMode.Full3D
)
{
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => target.position, x => target.MovePosition(x), path, duration)
.SetTarget(target);
t.plugOptions.isRigidbody2D = true;
t.plugOptions.mode = pathMode;
return t;
}
internal static TweenerCore<Vector3, Path, PathOptions> DOLocalPath(
this Rigidbody2D target, Path path, float duration, PathMode pathMode = PathMode.Full3D
)
{
Transform trans = target.transform;
TweenerCore<Vector3, Path, PathOptions> t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), path, duration)
.SetTarget(target);
t.plugOptions.isRigidbody2D = true;
t.plugOptions.mode = pathMode;
t.plugOptions.useLocalPosition = true;
return t;
}
#endregion
#endregion
#endregion
}
}
#endif

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 230fe34542e175245ba74b4659dae700
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,93 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
#if true // MODULE_MARKER
using System;
using UnityEngine;
using DG.Tweening.Core;
using DG.Tweening.Plugins.Options;
#pragma warning disable 1591
namespace DG.Tweening
{
public static class DOTweenModuleSprite
{
#region Shortcuts
#region SpriteRenderer
/// <summary>Tweens a SpriteRenderer's color to the given value.
/// Also stores the spriteRenderer as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOColor(this SpriteRenderer target, Color endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.To(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a Material's alpha color to the given value.
/// Also stores the spriteRenderer as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOFade(this SpriteRenderer target, float endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a SpriteRenderer's color using the given gradient
/// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="gradient">The gradient to use</param><param name="duration">The duration of the tween</param>
public static Sequence DOGradientColor(this SpriteRenderer target, Gradient gradient, float duration)
{
Sequence s = DOTween.Sequence();
GradientColorKey[] colors = gradient.colorKeys;
int len = colors.Length;
for (int i = 0; i < len; ++i) {
GradientColorKey c = colors[i];
if (i == 0 && c.time <= 0) {
target.color = c.color;
continue;
}
float colorDuration = i == len - 1
? duration - s.Duration(false) // Verifies that total duration is correct
: duration * (i == 0 ? c.time : c.time - colors[i - 1].time);
s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear));
}
s.SetTarget(target);
return s;
}
#endregion
#region Blendables
#region SpriteRenderer
/// <summary>Tweens a SpriteRenderer's color to the given value,
/// in a way that allows other DOBlendableColor tweens to work together on the same target,
/// instead than fight each other as multiple DOColor would do.
/// Also stores the SpriteRenderer as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
public static Tweener DOBlendableColor(this SpriteRenderer target, Color endValue, float duration)
{
endValue = endValue - target.color;
Color to = new Color(0, 0, 0, 0);
return DOTween.To(() => to, x => {
Color diff = x - to;
to = x;
target.color += diff;
}, endValue, duration)
.Blendable().SetTarget(target);
}
#endregion
#endregion
#endregion
}
}
#endif

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 188918ab119d93148aa0de59ccf5286b
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,662 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
#if true // MODULE_MARKER
using System;
using System.Globalization;
using UnityEngine;
using UnityEngine.UI;
using DG.Tweening.Core;
using DG.Tweening.Core.Enums;
using DG.Tweening.Plugins;
using DG.Tweening.Plugins.Options;
using Outline = UnityEngine.UI.Outline;
using Text = UnityEngine.UI.Text;
#pragma warning disable 1591
namespace DG.Tweening
{
public static class DOTweenModuleUI
{
#region Shortcuts
#region CanvasGroup
/// <summary>Tweens a CanvasGroup's alpha color to the given value.
/// Also stores the canvasGroup as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<float, float, FloatOptions> DOFade(this CanvasGroup target, float endValue, float duration)
{
TweenerCore<float, float, FloatOptions> t = DOTween.To(() => target.alpha, x => target.alpha = x, endValue, duration);
t.SetTarget(target);
return t;
}
#endregion
#region Graphic
/// <summary>Tweens an Graphic's color to the given value.
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOColor(this Graphic target, Color endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.To(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens an Graphic's alpha color to the given value.
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOFade(this Graphic target, float endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
#endregion
#region Image
/// <summary>Tweens an Image's color to the given value.
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOColor(this Image target, Color endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.To(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens an Image's alpha color to the given value.
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOFade(this Image target, float endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens an Image's fillAmount to the given value.
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach (0 to 1)</param><param name="duration">The duration of the tween</param>
public static TweenerCore<float, float, FloatOptions> DOFillAmount(this Image target, float endValue, float duration)
{
if (endValue > 1) endValue = 1;
else if (endValue < 0) endValue = 0;
TweenerCore<float, float, FloatOptions> t = DOTween.To(() => target.fillAmount, x => target.fillAmount = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens an Image's colors using the given gradient
/// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="gradient">The gradient to use</param><param name="duration">The duration of the tween</param>
public static Sequence DOGradientColor(this Image target, Gradient gradient, float duration)
{
Sequence s = DOTween.Sequence();
GradientColorKey[] colors = gradient.colorKeys;
int len = colors.Length;
for (int i = 0; i < len; ++i) {
GradientColorKey c = colors[i];
if (i == 0 && c.time <= 0) {
target.color = c.color;
continue;
}
float colorDuration = i == len - 1
? duration - s.Duration(false) // Verifies that total duration is correct
: duration * (i == 0 ? c.time : c.time - colors[i - 1].time);
s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear));
}
s.SetTarget(target);
return s;
}
#endregion
#region LayoutElement
/// <summary>Tweens an LayoutElement's flexibleWidth/Height to the given value.
/// Also stores the LayoutElement as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOFlexibleSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => new Vector2(target.flexibleWidth, target.flexibleHeight), x => {
target.flexibleWidth = x.x;
target.flexibleHeight = x.y;
}, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens an LayoutElement's minWidth/Height to the given value.
/// Also stores the LayoutElement as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOMinSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => new Vector2(target.minWidth, target.minHeight), x => {
target.minWidth = x.x;
target.minHeight = x.y;
}, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens an LayoutElement's preferredWidth/Height to the given value.
/// Also stores the LayoutElement as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOPreferredSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => new Vector2(target.preferredWidth, target.preferredHeight), x => {
target.preferredWidth = x.x;
target.preferredHeight = x.y;
}, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
#endregion
#region Outline
/// <summary>Tweens a Outline's effectColor to the given value.
/// Also stores the Outline as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOColor(this Outline target, Color endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.To(() => target.effectColor, x => target.effectColor = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a Outline's effectColor alpha to the given value.
/// Also stores the Outline as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOFade(this Outline target, float endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.ToAlpha(() => target.effectColor, x => target.effectColor = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a Outline's effectDistance to the given value.
/// Also stores the Outline as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOScale(this Outline target, Vector2 endValue, float duration)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.effectDistance, x => target.effectDistance = x, endValue, duration);
t.SetTarget(target);
return t;
}
#endregion
#region RectTransform
/// <summary>Tweens a RectTransform's anchoredPosition to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOAnchorPos(this RectTransform target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchoredPosition X to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOAnchorPosX(this RectTransform target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(endValue, 0), duration);
t.SetOptions(AxisConstraint.X, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchoredPosition Y to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOAnchorPosY(this RectTransform target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(0, endValue), duration);
t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchoredPosition3D to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOAnchorPos3D(this RectTransform target, Vector3 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchoredPosition3D X to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOAnchorPos3DX(this RectTransform target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(endValue, 0, 0), duration);
t.SetOptions(AxisConstraint.X, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchoredPosition3D Y to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOAnchorPos3DY(this RectTransform target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(0, endValue, 0), duration);
t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchoredPosition3D Z to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector3, Vector3, VectorOptions> DOAnchorPos3DZ(this RectTransform target, float endValue, float duration, bool snapping = false)
{
TweenerCore<Vector3, Vector3, VectorOptions> t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(0, 0, endValue), duration);
t.SetOptions(AxisConstraint.Z, snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchorMax to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOAnchorMax(this RectTransform target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.anchorMax, x => target.anchorMax = x, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's anchorMin to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOAnchorMin(this RectTransform target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.anchorMin, x => target.anchorMin = x, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's pivot to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOPivot(this RectTransform target, Vector2 endValue, float duration)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.pivot, x => target.pivot = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's pivot X to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOPivotX(this RectTransform target, float endValue, float duration)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.pivot, x => target.pivot = x, new Vector2(endValue, 0), duration);
t.SetOptions(AxisConstraint.X).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's pivot Y to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOPivotY(this RectTransform target, float endValue, float duration)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.pivot, x => target.pivot = x, new Vector2(0, endValue), duration);
t.SetOptions(AxisConstraint.Y).SetTarget(target);
return t;
}
/// <summary>Tweens a RectTransform's sizeDelta to the given value.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOSizeDelta(this RectTransform target, Vector2 endValue, float duration, bool snapping = false)
{
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.sizeDelta, x => target.sizeDelta = x, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
/// <summary>Punches a RectTransform's anchoredPosition towards the given direction and then back to the starting one
/// as if it was connected to the starting position via an elastic.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="punch">The direction and strength of the punch (added to the RectTransform's current position)</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="vibrato">Indicates how much will the punch vibrate</param>
/// <param name="elasticity">Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards.
/// 1 creates a full oscillation between the punch direction and the opposite direction,
/// while 0 oscillates only between the punch and the start position</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Tweener DOPunchAnchorPos(this RectTransform target, Vector2 punch, float duration, int vibrato = 10, float elasticity = 1, bool snapping = false)
{
return DOTween.Punch(() => target.anchoredPosition, x => target.anchoredPosition = x, punch, duration, vibrato, elasticity)
.SetTarget(target).SetOptions(snapping);
}
/// <summary>Shakes a RectTransform's anchoredPosition with the given values.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="duration">The duration of the tween</param>
/// <param name="strength">The shake strength</param>
/// <param name="vibrato">Indicates how much will the shake vibrate</param>
/// <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
/// Setting it to 0 will shake along a single direction.</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
/// <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
/// <param name="randomnessMode">Randomness mode</param>
public static Tweener DOShakeAnchorPos(this RectTransform target, float duration, float strength = 100, int vibrato = 10, float randomness = 90, bool snapping = false, bool fadeOut = true, ShakeRandomnessMode randomnessMode = ShakeRandomnessMode.Full)
{
return DOTween.Shake(() => target.anchoredPosition, x => target.anchoredPosition = x, duration, strength, vibrato, randomness, true, fadeOut, randomnessMode)
.SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetShake).SetOptions(snapping);
}
/// <summary>Shakes a RectTransform's anchoredPosition with the given values.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="duration">The duration of the tween</param>
/// <param name="strength">The shake strength on each axis</param>
/// <param name="vibrato">Indicates how much will the shake vibrate</param>
/// <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
/// Setting it to 0 will shake along a single direction.</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
/// <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
/// <param name="randomnessMode">Randomness mode</param>
public static Tweener DOShakeAnchorPos(this RectTransform target, float duration, Vector2 strength, int vibrato = 10, float randomness = 90, bool snapping = false, bool fadeOut = true, ShakeRandomnessMode randomnessMode = ShakeRandomnessMode.Full)
{
return DOTween.Shake(() => target.anchoredPosition, x => target.anchoredPosition = x, duration, strength, vibrato, randomness, fadeOut, randomnessMode)
.SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetShake).SetOptions(snapping);
}
#region Special
/// <summary>Tweens a RectTransform's anchoredPosition to the given value, while also applying a jump effect along the Y axis.
/// Returns a Sequence instead of a Tweener.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param>
/// <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
/// <param name="numJumps">Total number of jumps</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Sequence DOJumpAnchorPos(this RectTransform target, Vector2 endValue, float jumpPower, int numJumps, float duration, bool snapping = false)
{
if (numJumps < 1) numJumps = 1;
float startPosY = 0;
float offsetY = -1;
bool offsetYSet = false;
// Separate Y Tween so we can elaborate elapsedPercentage on that insted of on the Sequence
// (in case users add a delay or other elements to the Sequence)
Sequence s = DOTween.Sequence();
Tween yTween = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(0, jumpPower), duration / (numJumps * 2))
.SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative()
.SetLoops(numJumps * 2, LoopType.Yoyo)
.OnStart(()=> startPosY = target.anchoredPosition.y);
s.Append(DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(endValue.x, 0), duration)
.SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear)
).Join(yTween)
.SetTarget(target).SetEase(DOTween.defaultEaseType);
s.OnUpdate(() => {
if (!offsetYSet) {
offsetYSet = true;
offsetY = s.isRelative ? endValue.y : endValue.y - startPosY;
}
Vector2 pos = target.anchoredPosition;
pos.y += DOVirtual.EasedValue(0, offsetY, s.ElapsedDirectionalPercentage(), Ease.OutQuad);
target.anchoredPosition = pos;
});
return s;
}
#endregion
#endregion
#region ScrollRect
/// <summary>Tweens a ScrollRect's horizontal/verticalNormalizedPosition to the given value.
/// Also stores the ScrollRect as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Tweener DONormalizedPos(this ScrollRect target, Vector2 endValue, float duration, bool snapping = false)
{
return DOTween.To(() => new Vector2(target.horizontalNormalizedPosition, target.verticalNormalizedPosition),
x => {
target.horizontalNormalizedPosition = x.x;
target.verticalNormalizedPosition = x.y;
}, endValue, duration)
.SetOptions(snapping).SetTarget(target);
}
/// <summary>Tweens a ScrollRect's horizontalNormalizedPosition to the given value.
/// Also stores the ScrollRect as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Tweener DOHorizontalNormalizedPos(this ScrollRect target, float endValue, float duration, bool snapping = false)
{
return DOTween.To(() => target.horizontalNormalizedPosition, x => target.horizontalNormalizedPosition = x, endValue, duration)
.SetOptions(snapping).SetTarget(target);
}
/// <summary>Tweens a ScrollRect's verticalNormalizedPosition to the given value.
/// Also stores the ScrollRect as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static Tweener DOVerticalNormalizedPos(this ScrollRect target, float endValue, float duration, bool snapping = false)
{
return DOTween.To(() => target.verticalNormalizedPosition, x => target.verticalNormalizedPosition = x, endValue, duration)
.SetOptions(snapping).SetTarget(target);
}
#endregion
#region Slider
/// <summary>Tweens a Slider's value to the given value.
/// Also stores the Slider as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<float, float, FloatOptions> DOValue(this Slider target, float endValue, float duration, bool snapping = false)
{
TweenerCore<float, float, FloatOptions> t = DOTween.To(() => target.value, x => target.value = x, endValue, duration);
t.SetOptions(snapping).SetTarget(target);
return t;
}
#endregion
#region Text
/// <summary>Tweens a Text's color to the given value.
/// Also stores the Text as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOColor(this Text target, Color endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.To(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>
/// Tweens a Text's text from one integer to another, with options for thousands separators
/// </summary>
/// <param name="fromValue">The value to start from</param>
/// <param name="endValue">The end value to reach</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="addThousandsSeparator">If TRUE (default) also adds thousands separators</param>
/// <param name="culture">The <see cref="CultureInfo"/> to use (InvariantCulture if NULL)</param>
public static TweenerCore<int, int, NoOptions> DOCounter(
this Text target, int fromValue, int endValue, float duration, bool addThousandsSeparator = true, CultureInfo culture = null
){
int v = fromValue;
CultureInfo cInfo = !addThousandsSeparator ? null : culture ?? CultureInfo.InvariantCulture;
TweenerCore<int, int, NoOptions> t = DOTween.To(() => v, x => {
v = x;
target.text = addThousandsSeparator
? v.ToString("N0", cInfo)
: v.ToString();
}, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a Text's alpha color to the given value.
/// Also stores the Text as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
public static TweenerCore<Color, Color, ColorOptions> DOFade(this Text target, float endValue, float duration)
{
TweenerCore<Color, Color, ColorOptions> t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a Text's text to the given value.
/// Also stores the Text as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end string to tween to</param><param name="duration">The duration of the tween</param>
/// <param name="richTextEnabled">If TRUE (default), rich text will be interpreted correctly while animated,
/// otherwise all tags will be considered as normal text</param>
/// <param name="scrambleMode">The type of scramble mode to use, if any</param>
/// <param name="scrambleChars">A string containing the characters to use for scrambling.
/// Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters.
/// Leave it to NULL (default) to use default ones</param>
public static TweenerCore<string, string, StringOptions> DOText(this Text target, string endValue, float duration, bool richTextEnabled = true, ScrambleMode scrambleMode = ScrambleMode.None, string scrambleChars = null)
{
if (endValue == null) {
if (Debugger.logPriority > 0) Debugger.LogWarning("You can't pass a NULL string to DOText: an empty string will be used instead to avoid errors");
endValue = "";
}
TweenerCore<string, string, StringOptions> t = DOTween.To(() => target.text, x => target.text = x, endValue, duration);
t.SetOptions(richTextEnabled, scrambleMode, scrambleChars)
.SetTarget(target);
return t;
}
#endregion
#region Blendables
#region Graphic
/// <summary>Tweens a Graphic's color to the given value,
/// in a way that allows other DOBlendableColor tweens to work together on the same target,
/// instead than fight each other as multiple DOColor would do.
/// Also stores the Graphic as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
public static Tweener DOBlendableColor(this Graphic target, Color endValue, float duration)
{
endValue = endValue - target.color;
Color to = new Color(0, 0, 0, 0);
return DOTween.To(() => to, x => {
Color diff = x - to;
to = x;
target.color += diff;
}, endValue, duration)
.Blendable().SetTarget(target);
}
#endregion
#region Image
/// <summary>Tweens a Image's color to the given value,
/// in a way that allows other DOBlendableColor tweens to work together on the same target,
/// instead than fight each other as multiple DOColor would do.
/// Also stores the Image as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
public static Tweener DOBlendableColor(this Image target, Color endValue, float duration)
{
endValue = endValue - target.color;
Color to = new Color(0, 0, 0, 0);
return DOTween.To(() => to, x => {
Color diff = x - to;
to = x;
target.color += diff;
}, endValue, duration)
.Blendable().SetTarget(target);
}
#endregion
#region Text
/// <summary>Tweens a Text's color BY the given value,
/// in a way that allows other DOBlendableColor tweens to work together on the same target,
/// instead than fight each other as multiple DOColor would do.
/// Also stores the Text as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
public static Tweener DOBlendableColor(this Text target, Color endValue, float duration)
{
endValue = endValue - target.color;
Color to = new Color(0, 0, 0, 0);
return DOTween.To(() => to, x => {
Color diff = x - to;
to = x;
target.color += diff;
}, endValue, duration)
.Blendable().SetTarget(target);
}
#endregion
#endregion
#region Shapes
/// <summary>Tweens a RectTransform's anchoredPosition so that it draws a circle around the given center.
/// Also stores the RectTransform as the tween's target so it can be used for filtered operations.<para/>
/// IMPORTANT: SetFrom(value) requires a <see cref="Vector2"/> instead of a float, where the X property represents the "from degrees value"</summary>
/// <param name="center">Circle-center/pivot around which to rotate (in UI anchoredPosition coordinates)</param>
/// <param name="endValueDegrees">The end value degrees to reach (to rotate counter-clockwise pass a negative value)</param>
/// <param name="duration">The duration of the tween</param>
/// <param name="relativeCenter">If TRUE the <see cref="center"/> coordinates will be considered as relative to the target's current anchoredPosition</param>
/// <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
public static TweenerCore<Vector2, Vector2, CircleOptions> DOShapeCircle(
this RectTransform target, Vector2 center, float endValueDegrees, float duration, bool relativeCenter = false, bool snapping = false
)
{
TweenerCore<Vector2, Vector2, CircleOptions> t = DOTween.To(
CirclePlugin.Get(), () => target.anchoredPosition, x => target.anchoredPosition = x, center, duration
);
t.SetOptions(endValueDegrees, relativeCenter, snapping).SetTarget(target);
return t;
}
#endregion
#endregion
// █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
// ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████
// █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
public static class Utils
{
/// <summary>
/// Converts the anchoredPosition of the first RectTransform to the second RectTransform,
/// taking into consideration offset, anchors and pivot, and returns the new anchoredPosition
/// </summary>
public static Vector2 SwitchToRectTransform(RectTransform from, RectTransform to)
{
Vector2 localPoint;
Vector2 fromPivotDerivedOffset = new Vector2(from.rect.width * 0.5f + from.rect.xMin, from.rect.height * 0.5f + from.rect.yMin);
Vector2 screenP = RectTransformUtility.WorldToScreenPoint(null, from.position);
screenP += fromPivotDerivedOffset;
RectTransformUtility.ScreenPointToLocalPointInRectangle(to, screenP, null, out localPoint);
Vector2 pivotDerivedOffset = new Vector2(to.rect.width * 0.5f + to.rect.xMin, to.rect.height * 0.5f + to.rect.yMin);
return to.anchoredPosition + localPoint - pivotDerivedOffset;
}
}
}
}
#endif

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a060394c03331a64392db53a10e7f2d1
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,389 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
using System;
using UnityEngine;
using DG.Tweening.Core;
using DG.Tweening.Plugins.Options;
//#if UNITY_2018_1_OR_NEWER && (NET_4_6 || NET_STANDARD_2_0)
//using Task = System.Threading.Tasks.Task;
//#endif
#pragma warning disable 1591
namespace DG.Tweening
{
/// <summary>
/// Shortcuts/functions that are not strictly related to specific Modules
/// but are available only on some Unity versions
/// </summary>
public static class DOTweenModuleUnityVersion
{
#region Material
/// <summary>Tweens a Material's color using the given gradient
/// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="gradient">The gradient to use</param><param name="duration">The duration of the tween</param>
public static Sequence DOGradientColor(this Material target, Gradient gradient, float duration)
{
Sequence s = DOTween.Sequence();
GradientColorKey[] colors = gradient.colorKeys;
int len = colors.Length;
for (int i = 0; i < len; ++i) {
GradientColorKey c = colors[i];
if (i == 0 && c.time <= 0) {
target.color = c.color;
continue;
}
float colorDuration = i == len - 1
? duration - s.Duration(false) // Verifies that total duration is correct
: duration * (i == 0 ? c.time : c.time - colors[i - 1].time);
s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear));
}
s.SetTarget(target);
return s;
}
/// <summary>Tweens a Material's named color property using the given gradient
/// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
/// Also stores the image as the tween's target so it can be used for filtered operations</summary>
/// <param name="gradient">The gradient to use</param>
/// <param name="property">The name of the material property to tween (like _Tint or _SpecColor)</param>
/// <param name="duration">The duration of the tween</param>
public static Sequence DOGradientColor(this Material target, Gradient gradient, string property, float duration)
{
Sequence s = DOTween.Sequence();
GradientColorKey[] colors = gradient.colorKeys;
int len = colors.Length;
for (int i = 0; i < len; ++i) {
GradientColorKey c = colors[i];
if (i == 0 && c.time <= 0) {
target.SetColor(property, c.color);
continue;
}
float colorDuration = i == len - 1
? duration - s.Duration(false) // Verifies that total duration is correct
: duration * (i == 0 ? c.time : c.time - colors[i - 1].time);
s.Append(target.DOColor(c.color, property, colorDuration).SetEase(Ease.Linear));
}
s.SetTarget(target);
return s;
}
#endregion
#region CustomYieldInstructions
/// <summary>
/// Returns a <see cref="CustomYieldInstruction"/> that waits until the tween is killed or complete.
/// It can be used inside a coroutine as a yield.
/// <para>Example usage:</para><code>yield return myTween.WaitForCompletion(true);</code>
/// </summary>
public static CustomYieldInstruction WaitForCompletion(this Tween t, bool returnCustomYieldInstruction)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return null;
}
return new DOTweenCYInstruction.WaitForCompletion(t);
}
/// <summary>
/// Returns a <see cref="CustomYieldInstruction"/> that waits until the tween is killed or rewinded.
/// It can be used inside a coroutine as a yield.
/// <para>Example usage:</para><code>yield return myTween.WaitForRewind();</code>
/// </summary>
public static CustomYieldInstruction WaitForRewind(this Tween t, bool returnCustomYieldInstruction)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return null;
}
return new DOTweenCYInstruction.WaitForRewind(t);
}
/// <summary>
/// Returns a <see cref="CustomYieldInstruction"/> that waits until the tween is killed.
/// It can be used inside a coroutine as a yield.
/// <para>Example usage:</para><code>yield return myTween.WaitForKill();</code>
/// </summary>
public static CustomYieldInstruction WaitForKill(this Tween t, bool returnCustomYieldInstruction)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return null;
}
return new DOTweenCYInstruction.WaitForKill(t);
}
/// <summary>
/// Returns a <see cref="CustomYieldInstruction"/> that waits until the tween is killed or has gone through the given amount of loops.
/// It can be used inside a coroutine as a yield.
/// <para>Example usage:</para><code>yield return myTween.WaitForElapsedLoops(2);</code>
/// </summary>
/// <param name="elapsedLoops">Elapsed loops to wait for</param>
public static CustomYieldInstruction WaitForElapsedLoops(this Tween t, int elapsedLoops, bool returnCustomYieldInstruction)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return null;
}
return new DOTweenCYInstruction.WaitForElapsedLoops(t, elapsedLoops);
}
/// <summary>
/// Returns a <see cref="CustomYieldInstruction"/> that waits until the tween is killed
/// or has reached the given time position (loops included, delays excluded).
/// It can be used inside a coroutine as a yield.
/// <para>Example usage:</para><code>yield return myTween.WaitForPosition(2.5f);</code>
/// </summary>
/// <param name="position">Position (loops included, delays excluded) to wait for</param>
public static CustomYieldInstruction WaitForPosition(this Tween t, float position, bool returnCustomYieldInstruction)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return null;
}
return new DOTweenCYInstruction.WaitForPosition(t, position);
}
/// <summary>
/// Returns a <see cref="CustomYieldInstruction"/> that waits until the tween is killed or started
/// (meaning when the tween is set in a playing state the first time, after any eventual delay).
/// It can be used inside a coroutine as a yield.
/// <para>Example usage:</para><code>yield return myTween.WaitForStart();</code>
/// </summary>
public static CustomYieldInstruction WaitForStart(this Tween t, bool returnCustomYieldInstruction)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return null;
}
return new DOTweenCYInstruction.WaitForStart(t);
}
#endregion
#if UNITY_2018_1_OR_NEWER
#region Unity 2018.1 or Newer
#region Material
/// <summary>Tweens a Material's named texture offset property with the given ID to the given value.
/// Also stores the material as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param>
/// <param name="propertyID">The ID of the material property to tween (also called nameID in Unity's manual)</param>
/// <param name="duration">The duration of the tween</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOOffset(this Material target, Vector2 endValue, int propertyID, float duration)
{
if (!target.HasProperty(propertyID)) {
if (Debugger.logPriority > 0) Debugger.LogMissingMaterialProperty(propertyID);
return null;
}
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.GetTextureOffset(propertyID), x => target.SetTextureOffset(propertyID, x), endValue, duration);
t.SetTarget(target);
return t;
}
/// <summary>Tweens a Material's named texture scale property with the given ID to the given value.
/// Also stores the material as the tween's target so it can be used for filtered operations</summary>
/// <param name="endValue">The end value to reach</param>
/// <param name="propertyID">The ID of the material property to tween (also called nameID in Unity's manual)</param>
/// <param name="duration">The duration of the tween</param>
public static TweenerCore<Vector2, Vector2, VectorOptions> DOTiling(this Material target, Vector2 endValue, int propertyID, float duration)
{
if (!target.HasProperty(propertyID)) {
if (Debugger.logPriority > 0) Debugger.LogMissingMaterialProperty(propertyID);
return null;
}
TweenerCore<Vector2, Vector2, VectorOptions> t = DOTween.To(() => target.GetTextureScale(propertyID), x => target.SetTextureScale(propertyID, x), endValue, duration);
t.SetTarget(target);
return t;
}
#endregion
#region .NET 4.6 or Newer
#if UNITY_2018_1_OR_NEWER && (NET_4_6 || NET_STANDARD_2_0)
#region Async Instructions
/// <summary>
/// Returns an async <see cref="System.Threading.Tasks.Task"/> that waits until the tween is killed or complete.
/// It can be used inside an async operation.
/// <para>Example usage:</para><code>await myTween.WaitForCompletion();</code>
/// </summary>
public static async System.Threading.Tasks.Task AsyncWaitForCompletion(this Tween t)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return;
}
while (t.active && !t.IsComplete()) await System.Threading.Tasks.Task.Yield();
}
/// <summary>
/// Returns an async <see cref="System.Threading.Tasks.Task"/> that waits until the tween is killed or rewinded.
/// It can be used inside an async operation.
/// <para>Example usage:</para><code>await myTween.AsyncWaitForRewind();</code>
/// </summary>
public static async System.Threading.Tasks.Task AsyncWaitForRewind(this Tween t)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return;
}
while (t.active && (!t.playedOnce || t.position * (t.CompletedLoops() + 1) > 0)) await System.Threading.Tasks.Task.Yield();
}
/// <summary>
/// Returns an async <see cref="System.Threading.Tasks.Task"/> that waits until the tween is killed.
/// It can be used inside an async operation.
/// <para>Example usage:</para><code>await myTween.AsyncWaitForKill();</code>
/// </summary>
public static async System.Threading.Tasks.Task AsyncWaitForKill(this Tween t)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return;
}
while (t.active) await System.Threading.Tasks.Task.Yield();
}
/// <summary>
/// Returns an async <see cref="System.Threading.Tasks.Task"/> that waits until the tween is killed or has gone through the given amount of loops.
/// It can be used inside an async operation.
/// <para>Example usage:</para><code>await myTween.AsyncWaitForElapsedLoops();</code>
/// </summary>
/// <param name="elapsedLoops">Elapsed loops to wait for</param>
public static async System.Threading.Tasks.Task AsyncWaitForElapsedLoops(this Tween t, int elapsedLoops)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return;
}
while (t.active && t.CompletedLoops() < elapsedLoops) await System.Threading.Tasks.Task.Yield();
}
/// <summary>
/// Returns an async <see cref="System.Threading.Tasks.Task"/> that waits until the tween is killed or started
/// (meaning when the tween is set in a playing state the first time, after any eventual delay).
/// It can be used inside an async operation.
/// <para>Example usage:</para><code>await myTween.AsyncWaitForPosition();</code>
/// </summary>
/// <param name="position">Position (loops included, delays excluded) to wait for</param>
public static async System.Threading.Tasks.Task AsyncWaitForPosition(this Tween t, float position)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return;
}
while (t.active && t.position * (t.CompletedLoops() + 1) < position) await System.Threading.Tasks.Task.Yield();
}
/// <summary>
/// Returns an async <see cref="System.Threading.Tasks.Task"/> that waits until the tween is killed.
/// It can be used inside an async operation.
/// <para>Example usage:</para><code>await myTween.AsyncWaitForKill();</code>
/// </summary>
public static async System.Threading.Tasks.Task AsyncWaitForStart(this Tween t)
{
if (!t.active) {
if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t);
return;
}
while (t.active && !t.playedOnce) await System.Threading.Tasks.Task.Yield();
}
#endregion
#endif
#endregion
#endregion
#endif
}
// █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
// ███ CLASSES █████████████████████████████████████████████████████████████████████████████████████████████████████████
// █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
public static class DOTweenCYInstruction
{
public class WaitForCompletion : CustomYieldInstruction
{
public override bool keepWaiting { get {
return t.active && !t.IsComplete();
}}
readonly Tween t;
public WaitForCompletion(Tween tween)
{
t = tween;
}
}
public class WaitForRewind : CustomYieldInstruction
{
public override bool keepWaiting { get {
return t.active && (!t.playedOnce || t.position * (t.CompletedLoops() + 1) > 0);
}}
readonly Tween t;
public WaitForRewind(Tween tween)
{
t = tween;
}
}
public class WaitForKill : CustomYieldInstruction
{
public override bool keepWaiting { get {
return t.active;
}}
readonly Tween t;
public WaitForKill(Tween tween)
{
t = tween;
}
}
public class WaitForElapsedLoops : CustomYieldInstruction
{
public override bool keepWaiting { get {
return t.active && t.CompletedLoops() < elapsedLoops;
}}
readonly Tween t;
readonly int elapsedLoops;
public WaitForElapsedLoops(Tween tween, int elapsedLoops)
{
t = tween;
this.elapsedLoops = elapsedLoops;
}
}
public class WaitForPosition : CustomYieldInstruction
{
public override bool keepWaiting { get {
return t.active && t.position * (t.CompletedLoops() + 1) < position;
}}
readonly Tween t;
readonly float position;
public WaitForPosition(Tween tween, float position)
{
t = tween;
this.position = position;
}
}
public class WaitForStart : CustomYieldInstruction
{
public override bool keepWaiting { get {
return t.active && !t.playedOnce;
}}
readonly Tween t;
public WaitForStart(Tween tween)
{
t = tween;
}
}
}
}

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 63c02322328255542995bd02b47b0457
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,167 @@
// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2018/07/13
using System;
using System.Reflection;
using UnityEngine;
using DG.Tweening.Core;
using DG.Tweening.Plugins.Core.PathCore;
using DG.Tweening.Plugins.Options;
#pragma warning disable 1591
namespace DG.Tweening
{
/// <summary>
/// Utility functions that deal with available Modules.
/// Modules defines:
/// - DOTAUDIO
/// - DOTPHYSICS
/// - DOTPHYSICS2D
/// - DOTSPRITE
/// - DOTUI
/// Extra defines set and used for implementation of external assets:
/// - DOTWEEN_TMP ► TextMesh Pro
/// - DOTWEEN_TK2D ► 2D Toolkit
/// </summary>
public static class DOTweenModuleUtils
{
static bool _initialized;
#region Reflection
/// <summary>
/// Called via Reflection by DOTweenComponent on Awake
/// </summary>
#if UNITY_2018_1_OR_NEWER
[UnityEngine.Scripting.Preserve]
#endif
public static void Init()
{
if (_initialized) return;
_initialized = true;
DOTweenExternalCommand.SetOrientationOnPath += Physics.SetOrientationOnPath;
#if UNITY_EDITOR
#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1
UnityEditor.EditorApplication.playmodeStateChanged += PlaymodeStateChanged;
#else
UnityEditor.EditorApplication.playModeStateChanged += PlaymodeStateChanged;
#endif
#endif
}
#if UNITY_2018_1_OR_NEWER
#pragma warning disable
[UnityEngine.Scripting.Preserve]
// Just used to preserve methods when building, never called
static void Preserver()
{
Assembly[] loadedAssemblies = AppDomain.CurrentDomain.GetAssemblies();
MethodInfo mi = typeof(MonoBehaviour).GetMethod("Stub");
}
#pragma warning restore
#endif
#endregion
#if UNITY_EDITOR
// Fires OnApplicationPause in DOTweenComponent even when Editor is paused (otherwise it's only fired at runtime)
#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1
static void PlaymodeStateChanged()
#else
static void PlaymodeStateChanged(UnityEditor.PlayModeStateChange state)
#endif
{
if (DOTween.instance == null) return;
DOTween.instance.OnApplicationPause(UnityEditor.EditorApplication.isPaused);
}
#endif
// █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
// ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████
// █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
public static class Physics
{
// Called via DOTweenExternalCommand callback
public static void SetOrientationOnPath(PathOptions options, Tween t, Quaternion newRot, Transform trans)
{
#if true // PHYSICS_MARKER
if (options.isRigidbody) ((Rigidbody)t.target).rotation = newRot;
else trans.rotation = newRot;
#else
trans.rotation = newRot;
#endif
}
// Returns FALSE if the DOTween's Physics2D Module is disabled, or if there's no Rigidbody2D attached
public static bool HasRigidbody2D(Component target)
{
#if true // PHYSICS2D_MARKER
return target.GetComponent<Rigidbody2D>() != null;
#else
return false;
#endif
}
#region Called via Reflection
// Called via Reflection by DOTweenPathInspector
// Returns FALSE if the DOTween's Physics Module is disabled, or if there's no rigidbody attached
#if UNITY_2018_1_OR_NEWER
[UnityEngine.Scripting.Preserve]
#endif
public static bool HasRigidbody(Component target)
{
#if true // PHYSICS_MARKER
return target.GetComponent<Rigidbody>() != null;
#else
return false;
#endif
}
// Called via Reflection by DOTweenPath
#if UNITY_2018_1_OR_NEWER
[UnityEngine.Scripting.Preserve]
#endif
public static TweenerCore<Vector3, Path, PathOptions> CreateDOTweenPathTween(
MonoBehaviour target, bool tweenRigidbody, bool isLocal, Path path, float duration, PathMode pathMode
){
TweenerCore<Vector3, Path, PathOptions> t = null;
bool rBodyFoundAndTweened = false;
#if true // PHYSICS_MARKER
if (tweenRigidbody) {
Rigidbody rBody = target.GetComponent<Rigidbody>();
if (rBody != null) {
rBodyFoundAndTweened = true;
t = isLocal
? rBody.DOLocalPath(path, duration, pathMode)
: rBody.DOPath(path, duration, pathMode);
}
}
#endif
#if true // PHYSICS2D_MARKER
if (!rBodyFoundAndTweened && tweenRigidbody) {
Rigidbody2D rBody2D = target.GetComponent<Rigidbody2D>();
if (rBody2D != null) {
rBodyFoundAndTweened = true;
t = isLocal
? rBody2D.DOLocalPath(path, duration, pathMode)
: rBody2D.DOPath(path, duration, pathMode);
}
}
#endif
if (!rBodyFoundAndTweened) {
t = isLocal
? target.transform.DOLocalPath(path, duration, pathMode)
: target.transform.DOPath(path, duration, pathMode);
}
return t;
}
#endregion
}
}
}

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7bcaf917d9cf5b84090421a5a2abe42e
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:

View File

@ -0,0 +1,29 @@
DOTween and DOTween Pro are copyright (c) 2014-2018 Daniele Giardini - Demigiant
// IMPORTANT!!! /////////////////////////////////////////////
// Upgrading DOTween from versions older than 1.2.000 ///////
// (or DOTween Pro older than 1.0.000) //////////////////////
-------------------------------------------------------------
If you're upgrading your project from a version of DOTween older than 1.2.000 (or DOTween Pro older than 1.0.000) please follow these instructions carefully.
1) Import the new version in the same folder as the previous one, overwriting old files. A lot of errors will appear but don't worry
2) Close and reopen Unity (and your project). This is fundamental: skipping this step will cause a bloodbath
3) Open DOTween's Utility Panel (Tools > Demigiant > DOTween Utility Panel) if it doesn't open automatically, then press "Setup DOTween...": this will run the upgrade setup
4) From the Add/Remove Modules panel that opens, activate/deactivate Modules for Unity systems and for external assets (Pro version only)
// GET STARTED //////////////////////////////////////////////
- After importing a new DOTween update, select DOTween's Utility Panel from the "Tools/Demigiant" menu (if it doesn't open automatically) and press the "Setup DOTween..." button to activate/deactivate Modules. You can also access a Preferences Tab from there to choose default settings for DOTween.
- In your code, add "using DG.Tweening" to each class where you want to use DOTween.
- You're ready to tween. Check out the links below for full documentation and license info.
// LINKS ///////////////////////////////////////////////////////
DOTween website (documentation, examples, etc): http://dotween.demigiant.com
DOTween license: http://dotween.demigiant.com/license.php
DOTween repository (Google Code): https://code.google.com/p/dotween/
Demigiant website (documentation, examples, etc): http://www.demigiant.com
// NOTES //////////////////////////////////////////////////////
- DOTween's Utility Panel can be found under "Tools > Demigiant > DOTween Utility Panel" and also contains other useful options, plus a tab to set DOTween's preferences

View File

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: fccfc62abf2eb0a4db614853430894fd
TextScriptImporter:
userData:

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,313 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &2793872601629727663
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2793872601629727662}
- component: {fileID: 2793872601629727656}
- component: {fileID: 2793872601629727657}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2793872601629727662
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872601629727663}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2793872603092033467}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0}
m_AnchorMax: {x: 0.5, y: 0}
m_AnchoredPosition: {x: -0.00000047683716, y: 27.1}
m_SizeDelta: {x: 30, y: 28}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2793872601629727656
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872601629727663}
m_CullTransparentMesh: 1
--- !u!114 &2793872601629727657
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872601629727663}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: d3b32c4964e9fbe41a3f880575835a24, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &2793872602075496679
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2793872602075496678}
- component: {fileID: 2793872602075496672}
- component: {fileID: 2793872602075496673}
m_Layer: 5
m_Name: Text (Legacy)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2793872602075496678
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872602075496679}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2793872603092033467}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0}
m_AnchorMax: {x: 0.5, y: 0}
m_AnchoredPosition: {x: 0, y: -21.000244}
m_SizeDelta: {x: 160, y: 30}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2793872602075496672
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872602075496679}
m_CullTransparentMesh: 1
--- !u!114 &2793872602075496673
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872602075496679}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 20
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 2
m_MaxSize: 40
m_Alignment: 4
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\u7269\u54C1\u540D\u79F0 23"
--- !u!1 &2793872602568446850
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2793872602568446877}
- component: {fileID: 2793872602568446879}
- component: {fileID: 2793872602568446876}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2793872602568446877
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872602568446850}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2793872603092033467}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 28, y: -20}
m_SizeDelta: {x: 56, y: 40}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2793872602568446879
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872602568446850}
m_CullTransparentMesh: 1
--- !u!114 &2793872602568446876
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872602568446850}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 046b9ad954a359446aa2d73cd5d1d9e5, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &2793872603092033464
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2793872603092033467}
- component: {fileID: 2793872603092033461}
- component: {fileID: 2793872603092033466}
m_Layer: 5
m_Name: Obtian
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2793872603092033467
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872603092033464}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 2793872602568446877}
- {fileID: 2793872601629727662}
- {fileID: 2793872602075496678}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0.00024414062}
m_SizeDelta: {x: 164, y: 166}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2793872603092033461
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872603092033464}
m_CullTransparentMesh: 1
--- !u!114 &2793872603092033466
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2793872603092033464}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: a8a677e9b68bd404f87b132b7712ea33, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,390 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &303257268518515827
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 7708063193397499823}
- component: {fileID: 843804475956497626}
- component: {fileID: 8054322664025838706}
m_Layer: 5
m_Name: Text (Legacy)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &7708063193397499823
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 303257268518515827}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2986694614661091877}
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: 3.0339, y: -2.0993}
m_SizeDelta: {x: 193.8059, y: 49.801}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &843804475956497626
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 303257268518515827}
m_CullTransparentMesh: 1
--- !u!114 &8054322664025838706
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 303257268518515827}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.9716981, g: 0.9716981, b: 0.9716981, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 25
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 0
m_MaxSize: 40
m_Alignment: 4
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\u73A9\u5BB6\u540D\u5B57\u4E03\u4E2A\u5B57"
--- !u!1 &3057643320078537901
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2099283669716295794}
- component: {fileID: 6158429275401834803}
- component: {fileID: 1919779886623828724}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2099283669716295794
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3057643320078537901}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 790601420772644464}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0}
m_AnchorMax: {x: 0.5, y: 0}
m_AnchoredPosition: {x: 0, y: 17.6}
m_SizeDelta: {x: 30, y: 28}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &6158429275401834803
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3057643320078537901}
m_CullTransparentMesh: 1
--- !u!114 &1919779886623828724
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3057643320078537901}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 942a2e0c84d195e4baefa1415da83c9a, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &3282961986276635016
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2986694614661091877}
- component: {fileID: 5859048352082056127}
- component: {fileID: 4362405372086775388}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2986694614661091877
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3282961986276635016}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 7708063193397499823}
m_Father: {fileID: 790601420772644464}
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: 3.5, y: -199}
m_SizeDelta: {x: 306, y: 54}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &5859048352082056127
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3282961986276635016}
m_CullTransparentMesh: 1
--- !u!114 &4362405372086775388
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3282961986276635016}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: bd5a4df145ebd3f43879257c0dc3d8ee, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &8500507143496277245
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 7655899229856573074}
- component: {fileID: 2595440250631035041}
- component: {fileID: 941223477922246593}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &7655899229856573074
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8500507143496277245}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 790601420772644464}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 30, y: 44}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2595440250631035041
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8500507143496277245}
m_CullTransparentMesh: 1
--- !u!114 &941223477922246593
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8500507143496277245}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 9793bdd551bac1445820037af3190dab, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &9077117828267495580
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 790601420772644464}
- component: {fileID: 1360291141745844326}
- component: {fileID: 6545221058399365091}
m_Layer: 5
m_Name: heroes_pavilion
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &790601420772644464
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9077117828267495580}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 7655899229856573074}
- {fileID: 2986694614661091877}
- {fileID: 2099283669716295794}
m_Father: {fileID: 0}
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: -314, y: 384}
m_SizeDelta: {x: 313, y: 561}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &1360291141745844326
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9077117828267495580}
m_CullTransparentMesh: 1
--- !u!114 &6545221058399365091
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9077117828267495580}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: f7681cb3cd59a574384d85e1b59956f6, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1

View File

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

View File

@ -0,0 +1,389 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &549508996840731783
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2501508508714722186}
- component: {fileID: 3950974130246521560}
- component: {fileID: 6130346197879518968}
m_Layer: 5
m_Name: heroes_pavilion_all
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &2501508508714722186
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 549508996840731783}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 2799283645621034829}
- {fileID: 7958859354240127743}
- {fileID: 5596215890295996152}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 413}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &3950974130246521560
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 549508996840731783}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
m_Name:
m_EditorClassIdentifier:
m_HorizontalFit: 1
m_VerticalFit: 1
--- !u!114 &6130346197879518968
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 549508996840731783}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Padding:
m_Left: 0
m_Right: 0
m_Top: 0
m_Bottom: 0
m_ChildAlignment: 4
m_Spacing: 25
m_ChildForceExpandWidth: 1
m_ChildForceExpandHeight: 1
m_ChildControlWidth: 0
m_ChildControlHeight: 0
m_ChildScaleWidth: 0
m_ChildScaleHeight: 0
m_ReverseArrangement: 0
--- !u!1001 &2740956995099163429
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 2501508508714722186}
m_Modifications:
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_Pivot.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_Pivot.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_RootOrder
value: 1
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_AnchorMin.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_SizeDelta.x
value: 313
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_SizeDelta.y
value: 561
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5439668493449592577, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
propertyPath: m_Name
value: heroes_pavilion_grey
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
--- !u!224 &7958859354240127743 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 5222585361867663834, guid: 7b23ec547a9f05b4880499ab0412010d, type: 3}
m_PrefabInstance: {fileID: 2740956995099163429}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &3180045365678164285
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 2501508508714722186}
m_Modifications:
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_Pivot.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_Pivot.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_RootOrder
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMin.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_SizeDelta.x
value: 313
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_SizeDelta.y
value: 561
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 9077117828267495580, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_Name
value: heroes_pavilion
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
--- !u!224 &2799283645621034829 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
m_PrefabInstance: {fileID: 3180045365678164285}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &5138896889423308936
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 2501508508714722186}
m_Modifications:
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_Pivot.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_Pivot.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_RootOrder
value: 2
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMin.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_SizeDelta.x
value: 313
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_SizeDelta.y
value: 561
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 9077117828267495580, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
propertyPath: m_Name
value: heroes_pavilion (1)
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
--- !u!224 &5596215890295996152 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 790601420772644464, guid: ed6d8634670bb2a40be5ed284c9eda12, type: 3}
m_PrefabInstance: {fileID: 5138896889423308936}
m_PrefabAsset: {fileID: 0}

View File

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

View File

@ -0,0 +1,467 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &4511443013557947772
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 9168596262580159571}
- component: {fileID: 6343048670515105465}
- component: {fileID: 4257491881108938594}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &9168596262580159571
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4511443013557947772}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 6253186469376828099}
m_Father: {fileID: 5222585361867663834}
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: 3.5, y: -199}
m_SizeDelta: {x: 306, y: 54}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &6343048670515105465
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4511443013557947772}
m_CullTransparentMesh: 1
--- !u!114 &4257491881108938594
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4511443013557947772}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: bd5a4df145ebd3f43879257c0dc3d8ee, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &5439668493449592577
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 5222585361867663834}
- component: {fileID: 8120489767948236043}
- component: {fileID: 7967692145009803771}
m_Layer: 5
m_Name: heroes_pavilion_grey
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &5222585361867663834
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5439668493449592577}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 44304219077909122}
- {fileID: 9168596262580159571}
- {fileID: 3690105873702418394}
- {fileID: 6934340714719331776}
m_Father: {fileID: 0}
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: 80, y: 384}
m_SizeDelta: {x: 313, y: 561}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &8120489767948236043
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5439668493449592577}
m_CullTransparentMesh: 1
--- !u!114 &7967692145009803771
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5439668493449592577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: f7681cb3cd59a574384d85e1b59956f6, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &6761833659389876412
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 6934340714719331776}
- component: {fileID: 521593382637177160}
- component: {fileID: 4368423332177801846}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &6934340714719331776
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6761833659389876412}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 5222585361867663834}
m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &521593382637177160
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6761833659389876412}
m_CullTransparentMesh: 1
--- !u!114 &4368423332177801846
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6761833659389876412}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: e6c43ad0c9c185e4f932bd9fa8d0e9ca, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &6882166744712826921
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 3690105873702418394}
- component: {fileID: 8368757964566349746}
- component: {fileID: 7315793179057812463}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &3690105873702418394
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6882166744712826921}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 5222585361867663834}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0}
m_AnchorMax: {x: 0.5, y: 0}
m_AnchoredPosition: {x: 0, y: 17.6}
m_SizeDelta: {x: 30, y: 28}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &8368757964566349746
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6882166744712826921}
m_CullTransparentMesh: 1
--- !u!114 &7315793179057812463
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6882166744712826921}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 942a2e0c84d195e4baefa1415da83c9a, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &7473047314340656761
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 6253186469376828099}
- component: {fileID: 5099580579615206107}
- component: {fileID: 6908930523312634033}
m_Layer: 5
m_Name: Text (Legacy)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &6253186469376828099
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7473047314340656761}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 9168596262580159571}
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: 3.0339, y: -2.0993}
m_SizeDelta: {x: 193.8059, y: 49.801}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &5099580579615206107
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7473047314340656761}
m_CullTransparentMesh: 1
--- !u!114 &6908930523312634033
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7473047314340656761}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.9716981, g: 0.9716981, b: 0.9716981, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 25
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 0
m_MaxSize: 40
m_Alignment: 4
m_AlignByGeometry: 0
m_RichText: 1
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\u73A9\u5BB6\u540D\u5B57\u4E03\u4E2A\u5B57"
--- !u!1 &8108393381326501927
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 44304219077909122}
- component: {fileID: 2203989825381986276}
- component: {fileID: 5598726022956243993}
m_Layer: 5
m_Name: Image
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &44304219077909122
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8108393381326501927}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 5222585361867663834}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 30, y: 44}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2203989825381986276
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8108393381326501927}
m_CullTransparentMesh: 1
--- !u!114 &5598726022956243993
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8108393381326501927}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 9793bdd551bac1445820037af3190dab, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 0dcd024d3149bae4ba9bf19710bc2b54
guid: b44711413eecb104bbb04607c059a17d
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -0,0 +1,54 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 16995157, guid: a811bde74b26b53498b4f6d872b09b6d, type: 3}
m_Name: DOTweenSettings
m_EditorClassIdentifier:
useSafeMode: 1
safeModeOptions:
logBehaviour: 2
nestedTweenFailureBehaviour: 0
timeScale: 1
unscaledTimeScale: 1
useSmoothDeltaTime: 0
maxSmoothUnscaledTime: 0.15
rewindCallbackMode: 0
showUnityEditorReport: 0
logBehaviour: 0
drawGizmos: 1
defaultRecyclable: 0
defaultAutoPlay: 3
defaultUpdateType: 0
defaultTimeScaleIndependent: 0
defaultEaseType: 6
defaultEaseOvershootOrAmplitude: 1.70158
defaultEasePeriod: 0
defaultAutoKill: 1
defaultLoopType: 0
debugMode: 0
debugStoreTargetId: 1
showPreviewPanel: 1
storeSettingsLocation: 0
modules:
showPanel: 0
audioEnabled: 1
physicsEnabled: 1
physics2DEnabled: 1
spriteEnabled: 1
uiEnabled: 1
textMeshProEnabled: 0
tk2DEnabled: 0
deAudioEnabled: 0
deUnityExtendedEnabled: 0
epoOutlineEnabled: 0
createASMDEF: 0
showPlayingTweens: 0
showPausedTweens: 0

View File

@ -1,8 +1,8 @@
fileFormatVersion: 2
guid: 58fdba5e8834bfd46af0e3a43a61f00d
guid: 44ecf4bedae9b5f40a445661de7ca365
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b665edfd03017054198ed0ce1b14a9dc
guid: c9bbec3378340d9409c05c9c3096afe0
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,427 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!29 &1
OcclusionCullingSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_OcclusionBakeSettings:
smallestOccluder: 5
smallestHole: 0.25
backfaceThreshold: 100
m_SceneGUID: 00000000000000000000000000000000
m_OcclusionCullingData: {fileID: 0}
--- !u!104 &2
RenderSettings:
m_ObjectHideFlags: 0
serializedVersion: 9
m_Fog: 0
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
m_FogMode: 3
m_FogDensity: 0.01
m_LinearFogStart: 0
m_LinearFogEnd: 300
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
m_AmbientIntensity: 1
m_AmbientMode: 0
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
m_HaloStrength: 0.5
m_FlareStrength: 1
m_FlareFadeSpeed: 3
m_HaloTexture: {fileID: 0}
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
m_DefaultReflectionMode: 0
m_DefaultReflectionResolution: 128
m_ReflectionBounces: 1
m_ReflectionIntensity: 1
m_CustomReflection: {fileID: 0}
m_Sun: {fileID: 0}
m_UseRadianceAmbientProbe: 0
--- !u!157 &3
LightmapSettings:
m_ObjectHideFlags: 0
serializedVersion: 12
m_GIWorkflowMode: 1
m_GISettings:
serializedVersion: 2
m_BounceScale: 1
m_IndirectOutputScale: 1
m_AlbedoBoost: 1
m_EnvironmentLightingMode: 0
m_EnableBakedLightmaps: 1
m_EnableRealtimeLightmaps: 0
m_LightmapEditorSettings:
serializedVersion: 12
m_Resolution: 2
m_BakeResolution: 40
m_AtlasSize: 1024
m_AO: 0
m_AOMaxDistance: 1
m_CompAOExponent: 1
m_CompAOExponentDirect: 0
m_ExtractAmbientOcclusion: 0
m_Padding: 2
m_LightmapParameters: {fileID: 0}
m_LightmapsBakeMode: 1
m_TextureCompression: 1
m_FinalGather: 0
m_FinalGatherFiltering: 1
m_FinalGatherRayCount: 256
m_ReflectionCompression: 2
m_MixedBakeMode: 2
m_BakeBackend: 1
m_PVRSampling: 1
m_PVRDirectSampleCount: 32
m_PVRSampleCount: 512
m_PVRBounces: 2
m_PVREnvironmentSampleCount: 256
m_PVREnvironmentReferencePointCount: 2048
m_PVRFilteringMode: 1
m_PVRDenoiserTypeDirect: 1
m_PVRDenoiserTypeIndirect: 1
m_PVRDenoiserTypeAO: 1
m_PVRFilterTypeDirect: 0
m_PVRFilterTypeIndirect: 0
m_PVRFilterTypeAO: 0
m_PVREnvironmentMIS: 1
m_PVRCulling: 1
m_PVRFilteringGaussRadiusDirect: 1
m_PVRFilteringGaussRadiusIndirect: 5
m_PVRFilteringGaussRadiusAO: 2
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
m_PVRFilteringAtrousPositionSigmaIndirect: 2
m_PVRFilteringAtrousPositionSigmaAO: 1
m_ExportTrainingData: 0
m_TrainingDataDestination: TrainingData
m_LightProbeSampleCountMultiplier: 4
m_LightingDataAsset: {fileID: 0}
m_LightingSettings: {fileID: 0}
--- !u!196 &4
NavMeshSettings:
serializedVersion: 2
m_ObjectHideFlags: 0
m_BuildSettings:
serializedVersion: 2
agentTypeID: 0
agentRadius: 0.5
agentHeight: 2
agentSlope: 45
agentClimb: 0.4
ledgeDropHeight: 0
maxJumpAcrossDistance: 0
minRegionArea: 2
manualCellSize: 0
cellSize: 0.16666667
manualTileSize: 0
tileSize: 256
accuratePlacement: 0
maxJobWorkers: 0
preserveTilesOutsideBounds: 0
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
--- !u!1 &555704972
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 555704976}
- component: {fileID: 555704975}
- component: {fileID: 555704974}
- component: {fileID: 555704977}
m_Layer: 0
m_Name: Square
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &555704974
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 555704972}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1ae9e82a9958d53468a476db16fb8032, type: 3}
m_Name:
m_EditorClassIdentifier:
minerNumber: 0
--- !u!212 &555704975
SpriteRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 555704972}
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 0
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 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_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 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: 7482667652216324306, guid: 311925a002f4447b3a28927169b83ea6, 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
m_WasSpriteAssigned: 1
m_MaskInteraction: 0
m_SpriteSortPoint: 0
--- !u!4 &555704976
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 555704972}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 1.4764107, z: -1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!61 &555704977
BoxCollider2D:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 555704972}
m_Enabled: 1
m_Density: 1
m_Material: {fileID: 0}
m_IsTrigger: 0
m_UsedByEffector: 0
m_UsedByComposite: 0
m_Offset: {x: 0, y: 0}
m_SpriteTilingProperty:
border: {x: 0, y: 0, z: 0, w: 0}
pivot: {x: 0.5, y: 0.5}
oldSize: {x: 1, y: 1}
newSize: {x: 1, y: 1}
adaptiveTilingThreshold: 0.5
drawMode: 0
adaptiveTiling: 0
m_AutoTiling: 0
serializedVersion: 2
m_Size: {x: 1, y: 1}
m_EdgeRadius: 0
--- !u!1 &1551583532
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1551583535}
- component: {fileID: 1551583534}
- component: {fileID: 1551583533}
m_Layer: 0
m_Name: Main Camera
m_TagString: MainCamera
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!81 &1551583533
AudioListener:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1551583532}
m_Enabled: 1
--- !u!20 &1551583534
Camera:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1551583532}
m_Enabled: 1
serializedVersion: 2
m_ClearFlags: 1
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
m_projectionMatrixMode: 1
m_GateFitMode: 2
m_FOVAxisMode: 0
m_SensorSize: {x: 36, y: 24}
m_LensShift: {x: 0, y: 0}
m_FocalLength: 50
m_NormalizedViewPortRect:
serializedVersion: 2
x: 0
y: 0
width: 1
height: 1
near clip plane: 0.3
far clip plane: 1000
field of view: 60
orthographic: 0
orthographic size: 5
m_Depth: -1
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingPath: -1
m_TargetTexture: {fileID: 0}
m_TargetDisplay: 0
m_TargetEye: 3
m_HDR: 1
m_AllowMSAA: 1
m_AllowDynamicResolution: 0
m_ForceIntoRT: 0
m_OcclusionCulling: 1
m_StereoConvergence: 10
m_StereoSeparation: 0.022
--- !u!4 &1551583535
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1551583532}
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_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &2075166233
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2075166235}
- component: {fileID: 2075166234}
m_Layer: 0
m_Name: Directional Light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!108 &2075166234
Light:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2075166233}
m_Enabled: 1
serializedVersion: 10
m_Type: 1
m_Shape: 0
m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
m_Intensity: 1
m_Range: 10
m_SpotAngle: 30
m_InnerSpotAngle: 21.80208
m_CookieSize: 10
m_Shadows:
m_Type: 2
m_Resolution: -1
m_CustomResolution: -1
m_Strength: 1
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_CullingMatrixOverride:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_UseCullingMatrixOverride: 0
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingLayerMask: 1
m_Lightmapping: 4
m_LightShadowCasterMode: 0
m_AreaSize: {x: 1, y: 1}
m_BounceIntensity: 1
m_ColorTemperature: 6570
m_UseColorTemperature: 0
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
m_UseBoundingSphereOverride: 0
m_UseViewFrustumForShadowCasterCull: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!4 &2075166235
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2075166233}
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
m_LocalPosition: {x: 0, y: 3, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 5b29d60b22f4c0640bcee5aaef52fc8c
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1632,7 +1632,7 @@ MonoBehaviour:
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: fa8d0c9a2c3e10c46b52e4978d142376, type: 3}
m_Sprite: {fileID: 21300000, guid: 003d66df2f8ae7140af88fa6a8f315e3, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1

View File

@ -1469,6 +1469,7 @@ Transform:
- {fileID: 2026363748}
- {fileID: 612574182}
- {fileID: 596590443}
- {fileID: 379972121}
m_Father: {fileID: 787643888}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@ -1539,7 +1540,10 @@ MonoBehaviour:
maxNumer: 10
haveNumber: 0
haveNumber_text: {fileID: 1337763590}
workNumber_text: {fileID: 1489572594}
toolsNumber_text: {fileID: 1489572594}
minerPrefab: {fileID: 1618018427688012061, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
gold: {fileID: 1987812376}
startPos: {fileID: 379972121}
--- !u!61 &361643073
BoxCollider2D:
m_ObjectHideFlags: 0
@ -1553,7 +1557,7 @@ BoxCollider2D:
m_IsTrigger: 0
m_UsedByEffector: 0
m_UsedByComposite: 0
m_Offset: {x: -4.247031, y: 0.22246343}
m_Offset: {x: -4.2262335, y: 0.21553087}
m_SpriteTilingProperty:
border: {x: 0, y: 0, z: 0, w: 0}
pivot: {x: 0.5, y: 0.5}
@ -1564,8 +1568,39 @@ BoxCollider2D:
adaptiveTiling: 0
m_AutoTiling: 0
serializedVersion: 2
m_Size: {x: 2.3059368, y: 4.0550733}
m_Size: {x: 2.347532, y: 4.0412087}
m_EdgeRadius: 0
--- !u!1 &379972120
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 379972121}
m_Layer: 6
m_Name: pos
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &379972121
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 379972120}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -4.32, y: -0.79, z: -4}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 361643070}
m_RootOrder: 5
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &385221462 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 6720542061045396412, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
@ -1720,6 +1755,18 @@ PrefabInstance:
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 1231e4beb6436cb47b2e60858c5f3fc2, type: 3}
- target: {fileID: 6720542060763738961, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.b
value: 1
objectReference: {fileID: 0}
- target: {fileID: 6720542060763738961, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.g
value: 1
objectReference: {fileID: 0}
- target: {fileID: 6720542060763738961, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.r
value: 1
objectReference: {fileID: 0}
- target: {fileID: 6720542060763738974, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_LocalScale.x
value: 0.73
@ -1744,6 +1791,22 @@ PrefabInstance:
propertyPath: m_Name
value: minbtn
objectReference: {fileID: 0}
- target: {fileID: 6720542061045396414, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.a
value: 0.47058824
objectReference: {fileID: 0}
- target: {fileID: 6720542061045396414, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.b
value: 0
objectReference: {fileID: 0}
- target: {fileID: 6720542061045396414, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.g
value: 0
objectReference: {fileID: 0}
- target: {fileID: 6720542061045396414, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Color.r
value: 0
objectReference: {fileID: 0}
- target: {fileID: 6720542061045396415, guid: 44f8c7a70b8d4c54983e81548e983557, type: 3}
propertyPath: m_Pivot.x
value: 0.5
@ -3211,7 +3274,7 @@ RectTransform:
- {fileID: 2024633594}
- {fileID: 1514932430}
m_Father: {fileID: 1987825451}
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}
@ -3536,63 +3599,6 @@ SpriteRenderer:
m_WasSpriteAssigned: 1
m_MaskInteraction: 0
m_SpriteSortPoint: 0
--- !u!1001 &1032988891
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_RootOrder
value: 10
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalPosition.x
value: -2.9
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalPosition.y
value: 1.04
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalPosition.z
value: -4
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalRotation.y
value: -0
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012048, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1618018427688012061, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
propertyPath: m_Name
value: miner1
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
--- !u!1 &1059809688
GameObject:
m_ObjectHideFlags: 0
@ -4399,33 +4405,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!1 &1365257971 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 1618018427688012061, guid: 73e1e64117f01eb4788657e2602c9872, type: 3}
m_PrefabInstance: {fileID: 1032988891}
m_PrefabAsset: {fileID: 0}
--- !u!114 &1365257976
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1365257971}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 32c2f38a722aceb40980e1cdf8a6041a, type: 3}
m_Name:
m_EditorClassIdentifier:
nowState: 0
probabilityOfStand: 0.314
probabilityOfMove: 0.29
probabilityOfDig: 0.333
ChangeStateTimer: 3
moveSpeed: 1
maxMovePos: {x: 2, y: 1, z: -3}
minMovePos: {x: 0, y: 0.7, z: -3}
digPosition: {x: 2.5, y: 1, z: -2}
digTime: 3
--- !u!1 &1387148072
GameObject:
m_ObjectHideFlags: 0
@ -5654,7 +5633,7 @@ Transform:
m_ConstrainProportionsScale: 1
m_Children: []
m_Father: {fileID: 1987825451}
m_RootOrder: 1
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!212 &1597418306
SpriteRenderer:
@ -5723,25 +5702,33 @@ PrefabInstance:
propertyPath: BuyBTN
value:
objectReference: {fileID: 1940442796}
- target: {fileID: 712421656798403500, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: BuyManBTN
value:
objectReference: {fileID: 1940442796}
- target: {fileID: 712421656798403500, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: BuyToolsBTN
value:
objectReference: {fileID: 1655523438}
- target: {fileID: 772119012469133730, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_SizeDelta.y
value: 0
value: 56.341736
objectReference: {fileID: 0}
- target: {fileID: 772119012479482201, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119012479482201, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMin.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119012479482201, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
value: 358.96
objectReference: {fileID: 0}
- target: {fileID: 772119012479482201, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
value: -284.5
objectReference: {fileID: 0}
- target: {fileID: 772119012549100884, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
@ -5769,7 +5756,7 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 772119012782483033, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_SizeDelta.y
value: 0
value: 376
objectReference: {fileID: 0}
- target: {fileID: 772119012782483033, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
@ -5789,7 +5776,7 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 772119012968109579, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_SizeDelta.y
value: 0
value: 376
objectReference: {fileID: 0}
- target: {fileID: 772119012968109579, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
@ -5801,51 +5788,51 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 772119013030894964, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013030894964, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMin.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013030894964, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
value: 358.96
objectReference: {fileID: 0}
- target: {fileID: 772119013030894964, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
value: -26.90355
objectReference: {fileID: 0}
- target: {fileID: 772119013178936366, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013178936366, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMin.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013178936366, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
value: 358.96
objectReference: {fileID: 0}
- target: {fileID: 772119013178936366, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
value: -91.5
objectReference: {fileID: 0}
- target: {fileID: 772119013183124459, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013183124459, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMin.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013183124459, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
value: 358.96
objectReference: {fileID: 0}
- target: {fileID: 772119013183124459, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
value: -284.5
objectReference: {fileID: 0}
- target: {fileID: 772119013424987676, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
@ -5865,19 +5852,19 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 772119013439001657, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013439001657, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMin.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013439001657, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
value: 358.96
objectReference: {fileID: 0}
- target: {fileID: 772119013439001657, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
value: -26.90355
objectReference: {fileID: 0}
- target: {fileID: 772119013543074794, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_Pivot.x
@ -5967,21 +5954,25 @@ PrefabInstance:
propertyPath: m_Name
value: buyingTalent
objectReference: {fileID: 0}
- target: {fileID: 772119013543074795, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 772119013882568581, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMax.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013882568581, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchorMin.y
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: 772119013882568581, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
value: 358.96
objectReference: {fileID: 0}
- target: {fileID: 772119013882568581, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
value: -91.5
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
@ -6099,6 +6090,17 @@ SpriteRenderer:
m_WasSpriteAssigned: 1
m_MaskInteraction: 0
m_SpriteSortPoint: 0
--- !u!114 &1655523438 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 772119013722077066, guid: eafbedc841c39c44e98e0814dd475809, type: 3}
m_PrefabInstance: {fileID: 1644326559}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &1693739252
GameObject:
m_ObjectHideFlags: 0
@ -7390,7 +7392,6 @@ Transform:
m_LocalScale: {x: 1.0471, y: 1.0471, z: 1.0471}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 2113486322}
- {fileID: 1597418305}
- {fileID: 787643888}
m_Father: {fileID: 0}
@ -7912,87 +7913,3 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!1 &2113486321
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2113486322}
- component: {fileID: 2113486323}
m_Layer: 0
m_Name: cultivation_gem_island
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 0
--- !u!4 &2113486322
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2113486321}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: -4.78, z: -3}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 1
m_Children: []
m_Father: {fileID: 1987825451}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!212 &2113486323
SpriteRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2113486321}
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 0
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 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_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 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: 7ede9b1ca81911a4897a6c9196537500, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 0.49019608}
m_FlipX: 0
m_FlipY: 0
m_DrawMode: 0
m_Size: {x: 10.8, y: 19.2}
m_AdaptiveModeThreshold: 0.5
m_SpriteTileMode: 0
m_WasSpriteAssigned: 1
m_MaskInteraction: 0
m_SpriteSortPoint: 0

View File

@ -571,7 +571,7 @@ MonoBehaviour:
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: fa8d0c9a2c3e10c46b52e4978d142376, type: 3}
m_Sprite: {fileID: 21300000, guid: 003d66df2f8ae7140af88fa6a8f315e3, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1

View File

@ -3298,7 +3298,7 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1

File diff suppressed because it is too large Load Diff

View File

@ -1497,10 +1497,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -208}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &155552545
MonoBehaviour:
@ -1939,10 +1939,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -1202}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &217705199
MonoBehaviour:
@ -3386,10 +3386,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -492}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &357744634
MonoBehaviour:
@ -3545,10 +3545,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 6
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -918}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &372126638
MonoBehaviour:
@ -7452,10 +7452,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -350}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &905241417
MonoBehaviour:
@ -11299,10 +11299,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 7
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -1060}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &1471142138
MonoBehaviour:
@ -11458,10 +11458,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 4
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -634}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &1477665802
MonoBehaviour:
@ -11537,10 +11537,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 5
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -776}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &1487255526
MonoBehaviour:
@ -15222,10 +15222,10 @@ RectTransform:
m_Father: {fileID: 647429423}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 501, y: -66}
m_SizeDelta: {x: 1002, y: 132}
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.5, y: 0.5}
--- !u!114 &1993090283
MonoBehaviour:
@ -15868,7 +15868,7 @@ MonoBehaviour:
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: fa8d0c9a2c3e10c46b52e4978d142376, type: 3}
m_Sprite: {fileID: 21300000, guid: 003d66df2f8ae7140af88fa6a8f315e3, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1

View File

@ -11,6 +11,7 @@ GameObject:
- component: {fileID: 1618018427688012048}
- component: {fileID: 1618018427688012063}
- component: {fileID: 1618018427688012062}
- component: {fileID: 640971684}
m_Layer: 0
m_Name: miner1
m_TagString: Untagged
@ -26,7 +27,7 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1618018427688012061}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 9.647776, y: -3.69783, z: 0}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
@ -106,3 +107,25 @@ Animator:
m_AllowConstantClipSamplingOptimization: 1
m_KeepAnimatorStateOnDisable: 0
m_WriteDefaultValuesOnDisable: 0
--- !u!114 &640971684
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1618018427688012061}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 32c2f38a722aceb40980e1cdf8a6041a, type: 3}
m_Name:
m_EditorClassIdentifier:
nowState: 0
probabilityOfStand: 0.4
probabilityOfMove: 0.3
probabilityOfDig: 0.3
ChangeStateTimer: 3
moveSpeed: 2
maxMovePos: {x: 2, y: 0.6, z: -3}
minMovePos: {x: -4, y: 0.5, z: -4}
digPosition: {x: 2.4, y: 1.03, z: -3}
digTime: 5

View File

@ -198,7 +198,7 @@ AnimatorStateMachine:
m_Position: {x: 20, y: 0, z: 0}
- serializedVersion: 1
m_State: {fileID: 3029844287586842561}
m_Position: {x: 150, y: -180, z: 0}
m_Position: {x: 150, y: -160, z: 0}
- serializedVersion: 1
m_State: {fileID: -3023250217246779251}
m_Position: {x: -120, y: -180, z: 0}

View File

@ -1,167 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: miner_dig_1.1
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1033714812, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.083333336
value: {fileID: -62231663, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.16666667
value: {fileID: -1975208735, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.25
value: {fileID: -1838924784, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.33333334
value: {fileID: -1692527594, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.41666666
value: {fileID: 736351362, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.5
value: {fileID: 192921600, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.5833333
value: {fileID: -626438850, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.6666667
value: {fileID: -1486253892, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.75
value: {fileID: -630783959, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.8333333
value: {fileID: 835400417, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.9166667
value: {fileID: 328991793, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1
value: {fileID: 1723917645, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.0833334
value: {fileID: -1501604795, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.1666666
value: {fileID: -701292402, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.25
value: {fileID: 256202528, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.3333334
value: {fileID: 2087304132, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.4166666
value: {fileID: -2141070928, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.5
value: {fileID: 1013846202, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.5833334
value: {fileID: -2111936552, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.6666666
value: {fileID: 918252177, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.75
value: {fileID: 1062153088, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.8333334
value: {fileID: -1129273576, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.9166666
value: {fileID: -708101891, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2
value: {fileID: -957815521, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.0833333
value: {fileID: -633466428, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.1666667
value: {fileID: -2113515585, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.25
value: {fileID: -884417327, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.3333333
value: {fileID: 2090204067, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.4166667
value: {fileID: 410095180, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.5
value: {fileID: 1032514777, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.5833333
value: {fileID: 2078799256, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.6666667
value: {fileID: 85453860, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.75
value: {fileID: 1498180080, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
m_SampleRate: 12
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1033714812, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -62231663, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1975208735, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1838924784, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1692527594, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 736351362, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 192921600, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -626438850, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1486253892, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -630783959, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 835400417, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 328991793, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1723917645, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1501604795, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -701292402, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 256202528, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2087304132, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2141070928, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1013846202, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2111936552, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 918252177, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1062153088, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1129273576, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -708101891, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -957815521, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -633466428, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2113515585, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -884417327, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2090204067, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 410095180, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1032514777, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2078799256, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 85453860, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1498180080, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 790c9517aba9edf498783efcd0dcf363
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,167 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: miner_dig_1.2
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1033714812, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.083333336
value: {fileID: -62231663, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.16666667
value: {fileID: -1975208735, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.25
value: {fileID: -1838924784, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.33333334
value: {fileID: -1692527594, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.41666666
value: {fileID: 736351362, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.5
value: {fileID: 192921600, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.5833333
value: {fileID: -626438850, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.6666667
value: {fileID: -1486253892, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.75
value: {fileID: -630783959, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.8333333
value: {fileID: 835400417, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 0.9166667
value: {fileID: 328991793, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1
value: {fileID: 1723917645, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.0833334
value: {fileID: -1501604795, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.1666666
value: {fileID: -701292402, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.25
value: {fileID: 256202528, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.3333334
value: {fileID: 2087304132, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.4166666
value: {fileID: -2141070928, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.5
value: {fileID: 1013846202, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.5833334
value: {fileID: -2111936552, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.6666666
value: {fileID: 918252177, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.75
value: {fileID: 1062153088, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.8333334
value: {fileID: -1129273576, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.9166666
value: {fileID: -708101891, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2
value: {fileID: -957815521, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.0833333
value: {fileID: -633466428, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.1666667
value: {fileID: -2113515585, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.25
value: {fileID: -884417327, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.3333333
value: {fileID: 2090204067, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.4166667
value: {fileID: 410095180, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.5
value: {fileID: 1032514777, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.5833333
value: {fileID: 2078799256, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.6666667
value: {fileID: 85453860, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.75
value: {fileID: 1498180080, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
m_SampleRate: 12
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1033714812, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -62231663, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1975208735, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1838924784, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1692527594, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 736351362, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 192921600, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -626438850, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1486253892, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -630783959, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 835400417, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 328991793, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1723917645, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1501604795, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -701292402, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 256202528, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2087304132, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2141070928, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1013846202, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2111936552, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 918252177, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1062153088, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1129273576, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -708101891, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -957815521, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -633466428, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2113515585, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -884417327, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2090204067, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 410095180, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1032514777, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2078799256, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 85453860, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1498180080, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@ -20,73 +20,39 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1033714812, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 1679062413, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.083333336
value: {fileID: -62231663, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -1119675426, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.16666667
value: {fileID: -1975208735, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -823044926, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.25
value: {fileID: -1838924784, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -1390077344, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.33333334
value: {fileID: -1692527594, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -92073496, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.41666666
value: {fileID: 736351362, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -42231050, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.5
value: {fileID: 192921600, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -488416677, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.5833333
value: {fileID: -626438850, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -910995315, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.6666667
value: {fileID: -1486253892, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -2119354004, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.75
value: {fileID: -630783959, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 2091328765, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.8333333
value: {fileID: 835400417, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: -278686657, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 0.9166667
value: {fileID: 328991793, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 776594546, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 1
value: {fileID: 1723917645, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 628158466, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 1.0833334
value: {fileID: -1501604795, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 156772402, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 1.1666666
value: {fileID: -701292402, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 148505864, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 1.25
value: {fileID: 256202528, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 912612778, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- time: 1.3333334
value: {fileID: 2087304132, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.4166666
value: {fileID: -2141070928, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.5
value: {fileID: 1013846202, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.5833334
value: {fileID: -2111936552, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.6666666
value: {fileID: 918252177, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.75
value: {fileID: 1062153088, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.8333334
value: {fileID: -1129273576, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 1.9166666
value: {fileID: -708101891, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2
value: {fileID: -957815521, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.0833333
value: {fileID: -633466428, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.1666667
value: {fileID: -2113515585, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.25
value: {fileID: -884417327, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.3333333
value: {fileID: 2090204067, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.4166667
value: {fileID: 410095180, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.5
value: {fileID: 1032514777, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.5833333
value: {fileID: 2078799256, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.6666667
value: {fileID: 85453860, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- time: 2.75
value: {fileID: 1498180080, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
value: {fileID: 1223695407, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -106,46 +72,29 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1033714812, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -62231663, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1975208735, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1838924784, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1692527594, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 736351362, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 192921600, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -626438850, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1486253892, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -630783959, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 835400417, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 328991793, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1723917645, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1501604795, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -701292402, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 256202528, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2087304132, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2141070928, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1013846202, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2111936552, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 918252177, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1062153088, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -1129273576, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -708101891, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -957815521, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -633466428, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -2113515585, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: -884417327, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2090204067, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 410095180, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1032514777, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 2078799256, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 85453860, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1498180080, guid: 40d6bacab480d8545b16ba29c5fae75c, type: 3}
- {fileID: 1679062413, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -1119675426, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -823044926, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -1390077344, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -92073496, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -42231050, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -488416677, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -910995315, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -2119354004, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 2091328765, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: -278686657, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 776594546, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 628158466, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 156772402, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 148505864, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 912612778, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
- {fileID: 1223695407, guid: 8e4ba394e8569844caaefbadd38d117e, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_StopTime: 1.4166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1663088035, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 1735254622, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.083333336
value: {fileID: 2308360, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -1637513725, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.16666667
value: {fileID: -1952393064, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -1279545605, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.25
value: {fileID: -2134928100, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -707383547, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.33333334
value: {fileID: -1868148701, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -1746966278, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.41666666
value: {fileID: -149211184, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 875539212, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.5
value: {fileID: -418912510, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -1328555820, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.5833333
value: {fileID: -1969681497, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -943514203, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.6666667
value: {fileID: -1635655784, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -840136717, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.75
value: {fileID: -2115663374, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 1430979939, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.8333333
value: {fileID: 1557607790, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 96218445, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 0.9166667
value: {fileID: -1000308397, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -958861214, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1
value: {fileID: -1524066079, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 1313187372, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1.0833334
value: {fileID: -1807239863, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -59959943, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1.1666666
value: {fileID: 859124950, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -327197816, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1.25
value: {fileID: -1745953654, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 1478852141, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1.3333334
value: {fileID: -1553526313, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -814959056, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1.4166666
value: {fileID: 1824869134, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: 1147280200, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- time: 1.5
value: {fileID: 1221445320, guid: e0414591547426941b70ef960bca4845, type: 3}
value: {fileID: -283445076, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1663088035, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: 2308360, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1952393064, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -2134928100, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1868148701, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -149211184, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -418912510, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1969681497, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1635655784, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -2115663374, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: 1557607790, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1000308397, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1524066079, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1807239863, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: 859124950, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1745953654, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: -1553526313, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: 1824869134, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: 1221445320, guid: e0414591547426941b70ef960bca4845, type: 3}
- {fileID: 1735254622, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -1637513725, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -1279545605, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -707383547, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -1746966278, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: 875539212, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -1328555820, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -943514203, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -840136717, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: 1430979939, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: 96218445, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -958861214, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: 1313187372, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -59959943, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -327197816, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: 1478852141, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -814959056, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: 1147280200, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
- {fileID: -283445076, guid: 2bf25e7c9b0b6904a8bf25512b29a1b2, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 2037703429, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 2074926565, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.083333336
value: {fileID: -2146825494, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -215866049, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.16666667
value: {fileID: 27373280, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 1975909997, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.25
value: {fileID: 1673736163, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 216640751, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.33333334
value: {fileID: 1512853503, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -1944812507, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.41666666
value: {fileID: -1584291274, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -210840832, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.5
value: {fileID: -757109300, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 1539318486, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.5833333
value: {fileID: -1830801510, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 1104987299, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.6666667
value: {fileID: -771304824, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 2136563598, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.75
value: {fileID: -187050089, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -2129856922, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.8333333
value: {fileID: 2002331330, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 855588508, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 0.9166667
value: {fileID: -287380385, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -1321977189, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1
value: {fileID: 1064246156, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -1859541629, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1.0833334
value: {fileID: -78293025, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -509400767, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1.1666666
value: {fileID: -1496832848, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -142811725, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1.25
value: {fileID: 351018312, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -1865464185, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1.3333334
value: {fileID: -1629126802, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: -1708009618, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1.4166666
value: {fileID: 2129263221, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 491348364, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- time: 1.5
value: {fileID: 366232633, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
value: {fileID: 1379633070, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 2037703429, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -2146825494, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 27373280, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 1673736163, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 1512853503, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -1584291274, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -757109300, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -1830801510, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -771304824, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -187050089, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 2002331330, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -287380385, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 1064246156, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -78293025, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -1496832848, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 351018312, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: -1629126802, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 2129263221, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 366232633, guid: ec7d7726df971d84c97346513b25c18f, type: 3}
- {fileID: 2074926565, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -215866049, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 1975909997, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 216640751, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -1944812507, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -210840832, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 1539318486, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 1104987299, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 2136563598, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -2129856922, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 855588508, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -1321977189, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -1859541629, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -509400767, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -142811725, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -1865464185, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: -1708009618, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 491348364, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
- {fileID: 1379633070, guid: 67d2b1db3ae59284d89e1bdadb1945aa, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -26,7 +26,7 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4851271842099260498}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 12.380738, y: -3.58763, z: 0}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []

View File

@ -20,73 +20,39 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: -711436567, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -211424765, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.083333336
value: {fileID: 478319935, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 1943176378, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.16666667
value: {fileID: -542192307, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -1815115505, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.25
value: {fileID: 676246898, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 69709666, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.33333334
value: {fileID: -823085890, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -68502673, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.41666666
value: {fileID: 996280022, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -136127157, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.5
value: {fileID: -726071078, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 417201694, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.5833333
value: {fileID: -249289578, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 955865734, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.6666667
value: {fileID: -915575743, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 1369309635, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.75
value: {fileID: -191315400, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -526722055, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.8333333
value: {fileID: 1102691812, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -325554022, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 0.9166667
value: {fileID: 581947920, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 1888462782, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 1
value: {fileID: 352478805, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 156776741, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 1.0833334
value: {fileID: -1665352543, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 1922744885, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 1.1666666
value: {fileID: -128487386, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: -1266386496, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 1.25
value: {fileID: -19379925, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 1661398802, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- time: 1.3333334
value: {fileID: 1020403647, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.4166666
value: {fileID: -1001233572, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.5
value: {fileID: 1506500554, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.5833334
value: {fileID: -1141576532, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.6666666
value: {fileID: 132766670, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.75
value: {fileID: 787108524, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.8333334
value: {fileID: -1585252037, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 1.9166666
value: {fileID: 442237339, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2
value: {fileID: -1730552676, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.0833333
value: {fileID: -744161900, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.1666667
value: {fileID: -1576181939, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.25
value: {fileID: -545272957, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.3333333
value: {fileID: 1630242386, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.4166667
value: {fileID: 1834026068, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.5
value: {fileID: 823113051, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.5833333
value: {fileID: -968898370, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.6666667
value: {fileID: -1030592635, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- time: 2.75
value: {fileID: 980915324, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
value: {fileID: 1544246985, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -106,46 +72,29 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: -711436567, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 478319935, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -542192307, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 676246898, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -823085890, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 996280022, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -726071078, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -249289578, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -915575743, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -191315400, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 1102691812, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 581947920, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 352478805, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1665352543, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -128487386, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -19379925, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 1020403647, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1001233572, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 1506500554, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1141576532, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 132766670, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 787108524, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1585252037, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 442237339, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1730552676, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -744161900, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1576181939, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -545272957, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 1630242386, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 1834026068, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 823113051, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -968898370, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -1030592635, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: 980915324, guid: ea542c9f7a2256c45b9ded0ebfe10bf8, type: 3}
- {fileID: -211424765, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 1943176378, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: -1815115505, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 69709666, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: -68502673, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: -136127157, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 417201694, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 955865734, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 1369309635, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: -526722055, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: -325554022, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 1888462782, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 156776741, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 1922744885, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: -1266386496, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 1661398802, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
- {fileID: 1544246985, guid: 1ae80a244c572f94d9fe7d551f548f6a, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_StopTime: 1.4166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: -1585308989, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -1827927503, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.083333336
value: {fileID: 1882065157, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -676820797, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.16666667
value: {fileID: 1885128097, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -802235957, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.25
value: {fileID: -1673113204, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -1524951030, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.33333334
value: {fileID: -935761252, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 1668006673, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.41666666
value: {fileID: -769175083, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -1290902318, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.5
value: {fileID: 49057380, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 1083452524, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.5833333
value: {fileID: -827738142, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 1026559673, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.6666667
value: {fileID: -1525153250, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -1756152011, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.75
value: {fileID: 804942604, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -1471804235, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.8333333
value: {fileID: 2069933077, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 763165136, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 0.9166667
value: {fileID: -667008829, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -2032107328, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1
value: {fileID: -263759515, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 588807658, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1.0833334
value: {fileID: 763427523, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -1145633582, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1.1666666
value: {fileID: -676124116, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -836675853, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1.25
value: {fileID: 1817290616, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -262197210, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1.3333334
value: {fileID: -892352984, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: -721757819, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1.4166666
value: {fileID: 56979055, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 45807833, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- time: 1.5
value: {fileID: 843505670, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
value: {fileID: 553200933, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: -1585308989, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 1882065157, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 1885128097, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -1673113204, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -935761252, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -769175083, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 49057380, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -827738142, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -1525153250, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 804942604, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 2069933077, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -667008829, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -263759515, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 763427523, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -676124116, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 1817290616, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -892352984, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 56979055, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: 843505670, guid: 3c402c9b70f8e0d4389d7029321a5521, type: 3}
- {fileID: -1827927503, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -676820797, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -802235957, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -1524951030, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 1668006673, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -1290902318, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 1083452524, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 1026559673, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -1756152011, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -1471804235, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 763165136, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -2032107328, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 588807658, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -1145633582, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -836675853, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -262197210, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: -721757819, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 45807833, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
- {fileID: 553200933, guid: e44378b43f2832c4092f9438b5b7205f, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: -705210350, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -564534321, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.083333336
value: {fileID: -2116388747, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -1619111368, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.16666667
value: {fileID: -1600714484, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -2134935377, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.25
value: {fileID: 1410444201, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 804746374, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.33333334
value: {fileID: -207524247, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 240123536, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.41666666
value: {fileID: -160902261, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -1715865371, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.5
value: {fileID: 2133958859, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 1086952534, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.5833333
value: {fileID: 2048436404, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 96653169, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.6666667
value: {fileID: -629656873, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 289424040, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.75
value: {fileID: -833321034, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 573809319, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.8333333
value: {fileID: -1267627250, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 1161287245, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 0.9166667
value: {fileID: -326028267, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 2065611335, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1
value: {fileID: 97045938, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -37178458, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1.0833334
value: {fileID: -133558899, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 997868561, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1.1666666
value: {fileID: 1915256149, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 1100533559, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1.25
value: {fileID: 261117198, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -151733869, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1.3333334
value: {fileID: -629004083, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 1491952519, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1.4166666
value: {fileID: 397568704, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: 1737944069, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- time: 1.5
value: {fileID: 1003681922, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
value: {fileID: -247788649, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: -705210350, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -2116388747, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -1600714484, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 1410444201, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -207524247, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -160902261, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 2133958859, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 2048436404, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -629656873, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -833321034, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -1267627250, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -326028267, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 97045938, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -133558899, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 1915256149, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 261117198, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -629004083, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 397568704, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: 1003681922, guid: 9f34cce78a86f0f4abc92d2d2aa124e6, type: 3}
- {fileID: -564534321, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: -1619111368, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: -2134935377, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 804746374, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 240123536, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: -1715865371, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 1086952534, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 96653169, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 289424040, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 573809319, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 1161287245, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 2065611335, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: -37178458, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 997868561, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 1100533559, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: -151733869, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 1491952519, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: 1737944069, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
- {fileID: -247788649, guid: c0603bed087587a459e19f661e80a9b3, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -26,7 +26,7 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7704353754827174037}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 15.24594, y: -3.2790697, z: 0}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []

View File

@ -20,73 +20,39 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1918889844, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -768342723, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.083333336
value: {fileID: -279558508, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: 757127050, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.16666667
value: {fileID: 1664205480, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -1979003659, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.25
value: {fileID: 1214650261, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -1525421519, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.33333334
value: {fileID: -1748792108, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -1224115103, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.41666666
value: {fileID: -1981439803, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: 1412750734, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.5
value: {fileID: -258192149, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -362923929, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.5833333
value: {fileID: -814807670, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -186539613, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.6666667
value: {fileID: -144720123, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -1119645783, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.75
value: {fileID: 1243604392, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: 542178583, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.8333333
value: {fileID: 1375813806, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: 913596008, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 0.9166667
value: {fileID: 750249790, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -128052071, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 1
value: {fileID: -1533512811, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -606696338, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 1.0833334
value: {fileID: 1714150389, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -1823874516, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 1.1666666
value: {fileID: -615359250, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: -770489648, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 1.25
value: {fileID: 855663769, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: 568505078, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- time: 1.3333334
value: {fileID: -701209857, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.4166666
value: {fileID: -568851472, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.5
value: {fileID: 2107142935, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.5833334
value: {fileID: 172041372, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.6666666
value: {fileID: 1081827767, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.75
value: {fileID: 1728361909, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.8333334
value: {fileID: 1502535993, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 1.9166666
value: {fileID: 664964446, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2
value: {fileID: 2143128239, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.0833333
value: {fileID: -1065348450, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.1666667
value: {fileID: -282358672, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.25
value: {fileID: 771777908, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.3333333
value: {fileID: 189602041, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.4166667
value: {fileID: 913854824, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.5
value: {fileID: -1254549470, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.5833333
value: {fileID: -1270132975, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.6666667
value: {fileID: -41512876, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- time: 2.75
value: {fileID: 1028522370, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
value: {fileID: 2757781, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -106,46 +72,29 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1918889844, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -279558508, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1664205480, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1214650261, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -1748792108, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -1981439803, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -258192149, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -814807670, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -144720123, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1243604392, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1375813806, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 750249790, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -1533512811, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1714150389, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -615359250, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 855663769, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -701209857, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -568851472, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 2107142935, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 172041372, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1081827767, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1728361909, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1502535993, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 664964446, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 2143128239, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -1065348450, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -282358672, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 771777908, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 189602041, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 913854824, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -1254549470, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -1270132975, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -41512876, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: 1028522370, guid: 1e0138c4545a4dd48bb8ef721922fb0a, type: 3}
- {fileID: -768342723, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: 757127050, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -1979003659, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -1525421519, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -1224115103, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: 1412750734, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -362923929, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -186539613, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -1119645783, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: 542178583, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: 913596008, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -128052071, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -606696338, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -1823874516, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: -770489648, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: 568505078, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
- {fileID: 2757781, guid: e50b6368d200c5449965f9f59f7c89e9, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_StopTime: 1.4166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1948409393, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 1432579098, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.083333336
value: {fileID: -492864512, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -1474440835, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.16666667
value: {fileID: 916322282, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 247583947, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.25
value: {fileID: 1761023406, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -1910892134, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.33333334
value: {fileID: 1107402202, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 597543920, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.41666666
value: {fileID: 1448567684, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -81292333, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.5
value: {fileID: 1735972981, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -2121538197, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.5833333
value: {fileID: -986040067, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 1773832353, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.6666667
value: {fileID: -1627878885, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -2006233724, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.75
value: {fileID: 853421228, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -1777421973, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.8333333
value: {fileID: 1893810656, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -41688887, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 0.9166667
value: {fileID: -1920432263, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 637398617, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1
value: {fileID: -152793724, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -900238253, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1.0833334
value: {fileID: -911363161, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -652387593, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1.1666666
value: {fileID: 788768875, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 2018964860, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1.25
value: {fileID: -442171221, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -1210506321, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1.3333334
value: {fileID: -1237176905, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -701838006, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1.4166666
value: {fileID: -590886235, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: -765424417, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- time: 1.5
value: {fileID: -486104885, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
value: {fileID: 1837663361, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1948409393, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -492864512, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 916322282, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 1761023406, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 1107402202, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 1448567684, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 1735972981, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -986040067, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -1627878885, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 853421228, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 1893810656, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -1920432263, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -152793724, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -911363161, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 788768875, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -442171221, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -1237176905, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -590886235, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: -486104885, guid: e21060ee3bd4345448faa58c5d8912e8, type: 3}
- {fileID: 1432579098, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -1474440835, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: 247583947, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -1910892134, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: 597543920, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -81292333, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -2121538197, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: 1773832353, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -2006233724, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -1777421973, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -41688887, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: 637398617, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -900238253, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -652387593, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: 2018964860, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -1210506321, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -701838006, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: -765424417, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
- {fileID: 1837663361, guid: 4bb331b6dcc93074182e6e8af2087336, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: -382532491, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -1747828919, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.083333336
value: {fileID: 706081099, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 719456443, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.16666667
value: {fileID: -1694911569, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -565490479, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.25
value: {fileID: 607122996, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 2097937729, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.33333334
value: {fileID: 1814595867, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 1349974756, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.41666666
value: {fileID: -536320024, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -527296974, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.5
value: {fileID: 227200535, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -1946786502, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.5833333
value: {fileID: -1150389961, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -1869503667, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.6666667
value: {fileID: 555479659, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 1723406538, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.75
value: {fileID: 2027572283, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 59724422, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.8333333
value: {fileID: 1575657456, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 899532310, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 0.9166667
value: {fileID: 657111032, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -147436328, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1
value: {fileID: 1593427061, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 161025748, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1.0833334
value: {fileID: -415612468, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 1645794261, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1.1666666
value: {fileID: -1258251525, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 1259564182, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1.25
value: {fileID: -517381104, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 724008743, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1.3333334
value: {fileID: -1356587745, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 358981672, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1.4166666
value: {fileID: 917673960, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: 1910424040, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- time: 1.5
value: {fileID: -358764878, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
value: {fileID: -1014369608, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: -382532491, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 706081099, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -1694911569, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 607122996, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 1814595867, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -536320024, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 227200535, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -1150389961, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 555479659, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 2027572283, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 1575657456, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 657111032, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 1593427061, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -415612468, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -1258251525, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -517381104, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -1356587745, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: 917673960, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -358764878, guid: ddb8509bc0a86cb43882e9c261debc5b, type: 3}
- {fileID: -1747828919, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 719456443, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: -565490479, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 2097937729, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 1349974756, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: -527296974, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: -1946786502, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: -1869503667, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 1723406538, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 59724422, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 899532310, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: -147436328, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 161025748, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 1645794261, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 1259564182, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 724008743, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 358981672, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: 1910424040, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
- {fileID: -1014369608, guid: 17e3fe66824e3524bbe9cdd2e3327c17, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -26,7 +26,7 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1727175300942666191}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 17.648304, y: -3.2790697, z: 0}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []

View File

@ -20,73 +20,39 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 805579700, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: 1045130636, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.083333336
value: {fileID: -1127307675, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -261388725, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.16666667
value: {fileID: -1684367908, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -1173028736, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.25
value: {fileID: 445305648, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -1107291670, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.33333334
value: {fileID: -1067274127, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: 671345821, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.41666666
value: {fileID: 367999239, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: 1221193864, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.5
value: {fileID: -1589017437, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -798563838, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.5833333
value: {fileID: -1887334539, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -1267682287, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.6666667
value: {fileID: 789099468, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -707325142, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.75
value: {fileID: -223911053, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -1349222683, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.8333333
value: {fileID: 148802566, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -1311689978, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 0.9166667
value: {fileID: 10549269, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -48121852, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 1
value: {fileID: 823776230, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: 1932069161, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 1.0833334
value: {fileID: -920341581, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: 790813679, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 1.1666666
value: {fileID: 1408753557, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -1292989913, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 1.25
value: {fileID: -734410490, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: -434900977, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- time: 1.3333334
value: {fileID: -1986573770, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.4166666
value: {fileID: 340266669, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.5
value: {fileID: 58983122, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.5833334
value: {fileID: 662875596, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.6666666
value: {fileID: 675179955, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.75
value: {fileID: 427362516, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.8333334
value: {fileID: 1253073952, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 1.9166666
value: {fileID: -990270026, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2
value: {fileID: 1095078186, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.0833333
value: {fileID: 1658442451, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.1666667
value: {fileID: -956822318, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.25
value: {fileID: -318320726, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.3333333
value: {fileID: -2040229293, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.4166667
value: {fileID: 130084459, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.5
value: {fileID: 1875120199, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.5833333
value: {fileID: 1487953649, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.6666667
value: {fileID: -1656944463, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- time: 2.75
value: {fileID: 9450442, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
value: {fileID: 1396638629, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -106,46 +72,29 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 805579700, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1127307675, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1684367908, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 445305648, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1067274127, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 367999239, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1589017437, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1887334539, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 789099468, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -223911053, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 148802566, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 10549269, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 823776230, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -920341581, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1408753557, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -734410490, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1986573770, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 340266669, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 58983122, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 662875596, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 675179955, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 427362516, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1253073952, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -990270026, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1095078186, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1658442451, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -956822318, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -318320726, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -2040229293, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 130084459, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1875120199, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1487953649, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: -1656944463, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 9450442, guid: 8ebc0174ac49da1478204cc79d6a94b3, type: 3}
- {fileID: 1045130636, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -261388725, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -1173028736, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -1107291670, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: 671345821, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: 1221193864, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -798563838, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -1267682287, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -707325142, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -1349222683, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -1311689978, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -48121852, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: 1932069161, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: 790813679, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -1292989913, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: -434900977, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
- {fileID: 1396638629, guid: e41d4216446bbf3408d0a1364fc3af72, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_StopTime: 1.4166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 606663004, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 819017755, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.083333336
value: {fileID: -1011709635, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -1255900323, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.16666667
value: {fileID: -115447816, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1080122582, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.25
value: {fileID: -844455313, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1415451921, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.33333334
value: {fileID: 230399109, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1974076320, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.41666666
value: {fileID: 1107665426, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -1107576694, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.5
value: {fileID: 1164114131, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1840335754, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.5833333
value: {fileID: -797805877, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -1170691423, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.6666667
value: {fileID: -1791705006, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 2089062234, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.75
value: {fileID: -2013368424, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 823850013, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.8333333
value: {fileID: -529258725, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -1363947568, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 0.9166667
value: {fileID: -662039163, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1292097132, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1
value: {fileID: -1975553009, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1226592847, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1.0833334
value: {fileID: 1405895351, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -770449519, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1.1666666
value: {fileID: 244269881, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -1825752589, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1.25
value: {fileID: -1848858814, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1578864964, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1.3333334
value: {fileID: 2038990325, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: 1387882333, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1.4166666
value: {fileID: -1605363775, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -912391655, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- time: 1.5
value: {fileID: -2131061827, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
value: {fileID: -1714523422, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 606663004, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -1011709635, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -115447816, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -844455313, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 230399109, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 1107665426, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 1164114131, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -797805877, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -1791705006, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -2013368424, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -529258725, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -662039163, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -1975553009, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 1405895351, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 244269881, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -1848858814, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 2038990325, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -1605363775, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: -2131061827, guid: 6ed6c4c28efcdbd4183d15c9c12df51c, type: 3}
- {fileID: 819017755, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -1255900323, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1080122582, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1415451921, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1974076320, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -1107576694, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1840335754, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -1170691423, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 2089062234, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 823850013, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -1363947568, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1292097132, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1226592847, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -770449519, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -1825752589, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1578864964, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: 1387882333, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -912391655, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
- {fileID: -1714523422, guid: 1b5715194e312cb48a6914bff2375427, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 372591476, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 681606087, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.083333336
value: {fileID: -1557058169, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -1525340437, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.16666667
value: {fileID: -537783043, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 410994658, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.25
value: {fileID: 35281901, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 1266367134, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.33333334
value: {fileID: 631509912, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -48857521, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.41666666
value: {fileID: -1719047131, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 502263694, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.5
value: {fileID: -1773590166, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 2085542033, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.5833333
value: {fileID: 490401820, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 1610376128, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.6666667
value: {fileID: 1166131553, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -1005621106, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.75
value: {fileID: 2103513189, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -653458479, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.8333333
value: {fileID: -663833099, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -1742682242, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 0.9166667
value: {fileID: -1898294654, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 2010080065, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1
value: {fileID: 197826497, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -587751213, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1.0833334
value: {fileID: -317279407, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 1660448288, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1.1666666
value: {fileID: -127142879, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 345963877, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1.25
value: {fileID: 1137105557, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 1004418967, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1.3333334
value: {fileID: -1615548197, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: -1434850577, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1.4166666
value: {fileID: -274801474, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 838452512, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- time: 1.5
value: {fileID: 48333993, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
value: {fileID: 1439426545, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 372591476, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -1557058169, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -537783043, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 35281901, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 631509912, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -1719047131, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -1773590166, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 490401820, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 1166131553, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 2103513189, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -663833099, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -1898294654, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 197826497, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -317279407, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -127142879, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 1137105557, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -1615548197, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: -274801474, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 48333993, guid: 9daa1b00aeeb92548a1e3ea64be0aba0, type: 3}
- {fileID: 681606087, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -1525340437, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 410994658, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 1266367134, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -48857521, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 502263694, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 2085542033, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 1610376128, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -1005621106, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -653458479, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -1742682242, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 2010080065, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -587751213, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 1660448288, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 345963877, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 1004418967, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: -1434850577, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 838452512, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
- {fileID: 1439426545, guid: 239c172bda433554e8dd76bb66b20796, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -26,7 +26,7 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8014035693471197394}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 9.890216, y: -6.739352, z: 0}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []

View File

@ -20,73 +20,39 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1217630827, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 1469817316, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.083333336
value: {fileID: 702912733, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -1052839198, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.16666667
value: {fileID: 1168542769, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 1796962510, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.25
value: {fileID: -1125315314, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -409199820, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.33333334
value: {fileID: 850287539, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -1442345070, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.41666666
value: {fileID: -1157422997, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -511860744, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.5
value: {fileID: -1274737079, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -1550803895, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.5833333
value: {fileID: 815334067, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -319473200, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.6666667
value: {fileID: -1124348588, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 1680063403, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.75
value: {fileID: 417104779, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -202412360, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.8333333
value: {fileID: -1652376173, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 1578491733, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 0.9166667
value: {fileID: 1690488021, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 1768448576, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 1
value: {fileID: 840968510, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 190703747, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 1.0833334
value: {fileID: -336729160, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -1284553750, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 1.1666666
value: {fileID: 1184207232, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -609143520, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 1.25
value: {fileID: -784087347, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: 32825691, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- time: 1.3333334
value: {fileID: 1680727393, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.4166666
value: {fileID: -456430733, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.5
value: {fileID: 1405949172, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.5833334
value: {fileID: 3769726, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.6666666
value: {fileID: 200548466, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.75
value: {fileID: -986212520, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.8333334
value: {fileID: -1456523830, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 1.9166666
value: {fileID: 1827842924, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2
value: {fileID: -957758733, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.0833333
value: {fileID: -180944845, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.1666667
value: {fileID: -1663214332, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.25
value: {fileID: 1743600052, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.3333333
value: {fileID: 60289648, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.4166667
value: {fileID: 394699693, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.5
value: {fileID: 1545218837, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.5833333
value: {fileID: 173912085, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.6666667
value: {fileID: 245238990, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- time: 2.75
value: {fileID: 337589769, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
value: {fileID: -781113928, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -106,46 +72,29 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1217630827, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 702912733, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1168542769, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1125315314, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 850287539, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1157422997, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1274737079, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 815334067, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1124348588, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 417104779, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1652376173, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1690488021, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 840968510, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -336729160, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1184207232, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -784087347, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1680727393, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -456430733, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1405949172, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 3769726, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 200548466, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -986212520, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1456523830, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1827842924, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -957758733, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -180944845, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: -1663214332, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1743600052, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 60289648, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 394699693, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1545218837, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 173912085, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 245238990, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 337589769, guid: 3751c84e28a19114ca9352d48fe1c39e, type: 3}
- {fileID: 1469817316, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -1052839198, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: 1796962510, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -409199820, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -1442345070, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -511860744, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -1550803895, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -319473200, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: 1680063403, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -202412360, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: 1578491733, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: 1768448576, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: 190703747, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -1284553750, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -609143520, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: 32825691, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
- {fileID: -781113928, guid: 0ade53ff0d572bc4b8185c042acd7d7f, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.8333333
m_StopTime: 1.4166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 689633899, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: -730097596, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.083333336
value: {fileID: 201240484, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: -763473865, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.16666667
value: {fileID: 330016958, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: -237432933, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.25
value: {fileID: 1171080107, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: -1856629113, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.33333334
value: {fileID: 1701777180, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: -814818649, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.41666666
value: {fileID: 245979893, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 872620937, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.5
value: {fileID: -229424591, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: -15932124, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.5833333
value: {fileID: 1476086197, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 949568385, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.6666667
value: {fileID: -1917877430, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 299194142, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.75
value: {fileID: -1472987386, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1311824127, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.8333333
value: {fileID: 689711476, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 107056261, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 0.9166667
value: {fileID: 739751278, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 964875197, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1
value: {fileID: -2030285744, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1760076498, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1.0833334
value: {fileID: 1733292976, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1388309438, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1.1666666
value: {fileID: -1701072289, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 885816573, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1.25
value: {fileID: 633823699, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1008128214, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1.3333334
value: {fileID: -1852292072, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1415031725, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1.4166666
value: {fileID: 1384615338, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1694359638, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- time: 1.5
value: {fileID: 1262349806, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
value: {fileID: 1392040482, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 689633899, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 201240484, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 330016958, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 1171080107, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 1701777180, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 245979893, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -229424591, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 1476086197, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -1917877430, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -1472987386, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 689711476, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 739751278, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -2030285744, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 1733292976, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -1701072289, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 633823699, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -1852292072, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 1384615338, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: 1262349806, guid: 5383164b3531fc84dbabbbe1a7916f95, type: 3}
- {fileID: -730097596, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: -763473865, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: -237432933, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: -1856629113, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: -814818649, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 872620937, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: -15932124, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 949568385, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 299194142, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1311824127, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 107056261, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 964875197, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1760076498, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1388309438, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 885816573, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1008128214, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1415031725, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1694359638, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
- {fileID: 1392040482, guid: 79ab68a272906a643816d0ab2bf1f808, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 504904966, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 1678500488, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.083333336
value: {fileID: -314079327, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -1614668162, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.16666667
value: {fileID: 1357479836, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -1062857010, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.25
value: {fileID: -1477254982, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 1328584137, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.33333334
value: {fileID: 1673175010, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -145901315, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.41666666
value: {fileID: 1829438434, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 429717960, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.5
value: {fileID: -584300541, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 496529007, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.5833333
value: {fileID: -1334409623, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 1867475074, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.6666667
value: {fileID: -1347423569, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -815334433, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.75
value: {fileID: -1871300345, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -538603539, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.8333333
value: {fileID: 279364361, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -1922464158, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 0.9166667
value: {fileID: -1387642973, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -1457329794, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1
value: {fileID: 1079516589, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -990533415, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1.0833334
value: {fileID: 1156005615, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 1890838481, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1.1666666
value: {fileID: -413128197, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 2028588490, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1.25
value: {fileID: 1240153546, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 891564202, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1.3333334
value: {fileID: 1116875155, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: -632105474, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1.4166666
value: {fileID: 155805494, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 1977225844, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- time: 1.5
value: {fileID: -1310512467, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
value: {fileID: 108785616, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 504904966, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -314079327, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1357479836, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -1477254982, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1673175010, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1829438434, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -584300541, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -1334409623, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -1347423569, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -1871300345, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 279364361, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -1387642973, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1079516589, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1156005615, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -413128197, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1240153546, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1116875155, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 155805494, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: -1310512467, guid: 1e111e4303d01284e95ea1aa100f8e88, type: 3}
- {fileID: 1678500488, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -1614668162, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -1062857010, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 1328584137, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -145901315, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 429717960, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 496529007, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 1867475074, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -815334433, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -538603539, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -1922464158, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -1457329794, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -990533415, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 1890838481, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 2028588490, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 891564202, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: -632105474, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 1977225844, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
- {fileID: 108785616, guid: 77b6288ddba3e0e449fdbd9840862b54, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,29 +20,29 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1661299819, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: 278270150, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.083333336
value: {fileID: -1945034637, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: -981581237, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.16666667
value: {fileID: -1768447171, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: -528471401, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.25
value: {fileID: 2141562322, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: -308689476, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.33333334
value: {fileID: -2090472876, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: 1828171106, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.41666666
value: {fileID: 662047402, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: 429251696, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.5
value: {fileID: 1690009609, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: -264387558, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.5833333
value: {fileID: -832837973, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: -599824443, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.6666667
value: {fileID: -1828157846, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: 1633800908, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.75
value: {fileID: 1686407206, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: 1022234462, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.8333333
value: {fileID: -208199926, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: -160841802, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- time: 0.9166667
value: {fileID: 2111389146, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
value: {fileID: 876731581, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -62,18 +62,18 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1661299819, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: -1945034637, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: -1768447171, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: 2141562322, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: -2090472876, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: 662047402, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: 1690009609, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: -832837973, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: -1828157846, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: 1686407206, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: -208199926, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: 2111389146, guid: 0b75e2b2ec4f12047b303a5a9753e281, type: 3}
- {fileID: 278270150, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: -981581237, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: -528471401, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: -308689476, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: 1828171106, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: 429251696, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: -264387558, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: -599824443, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: 1633800908, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: 1022234462, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: -160841802, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
- {fileID: 876731581, guid: a03c79f1abc3a3a4d8de5aa600b067b6, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: -726703871, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -521189951, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.083333336
value: {fileID: 1871242352, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 1359760133, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.16666667
value: {fileID: 1381685516, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 1683273673, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.25
value: {fileID: 2019071069, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 1378563694, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.33333334
value: {fileID: -147129730, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -441269054, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.41666666
value: {fileID: 38158007, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 2147041339, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.5
value: {fileID: -751714417, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -922649570, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.5833333
value: {fileID: -1819123518, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -808203837, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.6666667
value: {fileID: -651904841, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 31396363, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.75
value: {fileID: -2107379774, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 1298260675, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.8333333
value: {fileID: -1555072523, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -35016392, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 0.9166667
value: {fileID: -2099910033, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 1636819098, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1
value: {fileID: -508108041, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -1763389989, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1.0833334
value: {fileID: -260824468, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 197331507, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1.1666666
value: {fileID: 1718759727, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -1108436993, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1.25
value: {fileID: 1352514955, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -64975463, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1.3333334
value: {fileID: 621238915, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -1624817161, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1.4166666
value: {fileID: 852530329, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: -2025013841, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- time: 1.5
value: {fileID: 1205133387, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
value: {fileID: 2011443536, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: -726703871, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 1871242352, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 1381685516, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 2019071069, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -147129730, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 38158007, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -751714417, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -1819123518, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -651904841, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -2107379774, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -1555072523, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -2099910033, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -508108041, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -260824468, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 1718759727, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 1352514955, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 621238915, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 852530329, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: 1205133387, guid: 9c1efb675cda2c94296a8ae3811cb1aa, type: 3}
- {fileID: -521189951, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 1359760133, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 1683273673, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 1378563694, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -441269054, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 2147041339, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -922649570, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -808203837, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 31396363, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 1298260675, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -35016392, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 1636819098, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -1763389989, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 197331507, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -1108436993, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -64975463, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -1624817161, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: -2025013841, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
- {fileID: 2011443536, guid: 003e018192d8e85448b83fd0589df93b, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

View File

@ -20,43 +20,43 @@ AnimationClip:
m_PPtrCurves:
- curve:
- time: 0
value: {fileID: 1087425414, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -642101605, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.083333336
value: {fileID: 1959924091, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 244956881, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.16666667
value: {fileID: 1363529436, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 2051634988, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.25
value: {fileID: -684312152, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -902904979, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.33333334
value: {fileID: 2032597710, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -1734835465, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.41666666
value: {fileID: 388141651, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -835032765, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.5
value: {fileID: -1676556964, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -1502615694, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.5833333
value: {fileID: -1748659673, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 184892265, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.6666667
value: {fileID: 613509753, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 1116229056, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.75
value: {fileID: 928882721, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -1599191340, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.8333333
value: {fileID: -682933777, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -683131086, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 0.9166667
value: {fileID: -533735094, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 1827531006, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1
value: {fileID: 2139732758, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -1503241570, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1.0833334
value: {fileID: 1292615704, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 1466088398, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1.1666666
value: {fileID: 1179902468, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -1486630074, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1.25
value: {fileID: -1471104223, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 1808952675, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1.3333334
value: {fileID: -211818611, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: -879454230, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1.4166666
value: {fileID: -572464015, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 528275106, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- time: 1.5
value: {fileID: 2124033331, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
value: {fileID: 1857954775, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
attribute: m_Sprite
path:
classID: 212
@ -76,25 +76,25 @@ AnimationClip:
customType: 23
isPPtrCurve: 1
pptrCurveMapping:
- {fileID: 1087425414, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 1959924091, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 1363529436, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -684312152, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 2032597710, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 388141651, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -1676556964, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -1748659673, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 613509753, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 928882721, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -682933777, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -533735094, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 2139732758, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 1292615704, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 1179902468, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -1471104223, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -211818611, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -572464015, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: 2124033331, guid: c0e055e4dd64ea241962622d3fb1b83b, type: 3}
- {fileID: -642101605, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 244956881, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 2051634988, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -902904979, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -1734835465, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -835032765, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -1502615694, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 184892265, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 1116229056, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -1599191340, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -683131086, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 1827531006, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -1503241570, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 1466088398, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -1486630074, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 1808952675, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: -879454230, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 528275106, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
- {fileID: 1857954775, guid: 62337feb0cc1ba842b4a5cb24ec8d3de, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}

Some files were not shown because too many files have changed in this diff Show More