Skip to content

Commit f1b2355

Browse files
authored
Update Id and description of the action item (#978)
1 parent cbbd020 commit f1b2355

File tree

6 files changed

+12
-31
lines changed

6 files changed

+12
-31
lines changed

3ds Max/Max2Babylon/BabylonAnimationActionItem.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ private void Cleanup()
5959
}
6060
}
6161

62-
public override int Id_
63-
{
64-
get { return 2; }
65-
}
62+
public override int Id_ => 3;
6663

6764
public override string ButtonText
6865
{
@@ -76,7 +73,7 @@ public override string MenuText
7673

7774
public override string DescriptionText
7875
{
79-
get { return "UI to manage babylon animation groups for this scene"; }
76+
get { return "Babylon - manage animation groups for this scene"; }
8077
}
8178

8279
public override string CategoryText

3ds Max/Max2Babylon/BabylonExportActionItem.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,7 @@ public void Close()
3939
form = null;
4040
}
4141

42-
public override int Id_
43-
{
44-
get { return 1; }
45-
}
42+
public override int Id_ => 1;
4643

4744
public override string ButtonText
4845
{
@@ -56,7 +53,7 @@ public override string MenuText
5653

5754
public override string DescriptionText
5855
{
59-
get { return "Generate a babylon.js scene file2"; }
56+
get { return "Babylon - Generate a babylon.js scene file2"; }
6057
}
6158

6259
public override string CategoryText

3ds Max/Max2Babylon/BabylonLoadAnimations.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ public void Close()
3131
return;
3232
}
3333

34-
public override int Id_
35-
{
36-
get { return 1; }
37-
}
38-
34+
public override int Id_ => 5;
3935
public override string ButtonText
4036
{
4137
get { return "Babylon Load AnimationGroups"; }
@@ -59,7 +55,7 @@ public override string MenuText
5955

6056
public override string DescriptionText
6157
{
62-
get { return "Load AnimationGroups from Scnene or selected Containers"; }
58+
get { return "Babylon - Load AnimationGroups from Scnene or selected Containers"; }
6359
}
6460

6561
public override string CategoryText

3ds Max/Max2Babylon/BabylonPropertiesActionItem.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,7 @@ public override bool ExecuteAction()
4848

4949
}
5050

51-
public override int Id_
52-
{
53-
get { return 1; }
54-
}
51+
public override int Id_ => 2;
5552

5653
public override string ButtonText
5754
{
@@ -65,7 +62,7 @@ public override string MenuText
6562

6663
public override string DescriptionText
6764
{
68-
get { return "UI for setting Babylon.js specific properties"; }
65+
get { return "Babylon - setting specific properties"; }
6966
}
7067

7168
public override string CategoryText

3ds Max/Max2Babylon/BabylonSkipFlatten.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ public void Close()
2222
return;
2323
}
2424

25-
public override int Id_
26-
{
27-
get { return 1; }
28-
}
25+
public override int Id_ => 6;
2926

3027
public override string ButtonText
3128
{
@@ -53,7 +50,7 @@ public override string MenuText
5350

5451
public override string DescriptionText
5552
{
56-
get { return "Toggle skip flatten status"; }
53+
get { return "Babylon - Toggle skip flatten status"; }
5754
}
5855

5956
public override string CategoryText

3ds Max/Max2Babylon/BabylonStoreAnimations.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ public void Close()
3333
return;
3434
}
3535

36-
public override int Id_
37-
{
38-
get { return 1; }
39-
}
36+
public override int Id_ => 4;
4037

4138
public override string ButtonText
4239
{
@@ -61,7 +58,7 @@ public override string MenuText
6158

6259
public override string DescriptionText
6360
{
64-
get { return "Copy AnimationGroups into a BabylonAnimationHelper or a BabylonContainerHelper"; }
61+
get { return "Babylon - Copy AnimationGroups into a BabylonAnimationHelper or a BabylonContainerHelper"; }
6562
}
6663

6764
public override string CategoryText

0 commit comments

Comments
 (0)