chore: initial commit

This commit is contained in:
2026-05-08 11:04:00 +08:00
commit f55d2a57c3
6278 changed files with 866081 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using UnityEngine;
using System.Collections;
namespace MoreMountains.Tools
{
/// <summary>
/// Adds this class to particles to force their sorting layer
/// </summary>
[AddComponentMenu("More Mountains/Tools/Particles/MMVisibleParticle")]
public class MMVisibleParticle : MonoBehaviour {
/// <summary>
/// Sets the particle system's renderer to the Visible Particles sorting layer
/// </summary>
protected virtual void Start ()
{
GetComponent<ParticleSystem>().GetComponent<Renderer>().sortingLayerName = "VisibleParticles";
}
}
}