28 lines
784 B
Lua
28 lines
784 B
Lua
return {
|
|
Music = {
|
|
-- Maximum distance where music can be heard (meters)
|
|
MusicDistance = 15,
|
|
|
|
-- Interval for updating volume and distance calculations (ms)
|
|
NearbyVolumeUpdateInterval = 0,
|
|
|
|
-- Interval for updating player position tracking (ms)
|
|
TimeUpdateInterval = 200,
|
|
|
|
-- Maximum allowed time difference before re-sync (seconds)
|
|
TimeDriftThreshold = 2,
|
|
|
|
-- Server-side music time update interval (ms)
|
|
ServerUpdateInterval = 1000,
|
|
|
|
},
|
|
Notification = {
|
|
NotificationDistance = 10,
|
|
BroadcastDistance = 15,
|
|
},
|
|
|
|
CameraShutter = {
|
|
SoundUrl = 'https://aiakos.net/codem/api.php?script=codem-phone&file=camera-shutter-314056.mp3',
|
|
},
|
|
}
|