mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-23 19:47:39 +02:00
[core] Add support for imageList as output in SequencePlayer
This commit is contained in:
parent
6e89cb68f6
commit
7af0997a73
1 changed files with 1 additions and 1 deletions
|
@ -1289,7 +1289,7 @@ class BaseNode(BaseObject):
|
|||
Return True if at least one attribute has the 'sequence' semantic (and can thus be loaded in the 2D Viewer), False otherwise.
|
||||
"""
|
||||
for attr in self._attributes:
|
||||
if attr.enabled and attr.isOutput and attr.desc.semantic == "sequence":
|
||||
if attr.enabled and attr.isOutput and (attr.desc.semantic == "sequence" or attr.desc.semantic == "imageList"):
|
||||
return True
|
||||
return False
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue