no message

This commit is contained in:
hawk86104 2024-12-27 16:04:31 +08:00
parent c8e8d9b792
commit 62bd1aed14

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2024-06-06 15:51:13
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-12-24 16:58:26
* @LastEditTime: 2024-12-27 16:03:32
-->
<template>
<TresCanvas clearColor="#201919" window-size antialias alpha logarithmicDepthBuffer>
@ -41,6 +41,7 @@ const configState = reactive({
color: '#ff0000',
scale: 1.8,
height: 2.4,
speed: 1,
})
const paneControl = new Pane()
@ -57,4 +58,10 @@ paneControl.addBinding(configState, 'height', {
max: 3.0,
step: 0.1,
})
paneControl.addBinding(configState, 'speed', {
label: '速度',
min: -5.0,
max: 5.0,
step: 0.1,
})
</script>