Skip to content

Commit 9d4745e

Browse files
committed
Updated about page
1 parent ea9db3b commit 9d4745e

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

src/exporters/animationExporter.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ async function createMCFile(
889889
case 'leaf':
890890
const rot = getRot(boneName, item)
891891
return `execute if score .this ${scoreboards.frame} matches ${item.index} run data modify entity @s Pose.Head set value [${rot.x}f,${rot.y}f,${rot.z}f]`
892-
}
892+
}
893893
}
894894

895895
boneTrees[boneName].root = animationTree.items
@@ -1449,6 +1449,9 @@ const Exporter = (AJ: any) => {
14491449
default: 'aj.%projectName',
14501450
onUpdate: validateFormattedStringSetting(['%projectName']),
14511451
isResetable: true,
1452+
groupName:
1453+
'animatedJava.exporters.generic.settingGroups.entityTags.title',
1454+
group: 'entityTags',
14521455
},
14531456
rootTag: {
14541457
title: tl(
@@ -1461,6 +1464,7 @@ const Exporter = (AJ: any) => {
14611464
default: 'aj.%projectName.root',
14621465
onUpdate: validateFormattedStringSetting(['%projectName']),
14631466
isResetable: true,
1467+
group: 'entityTags',
14641468
},
14651469
allBonesTag: {
14661470
title: tl(
@@ -1473,6 +1477,7 @@ const Exporter = (AJ: any) => {
14731477
default: 'aj.%projectName.bone',
14741478
onUpdate: validateFormattedStringSetting(['%projectName']),
14751479
isResetable: true,
1480+
group: 'entityTags',
14761481
},
14771482
boneModelDisplayTag: {
14781483
title: tl(
@@ -1485,6 +1490,7 @@ const Exporter = (AJ: any) => {
14851490
default: 'aj.%projectName.bone_display',
14861491
onUpdate: validateFormattedStringSetting(['%projectName']),
14871492
isResetable: true,
1493+
group: 'entityTags',
14881494
},
14891495
individualBoneTag: {
14901496
title: tl(
@@ -1500,6 +1506,7 @@ const Exporter = (AJ: any) => {
15001506
'%boneName',
15011507
]),
15021508
isResetable: true,
1509+
group: 'entityTags',
15031510
},
15041511
internalScoreboardObjective: {
15051512
title: tl(
@@ -1517,6 +1524,9 @@ const Exporter = (AJ: any) => {
15171524
}
15181525
return d
15191526
},
1527+
groupName:
1528+
'animatedJava.exporters.generic.settingGroups.scoreboardObjectives.title',
1529+
group: 'scoreboardObjectives',
15201530
},
15211531
idScoreboardObjective: {
15221532
title: tl(
@@ -1528,6 +1538,7 @@ const Exporter = (AJ: any) => {
15281538
type: 'text',
15291539
default: 'aj.id',
15301540
onUpdate: validateFormattedStringSetting([]),
1541+
group: 'scoreboardObjectives',
15311542
},
15321543
frameScoreboardObjective: {
15331544
title: tl(
@@ -1539,6 +1550,7 @@ const Exporter = (AJ: any) => {
15391550
type: 'text',
15401551
default: 'aj.frame',
15411552
onUpdate: validateFormattedStringSetting([]),
1553+
group: 'scoreboardObjectives',
15421554
},
15431555
animatingFlagScoreboardObjective: {
15441556
title: tl(
@@ -1550,6 +1562,7 @@ const Exporter = (AJ: any) => {
15501562
type: 'text',
15511563
default: 'aj.%projectName.animating',
15521564
onUpdate: validateFormattedStringSetting(['%projectName']),
1565+
group: 'scoreboardObjectives',
15531566
},
15541567
animationLoopModeScoreboardObjective: {
15551568
title: tl(
@@ -1564,6 +1577,7 @@ const Exporter = (AJ: any) => {
15641577
'%projectName',
15651578
'%animationName',
15661579
]),
1580+
group: 'scoreboardObjectives',
15671581
},
15681582
exportMode: {
15691583
title: tl(

src/lang/en.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,13 @@ animatedJava:
279279
body:
280280
- You must define a data pack path in settings before you can export.
281281

282+
settingGroups:
283+
entityTags:
284+
title: Entity Tags
285+
286+
scoreboardObjectives:
287+
title: Scoreboard Objectives
288+
282289
settings:
283290
rootEntityType:
284291
title: Root Entity Type

src/ui/dialogs/about.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ const people = [
176176
},
177177
{ roles: [Reasons.BetaTester], name: 'destruc7i0n' },
178178
{ roles: [Reasons.PatreonT3], name: 'DoubleFelix', active: true },
179+
{ roles: [Reasons.PatreonT2], name: '__SK__', active: true },
179180
{ roles: [Reasons.BetaTester], name: 'Eriol_Eandur' },
180181
{ roles: [Reasons.BetaTester], name: 'gibbs' },
181182
{ roles: [Reasons.BetaTester], name: 'JayPeaSize' },

src/ui/dialogs/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ function DropDown({ children, onClick, visible, name, intl }) {
585585
onClick={onClick}
586586
style={{
587587
display: 'flex',
588-
alignItems: 'center',
588+
alignItems: 'center'
589589
}}
590590
>
591591
<i className="material-icons">

0 commit comments

Comments
 (0)