AvatarPosition
public Vertex3D AvatarPosition { get; set; }
아바타 위치(Avatar Position)
Returns
| Type | Description |
|---|---|
| Vertex3D |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
vizcore3d.BeginUpdate();
vizcore3d.Walkthrough.Avatar = true;
vizcore3d.Walkthrough.AvatarPosition = new Data.Vertex3D(19427.13f, 1204.982f, 2335.0f);
vizcore3d.EndUpdate();
}