25 lines
No EOL
839 B
C#
Executable file
25 lines
No EOL
839 B
C#
Executable file
using UnityEngine;
|
|
|
|
namespace ABI.CCK.Components
|
|
{
|
|
[AddComponentMenu("ChilloutVR/Force Applicator")]
|
|
[HelpURL("https://developers.abinteractive.net/cck/")]
|
|
public class ForceApplicator : MonoBehaviour, ICCK_Component
|
|
{
|
|
public Rigidbody target;
|
|
public Vector3 forceVector;
|
|
public float strength;
|
|
public bool onlyWhenSubmerged;
|
|
|
|
private void OnDrawGizmos()
|
|
{
|
|
if (isActiveAndEnabled)
|
|
{
|
|
Gizmos.color = Color.yellow;
|
|
Matrix4x4 rotationMatrix = Matrix4x4.TRS(transform.position, transform.rotation, Vector3.one);
|
|
Gizmos.matrix = rotationMatrix;
|
|
Gizmos.DrawLine(Vector3.zero, forceVector * Mathf.Max(strength * 0.001f, 0.25f));
|
|
}
|
|
}
|
|
}
|
|
} |