mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 20:28:07 +02:00
64 lines
1.1 KiB
JavaScript
64 lines
1.1 KiB
JavaScript
//
|
|
// Created by Bradley Austin Davis on 2015/08/27
|
|
// Copyright 2015 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
|
|
//
|
|
|
|
STICK_URL = Script.getExternalPath(Script.ExternalPaths.Assets, "models/props/geo_stick.fbx");
|
|
|
|
ZERO_VECTOR = { x: 0, y: 0, z: 0 };
|
|
|
|
IDENTITY_QUATERNION = { w: 1, x: 0, y: 0, z: 0 };
|
|
|
|
COLORS = {
|
|
WHITE: {
|
|
red: 255,
|
|
green: 255,
|
|
blue: 255,
|
|
},
|
|
BLACK: {
|
|
red: 0,
|
|
green: 0,
|
|
blue: 0,
|
|
},
|
|
GREY: {
|
|
red: 128,
|
|
green: 128,
|
|
blue: 128,
|
|
},
|
|
RED: {
|
|
red: 255,
|
|
green: 0,
|
|
blue: 0
|
|
},
|
|
BLUE: {
|
|
red: 0,
|
|
green: 0,
|
|
blue: 255
|
|
},
|
|
GREEN: {
|
|
red: 0,
|
|
green: 255,
|
|
blue: 0
|
|
},
|
|
CYAN: {
|
|
red: 0,
|
|
green: 255,
|
|
blue: 255
|
|
},
|
|
YELLOW: {
|
|
red: 255,
|
|
green: 255,
|
|
blue: 0
|
|
},
|
|
MAGENTA: {
|
|
red: 255,
|
|
green: 0,
|
|
blue: 255
|
|
}
|
|
}
|
|
|
|
|
|
|