Commit a992169d authored by hex's avatar hex

fix download pic

parent e624f859
Pipeline #39153 failed
using UnityEngine;
using System.Collections;
using System.Collections;
using DG.Tweening;
using UnityEngine;
public class toolShift : MonoBehaviour {
public class toolShift : MonoBehaviour
{
public GameObject ObjectMust = null;
public GameObject ObjectOption = null;
......@@ -42,31 +43,28 @@ public class toolShift : MonoBehaviour {
}
public void shift()
{
// 获取当前对象的本地坐标
Vector3 va = ObjectMust.transform.localPosition;
const float duration = 0.6f;
if (ObjectOption == null)
{
// 目标Y坐标,根据当前位置在 0 和 -100 之间切换
float targetY = (va.y >= 0) ? -100f : 0f;
// 使用 DOTween 的 DOLocalMoveY,因为它只改变Y轴,意图更明确且性能稍好
ObjectMust.transform.DOLocalMoveY(targetY, duration);
}
else
{
Vector3 vb = ObjectOption.transform.localPosition;
if (va.y > vb.y)
Vector3 va = ObjectMust.transform.localPosition;
const float duration = 0.6f;
if (ObjectOption == null)
{
ObjectMust.transform.DOLocalMoveY(-100f, duration);
ObjectOption.transform.DOLocalMoveY(0f, duration);
float targetY = (va.y >= 0) ? -100f : 0f;
ObjectMust.transform.DOLocalMoveY(targetY, duration);
}
else
{
ObjectMust.transform.DOLocalMoveY(0f, duration);
ObjectOption.transform.DOLocalMoveY(-100f, duration);
Vector3 vb = ObjectOption.transform.localPosition;
if (va.y > vb.y)
{
ObjectMust.transform.DOLocalMoveY(-100f, duration);
ObjectOption.transform.DOLocalMoveY(0f, duration);
}
else
{
ObjectMust.transform.DOLocalMoveY(0f, duration);
ObjectOption.transform.DOLocalMoveY(-100f, duration);
}
}
}
}
}
......@@ -695,7 +695,7 @@ public class gameCard : OCGobject
//Program.I().audio.clip = Program.I().dididi;
//Program.I().audio.Play();
//deltaTimeCloseUp = 0;
DOTween.Kill(gameObject.transform);
gameObject.transform.DOKill();
if (condition == gameCardCondition.floating_clickable)
{
flash_line_on();
......@@ -874,7 +874,7 @@ public class gameCard : OCGobject
// Let's use the calculated one unless we want a specific "exciting" ease.
// The original code passed no ease, so we will not set one, letting DOTween use its default.
}
bool useArcPath = exciting ||
(Mathf.Abs(gameObject.transform.eulerAngles.x) < 10 && Vector3.Distance(pos, gameObject.transform.position) > 1f) ||
(accurate_position.x == pos.x && accurate_position.y < pos.y && accurate_position.z == pos.z);
......@@ -896,7 +896,7 @@ public class gameCard : OCGobject
float t = (float)i / 29f;
path[i] = from + (to - from) * t + new Vector3(0, 1.5f, 0) * Mathf.Sin(Mathf.PI * t);
}
// Execute path and rotation tweens.
gameObject.transform.DOPath(path, time).SetEase(easeType);
gameObject.transform.DORotate(rot, time).SetEase(easeType);
......@@ -2299,7 +2299,7 @@ public class gameCard : OCGobject
)
{
ES_lock(time_move + time_move + time_still);
gameObject.transform.DOKill();
// Create a sequence to chain the animations together
......@@ -2307,13 +2307,13 @@ public class gameCard : OCGobject
// 1. Move to the specified position and rotation
confirmSequence.Append(gameObject.transform.DOMove(position, time_move));
confirmSequence.Join(gameObject.transform.DORotate(rotation, time_move));
// 2. Wait for the specified "still" time
confirmSequence.AppendInterval(time_still);
// 3. Move back to the original accurate position and rotation
confirmSequence.Append(gameObject.transform.DOMove(accurate_position, time_move).SetEase(Ease.InQuad));
confirmSequence.Join(gameObject.transform.DORotate(accurate_rotation, time_move));
// 4. Set an OnUpdate for the entire sequence to keep decorations in place
confirmSequence.OnUpdate(RefreshFunction_decoration);
// We can assign the sequence to the transform to have it managed automatically
......@@ -2324,7 +2324,7 @@ public class gameCard : OCGobject
{
ES_lock(time_move + time_move + time_still);
gameObject.transform.DOKill();
// Handle the screenFader component as before
var ttt = gameObject.AddComponent<screenFader>();
ttt.from = gameObject.transform.position;
......@@ -2332,11 +2332,11 @@ public class gameCard : OCGobject
ttt.deltaTimeCloseUp = 0;
MonoBehaviour.Destroy(ttt, time_move + time_still);
Sequence confirmSequence = DOTween.Sequence();
// 1. Rotate with a spring-like ease. Ease.OutElastic is a good equivalent for iTween's "spring".
// The movement is handled by the screenFader component.
confirmSequence.Append(gameObject.transform.DORotate(rotation, time_move).SetEase(Ease.OutElastic));
// 2. Hold
confirmSequence.AppendInterval(time_still);
// 3. Return to original state. The original called confirm_step_3, which we replicate here.
......@@ -2351,7 +2351,7 @@ public class gameCard : OCGobject
ES_lock(time);
gameObject.transform.position = accurate_position;
gameObject.transform.eulerAngles = accurate_rotation;
gameObject.transform.DOKill();
gameObject.transform.DOShakePosition(time, 1f)
......@@ -2377,7 +2377,7 @@ public class gameCard : OCGobject
{
return;
}
show_off_disabled = disabled;
show_off_begin_time = Program.TimePassed();
show_off_shokewave = summon;
......
......@@ -367,7 +367,7 @@ public class Program : MonoBehaviour
InterString.initialize("config/translation.conf");
// 显示一个简单的加载提示
PrintToChat(InterString.Get("正在加载本地数据..."));
GameTextureManager.initialize();
// GameTextureManager.initialize();
Config.initialize("config/config.conf");
// [新增] 封装文件加载逻辑,避免重复检查
......
using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
......@@ -16,6 +17,51 @@ public enum GameTextureType
public class GameTextureManager
{
#region Main-Thread Bridge & Initialization
// ADDED: A structure to hold download request details.
internal struct DownloadRequest // 'internal' is good practice for helper structs
{
public string Url;
public string FilePath;
public PictureResource PicResource;
}
// ADDED: A thread-safe queue for download requests from the background thread.
private static readonly Queue<DownloadRequest> downloadRequestQueue = new Queue<DownloadRequest>();
// ADDED: Unity will automatically call this method once when the game loads,
// before any scene loads. This is the perfect place to set up our helper.
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)]
private static void InitializeOnLoad()
{
// Create a hidden GameObject to host our runner.
GameObject runnerObject = new GameObject("GameTextureManagerRunner");
// Add our runner component to it.
runnerObject.AddComponent<GameTextureManagerRunner>();
// Ensure it persists across scene changes.
GameObject.DontDestroyOnLoad(runnerObject);
// The original initialize logic now goes here.
Initialize();
}
// ADDED: Helper methods for the runner to interact with the queue.
internal static bool HasDownloadRequests()
{
return downloadRequestQueue.Count > 0;
}
internal static DownloadRequest GetNextDownloadRequest()
{
lock(downloadRequestQueue)
{
return downloadRequestQueue.Dequeue();
}
}
#endregion
static bool bLock = false;
static Stack<PictureResource> waitLoadStack = new Stack<PictureResource>();
......@@ -118,7 +164,7 @@ public class GameTextureManager
}
}
private class PictureResource
public class PictureResource
{
public GameTextureType type;
public long code;
......@@ -199,10 +245,41 @@ public class GameTextureManager
public static Texture2D rs = null;
public static Texture2D ts = null;
internal static IEnumerator DownloadAndProcessFile(DownloadRequest request)
{
yield return UnityFileDownloader.DownloadFileAsync(request.Url, request.FilePath, (success) =>
{
if (success)
{
Debug.Log("Download successful, processing card picture: " + request.PicResource.code);
LoadCardPicture(request.PicResource, request.FilePath);
}
else
{
Debug.LogWarning("Download failed for card: " + request.PicResource.code);
LoadCardPicture(request.PicResource, request.FilePath); // Let it handle the missing file
}
});
}
private static Thread main_thread;
// MODIFIED: In your original code, Program.Running was used. This is a more robust way.
private static bool IsRunning = true;
// Call this method from your main game logic on application quit to stop the thread.
public static void Shutdown()
{
IsRunning = false;
if(main_thread != null && main_thread.IsAlive)
{
main_thread.Join(100);
}
}
static void thread_run()
{
while (Program.Running)
while (IsRunning)
{
try
{
......@@ -236,20 +313,20 @@ public class GameTextureManager
switch (pic.type)
{
case GameTextureType.card_feature:
{
ProcessingCardFeature(pic);
break;
}
{
ProcessingCardFeature(pic);
break;
}
case GameTextureType.card_picture:
{
ProcessingCardPicture(pic);
break;
}
{
ProcessingCardPicture(pic);
break;
}
case GameTextureType.card_verticle_drawing:
{
ProcessingVerticleDrawing(pic);
break;
}
{
ProcessingVerticleDrawing(pic);
break;
}
}
}
}
......@@ -411,37 +488,6 @@ public class GameTextureManager
private static void caculateK(PictureResource pic)
{
//int width = pic.hashed_data.GetLength(0);
//int height = pic.hashed_data.GetLength(1);
//int left = 0;
//int right = width;
//if (width > height)
//{
// left = (width - height) / 2;
// right = width - left;
//}
//int all = 0;
//for (int h = 0; h < height; h++)
//{
// for (int w = left; w < right; w++)
// {
// if (pic.hashed_data[w, h, 3] > 0.05f)
// {
// all += 1;
// }
// }
//}
//float result = ((float)all) / (((float)height) * ((float)(height)));
//pic.k = result + 0.4f;
//if (pic.k > 1)
//{
// pic.k = 1f;
//}
//if (pic.k < 0)
//{
// pic.k = 0.1f;
//}
int width = pic.hashed_data.GetLength(0);
int height = pic.hashed_data.GetLength(1);
int h = 0;
......@@ -848,16 +894,33 @@ public class GameTextureManager
}
if (!File.Exists(path) && pic.code != 0 && AutoPicDownload)
{
//YGOMobile (177x254)
df.Download(
"http://cdn01.moestart.com/images/ygopro-images-zh-CN/"
+ pic.code.ToString()
+ ".jpg",
"picture/card/" + pic.code.ToString() + ".jpg"
);
path = "picture/card/" + pic.code.ToString() + ".jpg";
// //YGOMobile (177x254)
// df.Download(
// "http://cdn01.moestart.com/images/ygopro-images-zh-CN/"
// + pic.code.ToString()
// + ".jpg",
// "picture/card/" + pic.code.ToString() + ".jpg"
// );
// path = "picture/card/" + pic.code.ToString() + ".jpg";
string url = "https://cdn02.moecube.com:444/images/ygopro-images-zh-CN/" + pic.code.ToString() + ".jpg";
// string url = "http://cdn01.moestart.com/images/ygopro-images-zh-CN/" + pic.code.ToString() + ".jpg";
string finalPath = "picture/card/" + pic.code.ToString() + ".jpg";
// Enqueue the request. The runner on the main thread will pick it up.
lock (downloadRequestQueue)
{
downloadRequestQueue.Enqueue(new DownloadRequest
{
Url = url,
FilePath = finalPath,
PicResource = pic
});
}
}
else
{
LoadCardPicture(pic, path);
}
LoadCardPicture(pic, path);
}
catch (Exception e)
{
......@@ -1028,7 +1091,7 @@ public class GameTextureManager
public static UnityEngine.Color chainColor = UnityEngine.Color.white;
internal static void initialize()
internal static void Initialize()
{
attack = UIHelper.getTexture2D("textures/attack.png"); //YGOMobile Paths
myBack = UIHelper.getTexture2D("textures/cover.jpg"); //YGOMobile Paths
......@@ -1076,7 +1139,10 @@ public class GameTextureManager
); //YGOMobile Paths
}
catch (Exception) { }
Thread main = new Thread(thread_run);
main.Start();
if (main_thread == null)
{
main_thread = new Thread(thread_run);
main_thread.Start();
}
}
}
using System.Collections;
using UnityEngine;
/// <summary>
/// 这是一个 MonoBehaviour 帮助器,专为静态的 GameTextureManager 服务。
/// 它的职责是在主线程上执行任务,例如轮询下载队列和启动协程。
/// 这个类的实例由 GameTextureManager 通过 [RuntimeInitializeOnLoadMethod] 自动创建。
/// </summary>
public class GameTextureManagerRunner : MonoBehaviour
{
void Update()
{
// 在主线程的每一帧检查是否有待处理的下载请求
if (GameTextureManager.HasDownloadRequests())
{
// 从 GameTextureManager 获取一个请求
var request = GameTextureManager.GetNextDownloadRequest();
// 使用这个 MonoBehaviour 实例来启动下载协程
StartCoroutine(GameTextureManager.DownloadAndProcessFile(request));
}
}
}
fileFormatVersion: 2
guid: cb7d20dd5a7074bc089a6c75c87e34da
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -29,39 +29,40 @@ public static class GlobalCertificateManager
SslPolicyErrors sslPolicyErrors
)
{
// return true;
// Case 1: 证书本身没有问题,直接通过
if (sslPolicyErrors == SslPolicyErrors.None)
{
return true;
}
// Case 2: 如果错误是 RemoteCertificateChainErrors,
// 这通常意味着证书链有问题,比如找不到吊销列表或者根证书不受信任。
// 我们将尝试进行一次忽略吊销检查的自定义验证。
if ((sslPolicyErrors & SslPolicyErrors.RemoteCertificateChainErrors) != 0)
{
// 创建一个新的证书链对象
X509Chain customChain = new X509Chain();
// 都是从 cdn02 的官方资源下载,hook 掉不验证证书可以提高下载速度,但是有一定的安全风险
return true;
// // Case 1: 证书本身没有问题,直接通过
// if (sslPolicyErrors == SslPolicyErrors.None)
// {
// return true;
// }
// // Case 2: 如果错误是 RemoteCertificateChainErrors,
// // 这通常意味着证书链有问题,比如找不到吊销列表或者根证书不受信任。
// // 我们将尝试进行一次忽略吊销检查的自定义验证。
// if ((sslPolicyErrors & SslPolicyErrors.RemoteCertificateChainErrors) != 0)
// {
// // 创建一个新的证书链对象
// X509Chain customChain = new X509Chain();
// 设置自定义验证策略
customChain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck; // <-- 核心:不检查证书吊销
customChain.ChainPolicy.VerificationFlags =
X509VerificationFlags.AllowUnknownCertificateAuthority; // 可选:如果你的服务器是自签名证书,需要加上这句。如果服务器证书是由受信任的公共CA颁发的,可以去掉这句。
// // 设置自定义验证策略
// customChain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck; // <-- 核心:不检查证书吊销
// customChain.ChainPolicy.VerificationFlags =
// X509VerificationFlags.AllowUnknownCertificateAuthority; // 可选:如果你的服务器是自签名证书,需要加上这句。如果服务器证书是由受信任的公共CA颁发的,可以去掉这句。
// 使用 X509Certificate2,因为它包含更完整的信息
X509Certificate2 cert2 = new X509Certificate2(certificate);
// 使用自定义策略进行验证
bool isChainValid = customChain.Build(cert2);
// 如果自定义验证构建成功,说明在忽略吊销检查的前提下,证书是可信的
if (isChainValid)
{
return true;
}
}
// // 使用 X509Certificate2,因为它包含更完整的信息
// X509Certificate2 cert2 = new X509Certificate2(certificate);
// // 使用自定义策略进行验证
// bool isChainValid = customChain.Build(cert2);
// // 如果自定义验证构建成功,说明在忽略吊销检查的前提下,证书是可信的
// if (isChainValid)
// {
// return true;
// }
// }
// Case 3: 对于其他错误(如名称不匹配 RemoteCertificateNameMismatch)或自定义验证失败,
// 我们认为证书无效。
Debug.LogErrorFormat("证书验证失败. SslPolicyErrors: {0}", sslPolicyErrors);
return false;
// // Case 3: 对于其他错误(如名称不匹配 RemoteCertificateNameMismatch)或自定义验证失败,
// // 我们认为证书无效。
// Debug.LogErrorFormat("证书验证失败. SslPolicyErrors: {0}", sslPolicyErrors);
// return false;
}
}
......@@ -189,7 +189,7 @@ Transform:
m_GameObject: {fileID: 150870}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 1.2637634, z: 0}
m_LocalScale: {x: 1.8666667, y: 1.8666667, z: 1.8666667}
m_LocalScale: {x: 0, y: 0, z: 0}
m_Children:
- {fileID: 488670}
m_Father: {fileID: 0}
......@@ -360,7 +360,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: cb997756c8d573a45a8620a8fbc1a715, type: 3}
m_Name:
m_EditorClassIdentifier:
scale: 1.8666667
scale: 0
--- !u!198 &19844024
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -370,10 +370,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 3
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -859,14 +862,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 4
angle: 25
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 1
mode: 0
......@@ -957,18 +975,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 0
serializedVersion: 4
......@@ -1375,6 +1381,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 0
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -1466,6 +1473,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -1591,6 +1600,47 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
......@@ -1934,7 +1984,50 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
drag:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
NoiseModule:
enabled: 0
strength:
......@@ -2232,6 +2325,129 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
positionAmount:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
rotationAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
sizeAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
SizeBySpeedModule:
enabled: 0
curve:
......@@ -2557,6 +2773,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -2715,7 +2935,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -2811,6 +3032,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -2855,11 +3077,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -3094,6 +3319,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -3135,6 +3361,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -3176,6 +3403,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -3217,6 +3445,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -3258,6 +3487,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -3323,6 +3553,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -3364,6 +3595,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -3405,6 +3637,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -3446,6 +3679,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -3487,6 +3721,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!198 &19851788
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -3496,10 +3731,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 2
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -3937,14 +4175,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 2
angle: 90
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 0.36
mode: 0
......@@ -4035,18 +4288,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 1
serializedVersion: 4
......@@ -4453,6 +4694,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 1
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -4544,6 +4786,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -4669,21 +4913,62 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
m_Mode: 0
m_Curve:
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
m_Mode: 0
m_Curve:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
......@@ -5012,7 +5297,50 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
drag:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
NoiseModule:
enabled: 0
strength:
......@@ -5310,6 +5638,129 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
positionAmount:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
rotationAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
sizeAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
SizeBySpeedModule:
enabled: 0
curve:
......@@ -5635,6 +6086,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -5793,7 +6248,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -5889,6 +6345,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -5933,11 +6390,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -6172,6 +6632,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -6213,6 +6674,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -6254,6 +6716,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -6295,6 +6758,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -6336,6 +6800,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -6401,6 +6866,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -6442,6 +6908,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -6483,6 +6950,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -6524,6 +6992,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -6565,6 +7034,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!198 &19860908
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -6574,10 +7044,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 3
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -7015,14 +7488,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 2
angle: 90
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 0.45
mode: 0
......@@ -7113,18 +7601,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 1
serializedVersion: 4
......@@ -7212,37 +7688,77 @@ ParticleSystem:
m_RotationOrder: 4
m_BurstCount: 1
m_Bursts:
- time: 0
minCount: 1
maxCount: 1
cycleCount: 1
repeatInterval: 0.01
SizeModule:
enabled: 0
curve:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
- serializedVersion: 2
time: 0
countCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0.23890784
value: 1
inSlope: -0.9373563
outSlope: -0.9373563
tangentMode: 34
- serializedVersion: 2
time: 1
value: 0.28658542
inSlope: -0.9373563
outSlope: -0.9373563
tangentMode: 34
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
cycleCount: 1
repeatInterval: 0.01
SizeModule:
enabled: 0
curve:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0.23890784
value: 1
inSlope: -0.9373563
outSlope: -0.9373563
tangentMode: 34
- serializedVersion: 2
time: 1
value: 0.28658542
inSlope: -0.9373563
outSlope: -0.9373563
tangentMode: 34
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
......@@ -7536,6 +8052,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 1
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -7627,6 +8144,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -7752,6 +8271,47 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
......@@ -8095,7 +8655,50 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
drag:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
NoiseModule:
enabled: 0
strength:
......@@ -8393,11 +8996,9 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
SizeBySpeedModule:
enabled: 0
curve:
positionAmount:
serializedVersion: 2
minMaxState: 1
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
......@@ -8423,24 +9024,24 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
y:
rotationAmount:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
......@@ -8448,12 +9049,12 @@ ParticleSystem:
time: 0
value: 0
inSlope: 0
outSlope: 1
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -8464,24 +9065,24 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
z:
sizeAmount:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
......@@ -8489,12 +9090,12 @@ ParticleSystem:
time: 0
value: 0
inSlope: 0
outSlope: 1
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -8505,40 +9106,38 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
range: {x: 0, y: 1}
separateAxes: 0
RotationBySpeedModule:
SizeBySpeedModule:
enabled: 0
x:
curve:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
......@@ -8565,9 +9164,9 @@ ParticleSystem:
m_RotationOrder: 4
y:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
......@@ -8575,12 +9174,12 @@ ParticleSystem:
time: 0
value: 0
inSlope: 0
outSlope: 0
outSlope: 1
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
value: 1
inSlope: 1
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -8591,37 +9190,37 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
curve:
z:
serializedVersion: 2
minMaxState: 0
scalar: 0.7853982
minScalar: 0.7853982
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
outSlope: 1
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
inSlope: 1
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -8632,32 +9231,159 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
separateAxes: 0
range: {x: 0, y: 1}
ColorBySpeedModule:
separateAxes: 0
RotationBySpeedModule:
enabled: 0
gradient:
x:
serializedVersion: 2
minMaxState: 1
minColor: {r: 1, g: 1, b: 1, a: 1}
maxColor: {r: 1, g: 1, b: 1, a: 1}
maxGradient:
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
key0: {r: 1, g: 1, b: 1, a: 1}
key1: {r: 1, g: 1, b: 1, a: 1}
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
y:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
curve:
serializedVersion: 2
minMaxState: 0
scalar: 0.7853982
minScalar: 0.7853982
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
separateAxes: 0
range: {x: 0, y: 1}
ColorBySpeedModule:
enabled: 0
gradient:
serializedVersion: 2
minMaxState: 1
minColor: {r: 1, g: 1, b: 1, a: 1}
maxColor: {r: 1, g: 1, b: 1, a: 1}
maxGradient:
serializedVersion: 2
key0: {r: 1, g: 1, b: 1, a: 1}
key1: {r: 1, g: 1, b: 1, a: 1}
key2: {r: 0, g: 0, b: 0, a: 0}
key3: {r: 0, g: 0, b: 0, a: 0}
key4: {r: 0, g: 0, b: 0, a: 0}
......@@ -8718,6 +9444,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -8876,7 +9606,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -8972,6 +9703,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -9016,11 +9748,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -9255,6 +9990,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -9296,6 +10032,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -9337,6 +10074,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -9378,6 +10116,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -9419,6 +10158,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -9484,6 +10224,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -9525,6 +10266,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -9566,6 +10308,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -9607,6 +10350,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -9648,6 +10392,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!198 &19863218
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -9657,10 +10402,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 3
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -10098,14 +10846,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 2
angle: 90
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 0.45
mode: 0
......@@ -10196,18 +10959,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 1
serializedVersion: 4
......@@ -10295,9 +11046,49 @@ ParticleSystem:
m_RotationOrder: 4
m_BurstCount: 1
m_Bursts:
- time: 0
minCount: 1
maxCount: 1
- serializedVersion: 2
time: 0
countCurve:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
cycleCount: 1
repeatInterval: 0.01
SizeModule:
......@@ -10619,6 +11410,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 1
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -10710,6 +11502,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -10835,6 +11629,47 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
......@@ -11178,26 +12013,26 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
NoiseModule:
enabled: 0
strength:
drag:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
......@@ -11209,20 +12044,22 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
strengthY:
NoiseModule:
enabled: 0
strength:
serializedVersion: 2
minMaxState: 0
scalar: 1
......@@ -11263,7 +12100,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
strengthZ:
strengthY:
serializedVersion: 2
minMaxState: 0
scalar: 1
......@@ -11304,9 +12141,50 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
separateAxes: 0
frequency: 0.5
damping: 1
strengthZ:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
separateAxes: 0
frequency: 0.5
damping: 1
octaves: 1
octaveMultiplier: 0.5
octaveScale: 2
......@@ -11476,6 +12354,129 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
positionAmount:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
rotationAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
sizeAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
SizeBySpeedModule:
enabled: 0
curve:
......@@ -11801,6 +12802,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -11959,7 +12964,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -12055,6 +13061,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -12099,11 +13106,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -12338,6 +13348,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -12379,6 +13390,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -12420,6 +13432,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -12461,6 +13474,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -12502,6 +13516,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -12567,6 +13582,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -12608,6 +13624,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -12649,6 +13666,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -12690,6 +13708,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -12731,6 +13750,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!198 &19868382
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -12740,10 +13760,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 3
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -13181,14 +14204,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 2
angle: 90
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 0.45
mode: 0
......@@ -13279,18 +14317,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 1
serializedVersion: 4
......@@ -13378,9 +14404,49 @@ ParticleSystem:
m_RotationOrder: 4
m_BurstCount: 1
m_Bursts:
- time: 0
minCount: 1
maxCount: 1
- serializedVersion: 2
time: 0
countCurve:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
cycleCount: 1
repeatInterval: 0.01
SizeModule:
......@@ -13702,6 +14768,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 1
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -13793,6 +14860,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -13918,6 +14987,47 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
......@@ -14261,7 +15371,50 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
drag:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
NoiseModule:
enabled: 0
strength:
......@@ -14488,12 +15641,136 @@ ParticleSystem:
time: 0
value: 0
inSlope: 0
outSlope: 1
outSlope: 1
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapZ:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 1
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
positionAmount:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
rotationAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -14504,24 +15781,24 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapZ:
sizeAmount:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
......@@ -14529,12 +15806,12 @@ ParticleSystem:
time: 0
value: 0
inSlope: 0
outSlope: 1
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -14545,20 +15822,19 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
SizeBySpeedModule:
enabled: 0
curve:
......@@ -14884,6 +16160,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -15042,7 +16322,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -15138,6 +16419,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -15182,11 +16464,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -15421,6 +16706,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -15462,6 +16748,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -15503,6 +16790,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -15544,6 +16832,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -15585,6 +16874,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -15650,6 +16940,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -15691,6 +16982,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -15732,6 +17024,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -15773,6 +17066,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -15814,6 +17108,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!198 &19873690
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -15823,10 +17118,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 2
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -16264,14 +17562,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 2
angle: 90
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 0.36
mode: 0
......@@ -16362,18 +17675,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 1
serializedVersion: 4
......@@ -16780,6 +18081,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 1
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -16871,6 +18173,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -16996,6 +18300,47 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
......@@ -17339,7 +18684,50 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
drag:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
NoiseModule:
enabled: 0
strength:
......@@ -17570,8 +18958,132 @@ ParticleSystem:
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
value: 1
inSlope: 1
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapZ:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 1
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
positionAmount:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
rotationAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -17582,24 +19094,24 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapZ:
sizeAmount:
serializedVersion: 2
minMaxState: 1
scalar: 1
minScalar: 1
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
......@@ -17607,12 +19119,12 @@ ParticleSystem:
time: 0
value: 0
inSlope: 0
outSlope: 1
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
......@@ -17623,20 +19135,19 @@ ParticleSystem:
m_Curve:
- serializedVersion: 2
time: 0
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
SizeBySpeedModule:
enabled: 0
curve:
......@@ -17962,6 +19473,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -18120,7 +19635,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -18216,6 +19732,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -18260,11 +19777,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -18499,6 +20019,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -18540,6 +20061,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -18581,6 +20103,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -18622,6 +20145,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -18663,6 +20187,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -18728,6 +20253,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -18769,6 +20295,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -18810,6 +20337,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -18851,6 +20379,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -18892,6 +20421,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!198 &19886826
ParticleSystem:
m_ObjectHideFlags: 1
......@@ -18901,10 +20431,13 @@ ParticleSystem:
serializedVersion: 5
lengthInSec: 2
simulationSpeed: 1
stopAction: 0
looping: 0
prewarm: 0
playOnAwake: 1
useUnscaledTime: 0
autoRandomSeed: 1
useRigidbodyForVelocity: 1
startDelay:
serializedVersion: 2
minMaxState: 0
......@@ -19342,14 +20875,29 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
ShapeModule:
serializedVersion: 4
serializedVersion: 5
enabled: 0
type: 2
angle: 90
length: 5
boxX: 1
boxY: 1
boxZ: 1
boxThickness: {x: 0, y: 0, z: 0}
radiusThickness: 1
donutRadius: 0.2
m_Position: {x: 0, y: 0, z: 0}
m_Rotation: {x: 0, y: 0, z: 0}
m_Scale: {x: 1, y: 1, z: 1}
placementMode: 0
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
randomPositionAmount: 0
radius:
value: 0.36
mode: 0
......@@ -19440,18 +20988,6 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
placementMode: 0
m_Mesh: {fileID: 0}
m_MeshRenderer: {fileID: 0}
m_SkinnedMeshRenderer: {fileID: 0}
m_MeshMaterialIndex: 0
m_MeshNormalOffset: 0
m_MeshScale: 1
m_UseMeshMaterialIndex: 0
m_UseMeshColors: 1
alignToDirection: 0
randomDirectionAmount: 1
sphericalDirectionAmount: 0
EmissionModule:
enabled: 1
serializedVersion: 4
......@@ -19858,6 +21394,7 @@ ParticleSystem:
m_NumAlphaKeys: 2
UVModule:
enabled: 1
mode: 0
frameOverTime:
serializedVersion: 2
minMaxState: 1
......@@ -19949,6 +21486,8 @@ ParticleSystem:
flipU: 0
flipV: 0
randomRow: 1
sprites:
- sprite: {fileID: 0}
VelocityModule:
enabled: 0
x:
......@@ -20074,6 +21613,47 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
speedModifier:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
inWorldSpace: 0
InheritVelocityModule:
enabled: 0
......@@ -20417,7 +21997,50 @@ ParticleSystem:
m_RotationOrder: 4
separateAxis: 0
inWorldSpace: 0
multiplyDragByParticleSize: 1
multiplyDragByParticleVelocity: 1
dampen: 1
drag:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
NoiseModule:
enabled: 0
strength:
......@@ -20715,6 +22338,129 @@ ParticleSystem:
m_PostInfinity: 2
m_RotationOrder: 4
remapEnabled: 0
positionAmount:
serializedVersion: 2
minMaxState: 0
scalar: 1
minScalar: 1
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
rotationAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
sizeAmount:
serializedVersion: 2
minMaxState: 0
scalar: 0
minScalar: 0
maxCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
minCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 2
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
- serializedVersion: 2
time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
SizeBySpeedModule:
enabled: 0
curve:
......@@ -21040,6 +22786,10 @@ ParticleSystem:
serializedVersion: 3
type: 0
collisionMode: 0
colliderForce: 0
multiplyColliderForceByParticleSize: 0
multiplyColliderForceByParticleSpeed: 0
multiplyColliderForceByCollisionAngle: 1
plane0: {fileID: 0}
plane1: {fileID: 0}
plane2: {fileID: 0}
......@@ -21198,7 +22948,8 @@ ParticleSystem:
serializedVersion: 2
enabled: 0
subEmitters:
- emitter: {fileID: 0}
- serializedVersion: 2
emitter: {fileID: 0}
type: 0
properties: 0
LightsModule:
......@@ -21294,6 +23045,7 @@ ParticleSystem:
maxLights: 20
TrailModule:
enabled: 0
mode: 0
ratio: 1
lifetime:
serializedVersion: 2
......@@ -21338,11 +23090,14 @@ ParticleSystem:
m_RotationOrder: 4
minVertexDistance: 0.2
textureMode: 0
ribbonCount: 1
worldSpace: 0
dieWithParticles: 1
sizeAffectsWidth: 1
sizeAffectsLifetime: 0
inheritParticleColor: 1
generateLightingData: 0
splitSubEmitterRibbons: 0
colorOverLifetime:
serializedVersion: 2
minMaxState: 0
......@@ -21577,6 +23332,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel0: Color
vector0_0:
serializedVersion: 2
minMaxState: 0
......@@ -21618,6 +23374,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_0: X
vector0_1:
serializedVersion: 2
minMaxState: 0
......@@ -21659,6 +23416,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_1: Y
vector0_2:
serializedVersion: 2
minMaxState: 0
......@@ -21700,6 +23458,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_2: Z
vector0_3:
serializedVersion: 2
minMaxState: 0
......@@ -21741,6 +23500,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel0_3: W
mode1: 0
vectorComponentCount1: 4
color1:
......@@ -21806,6 +23566,7 @@ ParticleSystem:
m_Mode: 0
m_NumColorKeys: 2
m_NumAlphaKeys: 2
colorLabel1: Color
vector1_0:
serializedVersion: 2
minMaxState: 0
......@@ -21847,6 +23608,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_0: X
vector1_1:
serializedVersion: 2
minMaxState: 0
......@@ -21888,6 +23650,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_1: Y
vector1_2:
serializedVersion: 2
minMaxState: 0
......@@ -21929,6 +23692,7 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_2: Z
vector1_3:
serializedVersion: 2
minMaxState: 0
......@@ -21970,9 +23734,10 @@ ParticleSystem:
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
vectorLabel1_3: W
--- !u!199 &19910352
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -21980,6 +23745,7 @@ ParticleSystemRenderer:
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -21996,6 +23762,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22021,9 +23788,10 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!199 &19920004
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -22031,6 +23799,7 @@ ParticleSystemRenderer:
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -22047,6 +23816,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22072,9 +23842,10 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!199 &19929018
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -22082,6 +23853,7 @@ ParticleSystemRenderer:
m_Enabled: 0
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -22098,6 +23870,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22123,9 +23896,10 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!199 &19935164
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -22133,6 +23907,7 @@ ParticleSystemRenderer:
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -22149,6 +23924,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22174,9 +23950,10 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!199 &19963958
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -22184,6 +23961,7 @@ ParticleSystemRenderer:
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -22200,6 +23978,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22225,9 +24004,10 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!199 &19993214
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -22235,6 +24015,7 @@ ParticleSystemRenderer:
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -22251,6 +24032,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22276,9 +24058,10 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!199 &19993858
ParticleSystemRenderer:
serializedVersion: 3
serializedVersion: 4
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
......@@ -22286,6 +24069,7 @@ ParticleSystemRenderer:
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
......@@ -22302,6 +24086,7 @@ ParticleSystemRenderer:
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
......@@ -22327,6 +24112,7 @@ ParticleSystemRenderer:
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
m_Mesh3: {fileID: 0}
m_MaskInteraction: 0
--- !u!1001 &100100000
Prefab:
m_ObjectHideFlags: 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment