Log In
New Account
Home My Page Projects Blender 2.x BF release
Summary Activity Tracker SCM Files

Blender 2.6 Bug Tracker: Browse

[#25505] There is no Auto Texture Space option in Object Data Properties for Mesh Object.

Date:
2011-01-05 22:07
Priority:
3
State:
Closed
Submitted by:
ronan ducluzeau (zeauro)
Assigned to:
Ton Roosendaal (ton)
Category:
None
Status:
Fixed / Closed
Relates to:
Duplicates:
Patches:
 
Summary:
There is no Auto Texture Space option in Object Data Properties for Mesh Object.
Detailed description
It is more a todo than a bug.

Now, there are shortcuts to change Texture Space size and location.

But there is no way to reset changes to Auto Texture Space without using Outliner's Datablocks View.

Option exists in Object Data Properties for Curves but not for Meshes.

Followup

Message
  • Date: 2011-01-05 23:53
  • Sender: M.G. Kishalmi
  • this should fix it. copied from curves.


    Index: release/scripts/ui/properties_data_mesh.py
    ===================================================================
    --- release/scripts/ui/properties_data_mesh.py (revision 34107)
    +++ release/scripts/ui/properties_data_mesh.py (working copy)
    @@ -97,7 +97,10 @@

    col.prop(mesh, "show_double_sided")

    + col.label(text="Textures:")
    + col.prop(mesh, "use_auto_texspace")

    +
    class DATA_PT_settings(MeshButtonsPanel, bpy.types.Panel):
    bl_label = "Settings"
    COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
 

Attached Files:

No Files Currently Attached

Changes:

Field Old Value Date By
status_idOpen2011-01-06 10:55ton
close_dateNone2011-01-06 10:55ton
assigned_tonone2011-01-06 10:55ton
StatusReady2011-01-06 10:55ton
StatusNew2011-01-05 23:54lmg