Questions tagged [blender-2.67]

Blender provides a broad spectrum of modeling, texturing, lighting, animation and video post-processing functionality in one package. Through its open architecture, Blender provides cross-platform interoperability, extensibility, an incredibly small footprint, and a tightly integrated workflow. Blender is one of the most popular Open Source 3D graphics applications in the world.

39 questions
17
votes
5 answers

How do I change the same parameter on multiple objects efficiently in Blender?

Starting with a single cube, I have changed some properties (material, color, reflection attributes), and then duplicated the object into a dozen cubes, placing them in the scene. After rendering, I'd like to change the color of all of them. How do…
cfi
  • 10,915
  • 8
  • 57
  • 103
14
votes
2 answers

get list of selected objects as string Blender python

I'm facing a rather easy to solve problem but I just don't know how to do it. I want blender to list all the objects selected as a string. Eg. if I run : selection_names = bpy.context.selected_objects print (selection_names) it gives me this…
Raspberry
  • 277
  • 1
  • 3
  • 11
5
votes
2 answers

Blender mirror modifier doesn't export mirrored half

When I use mirror modifier in blender and export my collide (.dae), my exported object doesn't have include the 'mirrored half' but just has the side where I didn't delete the faces. Help?
Nerdy Lime Apps
  • 331
  • 2
  • 5
  • 18
4
votes
1 answer

Blender add-on: dialog box closes when I click outside

I'm new in blender addon development and trying to create a popup dialog box that doesn't close when I click outside the box, It should only close when I click on the close button. please let me know I you know of any solution. Here is the sample…
Sanskar
  • 69
  • 4
4
votes
2 answers

How to bake(convert) bones as FK from IK in Blender

How can I convert from IK(Inverse Kinematics) to FK (Forward Kinematics) in Blender? I am trying to export a model which has skeletal animations, to THREE.js. However, It does not support IK. therefore, I need to convert all bones into FK. Does…
yomotsu
  • 1,412
  • 1
  • 12
  • 17
4
votes
1 answer

How to export a blender file and open it in PyOpenGL?

I have a 3-D object I created in blender. I would like to export it from blender and be able to import it into OpenGL. Is there a method or specific file extension recommended for this process?
3
votes
5 answers

Python, negative numbers string to float

This is a very simple issue but I am making it needlessly complex and continue to hit road blocks. I am trying to parse a simple text file which contains point cloud information, x, y, z. It looks like this: vertices: v -543.243 -494.262 1282 v…
umbrellaSriracha
  • 33
  • 1
  • 1
  • 5
3
votes
1 answer

Blender 3D python For Every pose bone add a constraint not working

selected = bpy.context.selected_pose_bones for bone in selected: bpy.ops.pose.constraint_add(type='COPY_ROTATION') every time i run this it the contstraints on the same pose bone not on all the pose bones. does anyone…
Raspberry
  • 277
  • 1
  • 3
  • 11
2
votes
1 answer

Blender deselect all layers

Please, can sombody help me with problem in Blender? I won't deselect all layers with python script. I can select all, but deselect not. I use this (not working): bpy.context.scene.layers=((False,)*20) This works, I dont understand this :…
2
votes
1 answer

Blender how to round edges of face

I'm trying to make a round eye in my object by selecting a face, pressing e, dragging it into the face a little bit and I'm trying to make that eye round instead of square. How can I do this?
2
votes
1 answer

How can I load a .ply file in blender-2.68 and apply modifier to it through command line/script?

I want to apply a modifier to large number of meshes stored in different .ply files. I wish to do this through command line so that the process can be automated. I know the basic of blender python API like how to write the modifier in python. But…
DarkKnight
  • 31
  • 6
2
votes
1 answer

Export blender 3d model with texture to iPhone using Cocos3D - Texture not showing

Requirement I have a 3d model created in Blender - a cube with numbers 1 to 6 on each faces. I have added a UV texture on each face to represent the number. The numbers are showing fine when I render it on Blender. I am trying to export this model…
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167
1
vote
1 answer

Is it possible to dynamicaly control blender loop cuts within Three.JS

I am looking to control a blender created mesh that contains loop cuts. The example is a cube that contains loop cuts then twisted to form a thread. Blender Example: Blender cube with loop cuts Is it possible to export the mesh and control the twist…
Drist
  • 11
  • 1
1
vote
1 answer

Rotate cube in blender with python

I have created a cube using python in blender bpy.ops.mesh.primitive_cube_add(radius=1, location=(x, y, z)) I want to rotate the cube around its z-axis with a random angle between -180, 180 degrees. Is there an argument or do I need a new line of…
andrea
  • 103
  • 3
  • 14
1
vote
1 answer

Blender frozen in python script?

I am new to both blender and python. I tried to manipulate some properties of an object via python script in script console of blender. What I don't understand is I can do it in this way. bpy.data.object['Cube'].rotation_euler.x+=1 but when I put…
Znatz
  • 1,530
  • 2
  • 18
  • 31
1
2 3