Compare commits

..

No commits in common. '4a0bbf3bfdbd3a5a330b44193fb938a5b1348885' and '2fef1de48e294d70c2d8bbda36a5128c27c283c6' have entirely different histories.

  1. 2
      korman/properties/modifiers/render.py
  2. 1
      korman/ui/modifiers/render.py

2
korman/properties/modifiers/render.py

@ -798,7 +798,7 @@ class PlasmaViewFaceMod(idprops.IDPropObjectMixin, PlasmaModifierProperties):
bl_category = "Render" bl_category = "Render"
bl_label = "Swivel" bl_label = "Swivel"
bl_description = "Swivel object to face the camera, player, or another object" bl_description = "Swivel object to face the camera, player, or another object"
bl_object_types = {"MESH", "FONT", "EMPTY"} bl_object_types = {"MESH", "FONT"}
preset_options = EnumProperty(name="Type", preset_options = EnumProperty(name="Type",
description="Type of Facing", description="Type of Facing",

1
korman/ui/modifiers/render.py

@ -123,7 +123,6 @@ def dynatext(modifier, layout, context):
sub.alert = not modifier.font_face.strip() sub.alert = not modifier.font_face.strip()
sub.prop(modifier, "font_face", text="", icon="OUTLINER_DATA_FONT") sub.prop(modifier, "font_face", text="", icon="OUTLINER_DATA_FONT")
col.prop(modifier, "font_size", text="Size") col.prop(modifier, "font_size", text="Size")
col.prop(modifier, "font_color", text="")
layout.separator() layout.separator()
split = layout.split() split = layout.split()

Loading…
Cancel
Save