chore: updated changelogs with 1.7.0 release notes

chore: updated README accoridng to the changes to Multiplayer Use Cases and Invaders
This commit is contained in:
Paolo Abela 2024-08-29 10:44:16 +01:00
Родитель c0bda78ea2
Коммит b1529d901f
3 изменённых файлов: 37 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,31 @@
# Changelog
## [1.7.0] 2024-08-31
### Bitesize Samples Repository
#### Added
- Added a "Deprecated" folder for samples that are no longer supported
### Invaders
#### Changed
- This sample is now "Deprecated"
### Multiplayer Use Cases
#### Changed
- This sample is no longer "Experimental", and it has been moved into the "Basic" folder
- In-game UI now uses UIToolkit instead of UGUI
- Updated README to provide a clear path to the onboarding resources in case a user closed the Tutorial window
### Dedicated Game Server
#### Changed
- Upgraded project to Unity 6000.0.3f1
- Updated dedicated server packages to 1.1.0
- Updated Netcode For GameObjects version to 1.8.1, and replaced RPCs using the new workflow provided
## [1.6.0] 2024-05-30
### Bitesize Samples Repository

Просмотреть файл

@ -19,3 +19,8 @@ This means:
For education on game features critical to your production, please use our **Production-Ready** [Bitesize samples](https://docs-multiplayer.unity3d.com/netcode/current/learn/bitesize/bitesize-introduction/), [Boss Room](https://docs-multiplayer.unity3d.com/netcode/current/learn/bossroom/bossroom/), and [documentation](https://docs-multiplayer.unity3d.com/).
To connect, find support and share feedback, join the multiplayer community on the [Unity Discord](https://discord.gg/mNgM2XRDpb) and [Unity Forum](https://forum.unity.com/forums/multiplayer.26/).<br> <center>
### Invaders Overview
The [Invaders Sample](https://github.com/Unity-Technologies/com.unity.multiplayer.samples.bitesize/tree/main/Deprecated/Invaders) was a UNET sample that has been converted over to NGO. Learn more about game flow, modes, unconventional networked movement, and using a shared timer in this sample.
<br><br>

Просмотреть файл

@ -21,9 +21,13 @@ project using [Netcode for GameObjects](https://github.com/Unity-Technologies/co
The [2D Space Shooter Sample](https://github.com/Unity-Technologies/com.unity.multiplayer.samples.bitesize/tree/main/Basic/2DSpaceShooter) was a UNET sample that has been converted over to NGO. Check it out to learn more about physics movement and status effects using Netcode `NetworkVariables` and `ObjectPooling`.
<br><br>
### Invaders Overview
### Multiplayer Use Cases Overview
The [Invaders Sample](https://github.com/Unity-Technologies/com.unity.multiplayer.samples.bitesize/tree/main/Basic/Invaders) was a UNET sample that has been converted over to NGO. Learn more about game flow, modes, unconventional networked movement, and using a shared timer in this sample.
The [Multiplayer Use Cases sample](https://github.com/Unity-Technologies/com.unity.multiplayer.samples.bitesize/tree/main/Basic/MultiplayerUseCases) show you how to perform common actions in a multiplayer environment, so that you can build the features of your game with them in mind.
In this sample you'll learn about the core features of Netcode For GameObjects (Netcode) through practical examples that you'll be able to extend and adapt to fit the gameplay logic of your own game.
Each scene comes with an in-editor tutorial that will help you explore the main scripts and object of each scene, so you know where to look at to find what you're looking for.
<br><br>
### Client Driven Overview