暂存一下

This commit is contained in:
2025-01-23 19:30:55 +08:00
parent d6142cd1b9
commit ee77732c9a
22 changed files with 3139 additions and 1303 deletions
@@ -0,0 +1,40 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!84 &8400000
RenderTexture:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: MemoryTexture
m_ImageContentsHash:
serializedVersion: 2
Hash: 00000000000000000000000000000000
m_ForcedFallbackFormat: 4
m_DownscaleFallback: 0
m_IsAlphaChannelOptional: 0
serializedVersion: 5
m_Width: 2000
m_Height: 1390
m_AntiAliasing: 1
m_MipCount: -1
m_DepthStencilFormat: 94
m_ColorFormat: 8
m_MipMap: 0
m_GenerateMips: 1
m_SRGB: 0
m_UseDynamicScale: 0
m_BindMS: 0
m_EnableCompatibleFormat: 1
m_EnableRandomWrite: 0
m_TextureSettings:
serializedVersion: 2
m_FilterMode: 1
m_Aniso: 0
m_MipBias: 0
m_WrapU: 1
m_WrapV: 1
m_WrapW: 1
m_Dimension: 2
m_VolumeDepth: 1
m_ShadowSamplingMode: 2
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: f14927994098c5a4d8154aa4d0f8bb6c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 8400000
userData:
assetBundleName:
assetBundleVariant:
@@ -8,19 +8,20 @@ using AibisDream;
using AibisDream.FixSystem;
using AibisDream.Framework;
using Cinemachine;
using UnityEngine.Rendering;
using System;
public class MemoryProcess : MonoBehaviour
{
public GameObject memoryView;
public GameObject projector;
public Image memoryProcessImage; // 用于显示调取记忆的表现
public Image memoryFinishedImage; // 用于显示记忆处理结束的表现
public Image memoryFinishedImageForFade; // 用于显示记忆处理结束的表现
public SpriteRenderer memoryFinishedspRender; // 用于显示记忆处理结束的表现
public Image memoryFinishedImageNoColor; // 用于显示记忆处理结束的表现
[SerializeField] private Volume MainEffect;
[SerializeField] private Volume MemoryClarityVloume;
[SerializeField] private Volume Memoryfrequencyloume;
[SerializeField] private Volume MemoryProcessVloume;
public Slider frequencySlider; // 频率调节滑动条
public Slider claritySlider; // 频率调节滑动条
@@ -37,7 +38,6 @@ public class MemoryProcess : MonoBehaviour
private bool isFrequencyFound = false; // 追踪是否找到目标频率
private bool isClarityFound = false; // 追踪是否找到目标清晰度
private Material processMaterial; // 目标材质
private Material memoryMaterial; // 噪波材质
private PunchTape PunchTape;
@@ -125,20 +125,20 @@ public class MemoryProcess : MonoBehaviour
float GetRandomNumber()
{
// 随机决定选择哪个区间
if (Random.value < 0.5f) // 50% 概率选择第一个区间
if (UnityEngine.Random.value < 0.5f) // 50% 概率选择第一个区间
{
return Random.Range(0.5f, 2f);
return UnityEngine.Random.Range(0.5f, 2f);
}
else // 50% 概率选择第二个区间
{
return Random.Range(4f, 5.5f);
return UnityEngine.Random.Range(4f, 5.5f);
}
}
void OnFrequencyChanged(float value)
{
float distance = Mathf.Abs(value - targetFrequency);
UpdateShaderParameters(distance);
UpdateFrequencyShaderParameters(distance);
CheckIfFound(distance, ref isFrequencyFound); // 这里更新 isFrequencyFound
}
@@ -176,58 +176,52 @@ public class MemoryProcess : MonoBehaviour
}
}
void UpdateShaderParameters(float distance)
void UpdateFrequencyShaderParameters(float distance)
{
if (processMaterial != null)
{
if (distance > 0.2f)
{
processMaterial.SetFloat("_FullAlphaDissolveFade", 1f);
}
else if (distance <= 0.2f && distance > 0f)
{
float alpha = Mathf.InverseLerp(0f, 0.2f, distance);
processMaterial.SetFloat("_FullAlphaDissolveFade", alpha);
}
}
Memoryfrequencyloume.weight=Mathf.Lerp(0, 1, Mathf.InverseLerp(0f, 1f, distance));
}
void UpdateClarityShaderParameters(float t)
{
if (memoryMaterial != null)
{
float smoothT = Mathf.SmoothStep(0, 1, t);
float pixelateSize;
// 根据 t 的值线性插值材质参数,实现平滑过渡
//float pixelateSize = Mathf.Lerp(512, 20, smoothT);
float offsetUvX = Mathf.Lerp(0, 0.12f, smoothT);
float offsetUvY = Mathf.Lerp(0, 0.18f, smoothT);
float distortAmount = Mathf.Lerp(0, 1.735f, smoothT);
MemoryClarityVloume.weight=Mathf.Lerp(0, 1, Mathf.InverseLerp(0f, 1f, t));
// if (memoryMaterial != null)
// {
// float smoothT = Mathf.SmoothStep(0, 1, t);
// float pixelateSize;
// // 根据 t 的值线性插值材质参数,实现平滑过渡
// //float pixelateSize = Mathf.Lerp(512, 20, smoothT);
// float offsetUvX = Mathf.Lerp(0, 0.12f, smoothT);
// float offsetUvY = Mathf.Lerp(0, 0.18f, smoothT);
// float distortAmount = Mathf.Lerp(0, 1.735f, smoothT);
if (t >= 0.7f && t <= 1)
{
// 在 t 值为 0.7 到 1 时,PixelateSize 在 15 到 30 之间变化
pixelateSize = Mathf.Lerp(30, 15, Mathf.InverseLerp(0.7f, 1f, t));
}
else if (t > 0.35f && t < 0.7f)
{
// 在 t 值为 0.35 到 0.7 时,PixelateSize 在 30 到 50 之间变化
pixelateSize = Mathf.Lerp(80, 30, Mathf.InverseLerp(0.35f, 0.7f, t));
}
else
{
// 在 t 值小于 0.35 时,PixelateSize 在 50 到 512 之间变化
pixelateSize = Mathf.Lerp(512, 80, Mathf.InverseLerp(0f, 0.35f, t));
}
// if (t >= 0.7f && t <= 1)
// {
// // 在 t 值为 0.7 到 1 时,PixelateSize 在 15 到 30 之间变化
// pixelateSize = Mathf.Lerp(30, 15, Mathf.InverseLerp(0.7f, 1f, t));
// }
// else if (t > 0.35f && t < 0.7f)
// {
// // 在 t 值为 0.35 到 0.7 时,PixelateSize 在 30 到 50 之间变化
// pixelateSize = Mathf.Lerp(80, 30, Mathf.InverseLerp(0.35f, 0.7f, t));
// }
// else
// {
// // 在 t 值小于 0.35 时,PixelateSize 在 50 到 512 之间变化
// pixelateSize = Mathf.Lerp(512, 80, Mathf.InverseLerp(0f, 0.35f, t));
// }
memoryMaterial.SetFloat("_PixelateSize", pixelateSize);
memoryMaterial.SetFloat("_OffsetUvX", offsetUvX);
memoryMaterial.SetFloat("_OffsetUvY", offsetUvY);
memoryMaterial.SetFloat("_DistortAmount", distortAmount);
}
// memoryMaterial.SetFloat("_PixelateSize", pixelateSize);
// memoryMaterial.SetFloat("_OffsetUvX", offsetUvX);
// memoryMaterial.SetFloat("_OffsetUvY", offsetUvY);
// memoryMaterial.SetFloat("_DistortAmount", distortAmount);
// }
}
public void TweenWeight(Volume postProcessingVolume, float targetWeight, float duration)
{
// 动态调整权重
DOTween.To(() => postProcessingVolume.weight, x => postProcessingVolume.weight = x, targetWeight, duration);
}
public void Init()
{
isFrequencyFound = false;
@@ -249,24 +243,12 @@ public class MemoryProcess : MonoBehaviour
claritySlider.interactable = true;
}
memoryProcessImage.gameObject.SetActive(true);
processMaterial = memoryProcessImage.material;
memoryMaterial = memoryFinishedImage.material;
//memoryFinishedImage.gameObject.SetActive(false);
memoryFinishedImageNoColor.gameObject.SetActive(false);
processMaterial.SetFloat("_FullAlphaDissolveFade", 1);
processMaterial.SetFloat("_GlitchFade", 0);
processMaterial.SetFloat("_StrongTintFade", 1);
float distance = Mathf.Abs(3 - targetClarity);
// 计算滑块值与目标清晰度之间的最大可能距离
float maxDistance = Mathf.Max(
Mathf.Abs(claritySlider.maxValue - targetClarity),
Mathf.Abs(claritySlider.minValue - targetClarity)
);
// 归一化距离,确保 t 在 0 到 1 之间,且当滑块值等于目标清晰度时,t 等于 1
float t = Mathf.Clamp01(distance / maxDistance);
UpdateClarityShaderParameters(t);
memoryFinishedspRender.color=Color.black;
MemoryProcessVloume.weight=1;
MemoryClarityVloume.weight=0;
Memoryfrequencyloume.weight=0;
PunchTape = null;
Color color = playBackground.color;
color.a = 0f;
playBackground.color = color;
@@ -293,16 +275,10 @@ public class MemoryProcess : MonoBehaviour
[YarnCommand("ColorFadeOut")]
public IEnumerator ColorFadeOut()
{
memoryFinishedImageForFade.sprite = memoryFinishedImage.sprite;
memoryFinishedImageNoColor.sprite = memoryFinishedImage.sprite;
memoryFinishedImageForFade.gameObject.SetActive(true);
memoryFinishedImageNoColor.gameObject.SetActive(true);
memoryFinishedImage.gameObject.SetActive(false);
{ fadeMaterial.SetFloat("_DirectionalDistortionFade",-15f);
AudioManager.RandomPlayInteraction("colorerase");
AudioManager.PauseMemoryAudio();
Tween tween = fadeMaterial.DOFloat(-3, "_DirectionalDistortionFade", 3);
Tween tween = fadeMaterial.DOFloat(0, "_DirectionalDistortionFade", 3);
yield return tween.WaitForCompletion();
}
@@ -312,10 +288,9 @@ public class MemoryProcess : MonoBehaviour
if (useYarn)
{
fadeMaterial.SetFloat("_DirectionalDistortionFade", -15);
memoryFinishedImage.gameObject.SetActive(true);
FavoritesManager.Instance.CloseFavorites();
Sprite memSprite = Resources.Load<Sprite>("Art/Memory/" + memName);
memoryFinishedImage.sprite = memSprite;
memoryFinishedspRender.sprite = memSprite;
memoryFinishedImageNoColor.sprite = memSprite;
if (memSprite == null)
{
@@ -328,13 +303,8 @@ public class MemoryProcess : MonoBehaviour
playBackground.color = new Color(playBackground.color.r, playBackground.color.g, playBackground.color.b, 0);
yield return playBackground.DOFade(1f, 1f).WaitForCompletion(); // Fade to fully opaque over 1 second
// Set material properties
processMaterial.SetFloat("_FullAlphaDissolveFade", 0);
memoryMaterial.SetFloat("_PixelateSize", 512);
memoryMaterial.SetFloat("_OffsetUvX", 0);
memoryMaterial.SetFloat("_OffsetUvY", 0);
memoryMaterial.SetFloat("_DistortAmount", 0);
MemoryClarityVloume.weight=0;
Memoryfrequencyloume.weight=0;
}
else
{
@@ -346,13 +316,9 @@ public class MemoryProcess : MonoBehaviour
playBackground.color = new Color(playBackground.color.r, playBackground.color.g, playBackground.color.b, 0);
yield return playBackground.DOFade(1f, 1f).WaitForCompletion(); // Fade to fully opaque over 1 second
// Set material properties
processMaterial.SetFloat("_FullAlphaDissolveFade", 0);
memoryMaterial.SetFloat("_PixelateSize", 512);
memoryMaterial.SetFloat("_OffsetUvX", 0);
memoryMaterial.SetFloat("_OffsetUvY", 0);
memoryMaterial.SetFloat("_DistortAmount", 0);
MemoryClarityVloume.weight=0;
Memoryfrequencyloume.weight=0;
DialogController.Instance.StartDialogNode(clueSlot.punchTape.ClueName);
}
}
@@ -380,16 +346,16 @@ public class MemoryProcess : MonoBehaviour
}
Sprite memorySprite = Resources.Load<Sprite>("Art/Memory/" + PunchTape.MemoryIndex);
memoryFinishedImage.sprite = memorySprite;
memoryFinishedspRender.sprite = memorySprite;
memoryFinishedImageNoColor.sprite = memorySprite;
if (memorySprite == null)
{
Debug.LogError("Memory not found: " + PunchTape.MemoryIndex);
}
processMaterial.SetFloat("_StrongTintFade", 0);
processMaterial.SetFloat("_GlitchFade", 1);
TweenWeight(MemoryProcessVloume,0,0.5f);
TweenWeight(MemoryClarityVloume,0.5f,0.5f);
TweenWeight(Memoryfrequencyloume,0.5f,0.5f);
yield return new WaitForSeconds(0.5f);
isProcessing = true; // 开始处理,设置为true
frequencySlider.gameObject.SetActive(true);
claritySlider.gameObject.SetActive(true);
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,614 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: MemoryFinsihMaterial
m_Shader: {fileID: 4800000, guid: 0803c241834332942abfcbd27c498b46, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _ENABLEGLITCH_ON
- _ENABLEHOLOGRAM_ON
- _ENABLESTRONGTINT_ON
- _SHADERFADING_NONE
- _SHADERSPACE_UV
- _TEXTURELAYER1SHEETTOGGLE_ON
- _TEXTURELAYER2SHEETTOGGLE_ON
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _AddColorMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _AddHueMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _AlphaTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _CustomFadeFadeMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _FadingMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _InnerOutlineTintTexture:
m_Texture: {fileID: 2800000, guid: 5af9a397a8643994c829e696a24a7845, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MaskTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetalMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _NormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OuterOutlineTintTexture:
m_Texture: {fileID: 2800000, guid: 5af9a397a8643994c829e696a24a7845, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _PixelOutlineTintTexture:
m_Texture: {fileID: 2800000, guid: 5af9a397a8643994c829e696a24a7845, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RecolorRGBTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RecolorRGBYCPTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShineMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SineGlowMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _StrongTintMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _TextureLayer1Texture:
m_Texture: {fileID: 2800000, guid: 9685c3a024e22a946a7e8c2ce3542300, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _TextureLayer2Texture:
m_Texture: {fileID: 2800000, guid: 9685c3a024e22a946a7e8c2ce3542300, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UVDistortMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UberNoiseTexture:
m_Texture: {fileID: 2800000, guid: b8d18cd117976254d94a812a0bfc336e, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _texcoord:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- PixelSnap: 0
- _AddColorContrast: 0.5
- _AddColorContrastToggle: 0
- _AddColorFade: 1
- _AddColorMaskToggle: 0
- _AddHueBrightness: 2
- _AddHueContrast: 0.5
- _AddHueFade: 1
- _AddHueMaskToggle: 0
- _AddHueSaturation: 1
- _AddHueSpeed: 1
- _AlphaTintFade: 1
- _AlphaTintMinAlpha: 0.02
- _BakedMaterial: 0
- _BlackTintFade: 1
- _BlackTintPower: 4
- _Brightness: 1
- _BurnEdgeNoiseFactor: 0.5
- _BurnFade: 1
- _BurnInsideContrast: 2
- _BurnInsideNoiseFactor: 0.2
- _BurnRadius: 5
- _BurnSwirlFactor: 1
- _BurnWidth: 0.1
- _CamouflageAnimationToggle: 0
- _CamouflageContrast: 1
- _CamouflageDensityA: 0.4
- _CamouflageDensityB: 0.4
- _CamouflageFade: 1
- _CamouflageSmoothnessA: 0.2
- _CamouflageSmoothnessB: 0.2
- _CheckerboardDarken: 0.5
- _CheckerboardTiling: 1
- _ColorReplaceContrast: 1
- _ColorReplaceFade: 1
- _ColorReplaceRange: 0.05
- _ColorReplaceSmoothness: 0.1
- _Contrast: 1
- _CustomFadeAlpha: 1
- _CustomFadeNoiseFactor: 0
- _CustomFadeSmoothness: 2
- _DirectionalAlphaFadeFade: 0
- _DirectionalAlphaFadeInvert: 0
- _DirectionalAlphaFadeNoiseFactor: 0.2
- _DirectionalAlphaFadeRotation: 0
- _DirectionalAlphaFadeWidth: 0.2
- _DirectionalDistortionFade: 0
- _DirectionalDistortionInvert: 0
- _DirectionalDistortionNoiseFactor: 0.2
- _DirectionalDistortionRandomDirection: 0.1
- _DirectionalDistortionRotation: 0
- _DirectionalDistortionWidth: 0.5
- _DirectionalGlowFadeFade: 0
- _DirectionalGlowFadeInvert: 0
- _DirectionalGlowFadeNoiseFactor: 0.2
- _DirectionalGlowFadeRotation: 0
- _DirectionalGlowFadeWidth: 0.1
- _EnableAddColor: 0
- _EnableAddHue: 0
- _EnableAlphaTint: 0
- _EnableBlackTint: 0
- _EnableBrightness: 0
- _EnableBurn: 0
- _EnableCamouflage: 0
- _EnableCheckerboard: 0
- _EnableColorReplace: 0
- _EnableContrast: 0
- _EnableCustomFade: 0
- _EnableDirectionalAlphaFade: 0
- _EnableDirectionalDistortion: 0
- _EnableDirectionalGlowFade: 0
- _EnableEnchanted: 0
- _EnableExternalAlpha: 0
- _EnableFlame: 0
- _EnableFrozen: 0
- _EnableFullAlphaDissolve: 0
- _EnableFullDistortion: 0
- _EnableFullGlowDissolve: 0
- _EnableGaussianBlur: 0
- _EnableGlitch: 1
- _EnableHalftone: 0
- _EnableHologram: 1
- _EnableHue: 0
- _EnableInkSpread: 0
- _EnableInnerOutline: 0
- _EnableMetal: 0
- _EnableNegative: 0
- _EnableOuterOutline: 0
- _EnablePingPongGlow: 0
- _EnablePixelOutline: 0
- _EnablePixelate: 0
- _EnablePoison: 0
- _EnableRainbow: 0
- _EnableRecolorRGB: 0
- _EnableRecolorRGBYCP: 0
- _EnableSaturation: 0
- _EnableScreenTiling: 0
- _EnableShadow: 0
- _EnableSharpen: 0
- _EnableShiftHue: 0
- _EnableShifting: 0
- _EnableShine: 0
- _EnableSineGlow: 0
- _EnableSineMove: 0
- _EnableSineRotate: 0
- _EnableSineScale: 0
- _EnableSmoke: 0
- _EnableSmoothPixelArt: 0
- _EnableSourceAlphaDissolve: 0
- _EnableSourceGlowDissolve: 0
- _EnableSplitToning: 0
- _EnableSqueeze: 0
- _EnableSquish: 0
- _EnableStrongTint: 1
- _EnableTextureLayer1: 0
- _EnableTextureLayer2: 0
- _EnableUVDistort: 0
- _EnableUVRotate: 0
- _EnableUVScale: 0
- _EnableUVScroll: 0
- _EnableVibrate: 0
- _EnableWiggle: 0
- _EnableWind: 0
- _EnableWorldTiling: 0
- _EnchantedBrightness: 1
- _EnchantedContrast: 0.5
- _EnchantedFade: 1
- _EnchantedLerpToggle: 0
- _EnchantedRainbowDensity: 0.5
- _EnchantedRainbowSaturation: 0.8
- _EnchantedRainbowSpeed: 0.5
- _EnchantedRainbowToggle: 0
- _EnchantedReduce: 0
- _FadingFade: 1
- _FadingNoiseFactor: 0.2
- _FadingWidth: 0.3
- _FlameBrightness: 10
- _FlameNoiseFactor: 2.5
- _FlameNoiseHeightFactor: 1.5
- _FlameRadius: 0.2
- _FlameSmooth: 2
- _FrozenContrast: 2
- _FrozenFade: 1
- _FrozenHighlightContrast: 2
- _FrozenHighlightDensity: 1
- _FrozenSnowContrast: 1
- _FrozenSnowDensity: 0.25
- _FullAlphaDissolveFade: 0.5
- _FullAlphaDissolveWidth: 0.5
- _FullDistortionFade: 1
- _FullGlowDissolveFade: 0.5
- _FullGlowDissolveWidth: 0.5
- _GaussianBlurFade: 1
- _GaussianBlurOffset: 0.5
- _GlitchBrightness: 4
- _GlitchFade: 0
- _GlitchHueSpeed: 1
- _GlitchMaskMin: 0.4
- _HalftoneFade: 1
- _HalftoneFadeWidth: 1.5
- _HalftoneInvert: 0
- _HalftoneTiling: 4
- _HologramContrast: 1
- _HologramDistortionDensity: 0.5
- _HologramDistortionOffset: 0
- _HologramDistortionScale: 10
- _HologramDistortionSpeed: 2
- _HologramFade: 1
- _HologramLineFrequency: 500
- _HologramLineGap: 3
- _HologramLineSpeed: 0.01
- _HologramMinAlpha: 0.2
- _Hue: 0
- _InkSpreadContrast: 2
- _InkSpreadDistance: 3
- _InkSpreadFade: 1
- _InkSpreadNoiseFactor: 0.5
- _InkSpreadWidth: 0.2
- _InnerOutlineDistortionToggle: 0
- _InnerOutlineFade: 1
- _InnerOutlineOutlineOnlyToggle: 0
- _InnerOutlineTextureToggle: 0
- _InnerOutlineWidth: 0.02
- _MetalContrast: 2
- _MetalFade: 1
- _MetalHighlightContrast: 2
- _MetalHighlightDensity: 1
- _MetalMaskToggle: 0
- _NegativeFade: 1
- _OuterOutlineDistortionToggle: 0
- _OuterOutlineFade: 1
- _OuterOutlineOutlineOnlyToggle: 0
- _OuterOutlineTextureToggle: 0
- _OuterOutlineWidth: 0.04
- _PingPongGlowContrast: 1
- _PingPongGlowFade: 1
- _PingPongGlowFrequency: 3
- _PixelOutlineFade: 1
- _PixelOutlineOutlineOnlyToggle: 0
- _PixelOutlineTextureToggle: 0
- _PixelOutlineWidth: 1
- _PixelPerfectSpace: 0
- _PixelPerfectUV: 0
- _PixelateFade: 1
- _PixelatePixelDensity: 16
- _PixelatePixelsPerUnit: 100
- _PixelsPerUnit: 100
- _PoisonDensity: 3
- _PoisonFade: 1
- _PoisonNoiseBrightness: 2
- _PoisonRecolorFactor: 0.5
- _PoisonShiftSpeed: 0.2
- _RainbowBrightness: 2
- _RainbowContrast: 1
- _RainbowDensity: 0.5
- _RainbowFade: 1
- _RainbowNoiseFactor: 0.2
- _RainbowSaturation: 1
- _RainbowSpeed: 1
- _RecolorRGBFade: 1
- _RecolorRGBTextureToggle: 0
- _RecolorRGBYCPFade: 1
- _RecolorRGBYCPTextureToggle: 0
- _RectHeight: 100
- _RectWidth: 100
- _Saturation: 1
- _ScreenTilingPixelsPerUnit: 100
- _ScreenWidthUnits: 10
- _ShaderFading: 0
- _ShaderSpace: 0
- _ShadowFade: 1
- _SharpenFactor: 7.38
- _SharpenFade: 1
- _SharpenOffset: 1.99
- _ShiftHueSpeed: 0.5
- _ShiftingBrightness: 1
- _ShiftingContrast: 0.5
- _ShiftingDensity: 1.5
- _ShiftingFade: 1
- _ShiftingRainbowToggle: 0
- _ShiftingSaturation: 0.8
- _ShiftingSpeed: 0.5
- _ShineContrast: 2
- _ShineFade: 1
- _ShineFrequency: 0.3
- _ShineMaskToggle: 0
- _ShineRotation: 30
- _ShineSaturation: 0.5
- _ShineSmooth: 1
- _ShineSpeed: 5
- _ShineWidth: 0.1
- _SineGlowContrast: 1
- _SineGlowFade: 1
- _SineGlowFrequency: 4
- _SineGlowMaskToggle: 0
- _SineGlowMax: 1
- _SineGlowMin: 0
- _SineMoveFade: 1
- _SineRotateAngle: 15
- _SineRotateFade: 1
- _SineRotateFrequency: 1
- _SineScaleFrequency: 2
- _SmokeAlpha: 1
- _SmokeDarkEdge: 1
- _SmokeNoiseFactor: 0.4
- _SmokeNoiseScale: 0.5
- _SmokeSmoothness: 1
- _SmokeVertexSeed: 0
- _SourceAlphaDissolveFade: 1
- _SourceAlphaDissolveInvert: 0
- _SourceAlphaDissolveNoiseFactor: 0.2
- _SourceAlphaDissolveWidth: 0.2
- _SourceGlowDissolveFade: 1
- _SourceGlowDissolveInvert: 0
- _SourceGlowDissolveNoiseFactor: 0.2
- _SourceGlowDissolveWidth: 0.1
- _SplitToningBalance: 1
- _SplitToningContrast: 1
- _SplitToningFade: 1
- _SplitToningShift: 0
- _SpriteSheetFix: 0
- _SqueezeFade: 1
- _SqueezePower: 1
- _SquishFade: 1
- _SquishFlip: 0
- _SquishSquish: 0.1
- _SquishStretch: 0.1
- _StrongTintContrast: 0
- _StrongTintContrastToggle: 0
- _StrongTintFade: 1
- _StrongTintMaskToggle: 0
- _TextureLayer1Columns: 3
- _TextureLayer1Contrast: 1
- _TextureLayer1ContrastToggle: 0
- _TextureLayer1EdgeClip: 0.005
- _TextureLayer1Fade: 1
- _TextureLayer1Rows: 3
- _TextureLayer1ScrollToggle: 0
- _TextureLayer1SheetToggle: 1
- _TextureLayer1Speed: 20
- _TextureLayer1StartFrame: 0
- _TextureLayer2Columns: 3
- _TextureLayer2Contrast: 1
- _TextureLayer2ContrastToggle: 0
- _TextureLayer2EdgeClip: 0.005
- _TextureLayer2Fade: 1
- _TextureLayer2Rows: 3
- _TextureLayer2ScrollToggle: 0
- _TextureLayer2SheetToggle: 1
- _TextureLayer2Speed: 20
- _TextureLayer2StartFrame: 0
- _TilingFix: 0
- _TimeFPS: 5
- _TimeFrequency: 2
- _TimeRange: 0.5
- _TimeSpeed: 1
- _TimeValue: 0
- _ToggleCustomTime: 0
- _ToggleTimeFPS: 0
- _ToggleTimeFrequency: 0
- _ToggleTimeSpeed: 0
- _ToggleUnscaledTime: 0
- _UVDistortFade: 1
- _UVDistortMaskToggle: 0
- _UVRotateSpeed: 1
- _VertexTintFirst: 0
- _VibrateFade: 1
- _VibrateFrequency: 100
- _VibrateOffset: 0.04
- _VibrateRotation: 4
- _WiggleFade: 1
- _WiggleFixedGroundToggle: 0
- _WiggleFrequency: 2
- _WiggleOffset: 0.02
- _WiggleSpeed: 2
- _WindFlip: 0
- _WindHighQualityNoise: 0
- _WindIsParallax: 0
- _WindLocalWind: 0
- _WindMaxIntensity: 0.4
- _WindMaxRotation: 2
- _WindMinIntensity: -0.4
- _WindNoiseScale: 0.1
- _WindNoiseSpeed: 1
- _WindRotation: 0
- _WindRotationWindFactor: 1
- _WindSquishFactor: 0.3
- _WindSquishWindFactor: 0
- _WindXPosition: 0
- _WorldTilingPixelsPerUnit: 100
m_Colors:
- _AddColorColor: {r: 2.996078, g: 0, b: 0, a: 0}
- _AlphaTintColor: {r: 95.87451, g: 5.019608, b: 95.87451, a: 0}
- _BlackTintColor: {r: 0, g: 0, b: 1, a: 0}
- _BurnEdgeColor: {r: 11.98431, g: 1.129412, b: 0.1254902, a: 0}
- _BurnEdgeNoiseScale: {r: 0.3, g: 0.3, b: 0, a: 0}
- _BurnInsideColor: {r: 0.75, g: 0.5625, b: 0.525, a: 0}
- _BurnInsideNoiseColor: {r: 3084.047, g: 257.0039, b: 0, a: 0}
- _BurnInsideNoiseScale: {r: 0.5, g: 0.5, b: 0, a: 0}
- _BurnPosition: {r: 0, g: 5, b: 0, a: 0}
- _BurnSwirlNoiseScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _CamouflageBaseColor: {r: 0.7450981, g: 0.7254902, b: 0.5686274, a: 0}
- _CamouflageColorA: {r: 0.62745106, g: 0.5882353, b: 0.43137258, a: 0}
- _CamouflageColorB: {r: 0.47058815, g: 0.43137258, b: 0.31372547, a: 0}
- _CamouflageDistortionIntensity: {r: 0.1, g: 0.1, b: 0, a: 0}
- _CamouflageDistortionScale: {r: 0.5, g: 0.5, b: 0, a: 0}
- _CamouflageDistortionSpeed: {r: 0.1, g: 0.1, b: 0, a: 0}
- _CamouflageNoiseScaleA: {r: 0.25, g: 0.25, b: 0, a: 0}
- _CamouflageNoiseScaleB: {r: 0.25, g: 0.25, b: 0, a: 0}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _ColorReplaceFromColor: {r: 0, g: 0, b: 0, a: 0}
- _ColorReplaceToColor: {r: 0, g: 0, b: 0.2, a: 0}
- _CustomFadeNoiseScale: {r: 1, g: 1, b: 0, a: 0}
- _DirectionalAlphaFadeNoiseScale: {r: 0.3, g: 0.3, b: 0, a: 0}
- _DirectionalDistortionDistortion: {r: 0, g: 0.1, b: 0, a: 0}
- _DirectionalDistortionDistortionScale: {r: 1, g: 1, b: 0, a: 0}
- _DirectionalDistortionNoiseScale: {r: 0.4, g: 0.4, b: 0, a: 0}
- _DirectionalGlowFadeEdgeColor: {r: 11.98431, g: 0.6901961, b: 0.6901961, a: 0}
- _DirectionalGlowFadeNoiseScale: {r: 0.4, g: 0.4, b: 0, a: 0}
- _EnchantedHighColor: {r: 0, g: 0.7098798, b: 4.237095, a: 0}
- _EnchantedLowColor: {r: 2.996078, g: 0, b: 0, a: 0}
- _EnchantedScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _EnchantedSpeed: {r: 0, g: 1, b: 0, a: 0}
- _FadingNoiseScale: {r: 0.2, g: 0.2, b: 0, a: 0}
- _FadingPosition: {r: 0, g: 0, b: 0, a: 0}
- _FlameNoiseScale: {r: 1.2, g: 0.8, b: 0, a: 0}
- _FlameSpeed: {r: 0, g: -0.5, b: 0, a: 0}
- _Flip: {r: 1, g: 1, b: 1, a: 1}
- _FrozenHighlightColor: {r: 1.797647, g: 4.604501, b: 5.992157, a: 1}
- _FrozenHighlightDistortion: {r: 0.5, g: 0.5, b: 0, a: 0}
- _FrozenHighlightDistortionScale: {r: 0.2, g: 0.2, b: 0, a: 0}
- _FrozenHighlightDistortionSpeed: {r: -0.05, g: -0.05, b: 0, a: 0}
- _FrozenHighlightScale: {r: 0.2, g: 0.2, b: 0, a: 0}
- _FrozenHighlightSpeed: {r: 0.1, g: 0.1, b: 0, a: 0}
- _FrozenSnowColor: {r: 1.123529, g: 1.373203, b: 1.498039, a: 0}
- _FrozenSnowScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _FrozenTint: {r: 1.819608, g: 4.611765, b: 5.992157, a: 0}
- _FullAlphaDissolveNoiseScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _FullDistortionDistortion: {r: 0.2, g: 0.2, b: 0, a: 0}
- _FullDistortionNoiseScale: {r: 0.5, g: 0.5, b: 0, a: 0}
- _FullGlowDissolveEdgeColor: {r: 11.98431, g: 0.627451, b: 0.627451, a: 0}
- _FullGlowDissolveNoiseScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _GlitchDistortion: {r: 0.1, g: 0, b: 0, a: 0}
- _GlitchDistortionScale: {r: 0, g: -6.88, b: 0, a: 0}
- _GlitchDistortionSpeed: {r: 0, g: 0.08, b: 0, a: 0}
- _GlitchMaskScale: {r: 0, g: 0.2, b: 0, a: 0}
- _GlitchMaskSpeed: {r: 0, g: 4, b: 0, a: 0}
- _GlitchNoiseScale: {r: 0, g: 2.7, b: 0, a: 0}
- _GlitchNoiseSpeed: {r: 0, g: 1, b: 0, a: 0}
- _HalftonePosition: {r: 0, g: 0, b: 0, a: 0}
- _HologramTint: {r: 0.3137255, g: 1.662745, b: 2.996078, a: 1}
- _InkSpreadColor: {r: 8.47419, g: 5.013525, b: 0.08873497, a: 0}
- _InkSpreadNoiseScale: {r: 0.4, g: 0.4, b: 0, a: 0}
- _InkSpreadPosition: {r: 0.5, g: -1, b: 0, a: 0}
- _InnerOutlineColor: {r: 11.98431, g: 1.254902, b: 1.254902, a: 1}
- _InnerOutlineDistortionIntensity: {r: 0.01, g: 0.01, b: 0, a: 0}
- _InnerOutlineNoiseScale: {r: 4, g: 4, b: 0, a: 0}
- _InnerOutlineNoiseSpeed: {r: 0, g: 0.1, b: 0, a: 0}
- _InnerOutlineTextureSpeed: {r: 0.5, g: 0, b: 0, a: 0}
- _MetalColor: {r: 5.992157, g: 3.639216, b: 0.3137255, a: 1}
- _MetalHighlightColor: {r: 5.992157, g: 3.796078, b: 0.6588235, a: 1}
- _MetalNoiseDistortion: {r: 0.5, g: 0.5, b: 0, a: 0}
- _MetalNoiseDistortionScale: {r: 0.2, g: 0.2, b: 0, a: 0}
- _MetalNoiseDistortionSpeed: {r: -0.05, g: -0.05, b: 0, a: 0}
- _MetalNoiseScale: {r: 0.25, g: 0.25, b: 0, a: 0}
- _MetalNoiseSpeed: {r: 0.05, g: 0.05, b: 0, a: 0}
- _OuterOutlineColor: {r: 0, g: 0, b: 0, a: 1}
- _OuterOutlineDistortionIntensity: {r: 0.01, g: 0.01, b: 0, a: 0}
- _OuterOutlineNoiseScale: {r: 4, g: 4, b: 0, a: 0}
- _OuterOutlineNoiseSpeed: {r: 0, g: 0.1, b: 0, a: 0}
- _OuterOutlineTextureSpeed: {r: 0.5, g: 0, b: 0, a: 0}
- _PingPongGlowFrom: {r: 5.992157, g: 0.1882353, b: 0.1882353, a: 0}
- _PingPongGlowTo: {r: 0.1882353, g: 0.1882353, b: 5.992157, a: 0}
- _PixelOutlineColor: {r: 0, g: 0, b: 0, a: 1}
- _PixelOutlineTextureSpeed: {r: 0.5, g: 0, b: 0, a: 0}
- _PoisonColor: {r: 0.3137255, g: 2.996078, b: 0.3137255, a: 0}
- _PoisonNoiseScale: {r: 0.2, g: 0.2, b: 0, a: 0}
- _PoisonNoiseSpeed: {r: 0, g: -0.2, b: 0, a: 0}
- _RainbowCenter: {r: 0, g: 0, b: 0, a: 0}
- _RainbowNoiseScale: {r: 0.2, g: 0.2, b: 0, a: 0}
- _RecolorRGBBlueTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBGreenTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBRedTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBYCPBlueTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBYCPCyanTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBYCPGreenTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBYCPPurpleTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBYCPRedTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RecolorRGBYCPYellowTint: {r: 1, g: 1, b: 1, a: 0.5019608}
- _RendererColor: {r: 1, g: 1, b: 1, a: 1}
- _ScreenTilingOffset: {r: 0, g: 0, b: 0, a: 0}
- _ScreenTilingScale: {r: 1, g: 1, b: 0, a: 0}
- _ShadowColor: {r: 0, g: 0, b: 0, a: 0}
- _ShadowOffset: {r: 0.05, g: -0.05, b: 0, a: 0}
- _ShiftingColorA: {r: 1.498039, g: 0, b: 0, a: 0}
- _ShiftingColorB: {r: 1.498039, g: 0.7490196, b: 0, a: 0}
- _ShineColor: {r: 11.98431, g: 11.98431, b: 11.98431, a: 0}
- _SineGlowColor: {r: 0, g: 2.007843, b: 2.996078, a: 0}
- _SineMoveFrequency: {r: 1, g: 1, b: 0, a: 0}
- _SineMoveOffset: {r: 0, g: 0.5, b: 0, a: 0}
- _SineRotatePivot: {r: 0.5, g: 0.5, b: 0, a: 0}
- _SineScaleFactor: {r: 0.2, g: 0.2, b: 0, a: 0}
- _SourceAlphaDissolveNoiseScale: {r: 0.3, g: 0.3, b: 0, a: 0}
- _SourceAlphaDissolvePosition: {r: 0, g: 0, b: 0, a: 0}
- _SourceGlowDissolveEdgeColor: {r: 11.98431, g: 0.627451, b: 0.627451, a: 0}
- _SourceGlowDissolveNoiseScale: {r: 0.3, g: 0.3, b: 0, a: 0}
- _SourceGlowDissolvePosition: {r: 0, g: 0, b: 0, a: 0}
- _SplitToningHighlightsColor: {r: 1, g: 0.1, b: 0.1, a: 0}
- _SplitToningShadowsColor: {r: 0.1, g: 0.4000002, b: 1, a: 0}
- _SpriteSheetRect: {r: 0, g: 0, b: 1, a: 1}
- _SqueezeCenter: {r: 0.5, g: 0.5, b: 0, a: 0}
- _SqueezeScale: {r: 2, g: 0, b: 0, a: 0}
- _StrongTintTint: {r: 1, g: 1, b: 1, a: 1}
- _TextureLayer1Color: {r: 0.4494117, g: 1.298301, b: 2.996079, a: 1}
- _TextureLayer1Offset: {r: 0, g: 0, b: 0, a: 0}
- _TextureLayer1Scale: {r: 1, g: 1, b: 0, a: 0}
- _TextureLayer1ScrollSpeed: {r: 0, g: 1, b: 0, a: 0}
- _TextureLayer2Color: {r: 0.4494117, g: 1.298301, b: 2.996079, a: 1}
- _TextureLayer2Offset: {r: 0, g: 0, b: 0, a: 0}
- _TextureLayer2Scale: {r: 1, g: 1, b: 0, a: 0}
- _TextureLayer2ScrollSpeed: {r: 0, g: 1, b: 0, a: 0}
- _UVDistortFrom: {r: -0.02, g: -0.02, b: 0, a: 0}
- _UVDistortNoiseScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _UVDistortSpeed: {r: 2, g: 2, b: 0, a: 0}
- _UVDistortTo: {r: 0.02, g: 0.02, b: 0, a: 0}
- _UVRotatePivot: {r: 0.5, g: 0.5, b: 0, a: 0}
- _UVScalePivot: {r: 0.5, g: 0.5, b: 0, a: 0}
- _UVScaleScale: {r: 1, g: 1, b: 0, a: 0}
- _UVScrollSpeed: {r: 0.2, g: 0, b: 0, a: 0}
- _WorldTilingOffset: {r: 0, g: 0, b: 0, a: 0}
- _WorldTilingScale: {r: 1, g: 1, b: 0, a: 0}
m_BuildTextureStacks: []
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e77be679b7159854abd9c1dfa6fd596c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:
+14 -15
View File
@@ -13,7 +13,6 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _ENABLEDIRECTIONALDISTORTION_ON
- _ENABLESATURATION_ON
- _SHADERFADING_NONE
- _SHADERSPACE_UV
- _TEXTURELAYER1SHEETTOGGLE_ON
@@ -215,7 +214,7 @@ Material:
- _EnableRainbow: 0
- _EnableRecolorRGB: 0
- _EnableRecolorRGBYCP: 0
- _EnableSaturation: 1
- _EnableSaturation: 0
- _EnableScreenTiling: 0
- _EnableShadow: 0
- _EnableSharpen: 0
@@ -269,7 +268,7 @@ Material:
- _FrozenSnowDensity: 0.25
- _FullAlphaDissolveFade: 0.5
- _FullAlphaDissolveWidth: 0.5
- _FullDistortionFade: 1
- _FullDistortionFade: 0.72
- _FullGlowDissolveFade: 0.5
- _FullGlowDissolveWidth: 0.5
- _GaussianBlurFade: 1
@@ -287,11 +286,11 @@ Material:
- _HologramDistortionOffset: 0.5
- _HologramDistortionScale: 10
- _HologramDistortionSpeed: 2
- _HologramFade: 1
- _HologramLineFrequency: 500
- _HologramLineGap: 3
- _HologramFade: 0.26
- _HologramLineFrequency: 400
- _HologramLineGap: 2.25
- _HologramLineSpeed: 0.01
- _HologramMinAlpha: 0.2
- _HologramMinAlpha: 0.14
- _Hue: 0
- _InkSpreadContrast: 2
- _InkSpreadDistance: 3
@@ -324,8 +323,8 @@ Material:
- _PixelPerfectSpace: 0
- _PixelPerfectUV: 0
- _PixelateFade: 1
- _PixelatePixelDensity: 16
- _PixelatePixelsPerUnit: 100
- _PixelatePixelDensity: 51
- _PixelatePixelsPerUnit: 98.37
- _PixelsPerUnit: 100
- _PoisonDensity: 3
- _PoisonFade: 1
@@ -442,7 +441,7 @@ Material:
- _ToggleTimeFrequency: 0
- _ToggleTimeSpeed: 0
- _ToggleUnscaledTime: 0
- _UVDistortFade: 1
- _UVDistortFade: 0.58
- _UVDistortMaskToggle: 0
- _UVRotateSpeed: 1
- _VertexTintFirst: 0
@@ -530,7 +529,7 @@ Material:
- _GlitchNoiseScale: {r: 0, g: 3, b: 0, a: 0}
- _GlitchNoiseSpeed: {r: 0, g: 1, b: 0, a: 0}
- _HalftonePosition: {r: 0, g: 0, b: 0, a: 0}
- _HologramTint: {r: 0.3137255, g: 1.662745, b: 2.996078, a: 1}
- _HologramTint: {r: 3.9999998, g: 3.9999998, b: 3.9999998, a: 1}
- _InkSpreadColor: {r: 8.47419, g: 5.013525, b: 0.08873497, a: 0}
- _InkSpreadNoiseScale: {r: 0.4, g: 0.4, b: 0, a: 0}
- _InkSpreadPosition: {r: 0.5, g: -1, b: 0, a: 0}
@@ -601,10 +600,10 @@ Material:
- _TextureLayer2Offset: {r: 0, g: 0, b: 0, a: 0}
- _TextureLayer2Scale: {r: 1, g: 1, b: 0, a: 0}
- _TextureLayer2ScrollSpeed: {r: 0, g: 1, b: 0, a: 0}
- _UVDistortFrom: {r: -0.02, g: -0.02, b: 0, a: 0}
- _UVDistortNoiseScale: {r: 0.1, g: 0.1, b: 0, a: 0}
- _UVDistortSpeed: {r: 2, g: 2, b: 0, a: 0}
- _UVDistortTo: {r: 0.02, g: 0.02, b: 0, a: 0}
- _UVDistortFrom: {r: -1, g: 1, b: 0, a: 0}
- _UVDistortNoiseScale: {r: 0.06, g: 0.06, b: 0, a: 0}
- _UVDistortSpeed: {r: 0.5, g: 0.5, b: 0, a: 0}
- _UVDistortTo: {r: 1, g: 0, b: 0, a: 0}
- _UVRotatePivot: {r: 0.5, g: 0.5, b: 0, a: 0}
- _UVScalePivot: {r: 0.5, g: 0.5, b: 0, a: 0}
- _UVScaleScale: {r: 1, g: 1, b: 0, a: 0}
+3 -2
View File
@@ -12,6 +12,7 @@ Material:
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _ENABLECONTRAST_ON
- _ENABLESATURATION_ON
- _SHADERFADING_NONE
- _SHADERSPACE_UV
@@ -155,7 +156,7 @@ Material:
- _ColorReplaceFade: 1
- _ColorReplaceRange: 0.05
- _ColorReplaceSmoothness: 0.1
- _Contrast: 1
- _Contrast: 1.8
- _CustomFadeAlpha: 1
- _CustomFadeNoiseFactor: 0
- _CustomFadeSmoothness: 2
@@ -184,7 +185,7 @@ Material:
- _EnableCamouflage: 0
- _EnableCheckerboard: 0
- _EnableColorReplace: 0
- _EnableContrast: 0
- _EnableContrast: 1
- _EnableCustomFade: 0
- _EnableDirectionalAlphaFade: 0
- _EnableDirectionalDistortion: 0
@@ -267,7 +267,7 @@ Material:
- _FrozenHighlightDensity: 1
- _FrozenSnowContrast: 1
- _FrozenSnowDensity: 0.25
- _FullAlphaDissolveFade: 0
- _FullAlphaDissolveFade: 1
- _FullAlphaDissolveWidth: 0.5
- _FullDistortionFade: 1
- _FullGlowDissolveFade: 0.5
File diff suppressed because it is too large Load Diff
+68
View File
@@ -0,0 +1,68 @@
%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: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: "\u82B1\u5C4F"
m_EditorClassIdentifier:
components:
- {fileID: 2321393093159241853}
--- !u!114 &2321393093159241853
MonoBehaviour:
m_ObjectHideFlags: 3
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: 11500000, guid: bbb2952b95454955ba507c3d96778a76, type: 3}
m_Name: VhsVol
m_EditorClassIdentifier:
active: 1
_weight:
m_OverrideState: 1
m_Value: 1
_tape:
m_OverrideState: 0
m_Value: 1.386
_shades:
m_OverrideState: 0
m_Value: 0.357
_rocking:
m_OverrideState: 0
m_Value: 0.0233
_squeeze:
m_OverrideState: 0
m_Value: 0.605
_density:
m_OverrideState: 1
m_Value: 1
_intensity:
m_OverrideState: 1
m_Value: 1
_scale:
m_OverrideState: 1
m_Value: 2.531
_flickering:
m_OverrideState: 0
m_Value: -0.462
_color:
m_OverrideState: 1
m_Value: {r: 0, g: 0, b: 0, a: 1}
_bleed:
m_OverrideState: 0
m_Value: 0
_flow:
m_OverrideState: 1
m_Value: 9.17
_pulsation:
m_OverrideState: 1
m_Value: 8.04
+8
View File
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 14c8889ec65cf584cad73b4e6b924da4
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:
@@ -0,0 +1,51 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-7190008204367525031
MonoBehaviour:
m_ObjectHideFlags: 3
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: 11500000, guid: 772ef47f3fce34346bbb42fb4f5434b8, type: 3}
m_Name: PixelationVol
m_EditorClassIdentifier:
active: 1
m_Scale:
m_OverrideState: 1
m_Value: 0.6
m_Grid:
m_OverrideState: 1
m_Value: 0.992
m_Roundness:
m_OverrideState: 1
m_Value: 0
m_Color:
m_OverrideState: 0
m_Value: {r: 1, g: 0, b: 0, a: 0}
hdr: 0
m_Palette:
m_OverrideState: 1
m_Value: {fileID: 2800000, guid: 48f63249ea121c640a98d29dc9544d48, type: 3}
m_Impact:
m_OverrideState: 1
m_Value: 1
m_Crisp:
m_OverrideState: 1
m_Value: 1
--- !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: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: "\u8BB0\u5FC6\u50CF\u7D20\u6ED1\u5757"
m_EditorClassIdentifier:
components:
- {fileID: -7190008204367525031}
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9577b19bf4e70f5489f60f02bd74a631
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:
+68
View File
@@ -0,0 +1,68 @@
%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: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: "\u8BB0\u5FC6\u5C4F\u5E55"
m_EditorClassIdentifier:
components:
- {fileID: 2321393093159241853}
--- !u!114 &2321393093159241853
MonoBehaviour:
m_ObjectHideFlags: 3
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: 11500000, guid: bbb2952b95454955ba507c3d96778a76, type: 3}
m_Name: VhsVol
m_EditorClassIdentifier:
active: 1
_weight:
m_OverrideState: 1
m_Value: 0.792
_tape:
m_OverrideState: 1
m_Value: 1.386
_shades:
m_OverrideState: 1
m_Value: 0.357
_rocking:
m_OverrideState: 0
m_Value: 0.0233
_squeeze:
m_OverrideState: 1
m_Value: 0.605
_density:
m_OverrideState: 0
m_Value: 1
_intensity:
m_OverrideState: 0
m_Value: 1
_scale:
m_OverrideState: 0
m_Value: 1.507
_flickering:
m_OverrideState: 0
m_Value: -0.462
_color:
m_OverrideState: 0
m_Value: {r: 0, g: 0, b: 0, a: 1}
_bleed:
m_OverrideState: 0
m_Value: 0
_flow:
m_OverrideState: 1
m_Value: 9.17
_pulsation:
m_OverrideState: 1
m_Value: 8.04
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c6ec5dbf414272c41911a962d83f60f2
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:
@@ -0,0 +1,133 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-7746936809400307181
MonoBehaviour:
m_ObjectHideFlags: 3
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: 11500000, guid: 584f4d053daa4e17a331821f306111c9, type: 3}
m_Name: ChromaticVol
m_EditorClassIdentifier:
active: 1
_Weight:
m_OverrideState: 1
m_Value: 0.52
_Intensity:
m_OverrideState: 1
m_Value: 1
_Radial:
m_OverrideState: 1
m_Value: -0.071
_Alpha:
m_OverrideState: 1
m_Value: 1
_Angle:
m_OverrideState: 1
m_Value: 0.512
_Split:
m_OverrideState: 0
m_Value: -0.338
_Sat:
m_OverrideState: 1
m_Value: 0.209
_Mono:
m_OverrideState: 1
m_Value: 1
--- !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: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: "\u8BB0\u5FC6\u6E05\u6670\u5EA6\u6ED1\u5757"
m_EditorClassIdentifier:
components:
- {fileID: 6885057381391584257}
- {fileID: -7746936809400307181}
--- !u!114 &6885057381391584257
MonoBehaviour:
m_ObjectHideFlags: 3
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: 11500000, guid: 8f87d2427ed3459e8c4345aacc689427, type: 3}
m_Name: BlurVol
m_EditorClassIdentifier:
active: 0
m_Radius:
m_OverrideState: 1
m_Value: 0.797
m_Radial:
m_OverrideState: 1
m_Value: 0.188
m_Samples:
m_OverrideState: 1
m_Value: 18
m_Aspect:
m_OverrideState: 1
m_Value: -1
m_Angle:
m_OverrideState: 1
m_Value: 111
m_Adaptive:
m_OverrideState: 0
m_Value:
_curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
_pixels:
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: cd9c948227d206844940f688dceb7bd4
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:
+107
View File
@@ -0,0 +1,107 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-4661409121710669734
MonoBehaviour:
m_ObjectHideFlags: 3
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: 11500000, guid: d94e4d16c32d4354919ca310e9b07591, type: 3}
m_Name: AdjustmentsVol
m_EditorClassIdentifier:
active: 1
m_Tint:
m_OverrideState: 1
m_Value: {r: 0, g: 0, b: 0, a: 1}
m_Threshold:
m_OverrideState: 1
m_Value:
_curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0.033332825
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
_pixels:
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
m_Hue:
m_OverrideState: 1
m_Value: -0.5
m_Saturation:
m_OverrideState: 1
m_Value: -0.101
m_Brightness:
m_OverrideState: 1
m_Value: 0.483
m_Contrast:
m_OverrideState: 1
m_Value: 0.607
m_Alpha:
m_OverrideState: 1
m_Value: 0.359
--- !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: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: "\u8BB0\u5FC6\u9ED1\u5C4F"
m_EditorClassIdentifier:
components:
- {fileID: -4661409121710669734}
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1c4826877247031498b75c11e869e925
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:
@@ -2916,24 +2916,15 @@ MonoBehaviour:
m_PostInfinity: 2
m_RotationOrder: 4
_filter:
- 0.003236246
- 0.0077324267
- 0.019586023
- 0.03634456
- 0.055555556
- 0.074766554
- 0.091525085
- 0.10337868
- 0.10787487
- 0.10787487
- 0.10337868
- 0.091525085
- 0.074766554
- 0.055555556
- 0.03634456
- 0.019586023
- 0.0077324267
- 0.003236246
- 0.007228916
- 0.043749984
- 0.12409639
- 0.20444278
- 0.24096388
- 0.20444278
- 0.12409639
- 0.043749984
- 0.007228916
--- !u!114 &4176120870960390285
MonoBehaviour:
m_ObjectHideFlags: 3
@@ -3484,24 +3475,15 @@ MonoBehaviour:
m_PostInfinity: 2
m_RotationOrder: 4
_filter:
- 0.003236246
- 0.0077324267
- 0.019586023
- 0.03634456
- 0.055555556
- 0.074766554
- 0.091525085
- 0.10337868
- 0.10787487
- 0.10787487
- 0.10337868
- 0.091525085
- 0.074766554
- 0.055555556
- 0.03634456
- 0.019586023
- 0.0077324267
- 0.003236246
- 0.007228916
- 0.043749984
- 0.12409639
- 0.20444278
- 0.24096388
- 0.20444278
- 0.12409639
- 0.043749984
- 0.007228916
--- !u!114 &7295209022824667507
MonoBehaviour:
m_ObjectHideFlags: 3
+1 -1
View File
@@ -23,7 +23,7 @@ TagManager:
- DeepCanvas
- UF
- Image
-
- MemoryScreen
-
-
-