📅  最后修改于: 2022-03-11 14:49:03.490000             🧑  作者: Mango
代码示例1
// The AND Symbol in Unity is &&
// if a is greater than b AND b is greater than c than
if(a > b && b > c)
{
// Do something
}