UP-Viagg-io/Viagg-io/Assets/Packages/DefaultPlayables/NavMeshAgentControl/NavMeshAgentControlBehaviou...

17 lines
361 B
C#
Raw Normal View History

2024-05-15 13:18:09 +02:00
using System;
using UnityEngine;
using UnityEngine.Playables;
using UnityEngine.Timeline;
[Serializable]
public class NavMeshAgentControlBehaviour : PlayableBehaviour
{
public Transform destination;
public bool destinationSet;
public override void OnPlayableCreate (Playable playable)
{
destinationSet = false;
}
}