From ffa47b1923441440e7d39bcbdaaec8d2d9c5d780 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Thu, 11 Sep 2014 15:22:04 -0700 Subject: [PATCH] Add header comment to gracefulControls.js --- examples/gracefulControls.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/examples/gracefulControls.js b/examples/gracefulControls.js index 6ccc024ba8..4d9e3e2f96 100644 --- a/examples/gracefulControls.js +++ b/examples/gracefulControls.js @@ -1,7 +1,17 @@ -// Coefficient to use for linear drag. Higher numbers will cause motion to -// slow down more quickly. +// +// gracefulControls.js +// examples +// +// Created by Ryan Huffman on 9/11/14 +// Copyright 2014 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 DEFAULT_PARAMETERS = { + // Coefficient to use for linear drag. Higher numbers will cause motion to + // slow down more quickly. DRAG_COEFFICIENT: 0.9, MAX_SPEED: 40.0, ACCELERATION: 1.0,