public Material mat1; //[SerializeField] Material mat1; void Start() { //修改物件節點的:透明度 Color c1 = mat1.color; c1.a = 0; //0~255 mat1.color = c1; }