Output are now alembic files

This commit is contained in:
Fabien Servant 2025-02-03 09:05:45 +01:00
parent 176e2a8c4c
commit 8cd9752587
3 changed files with 3 additions and 3 deletions

View file

@ -50,6 +50,6 @@ Use a JSON file to inject poses inside the SfMData.
name="output",
label="SfMData",
description="Path to the output SfM file.",
value=desc.Node.internalFolder + "sfmData.sfm",
value=desc.Node.internalFolder + "sfmData.abc",
),
]

View file

@ -79,6 +79,6 @@ class SfMBootStraping(desc.AVCommandLineNode):
name="output",
label="SfMData",
description="Path to the output SfMData file.",
value=desc.Node.internalFolder + "sfm.json",
value=desc.Node.internalFolder + "bootstrap.abc",
),
]

View file

@ -170,6 +170,6 @@ class SfMExpanding(desc.AVCommandLineNode):
name="output",
label="SfMData",
description="Path to the output SfMData file.",
value=desc.Node.internalFolder + "sfm.json",
value=desc.Node.internalFolder + "sfmExpanded.abc",
),
]