26 lines
No EOL
954 B
C#
Executable file
26 lines
No EOL
954 B
C#
Executable file
using UnityEngine;
|
|
|
|
namespace ABI.CCK.Components
|
|
{
|
|
[AddComponentMenu("ChilloutVR/CVR Snapping Point")]
|
|
[HelpURL("https://developers.abinteractive.net/cck/")]
|
|
public class CVRSnappingPoint : MonoBehaviour, ICCK_Component
|
|
{
|
|
public string type;
|
|
|
|
public float distance = 0.05f;
|
|
|
|
private void OnDrawGizmosSelected()
|
|
{
|
|
Gizmos.color = Color.white;
|
|
Vector3 pos = transform.position;
|
|
float length = distance * 1.25f;
|
|
Gizmos.DrawLine(pos - length * Vector3.up, pos + length * Vector3.up);
|
|
Gizmos.DrawLine(pos - length * Vector3.left, pos + length * Vector3.left);
|
|
Gizmos.DrawLine(pos - length * Vector3.forward, pos + length * Vector3.forward);
|
|
Gizmos.DrawWireSphere(pos, distance);
|
|
Gizmos.color = new Color(0.2f, 0.2f, 0.2f);
|
|
Gizmos.DrawWireSphere(pos, length);
|
|
}
|
|
}
|
|
} |