oriels/app/dofs/stretch-cursor/og/StretchCursor.cs
2022-10-02 18:23:48 -04:00

27 lines
649 B
C#

namespace Oriels;
class StretchCursor : dof {
// input
public Pose p0, p1;
// data
public Pose cursor;
public void Init() {}
public void Frame() {
Vec3 vec = p0.position - p1.position;
float len = vec.Length;
float stretch = Math.Max(len - deadzone, 0f);
Vec3 dir = backhand ? vec / len : p0.orientation * Vec3.Forward;
cursor.position = p0.position + dir * stretch * strength; // * Mono.inst.stretchStr;
Mesh.Cube.Draw(Material.Default, Matrix.TS(cursor.position, 0.01f));
}
// design
public bool backhand = true;
public float deadzone = 0.1f;
public float strength = 3f;
}