Questions tagged [blender]

Blender is the free open source 3D content creation suite, available for all major operating systems under the GNU General Public License. Also see the https://blender.stackexchange.com Stack Exchange site for more Blender-related questions.

Blender is a free and open-source 3D computer graphics software product used for creating animated films, visual effects, interactive 3D applications or video games. Blender's features include 3D modeling, UV unwrapping, texturing, rigging and skinning, fluid and smoke simulation, particle simulation, animating, match moving, camera tracking, rendering, video editing and compositing, featuring also a built-in game engine.

It is mainly written in C. Python is used for scripting and part of the user interface.

Resources:

3246 questions
13
votes
6 answers

Using Blender/SketchUp Models in OpenGL

I'm making a renderer using OpenGL. I have textured models in Blender / Sketchup (I can exchange between the two easily), and I'd like to be able to export those files into my renderer. My initial idea was to simply export the raw faces and render…
mkenyon
  • 470
  • 1
  • 5
  • 15
12
votes
3 answers

Best process to show an OpenGL Animation in iPhone

I'm having issues being able to import a bone and skeletal animation from Maya to Blender to iPhone. Here's what I've done: install the ColladaMaya plugin to export a DAE for Blender to export used Jeff LeMarche's script to be able to export a…
Dominic Tancredi
  • 41,134
  • 7
  • 34
  • 50
12
votes
2 answers

Morph Targets Three.js

I'm trying to get started with morph targets and three.js. However, there doesn't seem to be much documentation on this subject. As I'm looking at the source code, morphTargetInfluences[] seems to be the magic. How does this work? How do I use this?…
user2517605
  • 225
  • 1
  • 2
  • 15
12
votes
4 answers

What was Blender created in?

Does Blender use OpenGl or DirectX? Or is it all done from scratch?
12
votes
1 answer

how to export per-vertex UV coordinates in Blender export script

I'm writing a a python export script from Blender 2.64. The idea is that I'm trying to export the mesh data in an OpenGL VBO-friendly way. So I'm exporting vertex attributes in array of structs layout. For instance, for a mesh with vertices, normals…
SaldaVonSchwartz
  • 3,769
  • 2
  • 41
  • 78
12
votes
9 answers

How to install python modules in blender

I've been trying to install pyserial for blender, but I can only install it to python32 on my C drive, is there anything i can do to have it install to blender or have blender import from python32
Michael Balmes
  • 184
  • 1
  • 3
  • 10
11
votes
2 answers

Frequency Analysis in Python

I'm trying to use Python to retrieve the dominant frequencies of a live audio input. For the moment I am experimenting using the audio stream my Laptop's built in microphone, but when testing the following code, I am getting very poor results. #…
Dave Moore
  • 1,432
  • 4
  • 12
  • 17
11
votes
4 answers

Blender: border rendering is not supported by sequencer

Im using blender to edit a video and when i try to render it, it comes up with the error: border rendering is not supported by sequencer. Using blender 2.80
Fletcher Bright
  • 121
  • 1
  • 1
  • 4
11
votes
2 answers

Unable to set proper orientation of 3d Model in AR augmented face

I am trying to put earings on the face using ARCore Augmented Face. I am editing the 3D model in blender and adjusting the model according to canonical_face_mesh.fbx . But my 3d model is rendering above the head. I also tried making the pivot…
Mehmood Arib
  • 371
  • 1
  • 12
11
votes
7 answers

How Do I Switch Y and Z Axises from Blender? (So Y is Up)

I've been having a bit of a problem with making the Y axis my up axis when exporting mesh and scenes from Blender. Both Blender and my export target use right handed transformation matrices. Z is the up axis in Blender while Y is the up axis in my…
user387381
  • 111
  • 1
  • 1
  • 4
11
votes
1 answer

Exporting a simple model with texture from Blender to three.js

Note: I want to avoid modifying the model in the javascript code and do all the model design inside Blender. Note #2: While this question is long, it is actually a basic problem (title says it all). The below is "walk-through" to the problem. I am…
Isaac
  • 2,332
  • 6
  • 33
  • 59
11
votes
1 answer

input dialog box blender

How to make a simple entry dialog box (like in the image) in blender and processing the text entered through python.I am unable to find any good tutorial on this.
Vaibhav
  • 703
  • 1
  • 7
  • 18
11
votes
4 answers

Running Blender python script outside of blender

I want to visualize some scientific data, which is, at the moment, only an animation of some spheres with different colours and sizes. I already created a script within Mathematica which creates the input for POV-Ray. My problem is, that I'm not…
Stefan
  • 2,460
  • 1
  • 17
  • 33
11
votes
1 answer

Disable the startscreen when opening Blender

When I open blender 2.64, it automatically shows the start/splash screen (I mean the little box in the middle of the page where you can open recent .blend files). I Would like to disable this, but cannot find out how. Does anybody know? You might…
user1884155
  • 3,616
  • 4
  • 55
  • 108
10
votes
4 answers

Three.js Collada - What's the proper way to dispose() and release memory (garbage collection)?

I've successfully imported a .dae scene via ColladaLoader. The problem is, I need to switch between several .dae files. I can't seem to implement the dispose method properly. dae.traverse(function(obj) { console.log('unloading '…