onTouchStart method

void onTouchStart(
  1. double normalizedY
)

Usuario comienza a tocar

Implementation

void onTouchStart(double normalizedY) {
  isUserTouching = true;
  userTouchY = normalizedY.clamp(0.0, 1.0);
  freeMode = false;
}