Skip to content

Commit

Permalink
🔖 v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
riku1227 committed Jul 26, 2021
1 parent 2e52336 commit ec43e3f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Editor/RiClothesSetuper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@

namespace RiClothes {
public class RiClothesSetuper: MonoBehaviour {
static string SETUPER_VERSION = "v2.1.0";
[MenuItem("RiClothes/Setuper")]
static void Setup() {
EditorWindow.GetWindow<Setuper> (true, "RiClothes Setuper");
EditorWindow.GetWindow<Setuper> (true, "RiClothes Setuper " + SETUPER_VERSION);
}

[MenuItem("RiClothes/DiffTextureGenerator")]
static void DiffTextureGenerator() {
EditorWindow.GetWindow<DiffTexGenerator> (true, "Diff Texture Generator");
EditorWindow.GetWindow<DiffTexGenerator> (true, "Diff Texture Generator " + SETUPER_VERSION);
}

[MenuItem("RiClothes/Cloth UnInstaller")]
static void ClothUnInstaller() {
EditorWindow.GetWindow<ClothUnInstallerWindow> (true, "RiClothes Cloth Uninstaller");
EditorWindow.GetWindow<ClothUnInstallerWindow> (true, "RiClothes Cloth Uninstaller " + SETUPER_VERSION);
}
}
}

0 comments on commit ec43e3f

Please sign in to comment.