//-------------------------------------------------------- // [Author]: 第二世界 // [ Date ]: Tuesday, December 12, 2017 //-------------------------------------------------------- using UnityEngine; using System.Collections; using UnityEngine.UI; namespace vnxbqy.UI { //任务面板(主线任务标题) public class TaskTitleBtton:MonoBehaviour { [SerializeField] Button m_TitleBtton; public Button TitleBtton { get { return m_TitleBtton; } set { m_TitleBtton = value; } } [SerializeField] Text m_TitleName; public Text TitleName { get { return m_TitleName; } set { m_TitleName = value; } } [SerializeField] GameObject m_PitchOnImage; public GameObject PitchOnImage { get { return m_PitchOnImage; } set { m_PitchOnImage = value; } } } }