overte/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js
2017-01-27 15:29:48 -08:00

22 lines
597 B
JavaScript

//
// 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;
});