This commit is contained in:
2025-08-09 19:20:46 +08:00
153 changed files with 1033113 additions and 38332 deletions

View File

@@ -237,7 +237,10 @@ namespace Dreamteck.Splines
}
else
{
newParticleData.threeDOffset = new Vector3(Random.Range(-width, width), Random.Range(-width, width), 0);
newParticleData.threeDOffset = new Vector3(
Random.Range(-width, width) * extendDirection.x,
Random.Range(-width, width) * extendDirection.y,
Random.Range(-width, width) * extendDirection.z);
}
newParticleData.startOffset = circle * 0.5f;