16 lines
377 B
C#
16 lines
377 B
C#
using MotionFramework;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace ToolsPack
|
|
{
|
|
public class ToolsPackWindowItemBtComponent : MonoBehaviour
|
|
{
|
|
[SerializeField] private RawImage ico;
|
|
|
|
public void Init(string gName)
|
|
{
|
|
ico.texture = MotionEngine.GetModule<ToolsPackManager>().GetToolsPackWindowBtImage(gName);
|
|
}
|
|
}
|
|
} |