cvr-props/Assets/ABI.CCK/Components/CVRToggleStateTrigger.cs

29 lines
892 B
C#
Raw Permalink Normal View History

using UnityEngine;
2023-01-22 16:38:23 +01:00
namespace ABI.CCK.Components
{
[AddComponentMenu("ChilloutVR/CVR Toggle State Trigger")]
[HelpURL("https://developers.abinteractive.net/cck/components/state-trigger/")]
public class CVRToggleStateTrigger : MonoBehaviour, ICCK_Component
2023-01-22 16:38:23 +01:00
{
public Vector3 areaSize = new Vector3(0.05f, 0.05f, 0.05f);
public Vector3 areaOffset = Vector3.zero;
public int toggleStateID = 0;
public void Trigger()
{
}
private void OnDrawGizmos()
{
if (isActiveAndEnabled)
{
Gizmos.color = Color.green;
Matrix4x4 rotationMatrix = Matrix4x4.TRS(transform.position, transform.rotation, transform.lossyScale);
Gizmos.matrix = rotationMatrix;
Gizmos.DrawCube(areaOffset, areaSize);
}
}
}
}