Skip to content

Commit 19a7a04

Browse files
committed
engine-types: add some engine color settings
While these settings are colors, they are expressed in the engine as strings, not Color instances, so they can be recorded in engine-types.
1 parent 6233791 commit 19a7a04

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

engine-types/src/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,11 @@ export interface Thumbnail {
261261
export type BaseEngineSetting =
262262
["actualPlanetScale", boolean] |
263263
["constellations", boolean] |
264+
["constellationBoundryColor", string] |
265+
["constellationFigureColor", string] |
264266
["constellationsEnabled", string] |
267+
["constellationSelectionColor", string] |
268+
["crosshairsColor", string] |
265269
["earthCutawayView", boolean] |
266270
["fovCamera", number] |
267271
["fovEyepiece", number] |
@@ -323,7 +327,11 @@ export type BaseEngineSetting =
323327
const baseEngineSettingTypeInfo = {
324328
"actualPlanetScale/boolean": true,
325329
"constellations/boolean": true,
330+
"constellationBoundryColor/string": true,
331+
"constellationFigureColor/string": true,
326332
"constellationsEnabled/string": true,
333+
"constellationSelectionColor/string": true,
334+
"crosshairsColor/string": true,
327335
"earthCutawayView/boolean": true,
328336
"fovCamera/number": true,
329337
"fovEyepiece/number": true,

0 commit comments

Comments
 (0)