Hello, I have question regarding Blender scripting.
I have made an armature from script like below:
bpy.ops.object.armature_add(view_align = False, enter_editmode = False, location = (0, 0, 0), rotation = (0, 0, 0), layers = (True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False))
As you can see the location supposed to be on (0, 0, 0), in the properties panel it shows that the armature right in the correct position.
But why in 3D View panel the armature located not in the (0, 0, 0)?
===
And I just want to know why if I use the code directly in the Text Editor Panel and then run script it always return “Python Script Fail look into the console now?”
Thank you