blender/release/scripts
Campbell Barton e61c90e416 operators were copying the properties from the rna operator into the class instance.
however this meant the invoke function could not modify properties for exec to use (unless it called exec directly after)
since the popup for eg would re-instance the python class each time.

now use the operator properties directly through rna without an automatic copy.

now an operator attribute is accessed like this...
self.path --> self.properties.path
2009-11-19 17:12:08 +00:00
..
io operators were copying the properties from the rna operator into the class instance. 2009-11-19 17:12:08 +00:00
modules operators were copying the properties from the rna operator into the class instance. 2009-11-19 17:12:08 +00:00
op operators were copying the properties from the rna operator into the class instance. 2009-11-19 17:12:08 +00:00
templates operators were copying the properties from the rna operator into the class instance. 2009-11-19 17:12:08 +00:00
ui operators were copying the properties from the rna operator into the class instance. 2009-11-19 17:12:08 +00:00