Skip to content

Commit

Permalink
added warning for world defaults while using mat bleed
Browse files Browse the repository at this point in the history
  • Loading branch information
scut committed Jan 1, 2024
1 parent 3b73cc9 commit 5f0569b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ def draw(self, context):
col.prop(context.scene, "f3d_simple", text="Simple Material UI")
col.prop(context.scene, "generateF3DNodeGraph", text="Generate F3D Node Graph For Materials")
col.prop(context.scene, "exportInlineF3D", text="Bleed and Inline Material Exports")
if context.scene.exportInlineF3D:
box = col.box()
box.label(text="While inlining, all meshes will be restored to world default values.", icon="INFO")
box.label(text="You can configure these values in the world properties tab.")
col.prop(context.scene, "decomp_compatible", invert_checkbox=True, text="Homebrew Compatibility")
col.prop(context.scene, "ignoreTextureRestrictions")
if context.scene.ignoreTextureRestrictions:
Expand Down

0 comments on commit 5f0569b

Please sign in to comment.