Browse Source

Add gui page type

* Adds the gui page reference to pl_page_types for modifier properties (this fix excludes external for obvious reasons)
pull/420/head
Patrick Dulebohn 3 months ago
parent
commit
d474c4ef68
  1. 2
      korman/properties/modifiers/base.py

2
korman/properties/modifiers/base.py

@ -32,7 +32,7 @@ class PlasmaModifierProperties(bpy.types.PropertyGroup):
@property @property
def allowed(self) -> bool: def allowed(self) -> bool:
"""Returns if this modifier is allowed to be enabled on the owning Object""" """Returns if this modifier is allowed to be enabled on the owning Object"""
allowed_page_types = getattr(self, "pl_page_types", {"room"}) allowed_page_types = getattr(self, "pl_page_types", {"room", "gui"})
allowed_object_types = getattr(self, "bl_object_types", set()) allowed_object_types = getattr(self, "bl_object_types", set())
page_name = self.id_data.plasma_object.page page_name = self.id_data.plasma_object.page
if not allowed_object_types or self.id_data.type in allowed_object_types: if not allowed_object_types or self.id_data.type in allowed_object_types:

Loading…
Cancel
Save