是否可以使用Maya Mel 脚本语言创建Switch
在条件中使用变量的语句?case
类似的东西(为了解释的愚蠢示例):
$val1 = "foo";
$val2 = "bar";
// imagine $input as an argument of some proc
switch ($input)
{
case $val1:
print "Input is 'foo'";
break;
case $val2:
print "Input is 'bar'";
break;
}
Ps 我试过了,它没有用,但你可能知道另一种选择。
非常感谢