Show Json Asset Type on ToolStrip of Json Asset Window.

This commit is contained in:
Chandler Cox
2023-08-26 16:10:59 -05:00
parent 50c85aec6d
commit 514bc00310

View File

@@ -136,6 +136,17 @@ namespace FlaxEditor.Windows.Assets
}
}
_presenter.Select(_object);
var typeText = new Label
{
Text = $"Type: {Asset.DataTypeName}",
AnchorPreset = AnchorPresets.TopRight,
AutoWidth = true,
Parent = this,
};
typeText.LocalX += -(typeText.Width + 4);
typeText.LocalY += (_toolstrip.Height - typeText.Height) * 0.5f;
_undo.Clear();
ClearEditedFlag();