2024-08-03 22:24:42 +02:00
|
|
|
|
using System.Collections.Generic;
|
2023-01-22 16:38:23 +01:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace ABI.CCK.Components
|
|
|
|
|
{
|
2024-08-03 22:24:42 +02:00
|
|
|
|
[AddComponentMenu("")] // hidden from the Add Component menu
|
|
|
|
|
[HelpURL("https://developers.abinteractive.net/cck/components/aas-trigger-helper/")]
|
|
|
|
|
public class CVRAdvancedAvatarSettingsTriggerHelper : MonoBehaviour, ICCK_Component
|
2023-01-22 16:38:23 +01:00
|
|
|
|
{
|
2024-08-03 22:24:42 +02:00
|
|
|
|
//public List<CVRAdvancedAvatarSettingsTrigger> triggers = new List<CVRAdvancedAvatarSettingsTrigger>();
|
|
|
|
|
// public void onEnter(int i) { }
|
|
|
|
|
// public void onExit(int i) { }
|
|
|
|
|
// public void onStay(int i) { }
|
2023-01-22 16:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
}
|