Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityView+tvOS.h 502B

123456789101112131415
  1. #pragma once
  2. @interface UnityView (tvOS)
  3. - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event;
  4. - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event;
  5. - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;
  6. - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event;
  7. #if UNITY_TVOS_SIMULATOR_FAKE_REMOTE
  8. - (void)pressesBegan:(NSSet<UIPress*>*)presses withEvent:(UIEvent*)event;
  9. - (void)pressesEnded:(NSSet<UIPress*>*)presses withEvent:(UIEvent*)event;
  10. #endif
  11. @end