Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created February 28, 2019 04:12
Show Gist options
  • Save jesulink2514/608ef7e457c68ad53b65546aa1396b74 to your computer and use it in GitHub Desktop.
Save jesulink2514/608ef7e457c68ad53b65546aa1396b74 to your computer and use it in GitHub Desktop.
public override bool TouchesBegan(IEnumerable<Point> points)
{
base.TouchesBegan(points);
this.ScaleTo(0.96, 65, Easing.CubicInOut);
return true;
}
public override bool TouchesCancelled(IEnumerable<Point> points)
{
base.TouchesCancelled(points);
this.ScaleTo(1.0, 65, Easing.CubicInOut);
return true;
}
public override bool TouchesEnded(IEnumerable<Point> points)
{
base.TouchesEnded(points);
this.ScaleTo(1.0, 65, Easing.CubicInOut);
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment