Models shouldn't be hidden by default, as many models have objects that are obviously not hidden but do not have FLGS chunks + objects with children can be hidden, only older versions of Blender automatically hide children when parent is hidden

This commit is contained in:
William Herald Snyder
2022-10-08 21:31:08 -04:00
parent 7b9f5c9cfb
commit b120b74cd4
2 changed files with 2 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ class Model:
name: str = "Model"
parent: str = ""
model_type: ModelType = ModelType.NULL
hidden: bool = True
hidden: bool = False
transform: ModelTransform = field(default_factory=ModelTransform)