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