Тёмный

Full Player-Client Multiplayer Authority 

Battery Acid Dev
Подписаться 6 тыс.
Просмотров 1,2 тыс.
50% 1

A quick review of how to setup client authority over the full player object, and not just the inputs. As a continuation off of the base Brackeys-multiplayer project, this is an easy way to have responsive player movement, for example CoOp games, but be mindful of the potential for cheating using this approach.
---------------------------------------------------------------------------------------------
[Follow along starting point] Clone repo, then checkout this commit:
⭐️ github.com/BatteryAcid/godot-...
[Finished project]
👉 github.com/BatteryAcid/godot-...
FIX for the exceptions found here: • FIXED! Full Player-Cli...
Thank you @tldmbruno for the suggestion!
---------------------------------------------------------------------------------------------
[Support the channel]
👉 / batteryaciddev
👋 Let's talk shop 👇
[Discord] / discord
[Support the channel] www.getyourgamedone.com/chann...
[Twitter] / batteryaciddev
[Insta] / batteryaciddev
[Mastodon] mastodon.gamedev.place/@Batte...
[Threads] www.threads.net/@batteryaciddev
---------------------------------------------------------------------------------------------
00:00:00 FULL PLAYER AUTHORIZATION INTRO
00:01:10 PLAYER CONTROLLER CHANGES
00:05:55 INPUT CHANGES
00:07:02 KILLZONE CHANGE
00:08:04 TEST CHANGES
00:08:43 SYNCHRONIZE SLIME
00:10:18 POTENTIAL ISSUES
00:12:12 DEDICATED SERVER BUILD & DEPLOYMENT
#playerauthority #clientauthority #lagcompensation #clientsidepredictionserverreconciliation #netfox
#steam #steamgame #steammultiplayerpeer #extension #p2p #steammultiplayer #steammultiplayerpeer #godotsteam #steamp2p #2dgame #respawn #pvp #health #animations #gamedevelopment #2dmultiplayer #godotstartertemplate #godot #godottips #gametech #gamedev #indiedev #multiplayer #network #godotengine #brackeys

Опубликовано:

 

23 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 20   
@BatteryAcidDev
@BatteryAcidDev 18 дней назад
**FIX** for the exceptions found here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-HHoCkyBdRMs.html Thank you @tldmbruno for the suggestion!
@LaCe5758
@LaCe5758 19 дней назад
you're carrying my current online game! Now I just need a youtuber to carry me with the level design
@herrspaten1796
@herrspaten1796 19 дней назад
Level design is pretty hard. I tend to underestimate it all the time
@LaCe5758
@LaCe5758 19 дней назад
@@herrspaten1796 same! I came up with some ideas after I thought "How can I make a level that relies on my game mechanics"
@herrspaten1796
@herrspaten1796 19 дней назад
@@LaCe5758 when in doubt, look at nintendo games! Thats my way of dealing with level design
@BatteryAcidDev
@BatteryAcidDev 15 дней назад
Haha nice! Yea I think we all need that!
@tldmbruno
@tldmbruno 19 дней назад
10:54 I had that error fixed by using "_enter_tree(): set_multiplayer_authority(str(name).to_int())". Because _enter_tree is called before _ready, the peer that just joined can set who is the multiplayer_authority of each player character. One HUGE misconseption I found people think (mostly because this info is nowhere to be found on the internet nor in the docs) is not knowing that multiplayer_authority is defined PER PEER. The reason using "name = peer_id" works its because MultiplayerSpawner already syncs the node's names. So the third player joins in, with the other two players having their names set as "1" and something like "348574813" respectively. Then the _enter_tree runs FOR EVERY CHARACTER in the third peer's machine. The enter_tree then sets the multiplayer authority correctly for that peer, because it uses the node's names. The error at 10:54 is basically saying: "the third peer thought someone else had the authority to that node!".
@tldmbruno
@tldmbruno 19 дней назад
I only found out about this thing about multiplayer_authority being defined per peer after I spent two days trying every possible combination of set_multiplayer_authority.
@BatteryAcidDev
@BatteryAcidDev 19 дней назад
Yea so I revisited this approach with a fresh mind, and I can't believe I got it working!! I was making a dumb mistake that I caught the second time around, so thanks a ton!!! Thanks!
@BatteryAcidDev
@BatteryAcidDev 18 дней назад
Added correction video here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-HHoCkyBdRMs.html Thank you @tldmbruno for the suggestion!
@yuvalkrispin
@yuvalkrispin 19 дней назад
Nice thanks for everything This is great Meme please a database tutorial
@BatteryAcidDev
@BatteryAcidDev 15 дней назад
Thank you! Yes, that is in the queue. I may do a NoSQL one to start but not sure... let me know which type of database you'd like me to focus on. And also where to host it?? I generally use AWS because it's easy for me, but there are other services, so let me know!
@plompcore
@plompcore 19 дней назад
Much appreciated!! I'm wondering how to handle scene changes in an online game
@LaCe5758
@LaCe5758 19 дней назад
I did it after many headaches, now I have a nice main menu screen where I can choose Online Mode/Local Mode/Settings (and choose the level once I do more levels!), the classic menu screen
@BatteryAcidDev
@BatteryAcidDev 15 дней назад
You can make RPC calls from the Authority(server/host) to the clients that tell them to change scenes. Also, you can probably swap out Nodes using the MultiplayerSpawner to achieve something similar, but I haven't played around with that just yet.
@DragilusGame
@DragilusGame 7 дней назад
Great video, I like the way you show how things are done. I had another question with this video, but what would be the best way to deal with the disconnection/closure of the server host to the client. I tried to do in the Steam tutorial, but it didn't work as expected.
@Ceisri
@Ceisri 18 дней назад
everyone made already 10000 videos on how to sync players.... but how do I sync NPC's ? the only thing I managed so far is either making the NPC a fake player but I can't do it with multiple NPCs.... or using rpc but for some reason it only syncs on computers and not on phones
@BatteryAcidDev
@BatteryAcidDev 18 дней назад
I’ll do some more on that topic but you can check here in the meantime: Spawn & Sync Enemy Mobs for Godot Multiplayer Games ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-a_67y1OtRcw.html Automate Mob Movement Using Navigation 3D Region + Agent [Godot 4] ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-zGk0JVk9P14.html
@BatteryAcidDev
@BatteryAcidDev 10 дней назад
Here’s a new one: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Sc_pP_nKSL8.htmlsi=6v-F3xvgM7WeqltG
Далее
Minecraft finally spoke about the Mob Vote Problem
19:32
СОБАКИ ГОЛОДАЮТ ИЗ-ЗА ЛЕРЫ 🥲
01:00
Export and Run a Godot Dedicated Server
23:29
Просмотров 6 тыс.
Godot Multiplayer Lag Compensation with Netfox
43:12
Просмотров 3,2 тыс.
Why Starbound Failed
15:00
Просмотров 702 тыс.
MMO Architecture overview with Unreal Engine
12:04
Просмотров 9 тыс.
5 Beginner Multiplayer Mistakes
21:18
Просмотров 1,9 тыс.
Godot + Steam P2P Multiplayer
1:02:29
Просмотров 7 тыс.
Projects Every Programmer Should Try
16:58
Просмотров 406 тыс.
The Future of Game Development
8:58
Просмотров 1,2 млн
Main Architectural Multiplayer Game Components
5:04
Просмотров 1,3 тыс.