blender/release/scripts/io/netrender
Campbell Barton e4881eef52 define operator properties in the class, similar to django fields
# Before
[
	bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""),
	bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True),
	bpy.props.BoolProperty(attr="use_normals", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True),
	bpy.props.BoolProperty(attr="use_uvs", name="Export UVs", description="Exort the active UV layer", default= True),
	bpy.props.BoolProperty(attr="use_colors", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True)
]

# After
path = StringProperty(attr="", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "")
use_modifiers = BoolProperty(attr="", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True)
use_normals = BoolProperty(attr="", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True)
use_uvs = BoolProperty(attr="", name="Export UVs", description="Exort the active UV layer", default= True)
use_colors = BoolProperty(attr="", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True)
2009-10-31 16:40:14 +00:00
..
__init__.py - removed 2.4x release/scripts 2009-09-28 03:19:52 +00:00
balancing.py - removed 2.4x release/scripts 2009-09-28 03:19:52 +00:00
client.py change blender python interface for classes not to ise __idname__ rather bl_idname since __somename__ is for pythons internal use. 2009-10-31 13:31:23 +00:00
master_html.py netrender: first draft for process jobs, to be able to run arbitrary commands on slaves. This could be used to bake physics on network or whatnot. 2009-10-01 18:57:22 +00:00
master.py netrender: bugfix by matd on irc. unbound var when broadcast is off 2009-10-08 15:02:01 +00:00
model.py netrender 2009-10-09 01:52:57 +00:00
operators.py define operator properties in the class, similar to django fields 2009-10-31 16:40:14 +00:00
slave.py netrender: first draft for process jobs, to be able to run arbitrary commands on slaves. This could be used to bake physics on network or whatnot. 2009-10-01 18:57:22 +00:00
ui.py change blender python interface for classes not to ise __idname__ rather bl_idname since __somename__ is for pythons internal use. 2009-10-31 13:31:23 +00:00
utils.py netrender 2009-10-09 01:52:57 +00:00