2009-11-01 15:21:20 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-01 15:21:20 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
2009-10-31 20:16:59 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
# <pep8 compliant>
|
2009-07-02 11:24:27 +00:00
|
|
|
import bpy
|
2011-08-12 06:57:00 +00:00
|
|
|
from bpy.types import Menu, Panel
|
2012-04-04 14:39:52 +00:00
|
|
|
from bl_ui.properties_paint_common import UnifiedPaintPanel
|
2013-01-16 12:57:35 +00:00
|
|
|
from bl_ui.properties_paint_common import brush_texture_settings
|
2013-03-25 01:00:16 +00:00
|
|
|
from bl_ui.properties_paint_common import brush_mask_texture_settings
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2011-06-24 03:30:50 +00:00
|
|
|
|
2010-08-02 02:55:12 +00:00
|
|
|
class View3DPanel():
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'VIEW_3D'
|
|
|
|
bl_region_type = 'TOOLS'
|
2009-08-15 19:40:09 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
# **************** standard tool clusters ******************
|
|
|
|
|
|
|
|
# History/Repeat tools
|
|
|
|
def draw_repeat_tools(context, layout):
|
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Repeat:")
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
col.operator("screen.repeat_last")
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("screen.repeat_history", text="History...")
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2011-01-26 06:41:44 +00:00
|
|
|
# Keyframing tools
|
|
|
|
def draw_keyframing_tools(context, layout):
|
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Keyframes:")
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
row.operator("anim.keyframe_insert_menu", text="Insert")
|
|
|
|
row.operator("anim.keyframe_delete_v3d", text="Remove")
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-02-04 09:27:25 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
# Grease Pencil tools
|
|
|
|
def draw_gpencil_tools(context, layout):
|
|
|
|
col = layout.column(align=True)
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Grease Pencil:")
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
row.operator("gpencil.draw", text="Draw").mode = 'DRAW'
|
|
|
|
row.operator("gpencil.draw", text="Line").mode = 'DRAW_STRAIGHT'
|
2011-09-06 08:30:17 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
row.operator("gpencil.draw", text="Poly").mode = 'DRAW_POLY'
|
|
|
|
row.operator("gpencil.draw", text="Erase").mode = 'ERASER'
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
row.prop(context.tool_settings, "use_grease_pencil_sessions")
|
|
|
|
|
2013-03-08 18:17:12 +00:00
|
|
|
col.operator("view3d.ruler")
|
|
|
|
|
2011-07-29 01:24:03 +00:00
|
|
|
|
2011-10-17 06:58:07 +00:00
|
|
|
# ********** default tools for object-mode ****************
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_objectmode(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "objectmode"
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "Object Tools"
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("object.origin_set", text="Origin")
|
2010-07-05 22:22:22 +00:00
|
|
|
|
2010-06-22 00:08:05 +00:00
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Object:")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("object.duplicate_move")
|
|
|
|
col.operator("object.delete")
|
|
|
|
col.operator("object.join")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
active_object = context.active_object
|
2011-11-22 17:26:40 +00:00
|
|
|
if active_object and active_object.type in {'MESH', 'CURVE', 'SURFACE'}:
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Shading:")
|
2011-08-05 09:04:11 +00:00
|
|
|
row = col.row(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
row.operator("object.shade_smooth", text="Smooth")
|
|
|
|
row.operator("object.shade_flat", text="Flat")
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2011-01-26 06:41:44 +00:00
|
|
|
draw_keyframing_tools(context, layout)
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
col.label(text="Motion Paths:")
|
2013-03-08 18:17:12 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
row.operator("object.paths_calculate", text="Calculate")
|
|
|
|
row.operator("object.paths_clear", text="Clear")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2013-01-23 05:56:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
class VIEW3D_PT_tools_rigidbody(View3DPanel, Panel):
|
|
|
|
bl_context = "objectmode"
|
2013-01-27 18:14:24 +00:00
|
|
|
bl_label = "Rigid Body Tools"
|
2013-01-23 05:56:44 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label(text="Add/Remove:")
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-01-23 05:56:44 +00:00
|
|
|
row.operator("rigidbody.objects_add", text="Add Active").type = 'ACTIVE'
|
|
|
|
row.operator("rigidbody.objects_add", text="Add Passive").type = 'PASSIVE'
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-01-23 05:56:44 +00:00
|
|
|
row.operator("rigidbody.objects_remove", text="Remove")
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label(text="Object Tools:")
|
|
|
|
col.operator("rigidbody.shape_change", text="Change Shape")
|
|
|
|
col.operator("rigidbody.mass_calculate", text="Calculate Mass")
|
2013-01-23 05:56:49 +00:00
|
|
|
col.operator("rigidbody.object_settings_copy", text="Copy from Active")
|
|
|
|
col.operator("rigidbody.bake_to_keyframes", text="Bake To Keyframes")
|
2013-01-23 05:56:56 +00:00
|
|
|
col.label(text="Constraints:")
|
|
|
|
col.operator("rigidbody.connect", text="Connect")
|
2009-07-02 11:24:27 +00:00
|
|
|
|
|
|
|
# ********** default tools for editmode_mesh ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_meshedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "mesh_edit"
|
|
|
|
bl_label = "Mesh Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("transform.shrink_fatten", text="Shrink/Fatten")
|
|
|
|
col.operator("transform.push_pull", text="Push/Pull")
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Deform:")
|
2013-06-02 17:32:45 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
row.operator("transform.edge_slide", text="Slide Edge")
|
|
|
|
row.operator("transform.vert_slide", text="Vertex")
|
2010-11-07 03:56:58 +00:00
|
|
|
col.operator("mesh.noise")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("mesh.vertices_smooth")
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Add:")
|
2013-06-01 05:26:37 +00:00
|
|
|
|
|
|
|
col.menu("VIEW3D_MT_edit_mesh_extrude")
|
2013-06-02 17:32:45 +00:00
|
|
|
col.operator("view3d.edit_mesh_extrude_move_normal", text="Extrude Region")
|
|
|
|
col.operator("view3d.edit_mesh_extrude_individual_move", text="Extrude Individual")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("mesh.subdivide")
|
2009-11-29 02:14:34 +00:00
|
|
|
col.operator("mesh.loopcut_slide")
|
2009-11-30 18:26:53 +00:00
|
|
|
col.operator("mesh.duplicate_move", text="Duplicate")
|
2013-08-29 18:45:04 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
row.operator("mesh.spin")
|
|
|
|
row.operator("mesh.screw")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2012-04-20 10:52:13 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
props = row.operator("mesh.knife_tool", text="Knife")
|
|
|
|
props.use_occlude_geometry = True
|
2012-05-06 13:41:27 +00:00
|
|
|
props.only_selected = False
|
2012-04-20 10:52:13 +00:00
|
|
|
props = row.operator("mesh.knife_tool", text="Select")
|
|
|
|
props.use_occlude_geometry = False
|
2012-05-06 13:41:27 +00:00
|
|
|
props.only_selected = True
|
2013-03-20 16:03:34 +00:00
|
|
|
col.operator("mesh.knife_project")
|
2013-08-29 18:45:04 +00:00
|
|
|
col.operator("mesh.bisect")
|
2012-04-20 10:52:13 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Remove:")
|
2012-04-05 01:55:49 +00:00
|
|
|
col.menu("VIEW3D_MT_edit_mesh_delete")
|
2013-06-02 17:32:45 +00:00
|
|
|
col.operator_menu_enum("mesh.merge", "type")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("mesh.remove_doubles")
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Normals:")
|
|
|
|
col.operator("mesh.normals_make_consistent", text="Recalculate")
|
|
|
|
col.operator("mesh.flip_normals", text="Flip Direction")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="UV Mapping:")
|
2013-06-01 05:26:37 +00:00
|
|
|
col.menu("VIEW3D_MT_uv_map", text="Unwrap")
|
2012-01-14 06:30:27 +00:00
|
|
|
col.operator("mesh.mark_seam").clear = False
|
2009-11-23 11:43:38 +00:00
|
|
|
col.operator("mesh.mark_seam", text="Clear Seam").clear = True
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Shading:")
|
2011-08-05 09:04:11 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
row.operator("mesh.faces_shade_smooth", text="Smooth")
|
|
|
|
row.operator("mesh.faces_shade_flat", text="Flat")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_meshedit_options(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "mesh_edit"
|
|
|
|
bl_label = "Mesh Options"
|
2011-11-08 01:32:34 +00:00
|
|
|
|
2011-11-05 10:34:29 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
return context.active_object
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2009-11-04 16:26:08 +00:00
|
|
|
ob = context.active_object
|
2009-10-19 13:24:18 +00:00
|
|
|
|
2011-11-05 10:34:29 +00:00
|
|
|
tool_settings = context.tool_settings
|
|
|
|
mesh = ob.data
|
2011-11-05 10:19:36 +00:00
|
|
|
|
2011-11-05 10:34:29 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.prop(mesh, "use_mirror_x")
|
2011-03-10 05:52:16 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2011-11-05 10:34:29 +00:00
|
|
|
row.active = ob.data.use_mirror_x
|
|
|
|
row.prop(mesh, "use_mirror_topology")
|
2011-03-10 05:52:16 +00:00
|
|
|
|
2011-11-05 10:34:29 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label("Edge Select Mode:")
|
|
|
|
col.prop(tool_settings, "edge_path_mode", text="")
|
|
|
|
col.prop(tool_settings, "edge_path_live_unwrap")
|
2012-04-10 01:45:22 +00:00
|
|
|
col.label("Double Threshold:")
|
|
|
|
col.prop(tool_settings, "double_threshold", text="")
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2013-04-13 22:12:55 +00:00
|
|
|
if mesh.show_weight:
|
|
|
|
col.label("Show Zero Weights:")
|
2013-04-13 22:52:28 +00:00
|
|
|
col.row().prop(tool_settings, "vertex_group_user", expand=True)
|
2013-04-13 22:12:55 +00:00
|
|
|
|
2009-07-02 11:24:27 +00:00
|
|
|
# ********** default tools for editmode_curve ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_curveedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "curve_edit"
|
|
|
|
bl_label = "Curve Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-11-28 23:37:56 +00:00
|
|
|
|
2009-11-21 13:01:28 +00:00
|
|
|
col = layout.column(align=True)
|
2011-11-01 11:00:08 +00:00
|
|
|
col.operator("transform.tilt", text="Tilt")
|
2012-08-17 13:59:08 +00:00
|
|
|
col.operator("transform.transform", text="Scale Feather").mode = 'CURVE_SHRINKFATTEN'
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Curve:")
|
2012-05-13 09:13:47 +00:00
|
|
|
col.operator("curve.duplicate_move", text="Duplicate")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("curve.delete")
|
|
|
|
col.operator("curve.cyclic_toggle")
|
|
|
|
col.operator("curve.switch_direction")
|
|
|
|
col.operator("curve.spline_type_set")
|
2013-02-22 02:10:41 +00:00
|
|
|
col.operator("curve.radius_set")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Handles:")
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2009-11-23 11:43:38 +00:00
|
|
|
row.operator("curve.handle_type_set", text="Auto").type = 'AUTOMATIC'
|
2009-11-28 11:32:09 +00:00
|
|
|
row.operator("curve.handle_type_set", text="Vector").type = 'VECTOR'
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2010-12-14 13:56:10 +00:00
|
|
|
row.operator("curve.handle_type_set", text="Align").type = 'ALIGNED'
|
2009-11-23 11:43:38 +00:00
|
|
|
row.operator("curve.handle_type_set", text="Free").type = 'FREE_ALIGN'
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Modeling:")
|
2012-05-13 09:13:47 +00:00
|
|
|
col.operator("curve.extrude_move", text="Extrude")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("curve.subdivide")
|
2013-02-22 02:10:41 +00:00
|
|
|
col.operator("curve.smooth")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-07-02 11:24:27 +00:00
|
|
|
|
|
|
|
# ********** default tools for editmode_surface ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_surfaceedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "surface_edit"
|
|
|
|
bl_label = "Surface Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Curve:")
|
2012-05-13 09:13:47 +00:00
|
|
|
col.operator("curve.duplicate_move", text="Duplicate")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("curve.delete")
|
|
|
|
col.operator("curve.cyclic_toggle")
|
|
|
|
col.operator("curve.switch_direction")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Modeling:")
|
2012-05-13 09:13:47 +00:00
|
|
|
col.operator("curve.extrude", text="Extrude")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("curve.subdivide")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-07-02 11:24:27 +00:00
|
|
|
|
|
|
|
# ********** default tools for editmode_text ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_textedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "text_edit"
|
|
|
|
bl_label = "Text Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Text Edit:")
|
|
|
|
col.operator("font.text_copy", text="Copy")
|
|
|
|
col.operator("font.text_cut", text="Cut")
|
|
|
|
col.operator("font.text_paste", text="Paste")
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-11-17 12:59:55 +00:00
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Set Case:")
|
2009-11-23 11:43:38 +00:00
|
|
|
col.operator("font.case_set", text="To Upper").case = 'UPPER'
|
|
|
|
col.operator("font.case_set", text="To Lower").case = 'LOWER'
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Style:")
|
2009-11-28 11:32:09 +00:00
|
|
|
col.operator("font.style_toggle", text="Bold").style = 'BOLD'
|
|
|
|
col.operator("font.style_toggle", text="Italic").style = 'ITALIC'
|
|
|
|
col.operator("font.style_toggle", text="Underline").style = 'UNDERLINE'
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-11-17 12:59:55 +00:00
|
|
|
|
2009-07-02 11:24:27 +00:00
|
|
|
|
|
|
|
# ********** default tools for editmode_armature ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_armatureedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "armature_edit"
|
|
|
|
bl_label = "Armature Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Bones:")
|
|
|
|
col.operator("armature.bone_primitive_add", text="Add")
|
|
|
|
col.operator("armature.duplicate_move", text="Duplicate")
|
|
|
|
col.operator("armature.delete", text="Delete")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Modeling:")
|
|
|
|
col.operator("armature.extrude_move")
|
2010-10-15 03:24:47 +00:00
|
|
|
col.operator("armature.subdivide", text="Subdivide")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_armatureedit_options(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "armature_edit"
|
|
|
|
bl_label = "Armature Options"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
arm = context.active_object.data
|
2009-10-27 12:46:20 +00:00
|
|
|
|
2011-04-01 21:37:40 +00:00
|
|
|
self.layout.prop(arm, "use_mirror_x")
|
2009-07-24 21:01:41 +00:00
|
|
|
|
2009-07-02 11:24:27 +00:00
|
|
|
# ********** default tools for editmode_mball ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_mballedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "mball_edit"
|
|
|
|
bl_label = "Meta Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-07-02 11:24:27 +00:00
|
|
|
|
|
|
|
# ********** default tools for editmode_lattice ****************
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_latticeedit(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "lattice_edit"
|
|
|
|
bl_label = "Lattice Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("lattice.make_regular")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-11-21 00:05:43 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-11-17 12:59:55 +00:00
|
|
|
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2011-10-17 06:58:07 +00:00
|
|
|
# ********** default tools for pose-mode ****************
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_posemode(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "posemode"
|
|
|
|
bl_label = "Pose Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Transform:")
|
2009-12-10 10:36:32 +00:00
|
|
|
col.operator("transform.translate")
|
|
|
|
col.operator("transform.rotate")
|
|
|
|
col.operator("transform.resize", text="Scale")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="In-Between:")
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
row.operator("pose.push", text="Push")
|
|
|
|
row.operator("pose.relax", text="Relax")
|
|
|
|
col.operator("pose.breakdown", text="Breakdowner")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Pose:")
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
row.operator("pose.copy", text="Copy")
|
|
|
|
row.operator("pose.paste", text="Paste")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("poselib.pose_add", text="Add To Library")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-01-26 06:41:44 +00:00
|
|
|
draw_keyframing_tools(context, layout)
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column(align=True)
|
2011-01-26 06:41:44 +00:00
|
|
|
col.label(text="Motion Paths:")
|
2013-03-16 05:58:59 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
row.operator("pose.paths_calculate", text="Calculate")
|
|
|
|
row.operator("pose.paths_clear", text="Clear")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_repeat_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
Grease Pencil Todos: "Sketching Sessions"
Due to popular request and usability considerations, this commit
reintroduces functionality similar to 2.4's "Draw Mode" for Grease
Pencil.
In the toolbar under the Draw/Line/Eraser buttons, you can find the
"Use Sketching Sessions" toggle, which enables this feature. This is a
per-scene setting, and defaults to off, so that the current 2.5
behaviour is still the default (i.e. the Grease Pencil operator will
only do a single stroke at a time).
With this option enabled, drawing with Grease Pencil will enter a
semi-modal state where you can draw multiple strokes without needing
to keep holding the DKEY throughout (though you'll still need to do so
to start the strokes, unless you use some toolbar buttons), while
still being able to manipulate the viewport. Header help-text prints
show the appropriate keybindings (i.e. press ESCKEY or ENTER to end
the sketching session).
Notes:
- To aid maintainability of the 3D-View toolbar code, I've taken the
liberty to factor out the groups of widgets which commonly occur in
most of the toolbars into separate functions (namely "Repeat" and
"Grease Pencil"). Perhaps it might make it slightly harder to newbies
to the toolbar code to grasp, though the physics panels are far worse
;)
- I've reshuffled some code in the Grease Pencil code to separate out
the various states of operation again more clearly, though some more
work is still needed there (TODO)
- There can now be only one Grease Pencil operator running at a time
- Redoing Grease Pencil operations where sketching sessions was
enabled still needs work. Namely, a way of delimiting the set of
points recorded into strokes is still needed (TODO)
- Ultimately, it should be possible to switch tools midway through a
session. Currently sessions are limited to only being able to be used
with a single drawing mode (TODO)
- After ending a drawing session, the titlebar contols may not work on
Windows without manually making the main window lose focus and then
regain (i.e. click on some other window in toolbar, then come back).
This may be related to (bug #25480)
2011-01-04 03:14:01 +00:00
|
|
|
draw_gpencil_tools(context, layout)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_posemode_options(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "posemode"
|
|
|
|
bl_label = "Pose Options"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
arm = context.active_object.data
|
2009-10-19 13:24:18 +00:00
|
|
|
|
2011-04-01 21:37:40 +00:00
|
|
|
self.layout.prop(arm, "use_auto_ik")
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2009-07-24 11:14:59 +00:00
|
|
|
# ********** default tools for paint modes ****************
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class View3DPaintPanel(UnifiedPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'VIEW_3D'
|
|
|
|
bl_region_type = 'TOOLS'
|
2009-07-20 16:39:16 +00:00
|
|
|
|
2012-01-17 17:57:20 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Brush"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
return cls.paint_settings(context)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2012-01-17 17:57:20 +00:00
|
|
|
toolsettings = context.tool_settings
|
2011-07-11 05:50:49 +00:00
|
|
|
settings = self.paint_settings(context)
|
2009-10-31 19:31:45 +00:00
|
|
|
brush = settings.brush
|
|
|
|
|
|
|
|
if not context.particle_edit_object:
|
|
|
|
col = layout.split().column()
|
2010-08-04 12:18:07 +00:00
|
|
|
col.template_ID_preview(settings, "brush", new="brush.add", rows=3, cols=8)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
# Particle Mode #
|
|
|
|
if context.particle_edit_object:
|
2011-10-12 00:47:50 +00:00
|
|
|
tool = settings.tool
|
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.column().prop(settings, "tool", expand=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-10-12 00:47:50 +00:00
|
|
|
if tool != 'NONE':
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(brush, "size", slider=True)
|
2011-10-12 00:47:50 +00:00
|
|
|
if tool != 'ADD':
|
2010-03-22 17:12:08 +00:00
|
|
|
col.prop(brush, "strength", slider=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-10-12 00:47:50 +00:00
|
|
|
if tool == 'ADD':
|
2010-03-22 17:12:08 +00:00
|
|
|
col.prop(brush, "count")
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column()
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(settings, "use_default_interpolate")
|
2009-10-31 19:31:45 +00:00
|
|
|
sub = col.column(align=True)
|
2010-08-20 06:09:58 +00:00
|
|
|
sub.active = settings.use_default_interpolate
|
2009-11-23 00:27:30 +00:00
|
|
|
sub.prop(brush, "steps", slider=True)
|
2010-08-20 06:09:58 +00:00
|
|
|
sub.prop(settings, "default_key_count", slider=True)
|
2011-10-12 00:47:50 +00:00
|
|
|
elif tool == 'LENGTH':
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.prop(brush, "length_mode", expand=True)
|
2011-10-12 00:47:50 +00:00
|
|
|
elif tool == 'PUFF':
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.prop(brush, "puff_mode", expand=True)
|
2010-01-12 16:35:34 +00:00
|
|
|
layout.prop(brush, "use_puff_volume")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
# Sculpt Mode #
|
|
|
|
|
|
|
|
elif context.sculpt_object and brush:
|
2012-03-15 09:11:16 +00:00
|
|
|
capabilities = brush.sculpt_capabilities
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column()
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
col.separator()
|
2009-12-29 00:04:57 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
|
2012-01-17 17:57:20 +00:00
|
|
|
ups = toolsettings.unified_paint_settings
|
2013-06-27 03:05:19 +00:00
|
|
|
if ((ups.use_unified_size and ups.use_locked_size) or
|
2012-10-08 08:28:05 +00:00
|
|
|
((not ups.use_unified_size) and brush.use_locked_size)):
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "use_locked_size", icon='LOCKED')
|
2012-01-14 23:54:51 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "unprojected_radius", slider=True, text="Radius")
|
2010-07-14 14:11:03 +00:00
|
|
|
else:
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "use_locked_size", icon='UNLOCKED')
|
2012-01-14 23:54:51 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "size", slider=True, text="Radius")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "use_pressure_size")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# strength, use_strength_pressure, and use_strength_attenuation
|
|
|
|
if capabilities.has_strength:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
2009-10-31 19:31:45 +00:00
|
|
|
row = col.row(align=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
if capabilities.has_space_attenuation:
|
2012-03-15 06:39:54 +00:00
|
|
|
if brush.use_space_attenuation:
|
|
|
|
row.prop(brush, "use_space_attenuation", toggle=True, text="", icon='LOCKED')
|
2010-07-14 14:11:03 +00:00
|
|
|
else:
|
2012-03-15 06:39:54 +00:00
|
|
|
row.prop(brush, "use_space_attenuation", toggle=True, text="", icon='UNLOCKED')
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2012-01-19 18:22:55 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "strength", text="Strength")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "use_pressure_strength")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# auto_smooth_factor and use_inverse_smooth_pressure
|
|
|
|
if capabilities.has_auto_smooth:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
|
|
|
|
|
|
|
row = col.row(align=True)
|
2010-08-18 03:56:14 +00:00
|
|
|
row.prop(brush, "auto_smooth_factor", slider=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
row.prop(brush, "use_inverse_smooth_pressure", toggle=True, text="")
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# normal_weight
|
|
|
|
if capabilities.has_normal_weight:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
|
|
|
row = col.row(align=True)
|
|
|
|
row.prop(brush, "normal_weight", slider=True)
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# crease_pinch_factor
|
|
|
|
if capabilities.has_pinch_factor:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
|
|
|
row = col.row(align=True)
|
|
|
|
row.prop(brush, "crease_pinch_factor", slider=True, text="Pinch")
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# use_original_normal and sculpt_plane
|
|
|
|
if capabilities.has_sculpt_plane:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
|
|
|
|
if brush.use_original_normal:
|
|
|
|
row.prop(brush, "use_original_normal", toggle=True, text="", icon='LOCKED')
|
|
|
|
else:
|
|
|
|
row.prop(brush, "use_original_normal", toggle=True, text="", icon='UNLOCKED')
|
|
|
|
|
|
|
|
row.prop(brush, "sculpt_plane", text="")
|
|
|
|
|
2012-05-10 20:35:32 +00:00
|
|
|
if brush.sculpt_tool == 'MASK':
|
|
|
|
col.prop(brush, "mask_tool", text="")
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# plane_offset, use_offset_pressure, use_plane_trim, plane_trim
|
|
|
|
if capabilities.has_plane_offset:
|
2010-07-14 14:11:03 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
row.prop(brush, "plane_offset", slider=True)
|
|
|
|
row.prop(brush, "use_offset_pressure", text="")
|
|
|
|
|
|
|
|
col.separator()
|
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
row = col.row()
|
2010-07-14 14:11:03 +00:00
|
|
|
row.prop(brush, "use_plane_trim", text="Trim")
|
2010-09-07 15:17:42 +00:00
|
|
|
row = col.row()
|
|
|
|
row.active = brush.use_plane_trim
|
2010-07-14 14:11:03 +00:00
|
|
|
row.prop(brush, "plane_trim", slider=True, text="Distance")
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# height
|
|
|
|
if capabilities.has_height:
|
2011-02-25 16:54:09 +00:00
|
|
|
row = col.row()
|
|
|
|
row.prop(brush, "height", slider=True, text="Height")
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# use_frontface
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
2010-09-07 15:17:42 +00:00
|
|
|
row = col.row()
|
2010-07-14 14:11:03 +00:00
|
|
|
row.prop(brush, "use_frontface", text="Front Faces Only")
|
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# direction
|
2010-07-26 05:25:09 +00:00
|
|
|
col.separator()
|
|
|
|
col.row().prop(brush, "direction", expand=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# use_accumulate
|
|
|
|
if capabilities.has_accumulate:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-07-14 14:11:03 +00:00
|
|
|
col.prop(brush, "use_accumulate")
|
2009-11-06 16:46:35 +00:00
|
|
|
|
2012-03-15 09:11:16 +00:00
|
|
|
# use_persistent, set_persistent_base
|
|
|
|
if capabilities.has_persistence:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
|
|
|
|
|
|
|
ob = context.sculpt_object
|
|
|
|
do_persistent = True
|
|
|
|
|
|
|
|
# not supported yet for this case
|
|
|
|
for md in ob.modifiers:
|
|
|
|
if md.type == 'MULTIRES':
|
|
|
|
do_persistent = False
|
2013-04-20 13:23:53 +00:00
|
|
|
break
|
2010-07-14 14:11:03 +00:00
|
|
|
|
|
|
|
if do_persistent:
|
|
|
|
col.prop(brush, "use_persistent")
|
|
|
|
col.operator("sculpt.set_persistent_base")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2013-04-22 20:46:18 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label(text="Overlay:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
if brush.use_cursor_overlay:
|
|
|
|
row.prop(brush, "use_cursor_overlay", toggle=True, text="", icon='RESTRICT_VIEW_OFF')
|
|
|
|
else:
|
|
|
|
row.prop(brush, "use_cursor_overlay", toggle=True, text="", icon='RESTRICT_VIEW_ON')
|
2013-06-27 03:05:19 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
sub.prop(brush, "cursor_overlay_alpha", text="Alpha")
|
2013-04-23 07:06:29 +00:00
|
|
|
sub.prop(brush, "use_cursor_overlay_override", toggle=True, text="", icon='BRUSH_DATA')
|
2013-04-22 20:46:18 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
# Texture Paint Mode #
|
|
|
|
|
2011-04-01 04:22:30 +00:00
|
|
|
elif context.image_paint_object and brush:
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column()
|
2013-05-01 03:28:14 +00:00
|
|
|
|
|
|
|
if brush.image_tool == 'DRAW' and brush.blend not in ('ERASE_ALPHA', 'ADD_ALPHA'):
|
|
|
|
col.template_color_picker(brush, "color", value_slider=True)
|
|
|
|
col.prop(brush, "color", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = col.row(align=True)
|
2012-01-14 23:54:51 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "size", slider=True, text="Radius")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "use_pressure_size")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = col.row(align=True)
|
2012-01-19 18:22:55 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "strength", text="Strength")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "use_pressure_strength")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(brush, "blend", text="Blend")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-03-16 18:05:53 +00:00
|
|
|
col = layout.column()
|
2011-03-07 13:23:45 +00:00
|
|
|
col.active = (brush.blend not in {'ERASE_ALPHA', 'ADD_ALPHA'})
|
2010-03-16 18:05:53 +00:00
|
|
|
col.prop(brush, "use_alpha")
|
2010-04-04 14:52:15 +00:00
|
|
|
|
2013-04-22 20:46:18 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label(text="Overlay:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
if brush.use_cursor_overlay:
|
|
|
|
row.prop(brush, "use_cursor_overlay", toggle=True, text="", icon='RESTRICT_VIEW_OFF')
|
|
|
|
else:
|
|
|
|
row.prop(brush, "use_cursor_overlay", toggle=True, text="", icon='RESTRICT_VIEW_ON')
|
2013-06-27 03:05:19 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
sub.prop(brush, "cursor_overlay_alpha", text="Alpha")
|
2013-04-23 07:06:29 +00:00
|
|
|
sub.prop(brush, "use_cursor_overlay_override", toggle=True, text="", icon='BRUSH_DATA')
|
2013-04-22 20:46:18 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
# Weight Paint Mode #
|
|
|
|
elif context.weight_paint_object and brush:
|
|
|
|
|
|
|
|
col = layout.column()
|
2010-07-22 18:56:46 +00:00
|
|
|
|
2012-04-29 20:04:25 +00:00
|
|
|
row = col.row(align=True)
|
|
|
|
self.prop_unified_weight(row, context, brush, "weight", slider=True, text="Weight")
|
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
row = col.row(align=True)
|
2012-01-14 23:54:51 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "size", slider=True, text="Radius")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "use_pressure_size")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = col.row(align=True)
|
2012-01-19 18:22:55 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "strength", text="Strength")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "use_pressure_strength")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2012-06-20 09:34:26 +00:00
|
|
|
col.prop(brush, "vertex_tool", text="Blend")
|
|
|
|
|
2013-06-28 17:10:25 +00:00
|
|
|
col = layout.column()
|
|
|
|
col.prop(toolsettings, "use_auto_normalize", text="Auto Normalize")
|
|
|
|
col.prop(toolsettings, "use_multipaint", text="Multi-Paint")
|
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
# Vertex Paint Mode #
|
|
|
|
elif context.vertex_paint_object and brush:
|
|
|
|
col = layout.column()
|
2012-11-09 11:03:53 +00:00
|
|
|
col.template_color_picker(brush, "color", value_slider=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(brush, "color", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = col.row(align=True)
|
2012-01-14 23:54:51 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "size", slider=True, text="Radius")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_size(row, context, brush, "use_pressure_size")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = col.row(align=True)
|
2012-01-19 18:22:55 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "strength", text="Strength")
|
2012-01-12 21:48:08 +00:00
|
|
|
self.prop_unified_strength(row, context, brush, "use_pressure_strength")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-14 13:35:44 +00:00
|
|
|
# XXX - TODO
|
|
|
|
#row = col.row(align=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
#row.prop(brush, "jitter", slider=True)
|
2010-08-18 03:56:14 +00:00
|
|
|
#row.prop(brush, "use_pressure_jitter", toggle=True, text="")
|
2009-07-25 22:31:02 +00:00
|
|
|
|
2012-06-20 09:34:26 +00:00
|
|
|
col.prop(brush, "vertex_tool", text="Blend")
|
|
|
|
|
2013-04-22 20:46:18 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.label(text="Overlay:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
if brush.use_cursor_overlay:
|
|
|
|
row.prop(brush, "use_cursor_overlay", toggle=True, text="", icon='RESTRICT_VIEW_OFF')
|
|
|
|
else:
|
|
|
|
row.prop(brush, "use_cursor_overlay", toggle=True, text="", icon='RESTRICT_VIEW_ON')
|
2013-06-27 03:05:19 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
sub.prop(brush, "cursor_overlay_alpha", text="Alpha")
|
2013-04-23 07:06:29 +00:00
|
|
|
sub.prop(brush, "use_cursor_overlay_override", toggle=True, text="", icon='BRUSH_DATA')
|
2013-04-22 20:46:18 +00:00
|
|
|
|
2010-01-03 08:37:18 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_brush_texture(Panel, View3DPaintPanel):
|
2010-01-03 08:37:18 +00:00
|
|
|
bl_label = "Texture"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-01-03 08:37:18 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
settings = cls.paint_settings(context)
|
2012-10-08 08:28:05 +00:00
|
|
|
return (settings and settings.brush and
|
2013-03-14 03:42:17 +00:00
|
|
|
(context.sculpt_object or context.image_paint_object or context.vertex_paint_object))
|
2010-01-03 08:37:18 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2011-07-11 05:50:49 +00:00
|
|
|
settings = self.paint_settings(context)
|
2010-01-03 08:37:18 +00:00
|
|
|
brush = settings.brush
|
|
|
|
tex_slot = brush.texture_slot
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-01-03 08:37:18 +00:00
|
|
|
col = layout.column()
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-07-14 14:11:03 +00:00
|
|
|
col.template_ID_preview(brush, "texture", new="texture.new", rows=3, cols=8)
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2013-01-16 12:57:35 +00:00
|
|
|
brush_texture_settings(col, brush, context.sculpt_object)
|
2011-10-31 01:50:04 +00:00
|
|
|
|
2013-03-14 02:27:36 +00:00
|
|
|
# use_texture_overlay and texture_overlay_alpha
|
|
|
|
col = layout.column(align=True)
|
|
|
|
col.active = brush.brush_capabilities.has_overlay
|
|
|
|
col.label(text="Overlay:")
|
2011-10-31 01:50:04 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-04-08 15:42:13 +00:00
|
|
|
if tex_slot.map_mode != 'STENCIL':
|
2013-04-16 15:59:02 +00:00
|
|
|
if brush.use_primary_overlay:
|
2013-04-16 15:02:41 +00:00
|
|
|
row.prop(brush, "use_primary_overlay", toggle=True, text="", icon='RESTRICT_VIEW_OFF')
|
2013-04-08 15:42:13 +00:00
|
|
|
else:
|
2013-04-16 15:02:41 +00:00
|
|
|
row.prop(brush, "use_primary_overlay", toggle=True, text="", icon='RESTRICT_VIEW_ON')
|
2013-06-27 03:05:19 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-03-14 02:27:36 +00:00
|
|
|
sub.prop(brush, "texture_overlay_alpha", text="Alpha")
|
2013-04-23 07:06:29 +00:00
|
|
|
sub.prop(brush, "use_primary_overlay_override", toggle=True, text="", icon='BRUSH_DATA')
|
2010-01-31 14:46:28 +00:00
|
|
|
|
|
|
|
|
2013-03-25 01:00:16 +00:00
|
|
|
class VIEW3D_PT_tools_mask_texture(View3DPanel, Panel):
|
|
|
|
bl_context = "imagepaint"
|
|
|
|
bl_label = "Texture Mask"
|
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
brush = context.tool_settings.image_paint.brush
|
2013-05-01 03:28:14 +00:00
|
|
|
return (context.image_paint_object and brush)
|
2013-03-25 01:00:16 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
brush = context.tool_settings.image_paint.brush
|
|
|
|
tex_slot_alpha = brush.mask_texture_slot
|
|
|
|
|
|
|
|
col = layout.column()
|
|
|
|
|
|
|
|
col.template_ID_preview(brush, "mask_texture", new="texture.new", rows=3, cols=8)
|
|
|
|
|
|
|
|
brush_mask_texture_settings(col, brush)
|
2013-06-27 03:05:19 +00:00
|
|
|
|
2013-04-16 15:02:41 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.active = brush.brush_capabilities.has_overlay
|
|
|
|
col.label(text="Overlay:")
|
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2013-04-16 15:02:41 +00:00
|
|
|
if tex_slot_alpha.map_mode != 'STENCIL':
|
|
|
|
if brush.use_secondary_overlay:
|
|
|
|
row.prop(brush, "use_secondary_overlay", toggle=True, text="", icon='RESTRICT_VIEW_OFF')
|
|
|
|
else:
|
|
|
|
row.prop(brush, "use_secondary_overlay", toggle=True, text="", icon='RESTRICT_VIEW_ON')
|
2013-06-27 03:05:19 +00:00
|
|
|
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = row.row(align=True)
|
2013-04-22 20:46:18 +00:00
|
|
|
sub.prop(brush, "mask_overlay_alpha", text="Alpha")
|
2013-04-23 07:06:29 +00:00
|
|
|
sub.prop(brush, "use_secondary_overlay_override", toggle=True, text="", icon='BRUSH_DATA')
|
2013-03-25 01:00:16 +00:00
|
|
|
|
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_brush_stroke(Panel, View3DPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Stroke"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
settings = cls.paint_settings(context)
|
2012-10-08 08:28:05 +00:00
|
|
|
return (settings and
|
|
|
|
settings.brush and
|
|
|
|
(context.sculpt_object or
|
|
|
|
context.vertex_paint_object or
|
|
|
|
context.weight_paint_object or
|
|
|
|
context.image_paint_object))
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2011-07-11 05:50:49 +00:00
|
|
|
settings = self.paint_settings(context)
|
2009-10-31 19:31:45 +00:00
|
|
|
brush = settings.brush
|
|
|
|
|
2010-07-14 14:11:03 +00:00
|
|
|
col = layout.column()
|
|
|
|
|
2013-03-30 11:40:09 +00:00
|
|
|
col.label(text="Stroke Method:")
|
2013-04-07 01:38:03 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
if context.sculpt_object:
|
2013-03-30 11:40:09 +00:00
|
|
|
col.prop(brush, "sculpt_stroke_method", text="")
|
|
|
|
else:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.prop(brush, "stroke_method", text="")
|
|
|
|
|
2013-03-30 11:40:09 +00:00
|
|
|
if brush.use_anchor:
|
|
|
|
col.separator()
|
|
|
|
col.prop(brush, "use_edge_to_edge", "Edge To Edge")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2013-03-30 11:40:09 +00:00
|
|
|
if brush.use_airbrush:
|
|
|
|
col.separator()
|
|
|
|
col.prop(brush, "rate", text="Rate", slider=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2013-03-30 11:40:09 +00:00
|
|
|
if brush.use_space:
|
|
|
|
col.separator()
|
|
|
|
row = col.row(align=True)
|
|
|
|
row.active = brush.use_space
|
|
|
|
row.prop(brush, "spacing", text="Spacing")
|
|
|
|
row.prop(brush, "use_pressure_spacing", toggle=True, text="")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2013-03-30 11:40:09 +00:00
|
|
|
if context.sculpt_object:
|
2012-03-15 09:11:16 +00:00
|
|
|
if brush.sculpt_capabilities.has_jitter:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
|
|
|
|
|
|
|
row = col.row(align=True)
|
2013-03-30 11:40:09 +00:00
|
|
|
if brush.use_relative_jitter:
|
2013-03-11 01:46:22 +00:00
|
|
|
row.prop(brush, "use_relative_jitter", text="", icon='LOCKED')
|
2013-03-10 20:05:18 +00:00
|
|
|
row.prop(brush, "jitter", slider=True)
|
2013-03-11 01:46:22 +00:00
|
|
|
else:
|
|
|
|
row.prop(brush, "use_relative_jitter", text="", icon='UNLOCKED')
|
|
|
|
row.prop(brush, "jitter_absolute")
|
2010-08-18 03:56:14 +00:00
|
|
|
row.prop(brush, "use_pressure_jitter", toggle=True, text="")
|
2013-03-31 16:17:18 +00:00
|
|
|
if brush.sculpt_capabilities.has_smooth_stroke:
|
|
|
|
col = layout.column()
|
|
|
|
col.separator()
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2013-03-31 16:17:18 +00:00
|
|
|
col.prop(brush, "use_smooth_stroke")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2013-03-31 16:17:18 +00:00
|
|
|
sub = col.column()
|
|
|
|
sub.active = brush.use_smooth_stroke
|
|
|
|
sub.prop(brush, "smooth_stroke_radius", text="Radius", slider=True)
|
|
|
|
sub.prop(brush, "smooth_stroke_factor", text="Factor", slider=True)
|
|
|
|
else:
|
2010-07-14 14:11:03 +00:00
|
|
|
col.separator()
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2013-03-10 00:58:09 +00:00
|
|
|
row = col.row(align=True)
|
2013-03-30 11:40:09 +00:00
|
|
|
if brush.use_relative_jitter:
|
|
|
|
row.prop(brush, "use_relative_jitter", text="", icon='LOCKED')
|
|
|
|
row.prop(brush, "jitter", slider=True)
|
|
|
|
else:
|
|
|
|
row.prop(brush, "use_relative_jitter", text="", icon='UNLOCKED')
|
|
|
|
row.prop(brush, "jitter_absolute")
|
|
|
|
row.prop(brush, "use_pressure_jitter", toggle=True, text="")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2013-03-31 16:17:18 +00:00
|
|
|
col = layout.column()
|
|
|
|
col.separator()
|
|
|
|
|
|
|
|
col.prop(brush, "use_smooth_stroke")
|
|
|
|
|
|
|
|
sub = col.column()
|
|
|
|
sub.active = brush.use_smooth_stroke
|
|
|
|
sub.prop(brush, "smooth_stroke_radius", text="Radius", slider=True)
|
|
|
|
sub.prop(brush, "smooth_stroke_factor", text="Factor", slider=True)
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2013-04-07 01:38:03 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_brush_curve(Panel, View3DPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Curve"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
settings = cls.paint_settings(context)
|
2009-10-31 19:31:45 +00:00
|
|
|
return (settings and settings.brush and settings.brush.curve)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2010-08-09 08:18:49 +00:00
|
|
|
settings = self.paint_settings(context)
|
2010-08-10 18:21:33 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
brush = settings.brush
|
|
|
|
|
2010-01-04 17:28:37 +00:00
|
|
|
layout.template_curve_mapping(brush, "curve", brush=True)
|
2010-03-14 23:26:17 +00:00
|
|
|
|
2010-03-14 13:07:13 +00:00
|
|
|
row = layout.row(align=True)
|
2011-11-08 01:32:34 +00:00
|
|
|
row.operator("brush.curve_preset", icon='SMOOTHCURVE', text="").shape = 'SMOOTH'
|
|
|
|
row.operator("brush.curve_preset", icon='SPHERECURVE', text="").shape = 'ROUND'
|
|
|
|
row.operator("brush.curve_preset", icon='ROOTCURVE', text="").shape = 'ROOT'
|
|
|
|
row.operator("brush.curve_preset", icon='SHARPCURVE', text="").shape = 'SHARP'
|
|
|
|
row.operator("brush.curve_preset", icon='LINCURVE', text="").shape = 'LINE'
|
|
|
|
row.operator("brush.curve_preset", icon='NOCURVE', text="").shape = 'MAX'
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2010-08-09 08:18:49 +00:00
|
|
|
|
2012-12-30 18:31:17 +00:00
|
|
|
class VIEW3D_PT_sculpt_topology(Panel, View3DPaintPanel):
|
|
|
|
bl_label = "Topology"
|
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
return (context.sculpt_object and context.tool_settings.sculpt)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
toolsettings = context.tool_settings
|
|
|
|
sculpt = toolsettings.sculpt
|
|
|
|
|
|
|
|
if context.sculpt_object.use_dynamic_topology_sculpting:
|
|
|
|
layout.operator("sculpt.dynamic_topology_toggle", icon='X', text="Disable Dynamic")
|
|
|
|
else:
|
|
|
|
layout.operator("sculpt.dynamic_topology_toggle", icon='SCULPT_DYNTOPO', text="Enable Dynamic")
|
|
|
|
|
|
|
|
col = layout.column()
|
|
|
|
col.active = context.sculpt_object.use_dynamic_topology_sculpting
|
|
|
|
col.prop(sculpt, "detail_size")
|
|
|
|
col.prop(sculpt, "use_smooth_shading")
|
|
|
|
col.prop(sculpt, "use_edge_collapse")
|
|
|
|
col.operator("sculpt.optimize")
|
|
|
|
col.separator()
|
|
|
|
col.prop(sculpt, "symmetrize_direction")
|
|
|
|
col.operator("sculpt.symmetrize")
|
|
|
|
|
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Options"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-12-23 15:51:39 +00:00
|
|
|
return (context.sculpt_object and context.tool_settings.sculpt)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2012-01-17 17:57:20 +00:00
|
|
|
toolsettings = context.tool_settings
|
|
|
|
sculpt = toolsettings.sculpt
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-05-04 13:15:42 +00:00
|
|
|
layout.label(text="Lock:")
|
|
|
|
row = layout.row(align=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
row.prop(sculpt, "lock_x", text="X", toggle=True)
|
|
|
|
row.prop(sculpt, "lock_y", text="Y", toggle=True)
|
|
|
|
row.prop(sculpt, "lock_z", text="Z", toggle=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-05-04 13:15:42 +00:00
|
|
|
layout.prop(sculpt, "use_threaded", text="Threaded Sculpt")
|
|
|
|
layout.prop(sculpt, "show_low_resolution")
|
|
|
|
layout.prop(sculpt, "use_deform_only")
|
2012-10-22 17:33:53 +00:00
|
|
|
layout.prop(sculpt, "show_diffuse_color")
|
2011-05-04 13:15:42 +00:00
|
|
|
|
2012-05-21 23:32:46 +00:00
|
|
|
layout.prop(sculpt, "input_samples")
|
|
|
|
|
2012-01-12 17:22:32 +00:00
|
|
|
self.unified_paint_settings(layout, context)
|
2011-05-04 13:15:42 +00:00
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_sculpt_symmetry(Panel, View3DPaintPanel):
|
2010-07-14 14:11:03 +00:00
|
|
|
bl_label = "Symmetry"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-07-14 14:11:03 +00:00
|
|
|
return (context.sculpt_object and context.tool_settings.sculpt)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
sculpt = context.tool_settings.sculpt
|
|
|
|
|
2011-10-31 00:03:18 +00:00
|
|
|
col = layout.column(align=True)
|
2010-07-14 14:11:03 +00:00
|
|
|
col.label(text="Mirror:")
|
2013-08-23 20:41:21 +00:00
|
|
|
row = col.row(align=True)
|
2011-10-31 00:03:18 +00:00
|
|
|
row.prop(sculpt, "use_symmetry_x", text="X", toggle=True)
|
|
|
|
row.prop(sculpt, "use_symmetry_y", text="Y", toggle=True)
|
|
|
|
row.prop(sculpt, "use_symmetry_z", text="Z", toggle=True)
|
2011-10-31 01:50:04 +00:00
|
|
|
|
2011-10-31 00:03:18 +00:00
|
|
|
layout.column().prop(sculpt, "radial_symmetry", text="Radial")
|
2011-04-01 21:37:40 +00:00
|
|
|
layout.prop(sculpt, "use_symmetry_feather", text="Feather")
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_brush_appearance(Panel, View3DPaintPanel):
|
2010-07-14 14:11:03 +00:00
|
|
|
bl_label = "Appearance"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2012-01-17 17:57:20 +00:00
|
|
|
toolsettings = context.tool_settings
|
|
|
|
return ((context.sculpt_object and toolsettings.sculpt) or
|
|
|
|
(context.vertex_paint_object and toolsettings.vertex_paint) or
|
|
|
|
(context.weight_paint_object and toolsettings.weight_paint) or
|
|
|
|
(context.image_paint_object and toolsettings.image_paint))
|
2010-07-14 14:11:03 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2011-07-11 05:50:49 +00:00
|
|
|
settings = self.paint_settings(context)
|
2010-07-14 14:11:03 +00:00
|
|
|
brush = settings.brush
|
|
|
|
|
2011-06-27 03:36:14 +00:00
|
|
|
if brush is None: # unlikely but can happen
|
2011-09-21 15:18:38 +00:00
|
|
|
layout.label(text="Brush Unset")
|
2011-06-27 03:36:14 +00:00
|
|
|
return
|
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
col = layout.column()
|
2013-06-27 03:05:19 +00:00
|
|
|
col.prop(settings, "show_brush")
|
2013-05-01 15:28:56 +00:00
|
|
|
|
|
|
|
col = col.column()
|
|
|
|
col.active = settings.show_brush
|
2010-07-21 11:58:23 +00:00
|
|
|
|
2010-07-22 18:56:46 +00:00
|
|
|
if context.sculpt_object and context.tool_settings.sculpt:
|
2012-03-15 09:11:16 +00:00
|
|
|
if brush.sculpt_capabilities.has_secondary_color:
|
2013-05-01 15:28:56 +00:00
|
|
|
col.row().prop(brush, "cursor_color_add", text="Add")
|
|
|
|
col.row().prop(brush, "cursor_color_subtract", text="Subtract")
|
2010-07-14 14:11:03 +00:00
|
|
|
else:
|
2013-05-01 15:28:56 +00:00
|
|
|
col.prop(brush, "cursor_color_add", text="")
|
2010-07-22 18:56:46 +00:00
|
|
|
else:
|
2013-05-01 15:28:56 +00:00
|
|
|
col.prop(brush, "cursor_color_add", text="")
|
|
|
|
|
|
|
|
layout.separator()
|
2010-07-14 14:11:03 +00:00
|
|
|
|
2011-11-02 15:58:56 +00:00
|
|
|
col = layout.column(align=True)
|
|
|
|
col.prop(brush, "use_custom_icon")
|
2010-07-26 04:00:09 +00:00
|
|
|
if brush.use_custom_icon:
|
2011-11-02 15:58:56 +00:00
|
|
|
col.prop(brush, "icon_filepath", text="")
|
2009-07-24 21:01:41 +00:00
|
|
|
|
2011-10-17 06:58:07 +00:00
|
|
|
# ********** default tools for weight-paint ****************
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_weightpaint(View3DPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "weightpaint"
|
|
|
|
bl_label = "Weight Tools"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2011-01-01 07:20:34 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("object.vertex_group_normalize_all", text="Normalize All")
|
|
|
|
col.operator("object.vertex_group_normalize", text="Normalize")
|
2011-11-01 08:11:55 +00:00
|
|
|
col.operator("object.vertex_group_mirror", text="Mirror")
|
2009-11-23 00:27:30 +00:00
|
|
|
col.operator("object.vertex_group_invert", text="Invert")
|
|
|
|
col.operator("object.vertex_group_clean", text="Clean")
|
|
|
|
col.operator("object.vertex_group_levels", text="Levels")
|
2012-04-03 02:16:27 +00:00
|
|
|
col.operator("object.vertex_group_blend", text="Blend")
|
2012-10-09 22:55:05 +00:00
|
|
|
col.operator("object.vertex_group_transfer_weight", text="Transfer Weights")
|
2012-10-09 10:56:35 +00:00
|
|
|
col.operator("object.vertex_group_limit_total", text="Limit Total")
|
2011-07-29 17:36:49 +00:00
|
|
|
col.operator("object.vertex_group_fix", text="Fix Deforms")
|
2012-12-22 08:19:27 +00:00
|
|
|
col.operator("paint.weight_gradient")
|
2009-10-20 13:59:26 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_weightpaint_options(Panel, View3DPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "weightpaint"
|
|
|
|
bl_label = "Options"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2010-07-22 18:56:46 +00:00
|
|
|
tool_settings = context.tool_settings
|
|
|
|
wpaint = tool_settings.weight_paint
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column()
|
2012-01-15 13:23:57 +00:00
|
|
|
|
2012-09-07 05:54:54 +00:00
|
|
|
col.prop(wpaint, "use_all_faces")
|
2010-08-22 06:31:26 +00:00
|
|
|
col.prop(wpaint, "use_normal")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(wpaint, "use_spray")
|
2012-01-15 13:23:57 +00:00
|
|
|
col.prop(wpaint, "use_group_restrict")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-10 10:20:44 +00:00
|
|
|
obj = context.weight_paint_object
|
|
|
|
if obj.type == 'MESH':
|
2010-02-17 19:50:42 +00:00
|
|
|
mesh = obj.data
|
|
|
|
col.prop(mesh, "use_mirror_x")
|
2013-06-28 17:13:09 +00:00
|
|
|
row = col.row()
|
|
|
|
row.active = mesh.use_mirror_x
|
|
|
|
row.prop(mesh, "use_mirror_topology")
|
2009-07-24 11:14:59 +00:00
|
|
|
|
2012-05-21 23:32:46 +00:00
|
|
|
col.prop(wpaint, "input_samples")
|
2012-06-19 22:17:19 +00:00
|
|
|
|
2013-02-22 04:09:04 +00:00
|
|
|
col.label("Show Zero Weights:")
|
2013-04-13 22:52:28 +00:00
|
|
|
sub = col.row()
|
|
|
|
sub.active = (not tool_settings.use_multipaint)
|
|
|
|
sub.prop(tool_settings, "vertex_group_user", expand=True)
|
2013-02-22 04:09:04 +00:00
|
|
|
|
2012-01-12 17:22:32 +00:00
|
|
|
self.unified_paint_settings(col, context)
|
2010-07-22 18:56:46 +00:00
|
|
|
|
2011-10-17 06:58:07 +00:00
|
|
|
# ********** default tools for vertex-paint ****************
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_tools_vertexpaint(Panel, View3DPaintPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "vertexpaint"
|
|
|
|
bl_label = "Options"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2012-01-17 17:57:20 +00:00
|
|
|
toolsettings = context.tool_settings
|
|
|
|
vpaint = toolsettings.vertex_paint
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column()
|
2010-01-20 08:30:40 +00:00
|
|
|
#col.prop(vpaint, "mode", text="")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(vpaint, "use_all_faces")
|
2010-08-21 04:51:00 +00:00
|
|
|
col.prop(vpaint, "use_normal")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(vpaint, "use_spray")
|
2009-11-20 01:39:27 +00:00
|
|
|
|
2012-05-21 23:32:46 +00:00
|
|
|
col.prop(vpaint, "input_samples")
|
|
|
|
|
2012-01-12 17:22:32 +00:00
|
|
|
self.unified_paint_settings(col, context)
|
2010-07-22 18:56:46 +00:00
|
|
|
|
2009-07-24 11:14:59 +00:00
|
|
|
# Commented out because the Apply button isn't an operator yet, making these settings useless
|
2012-02-08 04:37:37 +00:00
|
|
|
#~ col.label(text="Gamma:")
|
|
|
|
#~ col.prop(vpaint, "gamma", text="")
|
|
|
|
#~ col.label(text="Multiply:")
|
|
|
|
#~ col.prop(vpaint, "mul", text="")
|
2009-07-24 21:01:41 +00:00
|
|
|
|
2011-10-17 06:58:07 +00:00
|
|
|
# ********** default tools for texture-paint ****************
|
2009-07-02 11:24:27 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_projectpaint(View3DPanel, Panel):
|
2011-04-01 04:22:30 +00:00
|
|
|
bl_context = "imagepaint"
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Project Paint"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-08-04 12:18:07 +00:00
|
|
|
brush = context.tool_settings.image_paint.brush
|
2012-11-06 09:19:51 +00:00
|
|
|
return (brush is not None)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2011-04-04 08:47:31 +00:00
|
|
|
ob = context.active_object
|
|
|
|
mesh = ob.data
|
2012-01-17 17:57:20 +00:00
|
|
|
toolsettings = context.tool_settings
|
|
|
|
ipaint = toolsettings.image_paint
|
|
|
|
settings = toolsettings.image_paint
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2013-03-14 02:45:23 +00:00
|
|
|
layout.prop(ipaint, "input_samples")
|
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
col = layout.column()
|
2011-11-02 16:19:57 +00:00
|
|
|
col.prop(ipaint, "use_occlude")
|
|
|
|
col.prop(ipaint, "use_backface_culling")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
row = layout.row()
|
|
|
|
row.prop(ipaint, "use_normal_falloff")
|
2013-03-28 19:33:14 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
sub = row.row()
|
|
|
|
sub.active = (ipaint.use_normal_falloff)
|
|
|
|
sub.prop(ipaint, "normal_angle", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
split = layout.split()
|
2011-11-04 15:21:34 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
split.prop(ipaint, "use_stencil_layer", text="Stencil")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
row = split.row()
|
|
|
|
row.active = (ipaint.use_stencil_layer)
|
2012-02-28 02:08:32 +00:00
|
|
|
stencil_text = mesh.uv_texture_stencil.name if mesh.uv_texture_stencil else ""
|
2013-02-08 16:41:02 +00:00
|
|
|
row.menu("VIEW3D_MT_tools_projectpaint_stencil", text=stencil_text, translate=False)
|
2011-11-02 16:19:57 +00:00
|
|
|
row.prop(ipaint, "invert_stencil", text="", icon='IMAGE_ALPHA')
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2013-01-08 13:58:01 +00:00
|
|
|
col = layout.column()
|
|
|
|
col.active = (settings.brush.image_tool == 'CLONE')
|
|
|
|
col.prop(ipaint, "use_clone_layer", text="Clone from UV map")
|
2012-02-28 02:08:32 +00:00
|
|
|
clone_text = mesh.uv_texture_clone.name if mesh.uv_texture_clone else ""
|
2013-02-08 16:41:02 +00:00
|
|
|
col.menu("VIEW3D_MT_tools_projectpaint_clone", text=clone_text, translate=False)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
layout.prop(ipaint, "seam_bleed")
|
2011-11-04 15:21:34 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
col = layout.column()
|
|
|
|
col.label(text="External Editing:")
|
2011-11-04 15:21:34 +00:00
|
|
|
|
2010-03-16 17:45:01 +00:00
|
|
|
row = col.split(align=True, percentage=0.55)
|
|
|
|
row.operator("image.project_edit", text="Quick Edit")
|
2010-03-06 21:47:16 +00:00
|
|
|
row.operator("image.project_apply", text="Apply")
|
2010-03-14 23:26:17 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
col.row().prop(ipaint, "screen_grab_size", text="")
|
2010-03-14 23:26:17 +00:00
|
|
|
|
2011-11-02 16:19:57 +00:00
|
|
|
col.operator("paint.project_image", text="Apply Camera Image")
|
|
|
|
col.operator("image.save_dirty", text="Save All Edited")
|
2013-03-28 19:33:14 +00:00
|
|
|
|
2009-12-22 10:48:13 +00:00
|
|
|
|
2012-01-18 05:54:19 +00:00
|
|
|
class VIEW3D_PT_imagepaint_options(View3DPaintPanel):
|
2010-07-22 18:56:46 +00:00
|
|
|
bl_label = "Options"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-07-22 18:56:46 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2011-04-01 04:22:30 +00:00
|
|
|
return (context.image_paint_object and context.tool_settings.image_paint)
|
2010-07-22 18:56:46 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2011-04-04 22:42:43 +00:00
|
|
|
|
2010-07-22 18:56:46 +00:00
|
|
|
col = layout.column()
|
2012-01-12 17:22:32 +00:00
|
|
|
self.unified_paint_settings(col, context)
|
2010-09-07 15:17:42 +00:00
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_MT_tools_projectpaint_clone(Menu):
|
2010-02-14 11:21:21 +00:00
|
|
|
bl_label = "Clone Layer"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2012-07-29 12:07:06 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
for i, tex in enumerate(context.active_object.data.uv_textures):
|
2013-02-08 16:41:02 +00:00
|
|
|
props = layout.operator("wm.context_set_int", text=tex.name, translate=False)
|
2012-01-01 13:09:58 +00:00
|
|
|
props.data_path = "active_object.data.uv_texture_clone_index"
|
|
|
|
props.value = i
|
2009-12-22 10:48:13 +00:00
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_MT_tools_projectpaint_stencil(Menu):
|
2010-02-14 11:21:21 +00:00
|
|
|
bl_label = "Mask Layer"
|
2009-12-22 10:48:13 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
for i, tex in enumerate(context.active_object.data.uv_textures):
|
2013-02-08 16:41:02 +00:00
|
|
|
props = layout.operator("wm.context_set_int", text=tex.name, translate=False)
|
2012-01-01 13:09:58 +00:00
|
|
|
props.data_path = "active_object.data.uv_texture_stencil_index"
|
|
|
|
props.value = i
|
2009-12-22 10:48:13 +00:00
|
|
|
|
2009-07-25 22:31:02 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class VIEW3D_PT_tools_particlemode(View3DPanel, Panel):
|
2013-03-10 17:42:08 +00:00
|
|
|
"""Default tools for particle mode"""
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_context = "particlemode"
|
|
|
|
bl_label = "Options"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
pe = context.tool_settings.particle_edit
|
|
|
|
ob = pe.object
|
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.prop(pe, "type", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-06 12:27:28 +00:00
|
|
|
ptcache = None
|
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
if pe.type == 'PARTICLES':
|
|
|
|
if ob.particle_systems:
|
|
|
|
if len(ob.particle_systems) > 1:
|
2013-02-18 13:30:40 +00:00
|
|
|
layout.template_list("UI_UL_list", "particle_systems", ob, "particle_systems",
|
This commit frees list ui items from their dependencies to Panel, and hence from all the limitations this implied (mostly, the "only one list per panel" one).
It introduces a new (py-extendable and registrable) RNA type, UIList (roughly similar to Panel one), which currently contains only "standard" list's scroll pos and size (but may be expended to include e.g. some filtering data, etc.). This now makes lists completely independent from Panels!
This UIList has a draw_item callback which allows to customize items' drawing from python, that all addons can now use. Incidentally, this also greatly simplifies the C code of this widget, as we do not code any "special case" here anymore!
To make all this work, other changes were also necessary:
* Now all buttons (uiBut struct) have a 'custom_data' void pointer, used currently to store the uiList struct associated with a given uiLayoutListBox.
* DynamicPaintSurface now exposes a new bool, use_color_preview (readonly), saying whether that surface has some 3D view preview data or not.
* UILayout class has now four new (static) functions, to get the actual icon of any RNA object (important e.g. with materials or textures), and to get an enum item's UI name, description and icon.
* UILayout's label() func now takes an optional 'icon_value' integer parameter, which if not zero will override the 'icon' one (mandatory to use "custom" icons as generated for material/texture/... previews).
Note: not sure whether we should add that one to all UILayout's prop funcs?
Note: will update addons using template list asap.
2012-12-28 09:20:16 +00:00
|
|
|
ob.particle_systems, "active_index", rows=2, maxrows=3)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-24 04:02:50 +00:00
|
|
|
ptcache = ob.particle_systems.active.point_cache
|
2009-10-31 19:31:45 +00:00
|
|
|
else:
|
|
|
|
for md in ob.modifiers:
|
2009-10-31 23:35:56 +00:00
|
|
|
if md.type == pe.type:
|
2009-10-31 19:31:45 +00:00
|
|
|
ptcache = md.point_cache
|
|
|
|
|
2010-08-18 08:26:18 +00:00
|
|
|
if ptcache and len(ptcache.point_caches) > 1:
|
2013-02-18 13:30:40 +00:00
|
|
|
layout.template_list("UI_UL_list", "particles_point_caches", ptcache, "point_caches",
|
|
|
|
ptcache.point_caches, "active_index", rows=2, maxrows=3)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-18 08:26:18 +00:00
|
|
|
if not pe.is_editable:
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.label(text="Point cache must be baked")
|
2010-12-21 20:25:37 +00:00
|
|
|
layout.label(text="in memory to enable editing!")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2010-08-18 08:26:18 +00:00
|
|
|
if pe.is_hair:
|
|
|
|
col.active = pe.is_editable
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(pe, "use_emitter_deflect", text="Deflect emitter")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = col.row(align=True)
|
2010-08-20 06:09:58 +00:00
|
|
|
sub.active = pe.use_emitter_deflect
|
2009-11-23 00:27:30 +00:00
|
|
|
sub.prop(pe, "emitter_distance", text="Distance")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2010-08-18 08:26:18 +00:00
|
|
|
col.active = pe.is_editable
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Keep:")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(pe, "use_preserve_length", text="Lengths")
|
|
|
|
col.prop(pe, "use_preserve_root", text="Root")
|
2010-08-18 08:26:18 +00:00
|
|
|
if not pe.is_hair:
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Correct:")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(pe, "use_auto_velocity", text="Velocity")
|
2010-01-05 15:23:09 +00:00
|
|
|
col.prop(ob.data, "use_mirror_x")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2010-08-18 08:26:18 +00:00
|
|
|
col.active = pe.is_editable
|
2009-11-23 00:27:30 +00:00
|
|
|
col.label(text="Draw:")
|
|
|
|
col.prop(pe, "draw_step", text="Path Steps")
|
2010-08-18 08:26:18 +00:00
|
|
|
if pe.is_hair:
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(pe, "show_particles", text="Children")
|
2010-03-22 19:38:40 +00:00
|
|
|
else:
|
|
|
|
if pe.type == 'PARTICLES':
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(pe, "show_particles", text="Particles")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(pe, "use_fade_time")
|
2013-08-23 20:41:21 +00:00
|
|
|
sub = col.row(align=True)
|
2010-08-20 06:09:58 +00:00
|
|
|
sub.active = pe.use_fade_time
|
2010-03-22 19:38:40 +00:00
|
|
|
sub.prop(pe, "fade_frames", slider=True)
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|