|
@@ -32518,6 +32518,7 @@ declare module "babylonjs/Animations/animationGroup" {
|
|
|
private _isStarted;
|
|
|
private _isPaused;
|
|
|
private _speedRatio;
|
|
|
+ private _loopAnimation;
|
|
|
/**
|
|
|
* Gets or sets the unique id of the node
|
|
|
*/
|
|
@@ -32566,6 +32567,10 @@ declare module "babylonjs/Animations/animationGroup" {
|
|
|
*/
|
|
|
speedRatio: number;
|
|
|
/**
|
|
|
+ * Gets or sets if all animations should loop or not
|
|
|
+ */
|
|
|
+ loopAnimation: boolean;
|
|
|
+ /**
|
|
|
* Gets the targeted animations for this animation group
|
|
|
*/
|
|
|
readonly targetedAnimations: Array<TargetedAnimation>;
|
|
@@ -91695,6 +91700,7 @@ declare module BABYLON {
|
|
|
private _isStarted;
|
|
|
private _isPaused;
|
|
|
private _speedRatio;
|
|
|
+ private _loopAnimation;
|
|
|
/**
|
|
|
* Gets or sets the unique id of the node
|
|
|
*/
|
|
@@ -91743,6 +91749,10 @@ declare module BABYLON {
|
|
|
*/
|
|
|
speedRatio: number;
|
|
|
/**
|
|
|
+ * Gets or sets if all animations should loop or not
|
|
|
+ */
|
|
|
+ loopAnimation: boolean;
|
|
|
+ /**
|
|
|
* Gets the targeted animations for this animation group
|
|
|
*/
|
|
|
readonly targetedAnimations: Array<TargetedAnimation>;
|