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
1
vote
1 answer

Add Python script to Blender 2.6.1 on mac 10.6.8?

I added my Python script to the scripts folder of Blender (which were hidden) however, i'm not sure how to add the script from that point? Eventually I want the model to be added to xcode.
gikygik
  • 421
  • 9
  • 26
1
vote
1 answer

change bones position in a armature in blender game engine using python

I am working on real time mapping of model with the user data obtained from Kinect. I am able to get access to the individual bone using bge.types.BL_ArmatureObject().channels which give the list of bones. I am not able to change the position bone.…
sahil
  • 1,108
  • 3
  • 15
  • 25
1
vote
1 answer

Operation of pickle in Blender 2.56

I am using pySerial to get data from an Arduino (micro-controller). The data are stored in a pickle file. It worked fine with Blender 2.49 (python 2.7). Now, shifting to Blender 2.56 (python 3.2), I get the following…
change
  • 3,400
  • 7
  • 32
  • 42
1
vote
0 answers

Logging mouse input for debugging purposes

I have a persistent issue with a particular UI behavior in Blender 2.56.0. Before anyone tells me that I should be asking about this on the Blender forum, I have... Link My question is not what is causing this issue; rather I am searching for tools…
Aaron Newton
  • 2,124
  • 1
  • 28
  • 31
0
votes
1 answer

Opening Blender (a program) from a specific filepath, relative paths, Unix executable

In my previous question, Open a file from a specific program from python, I found out how to use subprocess in order to open a program (Blender) — well, a specific .blend file — from a specific file path with this code. import os import…
Dimitra Micha
  • 2,089
  • 8
  • 27
  • 31
0
votes
1 answer

Export animations from cinema4d to blender

I've been trying to get some animated models from c4d into Blender all day. The models transfer fine, but the animations don't. I've used COLLADA, 3ds and obj file types but none are successful. I need to get the files into Blender as I'm trying to…
0
votes
1 answer

Detecting border of plane in Blender Python API

I'm working on a script to generate building from plane. While having normal plane is rectangle it's quite easy - you're looking for vertices most -/+X, -/+Y, -/+Z, but what if plane is not of regular shape? Is there a nice easy solution within…
raistlin
  • 4,298
  • 5
  • 32
  • 46
0
votes
1 answer

Blender 2.5 Python video texture info

I load an animated texture in Blender 2.58 using python like this (see this question earlier): #setup world wtex = bpy.data.textures.new(name="WorldTexture", type='IMAGE') # set World texture wrld = bpy.context.scene.world if wrld: slot =…
bonext
  • 147
  • 5
0
votes
1 answer

Why is my code only reading the first condition and not checking for the second?

Why is my code only reading the first condition and not checking for the second condition on my code. def primary(): if keyPress.positive: if raySensor.hitObject['primaryWeapon']: own['primary'] =…
0
votes
1 answer

Blender not working with Python

I'm trying to run an external script with blender 2.49b and 2.57 I tried with installing Python versions, 2.4, 2.6 and 2.7. I'm getting this error in the console window. Anyone have a clue of what I'm missing? Traceback (most recent call last): …
IzzyCooper
  • 586
  • 1
  • 5
  • 14
0
votes
1 answer

Export each object on scene to another file

I want to ask you, how can I export all objects to scene to seperate files in blender using python scripts ? I want to export it to fbx, to have something like this: Object File Car Car.fbx Boat Boat.fbx etc.. Each object will be…
piotrek
  • 1,333
  • 4
  • 17
  • 35
0
votes
1 answer

shift between different objects in Blender using game engine

i m working with game Engine(blender).. there are several objects and i need to shift between them on external input (potentiometer).. need functions(python) that can help me shift between objects(cube, sphere, etc)..
change
  • 3,400
  • 7
  • 32
  • 42
0
votes
3 answers

Create Dialog Box in Blender using C or Python

How to make a dialog box (three options like quit/OK/Cancel) in blender and processing the text entered through python or in C. I'm unable to find any good tutorial on this. Any help....?
user2797984
0
votes
1 answer

Is it possible to create a UV map from a rendered object in Blender

I am wondering if it is possible, and if so, how, to create a UV map from a high detail rendered image in blender, sort of like you can do in professional 3D applications and game engines, like Maya, for instance. I would like to be able to create…
user764323
  • 309
  • 4
  • 11
-1
votes
1 answer

How to animate colors in an object in blender

I was making an magic ball in blendeR.I have made the uv sphere ball already and also i have added 5-6 different colors with the help of light sources.Now i want the colors to animated or move in an jiggly way like whirl.Please see the link…
1
2