mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 12:33:12 +00:00
BFRES : Add vertex color menus to FSHP
This commit is contained in:
parent
8dac30200a
commit
cf752a265d
1 changed files with 5 additions and 0 deletions
|
@ -195,6 +195,11 @@ namespace Bfres.Structs
|
|||
normalsMenu.DropDownItems.Add(new ToolStripMenuItem("Invert", null, InvertNormals));
|
||||
normalsMenu.DropDownItems.Add(new ToolStripMenuItem("Recalculate", null, RecalculateNormals));
|
||||
Items.Add(normalsMenu);
|
||||
|
||||
ToolStripMenuItem colorMenu = new ToolStripMenuItem("Colors");
|
||||
colorMenu.DropDownItems.Add(new ToolStripMenuItem("Set Color", null, SetVertexColorDialog));
|
||||
colorMenu.DropDownItems.Add(new ToolStripMenuItem("Set As White", null, SetVertexColorWhite));
|
||||
Items.Add(colorMenu);
|
||||
|
||||
Items.Add(new ToolStripMenuItem("Recalulate Tangents/Bitangents", null, CalcTansBitans, Keys.Control | Keys.T));
|
||||
Items.Add(new ToolStripMenuItem("Fill Tangent Space with constant", null, FillTangentsAction, Keys.Control | Keys.W));
|
||||
|
|
Loading…
Reference in a new issue