谱面替换

This commit is contained in:
SoulliesOfficial
2026-07-30 09:28:43 -04:00
parent 58afd6acc1
commit 96619b1bb5
50 changed files with 1453 additions and 807 deletions

View File

@@ -24,6 +24,7 @@ namespace Dreamteck.Splines
public enum EmitPoint { Beginning, Ending, Random, Ordered }
public enum MotionType { None, UseParticleSystem, FollowForward, FollowBackward, ByNormal, ByNormalRandomized }
public enum Wrap { Default, Loop }
public enum PathNodeSizeMode { LegacyOffset, ApplyPathNodeSize }
public bool is3D;
public float width = 10f;
@@ -51,6 +52,8 @@ namespace Dreamteck.Splines
public float minCycles = 1f;
[HideInInspector]
public float maxCycles = 1f;
[HideInInspector]
public PathNodeSizeMode pathNodeSizeMode = PathNodeSizeMode.LegacyOffset;
private Dictionary<uint, Particle> _particleDataMap = new Dictionary<uint, Particle>();
private ParticleSystem.Particle[] _particles = new ParticleSystem.Particle[0];