maxscript 条件判定bug
Posted trykle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maxscript 条件判定bug相关的知识,希望对你有一定的参考价值。
fn test =
(
return true
)
fn run =
(
if try (test()) catch(true) == false then print "aaa1" else print "bbb1"
--需要用变量接收才能得到正确判定?
res = try (test()) catch(true)
if res == false then print "aaa2" else print "bbb2"
ok
)
run()
以上是关于maxscript 条件判定bug的主要内容,如果未能解决你的问题,请参考以下文章