MaxScript 在结构中定义变量

MaxScript defining variables in struct

如何在结构中定义变量?

例如:

struct test (
     variable = 123
)

如果我这样做:

 test.variable

它不会找到它。我该怎么做才能访问结构中变量的值?

我刚弄明白:

v = test()
v.variable

应该可以。