unity button中内置了一些按钮的交互效果如图1,可以满足基本的一些交互需求。但是今天我们的美术同学给我出了个难题,button是由一个通用的背景和另一个图片组成的,这样Button的组件就不能满足按压交互的动画效果。为了满足需求,翻看了下UGUI源码,看了下交互事件的触发时机,有了下面的脚本。
图1
MulSelectableButton
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
public class MulSelectableButton : Button {
public List<TransitionSelectable> selectableList = new List<TransitionSelectable>();
// Use this for initialization
protected override void DoStateTransition(SelectionState state, bool instant)
{
base.DoStateTransition(state, instant);
foreach (var selectable in selectableList)
{
selectable.TransitionState((int)state, instant);
}
}
}
MulSelect