A small thing that would be a HUGE help for precision modelling: to be able to enter numeric values while doing loop subdivide with ony one cut, the same way as other functions that accept numeric input.
Currently a numeric value appears in the header, but you have no way to enter numbers...
Search found 6 matches
- Thu Aug 30, 2007 8:35 pm
- Forum: Interface & Tools
- Topic: About feature requests
- Replies: 168
- Views: 122110
- Sun Oct 15, 2006 4:29 am
- Forum: Documentation & Education
- Topic: Installing on Ubuntu (Blender 2.41 64/AMD64/Dapper64)
- Replies: 6
- Views: 7897
SOLVED! (edited)
I managed to solve (partially) that problem selecting "international fonts" in blender user preferences... you must know where the item is, because you cannot see the texts :) There are still some faults in the 3d views, but all the other windows display correctly. edited: Actually the texts display...
- Sun Oct 15, 2006 3:51 am
- Forum: Documentation & Education
- Topic: Installing on Ubuntu (Blender 2.41 64/AMD64/Dapper64)
- Replies: 6
- Views: 7897
I had the same "unable to open blender window" problem, until I read that ubuntu64 built-in drivers don't support well my radeon x200m chip. I installed the ati proprietary drivers, according to methods found on ubuntu forums, and blender opens normally now, but with same messed-up texts problem as ...
- Mon Mar 27, 2006 2:25 pm
- Forum: Python
- Topic: problem: script always renders same first frame (solved)
- Replies: 3
- Views: 3144
rectifying... final script is like this. (now works perfectly). using renderAnim wasn't that good. Simplest way is finally incrementing the startFrame value. Looks like the render() method renders the startFrame, not the currentFrame... import Blender, os, string from Blender import Scene from Blend...
- Fri Mar 24, 2006 6:19 pm
- Forum: Python
- Topic: problem: script always renders same first frame (solved)
- Replies: 3
- Views: 3144
I found a way, which is using renderAnim() instead of render(). The problem is solved. Strangely it does twice the render, but since the second time the image already exists, it skips... Thanks for your help anyway. the final code, for who'd be intersted, is: import Blender, os, string from Blender ...
- Thu Mar 23, 2006 6:04 pm
- Forum: Python
- Topic: problem: script always renders same first frame (solved)
- Replies: 3
- Views: 3144
problem: script always renders same first frame (solved)
Hi all, I'm making a script that skips already rendered frames. The problem is it only renders the same first frame. Here it is: import Blender, os, string from Blender import Scene from Blender.Scene import Render scn = Scene.GetCurrent() rnd = scn.getRenderingContext() ExtensionList = ['.avi','.jp...