From 47235d24aa7d8ab9104d11cde40285b438dac24d Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 27 Jan 2017 15:29:48 -0800 Subject: [PATCH] Add headers to stopwatch scripts --- .../marketplace/stopwatch/spawnStopwatch.js | 10 ++++++++++ .../marketplace/stopwatch/stopwatchClient.js | 10 ++++++++++ .../marketplace/stopwatch/stopwatchServer.js | 10 ++++++++++ 3 files changed, 30 insertions(+) diff --git a/unpublishedScripts/marketplace/stopwatch/spawnStopwatch.js b/unpublishedScripts/marketplace/stopwatch/spawnStopwatch.js index e385f04771..4203db37fa 100644 --- a/unpublishedScripts/marketplace/stopwatch/spawnStopwatch.js +++ b/unpublishedScripts/marketplace/stopwatch/spawnStopwatch.js @@ -1,3 +1,13 @@ +// +// spawnStopwatch.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 +// + var positionToSpawn = Vec3.sum(MyAvatar.position, Quat.getFront(MyAvatar.rotation)); var stopwatchID = Entities.addEntity({ diff --git a/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js b/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js index 786c290a02..6284b86102 100644 --- a/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js +++ b/unpublishedScripts/marketplace/stopwatch/stopwatchClient.js @@ -1,3 +1,13 @@ +// +// 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) { diff --git a/unpublishedScripts/marketplace/stopwatch/stopwatchServer.js b/unpublishedScripts/marketplace/stopwatch/stopwatchServer.js index 8d87241617..5b4a04fcd3 100644 --- a/unpublishedScripts/marketplace/stopwatch/stopwatchServer.js +++ b/unpublishedScripts/marketplace/stopwatch/stopwatchServer.js @@ -1,3 +1,13 @@ +// +// 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() { this.equipped = false; this.isActive = false;