26 lines
490 B
C#
26 lines
490 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 묏야꼼죕샘잚
|
|
/// </summary>
|
|
public class Tool_Base : PermanentTriggerBase
|
|
{
|
|
/// <summary>
|
|
/// 묏야잚謹
|
|
/// </summary>
|
|
public ToolType toolType;
|
|
|
|
protected override void OnMEnter()
|
|
{
|
|
base.OnMEnter();
|
|
_highlight.highlighted = true;
|
|
}
|
|
protected override void OnMExit()
|
|
{
|
|
base.OnMExit();
|
|
_highlight.highlighted = false;
|
|
}
|
|
}
|