Menu Icon Replacer
This commit is contained in:
parent
b774208e32
commit
2f770cf724
13 changed files with 301 additions and 0 deletions
19
MenuIconReplacer/Runtime/MenuIconReplacerConfig.cs
Normal file
19
MenuIconReplacer/Runtime/MenuIconReplacerConfig.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace gay.lilyy.MenuIconReplacer
|
||||
{
|
||||
[System.Serializable]
|
||||
public class TextureReplacement
|
||||
{
|
||||
public Texture2D from;
|
||||
public Texture2D to;
|
||||
}
|
||||
|
||||
public class MenuIconReplacerConfig : MonoBehaviour, VRC.SDKBase.IEditorOnly
|
||||
{
|
||||
[HideInInspector]
|
||||
public List<TextureReplacement> replacements = new List<TextureReplacement>();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue