朴素冬日

文章
5
资源
0
加入时间
2年11月11天

Unity响应鼠标进出事件

1. 如果是UI界面需要响应鼠标进出事件,因为是通过EventSystem实现的,则需using UnityEngine.EventSystems;实现IPointerEnterHandler, IPointerExitHandler接口在void IPointerEnterHandler.OnPointerEnter(PointerEventData eventData) ...

C++统计数字个数并求和

void 统计数字个数并求和(){//缘由https://ask.csdn.net/questions/912419 int i = 0, j = 0, n = 0, m[10] = { 0 }; char s[100]; string shuchu = "", hecheng = ""; cin >> n; while (n--) { cin >&gt...