Exemplo n.º 1
0
 public static void PlayChangeDiamondMiddleHeight(QuickPolygon shape, float endValue, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeDiamondMiddleHeight(shape, endValue, interpolateType, duration));
 }
Exemplo n.º 2
0
 public static void PlayChangeRotationAnimation(QuickPolygon shape, Vector3 addValue, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeRotation(shape, addValue, interpolateType, duration));
 }
Exemplo n.º 3
0
 public static void PlayChangeStarInnerRadius(QuickPolygon shape, float endValue, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeStarInnerRadius(shape, endValue, interpolateType, duration));
 }
Exemplo n.º 4
0
 public static void PlayChangeBorderSizeAnimation(QuickPolygon shape, float endOuterScale, float endInnerScale, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeBorderSize(shape, endOuterScale, endInnerScale, interpolateType, duration));
 }
Exemplo n.º 5
0
 public static void PlayChangeOuterBorderAnimation(QuickPolygon shape, float endValue, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeOuterBorder(shape, endValue, interpolateType, duration));
 }
Exemplo n.º 6
0
 public static void PlayChangeRoundingResolutionOnCornerAnimation(QuickPolygon shape, int cornerID, float endValue, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeRoundingResolutionOnCorner(shape, cornerID, endValue, interpolateType, duration));
 }
Exemplo n.º 7
0
 public static void PlayChangeScaleAnimation(QuickPolygon shape, float endWidth, float endHeight, InterpolateType interpolateType, float duration)
 {
     activeAnimation = shape.StartCoroutine(ChangeScale(shape, endWidth, endHeight, interpolateType, duration));
 }