Version: 2017.1
Animation Curves on Imported Clips
Selecting a Root Motion Node

Animation events on imported clips

Animation events can be attached to imported animation clips in the Animations tab of the Animation Import Settings.

These events allow you to add additional data to an imported clip which determines when certain actions should occur in time with the animation. For example, for an animated character you might want to add events to walk and run cycles indicating when the footstep sounds should play.

To add an event to an imported animation, first select the imported animation file in your project view, then in the import settings in the inspector, select the Animations button.

View the Animations section of the Import Settings for your animation file
View the Animations section of the Import Settings for your animation file

Then scroll all the way to the bottom of the inspector to find the Events heading, among the four fold-out headings as shown:

The Events fold-out heading, along with the Curves, Masks, and Motion headings
The Events fold-out heading, along with the Curves, Masks, and Motion headings

Expand the events heading to reveal the events timeline for the current imported animation clip.

The Events timeline, before any events have been added
The Events timeline, before any events have been added

To move the playback head to a different point in the timeline, use the timeline in the preview pane of the window:

Clicking in the preview pane timeline allows you to control where your new event will be created in the event timeline
Clicking in the preview pane timeline allows you to control where your new event will be created in the event timeline

Position the playback head at the point where you want to add an event, then click Add Event. A new event is created, indicated by a small white marker on the timeline. In the Function field, fill in the name of the function to call when the event is reached.

Make sure that any GameObject which uses this animation in its animator has a corresponding script attached that contains a function with a matching event name.

The example below demonstrates an event set up to call the Footstep function in a script attached to the Player GameObject. This could be used in combination with an AudioSource to play a footstep sound synchronised with the animation.

An event which calls the function Footstep
An event which calls the function “Footstep”

You can also choose to specify a parameter, which is sent to the function called by the event. There are four different parameter types: Float, Int, String or Object.

By filling out a value in one of these fields, and implementing your function to accept a parameter of that type, you can have the value specified in the event passed through to your function in the script.

For example, you might want to pass a float value to specify how loud the footstep should be during different actions, such as quiet footstep events on a walking loop and loud footstep events on a running loop. You could also pass a reference to an effect Prefab, allowing your script to instantiate different effects at certain points during your animation.

Animation Curves on Imported Clips
Selecting a Root Motion Node