You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changelog.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -272,7 +272,7 @@ The changes in EOS Online Framework 2025.06.24 are as follows:
272
272
- Fixed an issue where a stale friend cache would be used if a user no longer had any friends.
273
273
- Fixed support for calling the receipt-less version of `Checkout` on the purchase interface when using Epic Games e-commerce.
274
274
- Fixed an issue where party attribute values were not visible to blueprints on the `RedpointPartyMember` events.
275
-
- Fixed an issue where the [gameplay debugger for P2P networking](./support/gameplay_debugger.mdx) did not show NAT status.
275
+
- Fixed an issue where the [gameplay debugger for P2P networking](./tools/gameplay_debugger.mdx) did not show NAT status.
276
276
- Fixed an issue where `ShowInviteUI` on the external UI interface would fail with "This platform does not have a native subsystem", even though external UI functionality is now provided internally in the plugin.
277
277
- Fixed an issue where Meta Quest invites could be consumed prior to the user being signed in.
278
278
- Searches for lobbies and parties are now automatically retried with exponential backoff if the EOS SDK returns `EOS_TooManyRequests` or `EOS_TimedOut`.
@@ -498,7 +498,7 @@ This release fixes several issues:
498
498
- Fixed an extremely subtle login stall that could happen when multiple play-in-editor windows are signing in at the same time.
499
499
- Fixed an issue where voice channels for voice-enabled parties would not appear when calling `GetChannels`.
500
500
- Fixed an issue where dedicated servers would not start up when "Require Epic Games Launcher" is enabled.
501
-
- Fixed an issue where console commands for the identity system did not work. These console commands have been replaced with [new console commands](/support/console_commands.mdx).
501
+
- Fixed an issue where console commands for the identity system did not work. These console commands have been replaced with [new console commands](/tools/console_commands.mdx).
502
502
503
503
### 2024.09.10
504
504
@@ -982,7 +982,7 @@ This release fixes various bugs, adds provisional support for EOS SDK 1.15.3 and
982
982
983
983
This release adds a gameplay debugger for network traffic and fixes a few issues with the Free Edition:
984
984
985
-
- Added a new [gameplay debugger](/support/gameplay_debugger.mdx) which shows the state of all P2P networking connections.
985
+
- Added a new [gameplay debugger](/tools/gameplay_debugger.mdx) which shows the state of all P2P networking connections.
986
986
- Fixed an issue in the Free Edition where clang-tidy related files were incorrectly shipped in the package, preventing the Free Edition from working on Windows.
987
987
- Fixed an issue with the license validation for the Free Edition, which prevented relatively new license keys from working with the Free Edition. License keys obtained from the License Manager in the past were not affected. We've also added an automation test to our build system to prevent this issue occurring again in the future.
988
988
- Fixed an issue where party member data would not tolerate UTF8 string values correctly.
@@ -1741,7 +1741,7 @@ This release significantly improves the editor experience and fixes a few issues
1741
1741
- Sessions can now be advertised in the presence system in the Epic Games overlay. This allows players to join and invite other players to sessions that they are in. You must specifically enable this functionality by changing the `PresenceAdvertises` configuration option. For more information, refer to [Joining sessions from the Overlay](/ossv1/presence/sessions.mdx).
1742
1742
- The Epic Games Overlay will now appear when launching the game in the editor through "Standalone Game". This means you can now test overlay functionality without creating a packaged build.
1743
1743
- When launching multiple "Standalone Game" instances through the editor (from the Play dropdown), each instance will correctly use a different context from the Developer Authentication Tool. This makes "Standalone Game" behave the same as "Selected Viewport" when it comes to authentication.
1744
-
- Added performance counters to so that you can view how long EOS operations are taking on the main thread in Unreal Insights, as well as how many network packets and bytes are being sent over EOS P2P. For more information, refer to [Profiling with Unreal Insights](/support/profiling.mdx).
1744
+
- Added performance counters to so that you can view how long EOS operations are taking on the main thread in Unreal Insights, as well as how many network packets and bytes are being sent over EOS P2P. For more information, refer to [Profiling with Unreal Insights](/tools/profiling.mdx).
1745
1745
- The plugin will now emit an error to the Output Log if you attempt to use `CreateSession` or `UpdateSession`, but you haven't enabled the EOS networking driver.
1746
1746
- Fixed an issue where Android shipping builds would crash due to a bug in a third-party Android library.
1747
1747
- Fixed an issue where custom properties would not be set when a user's presence status was updated.
You can retrieve the audio volume levels and various stages of voice chat audio processing. The Voice Chat Debugger uses these APIs to display the audio levels in the editor:
361
+
You can retrieve the audio volume levels and various stages of voice chat audio processing. The [Voice Chat Debugger](/docs/tools/voice_chat_debugger.mdx) uses these APIs to display the audio levels in the editor:
362
362
363
363
-`GetLastMicrophoneAudioLevels(LocalUserId)`: Reports the last unmodified microphone audio levels, prior to any volume or input patch modifications. This will return the same values for all local users using the same input device.
364
364
-`GetLastInputAudioLevels(LocalUserId)`: Reports the last input audio levels, after global volume and mute, and after input patch modifications.
description: Learn how to use editor & debugging tools when developing your game.
5
+
---
6
+
7
+
Redpoint EOS Online Framework provides multiple editor and runtime debugging tools that you can use to get your implementation of Epic Online Services working.
8
+
9
+
-[Gameplay debugger](./gameplay_debugger.mdx): Inspect the state of various systems, including networking and P2P connections, in an overlay in the editor or on device.
10
+
-[Voice Chat debugger](./voice_chat_debugger.mdx): Inspect the state of voice chat and audio levels while testing with play-in-editor.
11
+
-[Using console commands](./console_commands.mdx): Use console commands to simulate events or dump the state of systems to the log.
12
+
-[Using console variables](./console_variables.mdx): Use console variables to change the behaviour of the plugin, or to enable advanced timing diagnostics.
13
+
-[Profile with Unreal Insights](./profiling.mdx): Learn how to profile your game with Epic Online Services using the Unreal Insights tool.
0 commit comments