This commit is contained in:
Vladimir Koshevarov
2023-03-15 18:05:32 +02:00
parent fcf8701322
commit 39ce016c1e
42 changed files with 8260 additions and 602 deletions
+13
View File
@@ -0,0 +1,13 @@
using UnityEngine;
public class WaypointVisual : BaseInteractableObject
{
[SerializeField]
private ParticleSystem _particleSystem;
public void SetWaypoint(Vector3 position)
{
_interactionPoint.position = position;
_particleSystem.Play();
}
}