Questions tagged [blender-2.50]

For issues relating to using Blender, version 2.50.

Blender is a popular open source 3D modelling and rendering environment. It can be used to model and render still images, animations and real time games.

30 questions
28
votes
1 answer

The correct bone data to export from blender to view in ogl?

Edit (Original post below): So I have come up with the following code. I can export the mesh, bone structure and animations. I can animate a simple skeleton. But for some reason if I animate more than one bone, something goes wrong and the arm will…
ashleysmithgpu
  • 1,867
  • 20
  • 39
14
votes
2 answers

How to analyse the source code of Blender

I am a beginner of Blender, my professor asked me to read the source code of Blender 2.6 and study how blender implements the material and texture block. After i have downloaded the source code, i find it is impossible for me to read whole source…
chenhao9255
  • 153
  • 1
  • 7
11
votes
2 answers

Python script with arguments for command line Blender

I'm new to blender and python. I have a blender model (.blend) that I want to batch-render as several images providing some properties for each image. I wrote a python script with those parameters, something like: import bpy pi = 3.14159265 fov =…
roho
  • 553
  • 1
  • 5
  • 14
6
votes
1 answer

Extracting Blender Original Coordinates (ORCO)

I've made an exporter (in Python) from Blender (2.5+) to a custom format. What bothers me is that most models I download contain no UV layers but instead are using auto-generated texture coordinates. The question is: how can I access…
kvark
  • 5,291
  • 2
  • 24
  • 33
6
votes
2 answers

How to create a simple mesh in Blender 2.50 via the Python API

I would like to create a simple mesh in Blender (2.50) via the Python API but the examples from the API documentation don't work yet. I tried the following but it's from API 2.49 from Blender import * import bpy editmode =…
guerda
  • 23,388
  • 27
  • 97
  • 146
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
3
votes
2 answers

blender 2.50: positioning group of objects precisely

I am new to blender 2.50. I would like to position a group of objects to a precise location. To do this I do the following: Click 'N' to make sure the options panel is visible. SHIFT - RMB (shift right mouse button) on the elements I want to…
John Goche
  • 689
  • 2
  • 12
  • 27
3
votes
1 answer

Blender 2.5 Python animated world texture setup

I need to set up an animated (i.e. from video file) world texture in blender 2.58 using python. I make a texture like this: import bpy # create new clouds texture bpy.ops.texture.new() wtex = bpy.data.textures[-1] # set World texture wrld =…
bonext
  • 147
  • 5
3
votes
1 answer

How to get proper number of vertices in OBJ file from DCC tools such as Blender for use in OpenGL ES?

I am told that for a simple cube I need 36 vertices when I want to have colors/textures etc. for OpenGL ES application but when I export the colored cube to OBJ format using Blender, I only get 8 vertices and also I don't even get color data in the…
ace
  • 11,526
  • 39
  • 113
  • 193
3
votes
1 answer

How do I create UI "input fields" in Panel (3D Blender 2.55)?

I'm trying to create my own panel (in Blender 2.55), that will help me modify/create objects. I've tried the following example: import bpy class OBJECT_PT_My_Panel(bpy.types.Panel): bl_label = "My Panel Test 1" bl_region_type = "WINDOW" …
Amir
  • 349
  • 6
  • 13
2
votes
0 answers

M3G Plugins for Blender 2.59

I am looking for M3G plugins for Blender. I have already followed the link http://www.nelson-games.de/bl2m3g/ and installed Python v2.6.2 & Blender v2.4.9, but when it's not working. I have already asked this on Blender community but got no response…
2
votes
1 answer

Blender game engine events with python

We're searching for a way to script events in BGE instead of using there build in GUI version where you are using your mouse to make events trigger your scripts. Isn't there a way to use events with python directly? Thanks in advance.
Forested
  • 263
  • 5
  • 12
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

Reset Timeline of animation - blender 2.6

I am new to Blender animation, i have simple 3d model which has bones to animate and its animating as expected, now what i want to do is reset the frames in timeline of the blender, for exampe, my animation loop is between 250 to 300 frames and want…
Yogesh
  • 1,206
  • 4
  • 22
  • 50
2
votes
1 answer

Remove speed ease from animation in Blender 2.5

By default Blender adds speed easing to the animation. I need to remove it to get consistent rotation speed on my model. How/Where can I modify ease curve? Thanks
Sergej Popov
  • 2,933
  • 6
  • 36
  • 53
1
2