mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 19:07:51 +02:00
Delete old script
This commit is contained in:
parent
b1280ff810
commit
8a659955cc
1 changed files with 0 additions and 22 deletions
|
@ -1,22 +0,0 @@
|
||||||
//
|
|
||||||
// stopwatchServer.js
|
|
||||||
//
|
|
||||||
// Created by Ryan Huffman on 1/20/17.
|
|
||||||
// Copyright 2017 High Fidelity, Inc.
|
|
||||||
//
|
|
||||||
// Distributed under the Apache License, Version 2.0.
|
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
||||||
//
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
var messageChannel;
|
|
||||||
this.preload = function(entityID) {
|
|
||||||
this.messageChannel = "STOPWATCH-" + entityID;
|
|
||||||
};
|
|
||||||
function click() {
|
|
||||||
Messages.sendMessage(this.messageChannel, 'click');
|
|
||||||
}
|
|
||||||
this.startNearTrigger = click;
|
|
||||||
this.startFarTrigger = click;
|
|
||||||
this.clickDownOnEntity = click;
|
|
||||||
});
|
|
Loading…
Reference in a new issue