Created
January 30, 2020 05:27
-
-
Save splinecraft/de52cd77346151eade56d276ad018a51 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pymel.core as pm | |
from anim_utilities import anim_util | |
selection = pm.selected() | |
pm.refresh(suspend=True) | |
pm.bakeResults(selection, time=anim_util.get_playback_range()) | |
pm.delete(staticChannels=True) | |
pm.filterCurve(selection) | |
pm.refresh(suspend=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment