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

View File

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