class MAGES::Interaction::Editor::FingerPoserEditor¶
Overview¶
Editor for FingerPoser. More…
class FingerPoserEditor: public UnityEditor.Editor
{
public:
// methods
static void DrawWireCapsule(
Vector3 pos1,
Vector3 pos2,
float radius,
Color color,
float lineThickness = 1f,
CompareFunction depthTest = CompareFunction.GreaterEqual
);
};
Detailed Documentation¶
Editor for FingerPoser.
Methods¶
static void DrawWireCapsule(
Vector3 pos1,
Vector3 pos2,
float radius,
Color color,
float lineThickness = 1f,
CompareFunction depthTest = CompareFunction.GreaterEqual
)
Draws a wirte capsule between two points.
Parameters:
pos1 |
Capsule top position. |
pos2 |
Capsule bottom position. |
radius |
Radius. |
color |
Line color. |
lineThickness |
Line thickness. |
depthTest |
The depth test compare function. |