mirror of
https://github.com/thegatesbrowser/godot-multiplayer.git
synced 2025-07-05 06:10:36 -04:00
readme
This commit is contained in:
parent
1a335de566
commit
0d4503fd79
9 changed files with 94 additions and 0 deletions
24
README.md
Normal file
24
README.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Godot 4 Multiplayer template
|
||||||
|
|
||||||
|
|
||||||
|
Template repository with client-server multiplayer and voice chat ready to go. <br/>
|
||||||
|
It has: <br/>
|
||||||
|
\- Third person controller with interpolation on client <br/>
|
||||||
|
\- Voice over with 3d positioning <br/>
|
||||||
|
\- UI for changing names and tweaking voice volume <br/>
|
||||||
|
|
||||||
|
> #### The content in this repository is free to use in personal, educational and commercial projects.
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
|
|
||||||
|
<img src="screenshots\hub.png" width="500"> <br/> <br/>
|
||||||
|
<img src="screenshots\editor.png" width="500"> <br/> <br/>
|
||||||
|
|
||||||
|
[player/player.gd](player/player.gd)
|
||||||
|
|
||||||
|
<img src="screenshots\interpolation.png" width="500"> <br/> <br/>
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
* VoIP extension for Godot 4 - https://github.com/RevoluPowered/one-voip-godot-4
|
||||||
|
* Platformer Kit (2.2) - https://www.kenney.nl
|
BIN
icon.png
Normal file
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 180 KiB |
34
icon.png.import
Normal file
34
icon.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bxxw0mc01r824"
|
||||||
|
path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://icon.png"
|
||||||
|
dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
|
@ -15,6 +15,7 @@ config/tags=PackedStringArray("thegates")
|
||||||
run/main_scene="res://main/main.tscn"
|
run/main_scene="res://main/main.tscn"
|
||||||
config/features=PackedStringArray("4.2", "Forward Plus")
|
config/features=PackedStringArray("4.2", "Forward Plus")
|
||||||
boot_splash/bg_color=Color(0.129412, 0.14902, 0.180392, 1)
|
boot_splash/bg_color=Color(0.129412, 0.14902, 0.180392, 1)
|
||||||
|
config/icon="res://icon.png"
|
||||||
|
|
||||||
[audio]
|
[audio]
|
||||||
|
|
||||||
|
|
1
screenshots/.gdignore
Normal file
1
screenshots/.gdignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
BIN
screenshots/editor.png
Normal file
BIN
screenshots/editor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 411 KiB |
BIN
screenshots/hub.png
Normal file
BIN
screenshots/hub.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 358 KiB |
34
screenshots/hub.png.import
Normal file
34
screenshots/hub.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dadiw0rguhvy0"
|
||||||
|
path="res://.godot/imported/hub.png-2d11983b2c453679dbb8968db09caf26.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://images/hub.png"
|
||||||
|
dest_files=["res://.godot/imported/hub.png-2d11983b2c453679dbb8968db09caf26.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
screenshots/interpolation.png
Normal file
BIN
screenshots/interpolation.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 87 KiB |
Loading…
Add table
Add a link
Reference in a new issue