抽象uiactive接口
This commit is contained in:
@@ -6,10 +6,11 @@ using Sirenix.OdinInspector;
|
||||
using UnityEngine;
|
||||
using UnityEngine.EventSystems;
|
||||
using UnityEngine.UI;
|
||||
using XericUI.Form;
|
||||
|
||||
namespace XericUI.Core.Base
|
||||
{
|
||||
public class XericUIBehaviour : UIBehaviour
|
||||
public class XericUIBehaviour : UIBehaviour, IActivity
|
||||
{
|
||||
#if ODIN_INSPECTOR
|
||||
[InfoBox("脚本必填属性存在空引用!请检查开放属性后再试", InfoMessageType.Error, VisibleIf = "PublicFieldNullReference")]
|
||||
@@ -272,23 +273,9 @@ namespace XericUI.Core.Base
|
||||
|
||||
#region 显影
|
||||
|
||||
public virtual void Show()
|
||||
{
|
||||
gameObject.SetActive(true);
|
||||
}
|
||||
public virtual void Show() => gameObject.SetActive(true);
|
||||
|
||||
public void Show(bool isShow)
|
||||
{
|
||||
if (isShow)
|
||||
Show();
|
||||
else
|
||||
Hide();
|
||||
}
|
||||
|
||||
public virtual void Hide()
|
||||
{
|
||||
gameObject.SetActive(false);
|
||||
}
|
||||
public virtual void Hide() => gameObject.SetActive(false);
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d16f5d84c8b723f4086a57342d265178
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2de2d1d1185283640a226edd18b116cf
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,21 @@
|
||||
namespace XericUI.Form
|
||||
{
|
||||
public interface IActivity
|
||||
{
|
||||
public void Show();
|
||||
public void Hide();
|
||||
}
|
||||
|
||||
public static class ActivedExtend
|
||||
{
|
||||
public static bool Show(this IActivity target, bool isShow)
|
||||
{
|
||||
if (target == null) return isShow;
|
||||
if (isShow)
|
||||
target.Show();
|
||||
else
|
||||
target.Hide();
|
||||
return isShow;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d731fec7098a95c4f85907e275e211a6
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user