Skip to content

Commit

Permalink
Update Id and description of the action item (#978)
Browse files Browse the repository at this point in the history
  • Loading branch information
pandaGaume authored Jun 24, 2021
1 parent cbbd020 commit f1b2355
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 31 deletions.
7 changes: 2 additions & 5 deletions 3ds Max/Max2Babylon/BabylonAnimationActionItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ private void Cleanup()
}
}

public override int Id_
{
get { return 2; }
}
public override int Id_ => 3;

public override string ButtonText
{
Expand All @@ -76,7 +73,7 @@ public override string MenuText

public override string DescriptionText
{
get { return "UI to manage babylon animation groups for this scene"; }
get { return "Babylon - manage animation groups for this scene"; }
}

public override string CategoryText
Expand Down
7 changes: 2 additions & 5 deletions 3ds Max/Max2Babylon/BabylonExportActionItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ public void Close()
form = null;
}

public override int Id_
{
get { return 1; }
}
public override int Id_ => 1;

public override string ButtonText
{
Expand All @@ -56,7 +53,7 @@ public override string MenuText

public override string DescriptionText
{
get { return "Generate a babylon.js scene file2"; }
get { return "Babylon - Generate a babylon.js scene file2"; }
}

public override string CategoryText
Expand Down
8 changes: 2 additions & 6 deletions 3ds Max/Max2Babylon/BabylonLoadAnimations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ public void Close()
return;
}

public override int Id_
{
get { return 1; }
}

public override int Id_ => 5;
public override string ButtonText
{
get { return "Babylon Load AnimationGroups"; }
Expand All @@ -59,7 +55,7 @@ public override string MenuText

public override string DescriptionText
{
get { return "Load AnimationGroups from Scnene or selected Containers"; }
get { return "Babylon - Load AnimationGroups from Scnene or selected Containers"; }
}

public override string CategoryText
Expand Down
7 changes: 2 additions & 5 deletions 3ds Max/Max2Babylon/BabylonPropertiesActionItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ public override bool ExecuteAction()

}

public override int Id_
{
get { return 1; }
}
public override int Id_ => 2;

public override string ButtonText
{
Expand All @@ -65,7 +62,7 @@ public override string MenuText

public override string DescriptionText
{
get { return "UI for setting Babylon.js specific properties"; }
get { return "Babylon - setting specific properties"; }
}

public override string CategoryText
Expand Down
7 changes: 2 additions & 5 deletions 3ds Max/Max2Babylon/BabylonSkipFlatten.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ public void Close()
return;
}

public override int Id_
{
get { return 1; }
}
public override int Id_ => 6;

public override string ButtonText
{
Expand Down Expand Up @@ -53,7 +50,7 @@ public override string MenuText

public override string DescriptionText
{
get { return "Toggle skip flatten status"; }
get { return "Babylon - Toggle skip flatten status"; }
}

public override string CategoryText
Expand Down
7 changes: 2 additions & 5 deletions 3ds Max/Max2Babylon/BabylonStoreAnimations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ public void Close()
return;
}

public override int Id_
{
get { return 1; }
}
public override int Id_ => 4;

public override string ButtonText
{
Expand All @@ -61,7 +58,7 @@ public override string MenuText

public override string DescriptionText
{
get { return "Copy AnimationGroups into a BabylonAnimationHelper or a BabylonContainerHelper"; }
get { return "Babylon - Copy AnimationGroups into a BabylonAnimationHelper or a BabylonContainerHelper"; }
}

public override string CategoryText
Expand Down

0 comments on commit f1b2355

Please sign in to comment.