summaryrefslogtreecommitdiff
path: root/Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs
blob: 18b0d80a8ca18443a8b56b67b0ddeb78bc790b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;

public class UI04_MaterialModifierTest : UIBehaviour, IMaterialModifier
{
    public Material GetModifiedMaterial(Material baseMaterial)
    {

        return baseMaterial;
    }
}