diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-11-17 07:46:11 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-11-17 07:46:11 -0300 |
commit | d5cb758d36035fc35e960a466d0b370ff19e4f76 (patch) | |
tree | be190717a7b8cd3924c3d9ff3ba5f5237cd26d41 /platform/iphone/gl_view.h | |
parent | 56b30b31e4df887a5b7b5c70a87597d250482c1f (diff) | |
download | redot-engine-d5cb758d36035fc35e960a466d0b370ff19e4f76.tar.gz |
NavMesh
-=-=-=-
-Fixed NavMesh API
-New NavMesh demo
-Support for animated Particles2D
-Fixes for native video playback on iOS
Diffstat (limited to 'platform/iphone/gl_view.h')
-rwxr-xr-x | platform/iphone/gl_view.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/platform/iphone/gl_view.h b/platform/iphone/gl_view.h index 3e6181ab90..8ae7c2f87d 100755 --- a/platform/iphone/gl_view.h +++ b/platform/iphone/gl_view.h @@ -32,6 +32,7 @@ #import <OpenGLES/ES1/gl.h> #import <OpenGLES/ES1/glext.h> #import <MediaPlayer/MediaPlayer.h> +#import <AVFoundation/AVFoundation.h> @protocol GLViewDelegate; @@ -66,6 +67,13 @@ @property(nonatomic, assign) id<GLViewDelegate> delegate; +// AVPlayer-related properties +@property(strong, nonatomic) AVAsset *avAsset; +@property(strong, nonatomic) AVPlayerItem *avPlayerItem; +@property(strong, nonatomic) AVPlayer *avPlayer; +@property(strong, nonatomic) AVPlayerLayer *avPlayerLayer; + +// Old videoplayer properties @property(strong, nonatomic) MPMoviePlayerController *moviePlayerController; @property(strong, nonatomic) UIWindow *backgroundWindow; |