mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 14:47:41 +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);
|
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(){
|
var updateIntervalTimer = Script.setInterval(function(){
|
||||||
update();
|
update(BASIC_TIMER_INTERVAL_MS / 1000);
|
||||||
}, BASIC_TIMER_INTERVAL);
|
}, BASIC_TIMER_INTERVAL_MS);
|
||||||
|
|
||||||
function cleanup() {
|
function cleanup() {
|
||||||
Script.clearInterval(updateIntervalTimer);
|
Script.clearInterval(updateIntervalTimer);
|
||||||
|
|
Loading…
Reference in a new issue