123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef UnityReplayKit_h
- #define UnityReplayKit_h
- #if UNITY_REPLAY_KIT_AVAILABLE
- #import <Foundation/Foundation.h>
- #import <ReplayKit/ReplayKit.h>
- @interface UnityReplayKit : NSObject<RPPreviewViewControllerDelegate, RPScreenRecorderDelegate>
- {
- }
- + (instancetype)sharedInstance;
- @property(nonatomic, readonly) BOOL apiAvailable;
- @property(nonatomic, readonly) NSString* lastError;
- @property(nonatomic, readonly) RPPreviewViewController* previewController;
- @property(nonatomic, readonly) BOOL recordingPreviewAvailable;
- @property(nonatomic, readonly, getter = isRecording) BOOL recording;
- - (BOOL)startRecording:(BOOL)enableMicrophone;
- - (BOOL)stopRecording;
- - (BOOL)showPreview;
- - (BOOL)discardPreview;
- - (void)screenRecorder:(RPScreenRecorder*)screenRecorder didStopRecordingWithError:(NSError*)error previewViewController:(RPPreviewViewController*)previewViewController;
- - (void)previewControllerDidFinish:(RPPreviewViewController*)previewController;
- @property(nonatomic, readonly) BOOL broadcastingApiAvailable;
- @property(nonatomic, readonly) BOOL isBroadcasting;
- @property(nonatomic, readonly) NSURL* broadcastURL;
- @property(nonatomic, setter = setCameraEnabled:, getter = isCameraEnabled) BOOL cameraEnabled;
- @property(nonatomic, setter = setMicrophoneEnabled:, getter = isMicrophoneEnabled) BOOL microphoneEnabled;
- - (void)startBroadcastingWithCallback:(void *)callback;
- - (void)stopBroadcasting;
- - (BOOL)showCameraPreviewAt:(CGPoint)position;
- - (void)hideCameraPreview;
- @end
- #endif // UNITY_REPLAY_KIT_AVAILABLE
- #endif // UnityReplayKit_h
|