Exemple #1
0
 private static extern Texture2D CaptureScreenshotAsTexture(int superSize, StereoScreenCaptureMode stereoScreenCaptureMode);
Exemple #2
0
 public static Texture2D CaptureScreenshotAsTexture(StereoScreenCaptureMode stereoCaptureMode)
 {
     return(CaptureScreenshotAsTexture(1, stereoCaptureMode));
 }
Exemple #3
0
 private static extern void CaptureScreenshot(string filename, [UnityEngine.Internal.DefaultValue("1")] int superSize, [UnityEngine.Internal.DefaultValue("1")]  StereoScreenCaptureMode CaptureMode);
Exemple #4
0
 public static void CaptureScreenshot(string filename, StereoScreenCaptureMode stereoCaptureMode)
 {
     CaptureScreenshot(filename, 1, stereoCaptureMode);
 }