mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:49:05 +02:00
Add header comment to gracefulControls.js
This commit is contained in:
parent
3724472758
commit
ffa47b1923
1 changed files with 12 additions and 2 deletions
|
@ -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 = {
|
var DEFAULT_PARAMETERS = {
|
||||||
|
// Coefficient to use for linear drag. Higher numbers will cause motion to
|
||||||
|
// slow down more quickly.
|
||||||
DRAG_COEFFICIENT: 0.9,
|
DRAG_COEFFICIENT: 0.9,
|
||||||
MAX_SPEED: 40.0,
|
MAX_SPEED: 40.0,
|
||||||
ACCELERATION: 1.0,
|
ACCELERATION: 1.0,
|
||||||
|
|
Loading…
Reference in a new issue