This commit is contained in:
X1627315083
2025-08-26 10:21:11 +08:00
parent b6b554424b
commit 34541aa8c0
2 changed files with 7 additions and 7 deletions

View File

@@ -205,7 +205,7 @@ export class LongfurBrush extends BaseBrush {
max: 100, max: 100,
step: 1, step: 1,
description: this.t('Canvas.FurLengthDescription'), description: this.t('Canvas.FurLengthDescription'),
category: this.t('Canvas.LongfurSettings'), category: this.t('Canvas.FurSettings'),
order: 100, order: 100,
}, },
{ {
@@ -217,7 +217,7 @@ export class LongfurBrush extends BaseBrush {
max: 1, max: 1,
step: 0.05, step: 0.05,
description: this.t('Canvas.FurDensityDescription'), description: this.t('Canvas.FurDensityDescription'),
category: this.t('Canvas.LongfurSettings'), category: this.t('Canvas.FurSettings'),
order: 110, order: 110,
}, },
{ {
@@ -229,7 +229,7 @@ export class LongfurBrush extends BaseBrush {
max: 1, max: 1,
step: 0.05, step: 0.05,
description: this.t('Canvas.FlowCoefficientDescription'), description: this.t('Canvas.FlowCoefficientDescription'),
category: this.t('Canvas.LongfurSettings'), category: this.t('Canvas.FurSettings'),
order: 120, order: 120,
}, },
{ {
@@ -241,7 +241,7 @@ export class LongfurBrush extends BaseBrush {
max: 1, max: 1,
step: 0.05, step: 0.05,
description: this.t('Canvas.furCurvatureDescription'), description: this.t('Canvas.furCurvatureDescription'),
category: this.t('Canvas.LongfurSettings'), category: this.t('Canvas.FurSettings'),
order: 130, order: 130,
}, },
{ {
@@ -250,7 +250,7 @@ export class LongfurBrush extends BaseBrush {
type: "checkbox", type: "checkbox",
defaultValue: this.randomizeDirection, defaultValue: this.randomizeDirection,
description: this.t('Canvas.randomizeDirectionDescription'), description: this.t('Canvas.randomizeDirectionDescription'),
category: this.t('Canvas.LongfurSettings'), category: this.t('Canvas.FurSettings'),
order: 140, order: 140,
}, },
]; ];

View File

@@ -291,7 +291,7 @@ export class ShadedBrush extends BaseBrush {
}, },
{ {
id: "blendMode", id: "blendMode",
name: this.t('Canvas.ShadedBlendMode'), name: this.t('Canvas.ShadedMixedModel'),
type: "select", type: "select",
defaultValue: this.blendMode, defaultValue: this.blendMode,
options: [ options: [
@@ -308,7 +308,7 @@ export class ShadedBrush extends BaseBrush {
{ value: "difference", label: this.t('Canvas.ShadedMixedModelDifference') }, { value: "difference", label: this.t('Canvas.ShadedMixedModelDifference') },
{ value: "exclusion", label: this.t('Canvas.ShadedMixedModelExclusion') }, { value: "exclusion", label: this.t('Canvas.ShadedMixedModelExclusion') },
], ],
description: this.t('Canvas.ShadedBlendModeDescription'), description: this.t('Canvas.ShadedMixedModelDescription'),
category: this.t('Canvas.ShadedSettings'), category: this.t('Canvas.ShadedSettings'),
order: 140, order: 140,
}, },