API Reference

Class List

AnimEvents

AnimEvents stores a sorted array of animation events which should fire sequentially during the playback of an pc.AnimTrack.

const events = new pc.AnimEvents([
    {
        name: 'my_event',
        time: 1.3, // given in seconds
        // any additional properties added are optional and will be available in the EventHandler callback's event object
        myProperty: 'test',
        myOtherProperty: true
    }
]);
animTrack.events = events;

Summary

Details

Constructor

AnimEvents(events)

Create a new AnimEvents instance.

const events = new pc.AnimEvents([
    {
        name: 'my_event',
        time: 1.3, // given in seconds
        // any additional properties added are optional and will be available in the EventHandler callback's event object
        myProperty: 'test',
        myOtherProperty: true
    }
]);
animTrack.events = events;

Parameters

eventsobject[]

An array of animation events.