From 37e6e33d5dfa8806d231dd2ceb106d7a3a311769 Mon Sep 17 00:00:00 2001 From: Charles Bournhonesque Date: Sun, 14 Apr 2024 23:57:06 -0400 Subject: [PATCH 1/3] add content --- content/news/050/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/content/news/050/index.md b/content/news/050/index.md index 99d9270d3..a4b61b005 100644 --- a/content/news/050/index.md +++ b/content/news/050/index.md @@ -148,6 +148,21 @@ Current features are: ## Library Updates +### [Lightyear 0.13][lightyear_website] + +[lightyear_website] is a comprehensive networking library for bevy to make multiplayer games. +It comes with multiple types of transports (WebTransport, WebSocket, UDP, etc.) and supports replication techniques like client-side prediction, server interpolation, interest management and more! + +The latest release, [0.13][lightyear_website], brings two big new features: +- **Steam support**: you can now use the Steamworks SDK as your transport layer, which lets you use the Valve network! Note that lightyear supports running multiple transports in parallel, so it's possible to have cross-play between steam and non-steam users. +- **Listen-server mode**: it is not possible to run a server and a client in the same process/bevy app. This is can be useful to avoid the costs of a dedicated server, or to have a similar codebase between singleplayer and multiplayer. + +Example video (with 300ms of latency): https://github.com/cBournhonesque/lightyear/assets/8112632/ee547c32-1f14-4bdc-9e6d-67f900af84d0 + +[lightyear_website]: https://github.com/cBournhonesque/lightyear +[lightyear_release]: https://github.com/cBournhonesque/lightyear/releases/tag/0.13.0 + + ## Popular Workgroup Issues in GitHub From 667e8c8e3f0a7dbb939a32bde34a5e1d638ad8ff Mon Sep 17 00:00:00 2001 From: Charles Bournhonesque Date: Sun, 14 Apr 2024 23:59:29 -0400 Subject: [PATCH 2/3] add examples link --- content/news/050/index.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/content/news/050/index.md b/content/news/050/index.md index a4b61b005..6c0e636d5 100644 --- a/content/news/050/index.md +++ b/content/news/050/index.md @@ -152,15 +152,18 @@ Current features are: [lightyear_website] is a comprehensive networking library for bevy to make multiplayer games. It comes with multiple types of transports (WebTransport, WebSocket, UDP, etc.) and supports replication techniques like client-side prediction, server interpolation, interest management and more! +Check out the [examples][lightyear_examples]! -The latest release, [0.13][lightyear_website], brings two big new features: +The latest release, [0.13][lightyear_release], brings two big new features: - **Steam support**: you can now use the Steamworks SDK as your transport layer, which lets you use the Valve network! Note that lightyear supports running multiple transports in parallel, so it's possible to have cross-play between steam and non-steam users. - **Listen-server mode**: it is not possible to run a server and a client in the same process/bevy app. This is can be useful to avoid the costs of a dedicated server, or to have a similar codebase between singleplayer and multiplayer. -Example video (with 300ms of latency): https://github.com/cBournhonesque/lightyear/assets/8112632/ee547c32-1f14-4bdc-9e6d-67f900af84d0 + +Example (with 300ms of latency): https://github.com/cBournhonesque/lightyear/assets/8112632/ee547c32-1f14-4bdc-9e6d-67f900af84d0 [lightyear_website]: https://github.com/cBournhonesque/lightyear [lightyear_release]: https://github.com/cBournhonesque/lightyear/releases/tag/0.13.0 +[lightyear_examples]: https://github.com/cBournhonesque/lightyear/tree/main/examples ## Popular Workgroup Issues in GitHub From 8b96122a6ed9d58d1bdd36fe78f065979007cf78 Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Mon, 15 Apr 2024 13:43:57 +0200 Subject: [PATCH 3/3] Fix lints --- content/news/050/index.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/content/news/050/index.md b/content/news/050/index.md index 6c0e636d5..99774c7f6 100644 --- a/content/news/050/index.md +++ b/content/news/050/index.md @@ -151,15 +151,17 @@ Current features are: ### [Lightyear 0.13][lightyear_website] [lightyear_website] is a comprehensive networking library for bevy to make multiplayer games. -It comes with multiple types of transports (WebTransport, WebSocket, UDP, etc.) and supports replication techniques like client-side prediction, server interpolation, interest management and more! +It comes with multiple types of transports (WebTransport, WebSocket, UDP, etc.) +and supports replication techniques like client-side prediction, server interpolation, interest management and more! Check out the [examples][lightyear_examples]! The latest release, [0.13][lightyear_release], brings two big new features: -- **Steam support**: you can now use the Steamworks SDK as your transport layer, which lets you use the Valve network! Note that lightyear supports running multiple transports in parallel, so it's possible to have cross-play between steam and non-steam users. -- **Listen-server mode**: it is not possible to run a server and a client in the same process/bevy app. This is can be useful to avoid the costs of a dedicated server, or to have a similar codebase between singleplayer and multiplayer. +- **Steam support**: you can now use the Steamworks SDK as your transport layer, which lets you use the Valve network! +Note that lightyear supports running multiple transports in parallel, so it's possible to have cross-play between steam and non-steam users. +- **Listen-server mode**: it is not possible to run a server and a client in the same process/bevy app. +This is can be useful to avoid the costs of a dedicated server, or to have a similar codebase between singleplayer and multiplayer. - -Example (with 300ms of latency): https://github.com/cBournhonesque/lightyear/assets/8112632/ee547c32-1f14-4bdc-9e6d-67f900af84d0 +[Example (with 300ms of latency)](https://github.com/cBournhonesque/lightyear/assets/8112632/ee547c32-1f14-4bdc-9e6d-67f900af84d0) [lightyear_website]: https://github.com/cBournhonesque/lightyear [lightyear_release]: https://github.com/cBournhonesque/lightyear/releases/tag/0.13.0