Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 12.60 KB | None | 0 0
  1. >>> bpy.ops.object.mode_set(mode = "OBJECT")
  2. Traceback (most recent call last):
  3.   File "<blender_console>", line 1, in <module>
  4.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  5.     ret = op_call(self.idname_py(), None, kw)
  6. RuntimeError: Operator bpy.ops.object.mode_set.poll() failed, context is incorrect
  7.  
  8. >>> bpy.context.object.data.materials.append(timberwolf_body)
  9. Traceback (most recent call last):
  10.   File "<blender_console>", line 1, in <module>
  11. AttributeError: 'NoneType' object has no attribute 'data'
  12.  
  13. >>> bpy.ops.import_scene.obj(filepath="F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx2_bh1.obj",use_groups_as_vgroups=True,split_mode='OFF')
  14.  
  15. importing obj 'F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx2_bh1.obj'
  16. Error: Traceback (most recent call last):
  17.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\__init__.py", line 171, in execute
  18.     return import_obj.load(self, context, **keywords)
  19.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 859, in load
  20.     float_func = get_float_func(filepath)
  21.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 806, in get_float_func
  22.     file = open(filepath, 'rb')
  23. FileNotFoundError: [Errno 2] No such file or directory: 'F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx2_bh1.obj'
  24.  
  25. location: F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py:188
  26.  
  27. Traceback (most recent call last):
  28.   File "<blender_console>", line 1, in <module>
  29.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  30.     ret = op_call(self.idname_py(), None, kw)
  31. RuntimeError: Error: Traceback (most recent call last):
  32.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\__init__.py", line 171, in execute
  33.     return import_obj.load(self, context, **keywords)
  34.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 859, in load
  35.     float_func = get_float_func(filepath)
  36.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 806, in get_float_func
  37.     file = open(filepath, 'rb')
  38. FileNotFoundError: [Errno 2] No such file or directory: 'F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx2_bh1.obj'
  39.  
  40. location: F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py:188
  41.  
  42.  
  43.  
  44. >>> bpy.context.scene.objects.active=bpy.data.objects["tbr_right_arm_forearm_lbx2_bh1"]
  45. Traceback (most recent call last):
  46.   File "<blender_console>", line 1, in <module>
  47. KeyError: 'bpy_prop_collection[key]: key "tbr_right_arm_forearm_lbx2_bh1" not found'
  48.  
  49. >>> bpy.context.active_object.rotation_mode="QUATERNION"
  50. Traceback (most recent call last):
  51.   File "<blender_console>", line 1, in <module>
  52. AttributeError: 'NoneType' object has no attribute 'rotation_mode'
  53.  
  54. >>> bpy.context.active_object.rotation_quaternion=[0.499999,-0.499999,-0.500001,0.500001]
  55. Traceback (most recent call last):
  56.   File "<blender_console>", line 1, in <module>
  57. AttributeError: 'NoneType' object has no attribute 'rotation_quaternion'
  58.  
  59. >>> bpy.ops.transform.translate(value=(4.93747,-1.74633,9.36256))
  60. {'CANCELLED'}
  61.  
  62. >>> bpy.context.object.data.materials.clear()
  63. Traceback (most recent call last):
  64.   File "<blender_console>", line 1, in <module>
  65. AttributeError: 'NoneType' object has no attribute 'data'
  66.  
  67. >>> bpy.ops.object.mode_set(mode = "EDIT")
  68. Traceback (most recent call last):
  69.   File "<blender_console>", line 1, in <module>
  70.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  71.     ret = op_call(self.idname_py(), None, kw)
  72. RuntimeError: Operator bpy.ops.object.mode_set.poll() failed, context is incorrect
  73.  
  74. >>> bpy.ops.mesh.remove_doubles()
  75. Traceback (most recent call last):
  76.   File "<blender_console>", line 1, in <module>
  77.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  78.     ret = op_call(self.idname_py(), None, kw)
  79. RuntimeError: Operator bpy.ops.mesh.remove_doubles.poll() failed, context is incorrect
  80.  
  81. >>> bpy.ops.mesh.tris_convert_to_quads()
  82. Traceback (most recent call last):
  83.   File "<blender_console>", line 1, in <module>
  84.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  85.     ret = op_call(self.idname_py(), None, kw)
  86. RuntimeError: Operator bpy.ops.mesh.tris_convert_to_quads.poll() failed, context is incorrect
  87.  
  88. >>> bpy.ops.object.vertex_group_add()
  89. Traceback (most recent call last):
  90.   File "<blender_console>", line 1, in <module>
  91.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  92.     ret = op_call(self.idname_py(), None, kw)
  93. RuntimeError: Operator bpy.ops.object.vertex_group_add.poll() failed, context is incorrect
  94.  
  95. >>> bpy.context.object.vertex_groups.active.name = "Bip01_R_Forearm"
  96. Traceback (most recent call last):
  97.   File "<blender_console>", line 1, in <module>
  98. AttributeError: 'NoneType' object has no attribute 'vertex_groups'
  99.  
  100. >>> bpy.ops.mesh.select_all(action='SELECT')
  101. Traceback (most recent call last):
  102.   File "<blender_console>", line 1, in <module>
  103.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  104.     ret = op_call(self.idname_py(), None, kw)
  105. RuntimeError: Operator bpy.ops.mesh.select_all.poll() failed, context is incorrect
  106.  
  107. >>> bpy.ops.object.vertex_group_assign()
  108. Traceback (most recent call last):
  109.   File "<blender_console>", line 1, in <module>
  110.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  111.     ret = op_call(self.idname_py(), None, kw)
  112. RuntimeError: Operator bpy.ops.object.vertex_group_assign.poll() failed, context is incorrect
  113.  
  114. >>> bpy.ops.mesh.select_all(action='TOGGLE')
  115. Traceback (most recent call last):
  116.   File "<blender_console>", line 1, in <module>
  117.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  118.     ret = op_call(self.idname_py(), None, kw)
  119. RuntimeError: Operator bpy.ops.mesh.select_all.poll() failed, context is incorrect
  120.  
  121. >>> bpy.ops.object.mode_set(mode = "OBJECT")
  122. Traceback (most recent call last):
  123.   File "<blender_console>", line 1, in <module>
  124.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  125.     ret = op_call(self.idname_py(), None, kw)
  126. RuntimeError: Operator bpy.ops.object.mode_set.poll() failed, context is incorrect
  127.  
  128. >>> bpy.context.object.data.materials.append(timberwolf_body)
  129. Traceback (most recent call last):
  130.   File "<blender_console>", line 1, in <module>
  131. AttributeError: 'NoneType' object has no attribute 'data'
  132.  
  133. >>> bpy.ops.import_scene.obj(filepath="F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx5_bh1.obj",use_groups_as_vgroups=True,split_mode='OFF')
  134.  
  135. importing obj 'F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx5_bh1.obj'
  136. Error: Traceback (most recent call last):
  137.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\__init__.py", line 171, in execute
  138.     return import_obj.load(self, context, **keywords)
  139.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 859, in load
  140.     float_func = get_float_func(filepath)
  141.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 806, in get_float_func
  142.     file = open(filepath, 'rb')
  143. FileNotFoundError: [Errno 2] No such file or directory: 'F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx5_bh1.obj'
  144.  
  145. location: F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py:188
  146.  
  147. Traceback (most recent call last):
  148.   File "<blender_console>", line 1, in <module>
  149.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  150.     ret = op_call(self.idname_py(), None, kw)
  151. RuntimeError: Error: Traceback (most recent call last):
  152.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\__init__.py", line 171, in execute
  153.     return import_obj.load(self, context, **keywords)
  154.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 859, in load
  155.     float_func = get_float_func(filepath)
  156.   File "F:\Programme\Blender\2.69\scripts\addons\io_scene_obj\import_obj.py", line 806, in get_float_func
  157.     file = open(filepath, 'rb')
  158. FileNotFoundError: [Errno 2] No such file or directory: 'F:\\Downloads\\mwo_bots\\objects\\mechs\\timberwolf\\body\\tbr_right_arm_forearm_lbx5_bh1.obj'
  159.  
  160. location: F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py:188
  161.  
  162.  
  163.  
  164. >>> bpy.context.scene.objects.active=bpy.data.objects["tbr_right_arm_forearm_lbx5_bh1"]
  165. Traceback (most recent call last):
  166.   File "<blender_console>", line 1, in <module>
  167. KeyError: 'bpy_prop_collection[key]: key "tbr_right_arm_forearm_lbx5_bh1" not found'
  168.  
  169. >>> bpy.context.active_object.rotation_mode="QUATERNION"
  170. Traceback (most recent call last):
  171.   File "<blender_console>", line 1, in <module>
  172. AttributeError: 'NoneType' object has no attribute 'rotation_mode'
  173.  
  174. >>> bpy.context.active_object.rotation_quaternion=[0.499999,-0.499999,-0.500001,0.500001]
  175. Traceback (most recent call last):
  176.   File "<blender_console>", line 1, in <module>
  177. AttributeError: 'NoneType' object has no attribute 'rotation_quaternion'
  178.  
  179. >>> bpy.ops.transform.translate(value=(4.93747,-1.74633,9.36256))
  180. {'CANCELLED'}
  181.  
  182. >>> bpy.context.object.data.materials.clear()
  183. Traceback (most recent call last):
  184.   File "<blender_console>", line 1, in <module>
  185. AttributeError: 'NoneType' object has no attribute 'data'
  186.  
  187. >>> bpy.ops.object.mode_set(mode = "EDIT")
  188. Traceback (most recent call last):
  189.   File "<blender_console>", line 1, in <module>
  190.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  191.     ret = op_call(self.idname_py(), None, kw)
  192. RuntimeError: Operator bpy.ops.object.mode_set.poll() failed, context is incorrect
  193.  
  194. >>> bpy.ops.mesh.remove_doubles()
  195. Traceback (most recent call last):
  196.   File "<blender_console>", line 1, in <module>
  197.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  198.     ret = op_call(self.idname_py(), None, kw)
  199. RuntimeError: Operator bpy.ops.mesh.remove_doubles.poll() failed, context is incorrect
  200.  
  201. >>> bpy.ops.mesh.tris_convert_to_quads()
  202. Traceback (most recent call last):
  203.   File "<blender_console>", line 1, in <module>
  204.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  205.     ret = op_call(self.idname_py(), None, kw)
  206. RuntimeError: Operator bpy.ops.mesh.tris_convert_to_quads.poll() failed, context is incorrect
  207.  
  208. >>> bpy.ops.object.vertex_group_add()
  209. Traceback (most recent call last):
  210.   File "<blender_console>", line 1, in <module>
  211.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  212.     ret = op_call(self.idname_py(), None, kw)
  213. RuntimeError: Operator bpy.ops.object.vertex_group_add.poll() failed, context is incorrect
  214.  
  215. >>> bpy.context.object.vertex_groups.active.name = "Bip01_R_Forearm"
  216. Traceback (most recent call last):
  217.   File "<blender_console>", line 1, in <module>
  218. AttributeError: 'NoneType' object has no attribute 'vertex_groups'
  219.  
  220. >>> bpy.ops.mesh.select_all(action='SELECT')
  221. Traceback (most recent call last):
  222.   File "<blender_console>", line 1, in <module>
  223.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  224.     ret = op_call(self.idname_py(), None, kw)
  225. RuntimeError: Operator bpy.ops.mesh.select_all.poll() failed, context is incorrect
  226.  
  227. >>> bpy.ops.object.vertex_group_assign()
  228. Traceback (most recent call last):
  229.   File "<blender_console>", line 1, in <module>
  230.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  231.     ret = op_call(self.idname_py(), None, kw)
  232. RuntimeError: Operator bpy.ops.object.vertex_group_assign.poll() failed, context is incorrect
  233.  
  234. >>> bpy.ops.mesh.select_all(action='TOGGLE')
  235. Traceback (most recent call last):
  236.   File "<blender_console>", line 1, in <module>
  237.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  238.     ret = op_call(self.idname_py(), None, kw)
  239. RuntimeError: Operator bpy.ops.mesh.select_all.poll() failed, context is incorrect
  240.  
  241. >>> bpy.ops.object.mode_set(mode = "OBJECT")
  242. Traceback (most recent call last):
  243.   File "<blender_console>", line 1, in <module>
  244.   File "F:\Programme\Blender\2.69\scripts\modules\bpy\ops.py", line 188, in __call__
  245.     ret = op_call(self.idname_py(), None, kw)
  246. RuntimeError: Operator bpy.ops.object.mode_set.poll() failed, context is incorrect
  247.  
  248. >>> bpy.context.object.data.materials.append(timberwolf_body)
  249. Traceback (most recent call last):
  250.   File "<blender_console>", line 1, in <module>
  251. AttributeError: 'NoneType' object has no attribute 'data'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement