Skip to content

Commit

Permalink
fix lightmapping
Browse files Browse the repository at this point in the history
  • Loading branch information
ILoveAGoodCrisp committed Dec 5, 2024
1 parent 5ed16ef commit 3cd8adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blender/addons/io_scene_foundry/tools/scenario/lightmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def poll(cls, context):

def execute(self, context):
asset_type = context.scene.nwo.asset_type
asset_path, _ = utils.get_asset_info()
scenario_path = str(Path(asset_path, asset_path))
asset_path, asset_name = utils.get_asset_info()
scenario_path = str(Path(asset_path, asset_name))
scene_nwo_export = context.scene.nwo_export
is_corinth = utils.is_corinth(context)
os.system("cls")
Expand Down

0 comments on commit 3cd8adf

Please sign in to comment.