Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REG-2044] Properly represent Company Name project setting #105

Merged
merged 1 commit into from
Nov 26, 2024
Merged
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
6 changes: 3 additions & 3 deletions docs/core-concepts/recording-gameplay.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ Gameplay Sessions unlock access to more features through the Regression Games we
The SDK saves recordings to the temporary path on your local device specified by `Application.persistentDataPath`/RegressionGames/recordings.
Recordings are saved in these project specific directories as a folders named `recording_{MM-dd-yyyy_HH.mm.ss}_{sessionId}`.

Here is an example of a recording's location for a project named "MyGame":
Here is an example of a recording's location for a project with settings of Company Name: "MyCompany" and Product Name: "MyGame" ...
```bash
# macOS & Linux
~/Library/Application Support/Unity/MyGame/RegressionGames/recordings/recording_08-30-2024_14.34.13_0b8551
~/Library/Application Support/MyCompany/MyGame/RegressionGames/recordings/recording_08-30-2024_14.34.13_0b8551

# Windows
C:\Users\{MyUser}\AppData\LocalNow\Unity\MyGame\RegressionGames\recordings\recording_08-30-2024_14.34.13_0b8551
C:\Users\{MyUser}\AppData\LocalNow\MyCompany\MyGame\RegressionGames\recordings\recording_08-30-2024_14.34.13_0b8551
```

A recording folder contains multiple files that provide important context about the game's state.
Expand Down
Loading