@ -202,18 +202,18 @@ def lightmap(modifier, layout, context):
layout . label ( " Transparent objects cannot be lightmapped. " , icon = " ERROR " )
layout . label ( " Transparent objects cannot be lightmapped. " , icon = " ERROR " )
else :
else :
col = layout . column ( )
col = layout . column ( )
col . active = is_texture
col . operator ( " object.plasma_lightmap_preview " , " Preview Lightmap " if is_texture else " Preview Vertex Colors " , icon = " RENDER_STILL " )
operator = col . operator ( " object.plasma_lightmap_preview " , " Preview Lightmap " , icon = " RENDER_STILL " )
# Kind of clever stuff to show the user a preview...
# Kind of clever stuff to show the user a preview...
# We can't show images, so we make a hidden ImageTexture called LIGHTMAPGEN_PREVIEW. We check
# We can't show images, so we make a hidden ImageTexture called LIGHTMAPGEN_PREVIEW. We check
# the backing image name to see if it's for this lightmap. If so, you have a preview. If not,
# the backing image name to see if it's for this lightmap. If so, you have a preview. If not,
# well... It was nice knowing you!
# well... It was nice knowing you!
tex = bpy . data . textures . get ( " LIGHTMAPGEN_PREVIEW " )
if is_texture :
if tex is not None and tex . image is not None :
tex = bpy . data . textures . get ( " LIGHTMAPGEN_PREVIEW " )
im_name = " {} _LIGHTMAPGEN.png " . format ( context . active_object . name )
if tex is not None and tex . image is not None :
if tex . image . name == im_name :
im_name = " {} _LIGHTMAPGEN.png " . format ( context . active_object . name )
layout . template_preview ( tex , show_buttons = False )
if tex . image . name == im_name :
layout . template_preview ( tex , show_buttons = False )
def rtshadow ( modifier , layout , context ) :
def rtshadow ( modifier , layout , context ) :
split = layout . split ( )
split = layout . split ( )