标签: 3dsmax maxscript
如何在结构中定义变量?
例如:
struct test ( variable = 123 )
如果我这样做:
test.variable
它找不到它。我怎样才能这样做,以便我可以访问struct中变量的值?
答案 0 :(得分:1)
我刚想通了:
v = test() v.variable
这应该有效。