Added workspace

This commit is contained in:
Eduard Urbach 2024-01-29 11:08:57 +01:00
parent bca8fdf610
commit b4503eff21
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
3 changed files with 20 additions and 2 deletions

2
.gitignore vendored
View File

@ -12,7 +12,9 @@
!*.tscn
!*.blend
!*.ttf
!*.cfg
!.gitignore
!.gitattributes
!project.godot
!project.code-workspace
.godot/

View File

@ -3,7 +3,7 @@ extends Node
var camera: Camera3D
var player: Player
var players: PlayerManager
var instance_id := OS.get_process_id() % 4
var username := "user%d" % instance_id
var account_id: String
var interacting_with_ui: bool
var instance_id := OS.get_process_id() % 4
var username := "user%d" % instance_id

16
project.code-workspace Normal file
View File

@ -0,0 +1,16 @@
{
"folders": [
{
"name": "client",
"path": "client"
},
{
"name": "server",
"path": "server"
},
{
"name": "stresstest",
"path": "stresstest"
}
]
}