Skip to content

Commit

Permalink
Disable marmoset UI in extensions build
Browse files Browse the repository at this point in the history
  • Loading branch information
oRazeD committed Sep 1, 2024
1 parent 62f81ac commit 15c1fc8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ def draw(self, context: Context):
box.label(text="Output Settings", icon="OUTPUT")

col2 = box.column()
row = col2.row()
row.enabled = not gd.preview_state
row.prop(gd, 'baker_type', text="Baker")
col2.separator(factor=.5)
#row = col2.row()
#row.enabled = not gd.preview_state
#row.prop(gd, 'baker_type', text="Baker")
#col2.separator(factor=.5)

row = col2.row()
row.alert = not self.export_path_exists
Expand Down
2 changes: 1 addition & 1 deletion utils/baker.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def draw(self, context: Context, layout: UILayout):
box = col.box()
col2 = box.column(align=True)
col2.label(text="\u2022 Requires Shader Manipulation", icon='INFO')
col2.label(text="\u2022 No Marmoset Support", icon='BLANK1')
#col2.label(text="\u2022 No Marmoset Support", icon='BLANK1')

box = col.box()
box.label(text="Properties", icon="PROPERTIES")
Expand Down

0 comments on commit 15c1fc8

Please sign in to comment.