MaxScript在struct中定义变量

时间:2016-04-07 19:53:38

标签: 3dsmax maxscript

如何在结构中定义变量?

例如:

struct test (
     variable = 123
)

如果我这样做:

 test.variable

它找不到它。我怎样才能这样做,以便我可以访问struct中变量的值?

1 个答案:

答案 0 :(得分:1)

我刚想通了:

v = test()
v.variable

这应该有效。