Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New terrain colours #78

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions src/levelEditor/GeoConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,25 @@ const PIXEL_COLOR_HEIGHTS = [
// Colors
export const EDITOR_UI_PIXEL_COLORS: Map<number, string> = new Map([
[PIXEL_COLOR_WALKABLE, '#fff'],
[PIXEL_COLOR_RAMP, '#e2e2e2'],
[PIXEL_COLOR_UNSWIMABLE_WALL, '#555'],
[PIXEL_COLOR_SWIMABLE_WALL, 'pink'],
[PIXEL_COLOR_SKY, 'lightblue'],
[PIXEL_COLOR_UNWALKABLE_COLLISION, 'brown'],
[PIXEL_COLOR_WATER, 'blue'],
[PIXEL_COLOR_HEIGHTS[0], '#eeeeee'],
[PIXEL_COLOR_HEIGHTS[1], '#e5e5e5'],
[PIXEL_COLOR_HEIGHTS[2], '#dddddd'],
[PIXEL_COLOR_HEIGHTS[3], '#d4d4d4'],
[PIXEL_COLOR_HEIGHTS[4], '#cccccc'],
[PIXEL_COLOR_HEIGHTS[5], '#c3c3c3'],
[PIXEL_COLOR_HEIGHTS[6], '#bbbbbb'],
[PIXEL_COLOR_HEIGHTS[7], '#b2b2b2'],
[PIXEL_COLOR_HEIGHTS[8], '#aaaaaa'],
[PIXEL_COLOR_HEIGHTS[9], '#a1a1a1'],
[PIXEL_COLOR_HEIGHTS[10], '#999999'],
[PIXEL_COLOR_HEIGHTS[11], '#909090'],
[PIXEL_COLOR_HEIGHTS[12], '#888888'],
[PIXEL_COLOR_RAMP, '#f3cd90'],
[PIXEL_COLOR_UNSWIMABLE_WALL, '#4f4d66'],
[PIXEL_COLOR_SWIMABLE_WALL, '#8e89c4'],
[PIXEL_COLOR_SKY, '#a4c4ff'],
[PIXEL_COLOR_UNWALKABLE_COLLISION, '#ef5436'],
[PIXEL_COLOR_WATER, '#3e54e4'],
[PIXEL_COLOR_HEIGHTS[0], '#fdcece'],
[PIXEL_COLOR_HEIGHTS[1], '#f0afaf'],
[PIXEL_COLOR_HEIGHTS[2], '#ce98a6'],
[PIXEL_COLOR_HEIGHTS[3], '#c1839f'],
[PIXEL_COLOR_HEIGHTS[4], '#b06b92'],
[PIXEL_COLOR_HEIGHTS[5], '#9a587d'],
[PIXEL_COLOR_HEIGHTS[6], '#825076'],
[PIXEL_COLOR_HEIGHTS[7], '#6d4a6d'],
[PIXEL_COLOR_HEIGHTS[8], '#594063'],
[PIXEL_COLOR_HEIGHTS[9], '#493958'],
[PIXEL_COLOR_HEIGHTS[10], '#3d3352'],
[PIXEL_COLOR_HEIGHTS[11], '#35304c'],
[PIXEL_COLOR_HEIGHTS[12], '#2e2c48'],
]);

export const EXPORT_TERRAIN_PIXEL_COLORS: Map<number, string> = new Map([
Expand Down