Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nongvantinh/litenetlibsystemexampleprojects
This project is meant to provide a working version of using `LiteNetLibSystem` with Godot Engine.
https://github.com/nongvantinh/litenetlibsystemexampleprojects
game game-development godot godot-engine godot4 godotengine litenetlib networking
Last synced: 15 days ago
JSON representation
This project is meant to provide a working version of using `LiteNetLibSystem` with Godot Engine.
- Host: GitHub
- URL: https://github.com/nongvantinh/litenetlibsystemexampleprojects
- Owner: nongvantinh
- Created: 2023-12-22T03:35:42.000Z (about 1 year ago)
- Default Branch: development
- Last Pushed: 2024-02-08T04:39:09.000Z (11 months ago)
- Last Synced: 2024-12-21T13:09:12.470Z (15 days ago)
- Topics: game, game-development, godot, godot-engine, godot4, godotengine, litenetlib, networking
- Language: C#
- Homepage:
- Size: 2.63 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This project is meant to provide a working version of using `LiteNetLibSystem` with Godot Engine.
The client prediction still doesn't work well due to Godot's `MoveAndSlide` method not accepting the parameter `delta`. There's an ongoing discussion about bringing this option back in the engine [here](https://github.com/godotengine/godot/pull/84665), but the timeline is uncertain.
Godot 4.2 currently doesn't support simulating physics multiple times at once either. It's unclear when this option will be introduced, but there is a proposal for it: [Add ability to simulate physics manually/multiple times at once](https://github.com/godotengine/godot-proposals/issues/2821).
## Prerequisites
- [Godot 4.2.stable.mono](https://github.com/godotengine/godot/releases/tag/4.2-stable)
- [.NET SDK 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)## Project Usage
1. Open one of the provided projects.
2. Build the project.
3. Open the `game_manager` scene. In the Inspector panel, `uncheck` the `IsServer` field.
4. Export the project.
5. Go back to the editor, `check` the `IsServer` field, and run the server in the editor.
6. Go to the exported folder and run the exported game.You can use the virtual joystick to move the character, press `ESC` to release the mouse capture, and use mouse movement to apply rotation.
## Project Structures
### LiteNetLibSystemExample
The first folder, `LiteNetLibSystemExample`, provides the basic version of the game. It contains pure character movement and rotation, nothing more. This way, you can gain an idea of how to use `LiteNetLibSystem` with Godot.