public static KeyFrameTransitionAnimationWithKindFluentContext <Vector3> KeyFrame(this KeyFrameTransitionAnimationWithKindFluentContext <Vector3> animationFluentContext, float value)
 {
     animationFluentContext.KeyFrame(new Vector3(value, value, value));
     return(animationFluentContext);
 }
 public static KeyFrameTransitionAnimationWithKindFluentContext <Vector3> KeyFrame(this KeyFrameTransitionAnimationWithKindFluentContext <Vector3> animationFluentContext, float x, float y, float z)
 {
     animationFluentContext.KeyFrame(new Vector3(x, y, z));
     return(animationFluentContext);
 }