forked from bartvdbraak/blender
d091856486
* Fix poll() callback changes in recent commit, note that these have to work with pinned context too. * Hide header for context panels in py layout. * Don't jump back when collapsing a panel, allow the view to be over some empty space until you scroll back. * Fix follow context icon, order had to be reversed in icon file. * ID template now has icon as part of browse button instead of outside the buttons.
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
|
|
import bpy
|
|
|
|
class DataButtonsPanel(bpy.types.Panel):
|
|
__space_type__ = "BUTTONS_WINDOW"
|
|
__region_type__ = "WINDOW"
|
|
__context__ = "data"
|
|
|
|
def poll(self, context):
|
|
return (context.lattice != None)
|
|
|
|
class DATA_PT_context_lattice(DataButtonsPanel):
|
|
__idname__ = "DATA_PT_context_lattice"
|
|
__no_header__ = True
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
ob = context.object
|
|
lat = context.lattice
|
|
space = context.space_data
|
|
|
|
split = layout.split(percentage=0.65)
|
|
|
|
if ob:
|
|
split.template_ID(ob, "data")
|
|
split.itemS()
|
|
elif lat:
|
|
split.template_ID(space, "pin_id")
|
|
split.itemS()
|
|
|
|
|
|
class DATA_PT_lattice(DataButtonsPanel):
|
|
__idname__ = "DATA_PT_lattice"
|
|
__label__ = "Lattice"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
lat = context.lattice
|
|
|
|
row = layout.row()
|
|
row.itemR(lat, "points_u")
|
|
row.itemR(lat, "interpolation_type_u", expand=True)
|
|
|
|
row = layout.row()
|
|
row.itemR(lat, "points_v")
|
|
row.itemR(lat, "interpolation_type_v", expand=True)
|
|
|
|
row = layout.row()
|
|
row.itemR(lat, "points_w")
|
|
row.itemR(lat, "interpolation_type_w", expand=True)
|
|
|
|
row = layout.row()
|
|
row.itemO("LATTICE_OT_make_regular")
|
|
row.itemR(lat, "outside")
|
|
|
|
bpy.types.register(DATA_PT_context_lattice)
|
|
bpy.types.register(DATA_PT_lattice)
|
|
|