I searched the ACE (animation curves editor) documentation but I came up without an answer. I hoping someone here knows a short-cut key or other hidden gem for deleting key frames?
Thanks in advance!
jw
I searched the ACE (animation curves editor) documentation but I came up without an answer. I hoping someone here knows a short-cut key or other hidden gem for deleting key frames?
Thanks in advance!
jw
Hello! The DEL key should work
Thank you! That does appear to work. I thought that I had tried that already, but maybe I only tried the “Backspace” key or maybe I did not have the correct selection.
hi, doesn’t work on a mac. the “Delete” key is represented by the “Backspace” key in the KeyboardEvent
object. can you check that?
case "Delete":
case "Backspace": //this to add
if (this.props.context.activeKeyPoints?.length && !this.props.context.focusedInput) {
this.props.context.onDeleteKeyActiveKeyPoints.notifyObservers();
}
break;
you are my hero