一、c#脚本
using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class Bling : MonoBehaviour
{public Texture img;public float speed;public static bool changeWhite false;private float alpha0f;// Start is called before the fi…
1、容器提供的类型 2、Array
Array大小固定,只允许替换元素的值,不能增加或者移除元素改变大小。Array是一种有序集合,支持随机访问。
std::array<int, 4> x; //elements of x have undefined value
std::array<int, 5> x {…