update:清理误提交构建产物并更新range适配
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from "svelte";
|
||||
import * as THREE from "three";
|
||||
import { DEFAULT_PRESSURE_RANGE_MAX, DEFAULT_PRESSURE_RANGE_MIN } from "$lib/config/pressure-range";
|
||||
import { pressureColorPalettes } from "$lib/config/color-map";
|
||||
import type { LocaleCode, PressureColorMapPreset } from "$lib/types/hud";
|
||||
|
||||
@@ -44,8 +45,8 @@
|
||||
export let pressureMatrix: number[] | null = null;
|
||||
export let matrixRows = 12;
|
||||
export let matrixCols = 7;
|
||||
export let rangeMin = 0;
|
||||
export let rangeMax = 16000;
|
||||
export let rangeMin = DEFAULT_PRESSURE_RANGE_MIN;
|
||||
export let rangeMax = DEFAULT_PRESSURE_RANGE_MAX;
|
||||
export let colorMapPreset: PressureColorMapPreset = "emerald";
|
||||
|
||||
const FIELD_HALF_W = 46;
|
||||
|
||||
Reference in New Issue
Block a user