You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/engine/Server.gd
+28-9Lines changed: 28 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ var websocket_port: int = 3824
12
12
varudp_port: int=websocket_port-1
13
13
14
14
## How often to send the the UDP queue
15
-
varudp_frequency: float=1.0/45.0# 1 second divided by 45
15
+
varudp_frequency: float=1.0/60.0# 1 second divided by 45
16
16
17
17
## Disables signal emissions to clients
18
18
vardisable_signals: bool=false
19
19
20
-
## Dissables the use of the high frequency UDP socket
21
-
vardissable_high_frequency: bool=true
20
+
## Dissables the use of the high frequency UDP socketc
21
+
vardissable_high_frequency: bool=false
22
22
23
23
24
24
## Used as an internal refernce for timing call_interval correctly
@@ -31,7 +31,7 @@ var _networked_objects: Dictionary = {}
31
31
var_networked_object_callbacks: Dictionary= {}
32
32
33
33
## The queue of data that needs to be send over the UDP socket, there can only be one item in the queue at one, so new data will be merged into what is already there, using Dictionary.merge()
0 commit comments