Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Update media.mdx explaining that getScreenshotUrl currently doesn't work in DX12 games. #1096

Open
wants to merge 1 commit into
base: source
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion website/pages/docs/api/media/media.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,17 @@ overwolf.media.getScreenshotUrl(
);
```

### Known Issues
overwolf.media.getScreenshotUrl in any DX12 game always returns the following result:
```json
{
success: false,
status: 'error',
error: 'Capture failed'
}
```
This is a known limitation of the current implementation. There is a workaround using overwolf.media.takeScreenshot and deleting the screenshot afterward but it's less performant.

## shareImage(image, description, callback)
#### Version added: 0.78

Expand Down Expand Up @@ -503,4 +514,4 @@ url | string
"success": true,
"url": ""
}
```
```