Fixing share link

This commit is contained in:
2025-07-06 15:33:35 +02:00
parent 3a5b38bd70
commit bf5085431a
14 changed files with 182 additions and 112 deletions

View File

@ -28,7 +28,7 @@ export const STORAGE_KEYS = {
// Value Modes
export const VALUE_MODES = [
'integer',
'float',
'float',
'polar',
'distance',
'wave',
@ -36,10 +36,10 @@ export const VALUE_MODES = [
'cellular',
'noise',
'warp',
'flow'
'flow',
] as const;
export type ValueMode = typeof VALUE_MODES[number];
export type ValueMode = (typeof VALUE_MODES)[number];
// Default Values
export const DEFAULTS = {
@ -49,4 +49,4 @@ export const DEFAULTS = {
VALUE_MODE: 'integer' as ValueMode,
UI_OPACITY: 0.3,
SHADER_CODE: 'x^y',
} as const;
} as const;