У нас вы можете посмотреть бесплатно How to Use WebSockets in Unreal Engine или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Try out the Unreal Engine AI Agent/MCP - https://flopperam.com/ Download Core to create games for FREE: https://bit.ly/Core-Flopperam Join the Game Creator Challenge: https://itch.io/jam/gcc How to support the channel: Support us on Patreon: / flopperam Become a member: / @flopperam Donate to our PayPal: https://www.paypal.me/flopperam Sponsor us on Github: https://github.com/sponsors/chris-gong Get a shirt or sweatshirt: https://teespring.com/stores/flopperam Social media links: Discord: / discord X: / flopperam Instagram: / flopperam Tiktok: / flopperam In this video, we go over how to use the WebSockets module in an Unreal Engine game. The WebSockets module includes only client functionality. Therefore, we use the module to establish a connection between Unreal clients and a sample NodeJS server, send and receive messages over that connection, and close that connection. Since the WebSockets module is not natively exposed to blueprints, we wrote some C++ code in the GameInstance and Character classes in order to not only connect to and disconnect from a server but also send messages to the server and implement event handlers in the IWebSocket interface. At the end of the video, we test multiple packaged clients simultaneously by having them all connect to the same server and send messages to each other via WebSockets. ****IMPORTANT LINKS**** More information about the WebSocket protocol: https://en.wikipedia.org/wiki/WebSocket Unreal Engine project code that was used in this video: https://github.com/chris-gong/websock... Node.js WebSocket server code that was used in this video: https://github.com/chris-gong/ws-serv... Download and install NodeJs: https://nodejs.org/en/download/ Download and install Git: https://git-scm.com/downloads How to expose C++ code to blueprints: https://docs.unrealengine.com/4.27/en... Cool things you can make with WebSocket: / 10-most-amazing-use-cases-of-websockets-go... Unreal Engine API Reference for the WebSockets module: https://docs.unrealengine.com/en-US/A... ****IMPORTANT COMMANDS**** cd [directory-path] cd "[path-with-spaces]" git clone https://github.com/chris-gong/ws-serv... npm install node server To end the server: Ctrl-C Windows: cls Linux: clear WebSocketTest.exe -WINDOWED To fit make a window to take up either half or a quarter of the screen on Windows: Windows key + any arrow key How to support the channel: Get a shirt or sweatshirt with free shipping (Use code "SHIP" at checkout): https://teespring.com/stores/flopperam Become a member: / @flopperam Support us on Patreon: / flopperam Donate to our PayPal: https://www.paypal.me/flopperam Sponsor us on Github: https://github.com/sponsors/chris-gong Social media links: Discord: / discord Twitter: / flopperam Instagram: / flopperam Facebook: / flopperam 0:00 Intro 1:09 Sponsor 2:33 Creating a WebSocket connection 10:04 Adding WebSocket event handlers 14:34 Sending data from client to server 18:10 Testing with multiple packaged clients simultaneously 20:40 Outro #unrealengine #websocket #ue5