Skip to content

Commit

Permalink
Show hex boneindex when right clicking a bone in model viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed Jan 5, 2025
1 parent 56cbfe8 commit 218e3f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ private void lstBones_MouseDown(object sender, MouseEventArgs e)
{
ContextMenuStrip = ctxBones;
nameToolStripMenuItem.Text = SelectedBone.Name;
boneIndex.Text = "Bone Index: " + SelectedBone.BoneIndex;
boneIndex.Text = $"Bone Index: {SelectedBone.BoneIndex} (0x{SelectedBone.BoneIndex:X})";
}
else
{
Expand Down

0 comments on commit 218e3f6

Please sign in to comment.