2024-08-03 22:24:42 +02:00
|
|
|
|
using ABI.CCK.Components;
|
2023-01-22 16:38:23 +01:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2024-08-03 22:24:42 +02:00
|
|
|
|
[AddComponentMenu("")]
|
|
|
|
|
[HelpURL("https://developers.abinteractive.net/cck/")]
|
2023-01-22 16:38:23 +01:00
|
|
|
|
[System.Serializable]
|
2024-08-03 22:24:42 +02:00
|
|
|
|
public class CVRWarpPoint : MonoBehaviour, ICCK_Component
|
2023-01-22 16:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
[Header("CVR Warp Point (Will teleport you to the position of this object on ui interaction.)")]
|
|
|
|
|
public string warpPointName;
|
|
|
|
|
public string warpPointDescription;
|
2024-08-03 22:24:42 +02:00
|
|
|
|
}
|