mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 09:24:39 +01:00
16 lines
267 B
C#
16 lines
267 B
C#
using UnityEngine;
|
|
|
|
namespace PigeonCoopToolkit.Effects.Trails
|
|
{
|
|
public class SmokeTrailPoint : PCTrailPoint
|
|
{
|
|
public Vector3 RandomVec;
|
|
|
|
public override void Update(float deltaTime)
|
|
{
|
|
base.Update(deltaTime);
|
|
Position += RandomVec * deltaTime;
|
|
}
|
|
}
|
|
}
|