Remove no visible nodes warning in extractors since validator catches those cases

This commit is contained in:
Roy Nieterau 2022-06-28 21:10:45 +02:00
parent ee273892e8
commit 96150eba27
2 changed files with 0 additions and 14 deletions

View file

@ -86,13 +86,6 @@ class ExtractAnimation(openpype.api.Extractor):
nodes = get_visible_in_frame_range(nodes,
start=start,
end=end)
if not nodes:
self.log.warning(
"No visible nodes found in frame range {}-{}. "
"Skipping extraction because `visibleOnly` is enabled on "
"the instance.".format(start, end)
)
return
with suspended_refresh():
with maintained_selection():

View file

@ -89,13 +89,6 @@ class ExtractAlembic(openpype.api.Extractor):
nodes = get_visible_in_frame_range(nodes,
start=start,
end=end)
if not nodes:
self.log.warning(
"No visible nodes found in frame range {}-{}. "
"Skipping extraction because `visibleOnly` is enabled on "
"the instance.".format(start, end)
)
return
with suspended_refresh():
with maintained_selection():