c++学习(1) 1.const C VS C++: 在c语言中const是一个只读变量(ReadOnly Varible),在c++中const只是代表常量(Constant). 例: const int n=10: int arry[10]//OK in c++ error in c. 2.指针的两个属性: (1).指针本身: (2).指针所指向的数据: 3.常量指针和指针常量: (1).常量指针(Point to constant or constant point): 概念:指向常量的指…
目前找到的解决方案是用代码加Event: using System.Collections; using System.Collections.Generic; using UnityEngine; public class NewBehaviourScript : MonoBehaviour { public bool b = false; public bool b1 = true; public AnimationEvent mEvent; // Use this for initiali…