How does one remove a keyframe in the ACE UX?

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

cc @PatrickRyan.

Hello! The DEL key should work :smiley:

2 Likes

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;

Sure thing! [ACE] Add Backspace key to delete keyframe so it works on Mac by carolhmj · Pull Request #13904 · BabylonJS/Babylon.js (github.com)

3 Likes

you are my hero :heart:

1 Like