@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
18 lines (17 loc) • 449 B
TypeScript
/**
* Class used to override all child animations of a given target
*/
export declare class AnimationPropertiesOverride {
/**
* Gets or sets a value indicating if animation blending must be used
*/
enableBlending: boolean;
/**
* Gets or sets the blending speed to use when enableBlending is true
*/
blendingSpeed: number;
/**
* Gets or sets the default loop mode to use
*/
loopMode: number;
}