Version: 2023.1
言語: 日本語
public static void CaptureScreenshot (string filename, int superSize);
public static void CaptureScreenshot (string filename, ScreenCapture.StereoScreenCaptureMode stereoCaptureMode);

パラメーター

filename The path to save the screenshot file to.
superSize The factor to increase resolution with.
stereoCaptureMode The eye texture to capture when stereo rendering is enabled.

説明

Captures a screenshot and saves it as a .png file to a specified path.

If the screenshot exists already, ScreenCapture.CaptureScreenshot overwrites it with a new screenshot.

Add .png to the end of filename to save the screenshot as a .png file.

On mobile platforms, filename is appended to the persistent data path. Refer to Application.persistentDataPath for more information on persistent data paths.

When the superSize parameter is more than 1, a larger resolution screenshot is produced. For example, if you pass 4, you create a screenshot 4x4 larger than normal. This is useful to produce screenshots you want to print.

using UnityEngine;

// Generate a screenshot and save it to disk with the name SomeLevel.png.

public class ExampleScript : MonoBehaviour { void OnMouseDown() { ScreenCapture.CaptureScreenshot("SomeLevel.png"); } }

The CaptureScreenshot returns immediately on Android. The screen capture continues in the background. The resulting screen shot is saved in the file system after a few seconds.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961