can somone explain what happen witht he space info module
in latest built ?
get error now for this in 672 version !
ef register():
bpy.utils.register_module(name)
Add “Parabola add” menu to the “Add Mesh” menu
space_info.INFO_MT_mesh_add.append(menu_func)
bpy.types.INFO_MT_mesh_add.append(menu_func)
def unregister():
bpy.utils.unregister_module(name)
Remove “Parabola add” menu from the “Add Mesh” menu.
space_info.INFO_MT_mesh_add.remove(menu_func)
bpy.types.INFO_MT_mesh_add.remove(menu_func)
if name == “main”:
register()
thanks