Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
63f0a48f
Commit
63f0a48f
authored
13 years ago
by
Brendon Murphy
Browse files
Options
Downloads
Patches
Plain Diff
update > changes to the ui descriptions from CoDEmanX
parent
3496a990
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
space_view3d_materials_utils.py
+12
-12
12 additions, 12 deletions
space_view3d_materials_utils.py
with
12 additions
and
12 deletions
space_view3d_materials_utils.py
+
12
−
12
View file @
63f0a48f
...
...
@@ -25,8 +25,8 @@
bl_info
=
{
"
name
"
:
"
Material Utils
"
,
"
author
"
:
"
michaelw
"
,
"
version
"
:
(
1
,
3
),
"
blender
"
:
(
2
,
5
,
6
),
"
version
"
:
(
1
,
4
),
"
blender
"
:
(
2
,
6
,
2
),
"
location
"
:
"
View3D > Q key
"
,
"
description
"
:
"
Menu of material tools (assign, select..) in the 3D View
"
,
"
warning
"
:
""
,
...
...
@@ -486,7 +486,7 @@ def texface_to_mat():
# operator classes:
class
VIEW3D_OT_texface_to_material
(
bpy
.
types
.
Operator
):
''''''
'''
Create texture materials for images assigned in UV editor
'''
bl_idname
=
"
view3d.texface_to_material
"
bl_label
=
"
MW Texface Images to Material/Texture
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
...
...
@@ -506,7 +506,7 @@ class VIEW3D_OT_texface_to_material(bpy.types.Operator):
class
VIEW3D_OT_assign_material
(
bpy
.
types
.
Operator
):
'''
a
ssign a material to the selection
'''
'''
A
ssign a material to the selection
'''
bl_idname
=
"
view3d.assign_material
"
bl_label
=
"
MW Assign Material
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
...
...
@@ -532,8 +532,8 @@ class VIEW3D_OT_assign_material(bpy.types.Operator):
class
VIEW3D_OT_clean_material_slots
(
bpy
.
types
.
Operator
):
'''
r
emoves any material slots from
the
selected objects
that are not used by the mesh
'''
'''
R
emoves any material slots from
selected objects
'''
\
'''
that are not used by the mesh
'''
bl_idname
=
"
view3d.clean_material_slots
"
bl_label
=
"
MW Clean Material Slots
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
...
...
@@ -548,7 +548,7 @@ class VIEW3D_OT_clean_material_slots(bpy.types.Operator):
class
VIEW3D_OT_material_to_texface
(
bpy
.
types
.
Operator
):
''''''
'''
Transfer material assignments to UV editor
'''
bl_idname
=
"
view3d.material_to_texface
"
bl_label
=
"
MW Material Images to Texface
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
...
...
@@ -563,7 +563,7 @@ class VIEW3D_OT_material_to_texface(bpy.types.Operator):
class
VIEW3D_OT_select_material_by_name
(
bpy
.
types
.
Operator
):
''''''
'''
Select geometry with this material assigned to it
'''
bl_idname
=
"
view3d.select_material_by_name
"
bl_label
=
"
MW Select Material By Name
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
...
...
@@ -584,7 +584,7 @@ class VIEW3D_OT_select_material_by_name(bpy.types.Operator):
class
VIEW3D_OT_replace_material
(
bpy
.
types
.
Operator
):
'''
assign
a material
to the selection
'''
'''
Replace
a material
by name
'''
bl_idname
=
"
view3d.replace_material
"
bl_label
=
"
MW Replace Material
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
...
...
@@ -599,8 +599,8 @@ class VIEW3D_OT_replace_material(bpy.types.Operator):
maxlen
=
21
,
)
all_objects
=
BoolProperty
(
name
=
"
a
ll
_
objects
"
,
description
=
"
r
eplace for all objects in this blend file
"
,
name
=
"
A
ll
objects
"
,
description
=
"
R
eplace for all objects in this blend file
"
,
default
=
True
,
)
...
...
@@ -620,7 +620,7 @@ class VIEW3D_OT_replace_material(bpy.types.Operator):
# menu classes
class
VIEW3D_MT_master_material
(
bpy
.
types
.
Menu
):
bl_label
=
"
Ma
s
ter
Material
Menu
"
bl_label
=
"
Mater
ial Utils
Menu
"
def
draw
(
self
,
context
):
layout
=
self
.
layout
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment