public AnchorData(string name, Anchor.AnchorState anchorState, Vector3 anchorPosition, Vector3 anchorRotation)
        {
            this.name        = name;
            this.anchorState = anchorState;

            anchorPositionX = anchorPosition.x;
            anchorPositionY = anchorPosition.y;
            anchorPositionZ = anchorPosition.z;
            anchorRotationX = anchorRotation.x;
            anchorRotationY = anchorRotation.y;
            anchorRotationZ = anchorRotation.z;
        }
 public AnchorData(string name, Anchor.AnchorState anchorState)
 {
     this.name        = name;
     this.anchorState = anchorState;
 }