mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 23:33:26 +02:00
Fix equip sphere not showing up
This commit is contained in:
parent
aec76cd542
commit
5f5dedaa40
1 changed files with 3 additions and 3 deletions
|
@ -2770,10 +2770,10 @@ var handleHandMessages = function(channel, message, sender) {
|
|||
|
||||
Messages.messageReceived.connect(handleHandMessages);
|
||||
|
||||
var BASIC_TIMER_INTERVAL = 20; // 20ms = 50hz good enough
|
||||
var BASIC_TIMER_INTERVAL_MS = 20; // 20ms = 50hz good enough
|
||||
var updateIntervalTimer = Script.setInterval(function(){
|
||||
update();
|
||||
}, BASIC_TIMER_INTERVAL);
|
||||
update(BASIC_TIMER_INTERVAL_MS / 1000);
|
||||
}, BASIC_TIMER_INTERVAL_MS);
|
||||
|
||||
function cleanup() {
|
||||
Script.clearInterval(updateIntervalTimer);
|
||||
|
|
Loading…
Reference in a new issue