mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
(hotfix) allow locators with transforms
This commit is contained in:
parent
19ca94fe24
commit
bd6d39f6af
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ class ValidateTransformZero(pyblish.api.Validator):
|
|||
|
||||
invalid = []
|
||||
for transform in transforms:
|
||||
if '_LOC' in transform:
|
||||
if ('_LOC' in transform) or ('_loc' in transform):
|
||||
continue
|
||||
mat = cmds.xform(transform, q=1, matrix=True, objectSpace=True)
|
||||
if not all(abs(x-y) < cls._tolerance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue