mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[core] Include internal attributes in the UIDs computation
This commit is contained in:
parent
cc3c19ba15
commit
b645db99f7
1 changed files with 5 additions and 0 deletions
|
@ -1170,6 +1170,11 @@ class Node(BaseNode):
|
|||
for uidIndex in attr.attributeDesc.uid:
|
||||
self.attributesPerUid[uidIndex].add(attr)
|
||||
|
||||
# Add internal attributes with a UID to the list
|
||||
for attr in self._internalAttributes:
|
||||
for uidIndex in attr.attributeDesc.uid:
|
||||
self.attributesPerUid[uidIndex].add(attr)
|
||||
|
||||
self.setAttributeValues(kwargs)
|
||||
|
||||
def setAttributeValues(self, values):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue