Skip to content

fix: reduced scene load timeout #635

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

Merged
merged 4 commits into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 10 additions & 2 deletions Assets/BossRoom/Prefabs/NetworkingManager.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ MonoBehaviour:
Address: 127.0.0.1
Port: 7777
ServerListenAddress:
DebugSimulator:
PacketDelayMS: 0
PacketJitterMS: 0
PacketDropRate: 0
--- !u!1 &503411707
GameObject:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -110,6 +114,10 @@ MonoBehaviour:
Address: 127.0.0.1
Port: 7777
ServerListenAddress:
DebugSimulator:
PacketDelayMS: 0
PacketJitterMS: 0
PacketDropRate: 0
--- !u!1 &5436007408952557947
GameObject:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -230,8 +238,8 @@ MonoBehaviour:
RecycleNetworkIds: 1
NetworkIdRecycleDelay: 120
RpcHashSize: 0
LoadSceneTimeOut: 120
MessageBufferTimeout: 20
LoadSceneTimeOut: 20
SpawnTimeout: 1
EnableNetworkLogs: 1
--- !u!1 &7311172147761373013
GameObject:
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![Banner](Documentation/Images/Banner.png)
# Boss Room - Co-op multiplayer RPG built with Unity Netcode for GameObjects
# Boss Room - Co-op multiplayer RPG and utilities built with Unity Netcode for GameObjects

| Solutions architects are available on [Discord](https://discord.gg/mNgM2XRDpb) and [forums](https://forum.unity.com/forums/multiplayer.26/) to help you work through issues you may encounter when using Boss Room. |
| -- |
Expand All @@ -8,6 +8,11 @@ Boss Room is a fully functional co-op multiplayer RPG made with Unity Netcode. I

You can use everything in this project as a starting point or as bits and pieces in your own Unity games. The project is licensed under the Unity Companion License. See [LICENSE.md](LICENSE.md) for more legal information.

This repo also contains a [Utilities](Packages/com.unity.multiplayer.samples.coop) package, containing sample scripts reusable in your own projects. You can install it using the following manifest file entry:

`"com.unity.multiplayer.samples.coop": "https://github.com/Unity-Technologies/com.unity.multiplayer.samples.coop.git?path=/Packages/com.unity.multiplayer.samples.coop",
`

See [ART_NOTES.md](Documentation/ART_NOTES.md) for more information on the art of Boss Room.

> __IMPORTANT__:
Expand Down