switch (other.gameObject.tag) {
case "Electron":
elec = true;
pyst = other;
break;
case "Proton":
prot = true;
pyst = other;
break;
}
看起来很简单,但找不到答案。代码在c#中,所以pyst = other;线路实施以及elec = true;?
答案 0 :(得分:0)
是
当代码进入案例块时,它将继续执行所有命令,直到它到达break
或说return
语句。
在其他一些语言中,如果省略休息,它将继续执行其余的命令(这会导致“控件不能从一个案例标签中掉落”C#中的错误)