[nodes] Replace desc.Node.internalFolder with {nodeCacheFolder}

For nodes that were added right before the merge of #2629, the replacement
still needed to be done.
This commit is contained in:
Candice Bentéjac 2025-03-10 11:29:28 +00:00
parent 21afd053f8
commit 091dbddcd3
2 changed files with 4 additions and 4 deletions

View file

@ -56,12 +56,12 @@ class IntrinsicsTransforming(desc.AVCommandLineNode):
name="output",
label="Output SfMData",
description="Output SfMData file.",
value=desc.Node.internalFolder + "sfmData.abc",
value="{nodeCacheFolder}/sfmData.abc",
),
desc.File(
name="outputTracks",
label="Output Tracks",
description="Output Tracks file.",
value=desc.Node.internalFolder + "tracksFile.json",
value="{nodeCacheFolder}/tracksFile.json",
),
]