I made this add-on over the last few weeks:
http://blenderartists.org/forum/showthr ... tch-Naming
It should have everything you need short of naming materials and textures which I plan on implementing shortly.
Search found 4 matches
- Fri Feb 01, 2013 3:57 pm
- Forum: Coding Blender
- Topic: Batch object rename in 2.63
- Replies: 4
- Views: 15034
- Tue Dec 25, 2012 8:53 pm
- Forum: News & Chat
- Topic: 2.49->2.5 'new space menu' motivation?
- Replies: 4
- Views: 5462
Is this still on the todo?, the radial menu thing more specifically.ton wrote:Hi,
The old 2.4x "toolbox" was meant to come back for 2.5 as well, and even better, configured by a python script! It's on the todo, we also want to have a nice gesture based radial menu, which will use similar code.
-Ton-
- Sat May 26, 2012 9:04 am
- Forum: Interface & Tools
- Topic: Slight UI adjustment proposition
- Replies: 2
- Views: 976
Here is the class accounting for the empty object, didn't even think about this problem until I posted, but its an easy fix. class VIEW3D_PT_view3d_name(Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' bl_label = "Item" @classmethod def poll(cls, context): return (context.space_data and conte...
- Sat May 26, 2012 8:22 am
- Forum: Interface & Tools
- Topic: Slight UI adjustment proposition
- Replies: 2
- Views: 976
Slight UI adjustment proposition
Currently the item panel only displays the the name of the active object and bone name when available, I've been changing it for sometime now on every release of blender to also include the object data since I often raname the object data in addition to the item. this is what it looks like: http://s...