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.
123456789101112131415 |
- #pragma once
-
- @interface UnityView (iOS)
-
- // will simply update content orientation (it might be tweaked in layoutSubviews, due to disagreement between unity and view controller)
- - (void)willRotateToOrientation:(UIInterfaceOrientation)toOrientation fromOrientation:(UIInterfaceOrientation)fromOrientation;
- // will recreate gles backing if needed and repaint once to make sure we dont have black frame creeping in
- - (void)didRotate;
-
- - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event;
- - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event;
- - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;
- - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event;
-
- @end
|