Skip to content

Commit

Permalink
Remove superfluous object properties in new human panel
Browse files Browse the repository at this point in the history
  • Loading branch information
joepal1976 committed May 2, 2021
1 parent 8733105 commit f77ac85
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/mpfb/ui/newhuman/__init__.py
Expand Up @@ -8,16 +8,9 @@
_LOG = _LogService.get_logger("newhuman.init")
_LOG.trace("initializing new human module")

_ROOT = os.path.dirname(__file__)
_NEWHUMAN_OBJECT_PROPERTIES_DIR = os.path.join(_ROOT, "objectproperties")
_NEWHUMAN_OBJECT_PROPERTIES = BlenderConfigSet.get_definitions_in_json_directory(_NEWHUMAN_OBJECT_PROPERTIES_DIR)

NewHumanObjectProperties = BlenderConfigSet(_NEWHUMAN_OBJECT_PROPERTIES, bpy.types.Object, prefix="NH_") # pylint: disable=C0103

from .newhumanpanel import MPFB_PT_NewHuman_Panel
from .operators import *

__all__ = [
"MPFB_PT_NewHuman_Panel",
"NewHumanObjectProperties"
"MPFB_PT_NewHuman_Panel"
]

0 comments on commit f77ac85

Please sign in to comment.