mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 08:18:25 +02:00
Merge pull request #2364 from alicevision/dev/nodeWithoutComputation
New InputNode for nodes without computation and support for all param types in output (and no more limited to File type)
This commit is contained in:
commit
adbd6426ca
10 changed files with 185 additions and 64 deletions
|
@ -176,7 +176,7 @@ FocusScope {
|
|||
}
|
||||
|
||||
// node must be computed or at least running
|
||||
if (!node.isPartiallyFinished()) {
|
||||
if (node.isComputable && !node.isPartiallyFinished()) {
|
||||
return false
|
||||
}
|
||||
|
||||
|
@ -302,7 +302,7 @@ FocusScope {
|
|||
}
|
||||
}
|
||||
}
|
||||
names.push("gallery")
|
||||
if (!displayedNode || displayedNode.isComputable) names.push("gallery")
|
||||
outputAttribute.names = names
|
||||
|
||||
root.source = getImageFile()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue