BooleanKeyframeTrack constructor

BooleanKeyframeTrack(
  1. String name,
  2. List<num> times,
  3. List<num> values, [
  4. int? interpolation,
])

name - identifier for the KeyframeTrack.

times - array of keyframe times.

values - values for the keyframes at the times specified.

Implementation

BooleanKeyframeTrack(super.name, super.times, super.values, [super.interpolation]){
  valueBufferType = "Array";
  defaultInterpolation = InterpolateDiscrete;
  valueTypeName = 'bool';
}