diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-01-28 17:57:38 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-01-28 17:57:38 +0100 |
| commit | c6da699f18426079435ad4664e7c715386ff82c0 (patch) | |
| tree | cea63afb3c4e8e56fc2cc8f773f12e5618683cea /client/splash/constants.js | |
| parent | 0c0c2ec2ecfd64b16ff6ca0e69142223615f0c36 (diff) | |
display a random face
Diffstat (limited to 'client/splash/constants.js')
| -rw-r--r-- | client/splash/constants.js | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/client/splash/constants.js b/client/splash/constants.js index 5b7309b4..a3724b72 100644 --- a/client/splash/constants.js +++ b/client/splash/constants.js @@ -1,4 +1,11 @@ -/* global constants */ +/* renderer */ + +export const CAMERA_NEAR = 0.001 +export const CAMERA_FAR = 1000 + +export const CAMERA_X = 0 +export const CAMERA_Y = 0.2 +export const CAMERA_Z = 2 export const FOG_COLOR = 0x191919 @@ -12,6 +19,7 @@ export const CLOUD_COLORS = [ 0x888896, ] +export const CLOUD_SCALE = 1 export const CLOUD_ROTATION_SPEED = 0.001 export const CLOUD_MAX_COUNT = 80 export const CLOUD_TEXT_MIN_SIZE = 0.01 @@ -19,10 +27,16 @@ export const CLOUD_TEXT_MAX_SIZE = 0.04 /* face */ -export const FACE_SCALE = 0.00038 +export const FACE_SCALE = 1 /* face markers */ +export const FACE_MARKERS_SCALE = 0.82 +export const FACE_OFFSET_X = 0 +export const FACE_OFFSET_Y = -0.0295 +export const FACE_OFFSET_Z = 0.0275 + +export const MARKER_POINT_COLOR = 0xffffff export const MARKER_COLORS = [ 0xff3333, 0xff8833, @@ -35,6 +49,6 @@ export const MARKER_COLORS = [ 0xffffff, ] -export const POINT_SCALE = 0.009 -export const LINE_THICKNESS = 0.009 +export const POINT_SCALE = 0.01 +export const LINE_THICKNESS = 0.0075 export const FACE_POINT_COUNT = 68 |
