Interface AsyncScreenshotResult

Represents a screenshot promise result.

This value is used with InfiniteEngineInterface.asyncScreenshot.


3D Rendering

interface AsyncScreenshotResult {
    reason: AsyncResultReason;
    value?: InfiniteImageInterface;
}

Properties

Properties

The reason for the end of the promise.

The returned value of the promise. Undefined if the call failed.