Compare commits

...

2 Commits

Author SHA1 Message Date
Patrick Dulebohn 4a0bbf3bfd Initial Commit 2 months ago
Patrick Dulebohn fec00309d9 Empty Object Should Have Swivel 2 months ago
  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_label = "Swivel"
bl_description = "Swivel object to face the camera, player, or another object"
bl_object_types = {"MESH", "FONT"}
bl_object_types = {"MESH", "FONT", "EMPTY"}
preset_options = EnumProperty(name="Type",
description="Type of Facing",

1
korman/ui/modifiers/render.py

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

Loading…
Cancel
Save