Add collectable items
This commit is contained in:
parent
826986cdbf
commit
69fee5e73d
10 changed files with 131 additions and 52 deletions
|
@ -11,7 +11,7 @@ export const EPSILON = 1e-8;
|
|||
// Unit length of sector. Only for internal representation.
|
||||
export const SECTOR_SIZE = 512;
|
||||
// G, G-boy, The big G, Mr. G, g's big brother, G-dog
|
||||
export const GRAVITATIONAL_CONSTANT = 0.01;
|
||||
export const GRAVITATIONAL_CONSTANT = 0.002;
|
||||
// Perspective constraints. Higher zoom value = closer.
|
||||
export const MIN_ZOOM = 1;
|
||||
export const MAX_ZOOM = 100;
|
||||
|
@ -22,7 +22,11 @@ export const TIP_ANGLE = 0.3;
|
|||
export const TIP_SPEED = 0.015;
|
||||
// Ship flight mechanics. Speed measured in units per tick.
|
||||
export const FUEL_BURN_RATE = 0.01;
|
||||
export const THRUST_POWER = 0.007;
|
||||
export const TURN_POWER = 0.05;
|
||||
// Distance at which an orbited planet will not be considered a parent body.
|
||||
export const MAX_PARENT_CELESTIAL_DISTANCE = 120;
|
||||
// Ship editing.
|
||||
export const EDIT_MARGIN = 2;
|
||||
// Floating items.
|
||||
export const ENTITY_ROTATION_RATE = 0.01;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue