This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
rabidus-test/Assets/SCSM/SciFiShipController/Demos/Scripts/DemoFlyToLocationShipData.cs

16 lines
515 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// Sci-Fi Ship Controller. Copyright (c) 2018-2023 SCSM Pty Ltd. All rights reserved.
namespace SciFiShipController
{
/// <summary>
/// Class used for storing AI Data on a ship to be used by the state method.
/// </summary>
public class DemoFlyToLocationShipData : MonoBehaviour
{
public AIBehaviourInput.AIBehaviourType currentBehaviourType = AIBehaviourInput.AIBehaviourType.CustomSeekArrival;
}
}