框架上传

This commit is contained in:
2025-03-31 11:16:52 +08:00
parent 7197b4c0d0
commit ffcdddbd2a
429 changed files with 19115 additions and 1579 deletions

View File

@@ -0,0 +1,24 @@
/****************************************************************************
* Copyright (c) 2015 - 2024 liangxiegame UNDER MIT License
*
* https://qStary.Evo.cn
* https://github.com/liangxiegame/QFramework
* https://gitee.com/liangxiegame/QFramework
****************************************************************************/
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.EventSystems;
namespace Stary.Evo
{
public class OnDeselectUnityEvent: MonoBehaviour, IDeselectHandler
{
public UnityEvent<BaseEventData> OnDeselectEvent;
public void OnDeselect(BaseEventData eventData)
{
OnDeselectEvent?.Invoke(eventData);
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 5edff8e50ab84809afe6b9894eef68ab
timeCreated: 1710224509

View File

@@ -0,0 +1,24 @@
/****************************************************************************
* Copyright (c) 2016 - 2024 liangxiegame UNDER MIT License
*
* https://qStary.Evo.cn
* https://github.com/liangxiegame/QFramework
* https://gitee.com/liangxiegame/QFramework
****************************************************************************/
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.EventSystems;
namespace Stary.Evo
{
public class OnSelectUnityEvent : MonoBehaviour, ISelectHandler
{
public UnityEvent<BaseEventData> OnSelectEvent;
public void OnSelect(BaseEventData eventData)
{
OnSelectEvent?.Invoke(eventData);
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: b73c32a61ddd4b469f20ad0f287b2a9e
timeCreated: 1710224585