-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [3.1.0-exp.7] - 2023-08-09 ### Added - Added configurable logger to enable users to customize logging for their environment. ### Changed - Upgrade the version of WebRTC package `3.0.0-pre.6`. - Add `AudioStreamSender.loopback` property. ### Fixed - Fixed error on HTTP signaling when using short polling interval. - Fixed `SignalingManager` so that ICE server configurations aren't effected. - Added a workaround to fix an issue where `InputField` wasn't worked when entering characters from browsers or a `Receiver` scene of package sample. ### Removed - Removed Furioos Integration.
- Loading branch information
Unity Technologies
committed
Aug 9, 2023
1 parent
6cc34c8
commit 73473ae
Showing
121 changed files
with
2,218 additions
and
1,355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,15 +31,16 @@ This version of Render Streaming is compatible with the following versions of th | |
|
||
- **Unity 2020.3** | ||
- **Unity 2021.3** | ||
- **Unity 2022.2** | ||
- **Unity 2022.3** | ||
- **Unity 2023.1** | ||
|
||
### Platform | ||
|
||
- **Windows** | ||
- **Windows** (x64 only) | ||
- **Linux** | ||
- **macOS** | ||
- **macOS** (**Intel** and **Apple Slicon**) | ||
- **iOS** | ||
- **Android** (**ARMv7** is not supported) | ||
- **Android** (**ARM64** only. **ARMv7** is not supported) | ||
|
||
> [!NOTE] | ||
> This package depends on [the WebRTC package](https://docs.unity3d.com/Packages/[email protected]). If you build for mobile platform (iOS/Android), please see [the package documentation](https://docs.unity3d.com/Packages/[email protected]/manual/requirements.html#additional-notes) to know the requirements for building. | ||
|
@@ -64,9 +65,3 @@ Unity Render Streaming supports almost all browsers that can use WebRTC. | |
## Samples | ||
|
||
Please check [this page](samples.md). | ||
|
||
## Furioos compatibility | ||
|
||
Unity provides **[Furioos](https://www.furioos.com)** which is a web service to stream any 3D contents on any devices in real-time. | ||
|
||
This version of Unity Render Streaming doesn't support Furioos integration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
using UnityEditor.PackageManager; //StatusCode | ||
using UnityEditor.PackageManager; //StatusCode | ||
|
||
namespace Unity.RenderStreaming.Editor { | ||
namespace Unity.RenderStreaming.Editor | ||
{ | ||
|
||
internal interface IRequestJob { | ||
StatusCode Update(); | ||
internal interface IRequestJob | ||
{ | ||
StatusCode Update(); | ||
|
||
} | ||
} | ||
|
||
|
||
} //namespace Unity.RenderStreaming.Editor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.