1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-24 19:44:05 +02:00
This commit is contained in:
syuilo
2026-03-26 19:13:45 +09:00
parent 58ec8af8cd
commit 4965429069
5 changed files with 30 additions and 4 deletions

View File

@@ -13,20 +13,20 @@ export const blind = defineObject({
options: {
schema: {
blades: {
type: 'number',
type: 'range',
label: 'Number of blades',
min: 1,
max: 100,
},
angle: {
type: 'number',
type: 'range',
label: 'Blade rotation angle (radian)',
min: -Math.PI / 2,
max: Math.PI / 2,
step: 0.01,
},
open: {
type: 'number',
type: 'range',
label: 'Opening state',
min: 0,
max: 1,