Fix T60753: Graph Editor showing cache curves regardless of filters

This commit adds a datablock filtering option for cache files channels,
so that a shot with lots of these in addition to standard animation
(e.g. the Spring production files) don't become bogged down by these.

Furthermore, these channels also respect the "Only Selected" toggle too now.
This commit is contained in:
2019-01-31 15:42:59 +13:00
parent 744f633986
commit 65340ad73f
4 changed files with 19 additions and 6 deletions

View File

@@ -148,6 +148,8 @@ class DopesheetFilterPopoverBase:
flow.prop(dopesheet, "show_textures", text="Textures")
if bpy.data.shape_keys:
flow.prop(dopesheet, "show_shapekeys", text="Shape Keys")
if bpy.data.cache_files:
flow.prop(dopesheet, "show_cache_files", text="Cache Files")
layout.separator()