|
@@ -1,349 +1,244 @@
|
|
-import * as React from 'react';
|
|
|
|
-
|
|
|
|
-import { Observable, Observer } from 'babylonjs/Misc/observable';
|
|
|
|
-import { Scene } from 'babylonjs/scene';
|
|
|
|
-
|
|
|
|
-import { PropertyChangedEvent } from '../../../../propertyChangedEvent';
|
|
|
|
-import { ButtonLineComponent } from '../../../lines/buttonLineComponent';
|
|
|
|
-import { LineContainerComponent } from '../../../lineContainerComponent';
|
|
|
|
-import { SliderLineComponent } from '../../../lines/sliderLineComponent';
|
|
|
|
-import { LockObject } from '../lockObject';
|
|
|
|
-import { GlobalState } from '../../../../globalState';
|
|
|
|
-import { Animation } from 'babylonjs/Animations/animation';
|
|
|
|
-import { Animatable } from 'babylonjs/Animations/animatable';
|
|
|
|
-import { AnimationPropertiesOverride } from 'babylonjs/Animations/animationPropertiesOverride';
|
|
|
|
-import { AnimationRange } from 'babylonjs/Animations/animationRange';
|
|
|
|
-import { CheckBoxLineComponent } from '../../../lines/checkBoxLineComponent';
|
|
|
|
-import { Nullable } from 'babylonjs/types';
|
|
|
|
-import { FloatLineComponent } from '../../../lines/floatLineComponent';
|
|
|
|
-import { TextLineComponent } from '../../../lines/textLineComponent';
|
|
|
|
-import { IAnimatable } from 'babylonjs/Animations/animatable.interface';
|
|
|
|
-import { AnimationCurveEditorComponent } from '../animations/animationCurveEditorComponent';
|
|
|
|
-import { PopupComponent } from '../../../../popupComponent';
|
|
|
|
|
|
+import * as React from "react";
|
|
|
|
+
|
|
|
|
+import { Observable, Observer } from "babylonjs/Misc/observable";
|
|
|
|
+import { Scene } from "babylonjs/scene";
|
|
|
|
+
|
|
|
|
+import { PropertyChangedEvent } from "../../../../propertyChangedEvent";
|
|
|
|
+import { ButtonLineComponent } from "../../../lines/buttonLineComponent";
|
|
|
|
+import { LineContainerComponent } from "../../../lineContainerComponent";
|
|
|
|
+import { SliderLineComponent } from "../../../lines/sliderLineComponent";
|
|
|
|
+import { LockObject } from "../lockObject";
|
|
|
|
+import { GlobalState } from "../../../../globalState";
|
|
|
|
+import { Animation } from "babylonjs/Animations/animation";
|
|
|
|
+import { Animatable } from "babylonjs/Animations/animatable";
|
|
|
|
+import { AnimationPropertiesOverride } from "babylonjs/Animations/animationPropertiesOverride";
|
|
|
|
+import { AnimationRange } from "babylonjs/Animations/animationRange";
|
|
|
|
+import { CheckBoxLineComponent } from "../../../lines/checkBoxLineComponent";
|
|
|
|
+import { Nullable } from "babylonjs/types";
|
|
|
|
+import { FloatLineComponent } from "../../../lines/floatLineComponent";
|
|
|
|
+import { TextLineComponent } from "../../../lines/textLineComponent";
|
|
|
|
+import { IAnimatable } from "babylonjs/Animations/animatable.interface";
|
|
|
|
+import { AnimationCurveEditorComponent } from "../animations/animationCurveEditorComponent";
|
|
|
|
+import { PopupComponent } from "../../../../popupComponent";
|
|
|
|
|
|
interface IAnimationGridComponentProps {
|
|
interface IAnimationGridComponentProps {
|
|
- globalState: GlobalState;
|
|
|
|
- animatable: IAnimatable;
|
|
|
|
- scene: Scene;
|
|
|
|
- lockObject: LockObject;
|
|
|
|
- onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
|
|
|
|
+ globalState: GlobalState;
|
|
|
|
+ animatable: IAnimatable;
|
|
|
|
+ scene: Scene;
|
|
|
|
+ lockObject: LockObject;
|
|
|
|
+ onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
}
|
|
}
|
|
|
|
|
|
-export class AnimationGridComponent extends React.Component<
|
|
|
|
- IAnimationGridComponentProps,
|
|
|
|
- { currentFrame: number }
|
|
|
|
-> {
|
|
|
|
- private _animations: Nullable<Animation[]> = null;
|
|
|
|
- private _ranges: AnimationRange[];
|
|
|
|
- private _mainAnimatable: Nullable<Animatable>;
|
|
|
|
- private _onBeforeRenderObserver: Nullable<Observer<Scene>>;
|
|
|
|
- private _isPlaying = false;
|
|
|
|
- private timelineRef: React.RefObject<SliderLineComponent>;
|
|
|
|
- private _isCurveEditorOpen = false;
|
|
|
|
- private _animationControl = {
|
|
|
|
- from: 0,
|
|
|
|
- to: 0,
|
|
|
|
- loop: false,
|
|
|
|
- };
|
|
|
|
|
|
+export class AnimationGridComponent extends React.Component<IAnimationGridComponentProps, { currentFrame: number }> {
|
|
|
|
+ private _animations: Nullable<Animation[]> = null;
|
|
|
|
+ private _ranges: AnimationRange[];
|
|
|
|
+ private _mainAnimatable: Nullable<Animatable>;
|
|
|
|
+ private _onBeforeRenderObserver: Nullable<Observer<Scene>>;
|
|
|
|
+ private _isPlaying = false;
|
|
|
|
+ private timelineRef: React.RefObject<SliderLineComponent>;
|
|
|
|
+ private _isCurveEditorOpen = false;
|
|
|
|
+ private _animationControl = {
|
|
|
|
+ from: 0,
|
|
|
|
+ to: 0,
|
|
|
|
+ loop: false,
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ constructor(props: IAnimationGridComponentProps) {
|
|
|
|
+ super(props);
|
|
|
|
+
|
|
|
|
+ this.state = { currentFrame: 0 };
|
|
|
|
+
|
|
|
|
+ const animatableAsAny = this.props.animatable as any;
|
|
|
|
+
|
|
|
|
+ this._ranges = animatableAsAny.getAnimationRanges ? animatableAsAny.getAnimationRanges() : [];
|
|
|
|
+ if (animatableAsAny.getAnimatables) {
|
|
|
|
+ const animatables = animatableAsAny.getAnimatables();
|
|
|
|
+ this._animations = new Array<Animation>();
|
|
|
|
+
|
|
|
|
+ animatables.forEach((animatable: IAnimatable) => {
|
|
|
|
+ if (animatable.animations) {
|
|
|
|
+ this._animations!.push(...animatable.animations);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (animatableAsAny.animations) {
|
|
|
|
+ this._animations!.push(...animatableAsAny.animations);
|
|
|
|
+ }
|
|
|
|
|
|
- constructor(props: IAnimationGridComponentProps) {
|
|
|
|
- super(props);
|
|
|
|
|
|
+ // Extract from and to
|
|
|
|
+ if (this._animations && this._animations.length) {
|
|
|
|
+ this._animations.forEach((animation) => {
|
|
|
|
+ let keys = animation.getKeys();
|
|
|
|
|
|
- this.state = { currentFrame: 0 };
|
|
|
|
|
|
+ if (keys && keys.length > 0) {
|
|
|
|
+ if (keys[0].frame < this._animationControl.from) {
|
|
|
|
+ this._animationControl.from = keys[0].frame;
|
|
|
|
+ }
|
|
|
|
+ const lastKeyIndex = keys.length - 1;
|
|
|
|
+ if (keys[lastKeyIndex].frame > this._animationControl.to) {
|
|
|
|
+ this._animationControl.to = keys[lastKeyIndex].frame;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
- const animatableAsAny = this.props.animatable as any;
|
|
|
|
|
|
+ this.timelineRef = React.createRef();
|
|
|
|
+ }
|
|
|
|
|
|
- this._ranges = animatableAsAny.getAnimationRanges
|
|
|
|
- ? animatableAsAny.getAnimationRanges()
|
|
|
|
- : [];
|
|
|
|
- if (animatableAsAny.getAnimatables) {
|
|
|
|
- const animatables = animatableAsAny.getAnimatables();
|
|
|
|
- this._animations = new Array<Animation>();
|
|
|
|
|
|
+ playOrPause() {
|
|
|
|
+ const animatable = this.props.animatable;
|
|
|
|
+ this._isPlaying = this.props.scene.getAllAnimatablesByTarget(animatable).length > 0;
|
|
|
|
|
|
- animatables.forEach((animatable: IAnimatable) => {
|
|
|
|
- if (animatable.animations) {
|
|
|
|
- this._animations!.push(...animatable.animations);
|
|
|
|
|
|
+ if (this._isPlaying) {
|
|
|
|
+ this.props.scene.stopAnimation(this.props.animatable);
|
|
|
|
+ this._mainAnimatable = null;
|
|
|
|
+ } else {
|
|
|
|
+ this._mainAnimatable = this.props.scene.beginAnimation(this.props.animatable, this._animationControl.from, this._animationControl.to, this._animationControl.loop);
|
|
}
|
|
}
|
|
- });
|
|
|
|
-
|
|
|
|
- if (animatableAsAny.animations) {
|
|
|
|
- this._animations!.push(...animatableAsAny.animations);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Extract from and to
|
|
|
|
- if (this._animations && this._animations.length) {
|
|
|
|
- this._animations.forEach((animation) => {
|
|
|
|
- let keys = animation.getKeys();
|
|
|
|
|
|
+ this.forceUpdate();
|
|
|
|
+ }
|
|
|
|
|
|
- if (keys && keys.length > 0) {
|
|
|
|
- if (keys[0].frame < this._animationControl.from) {
|
|
|
|
- this._animationControl.from = keys[0].frame;
|
|
|
|
|
|
+ componentDidMount() {
|
|
|
|
+ this._onBeforeRenderObserver = this.props.scene.onBeforeRenderObservable.add(() => {
|
|
|
|
+ if (!this._isPlaying || !this._mainAnimatable) {
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
- const lastKeyIndex = keys.length - 1;
|
|
|
|
- if (keys[lastKeyIndex].frame > this._animationControl.to) {
|
|
|
|
- this._animationControl.to = keys[lastKeyIndex].frame;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ this.setState({ currentFrame: this._mainAnimatable.masterFrame });
|
|
});
|
|
});
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- this.timelineRef = React.createRef();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- playOrPause() {
|
|
|
|
- const animatable = this.props.animatable;
|
|
|
|
- this._isPlaying =
|
|
|
|
- this.props.scene.getAllAnimatablesByTarget(animatable).length > 0;
|
|
|
|
-
|
|
|
|
- if (this._isPlaying) {
|
|
|
|
- this.props.scene.stopAnimation(this.props.animatable);
|
|
|
|
- this._mainAnimatable = null;
|
|
|
|
- } else {
|
|
|
|
- this._mainAnimatable = this.props.scene.beginAnimation(
|
|
|
|
- this.props.animatable,
|
|
|
|
- this._animationControl.from,
|
|
|
|
- this._animationControl.to,
|
|
|
|
- this._animationControl.loop
|
|
|
|
- );
|
|
|
|
|
|
+ componentWillUnmount() {
|
|
|
|
+ if (this._onBeforeRenderObserver) {
|
|
|
|
+ this.props.scene.onBeforeRenderObservable.remove(this._onBeforeRenderObserver);
|
|
|
|
+ this._onBeforeRenderObserver = null;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- this.forceUpdate();
|
|
|
|
- }
|
|
|
|
|
|
|
|
- componentDidMount() {
|
|
|
|
- this._onBeforeRenderObserver = this.props.scene.onBeforeRenderObservable.add(
|
|
|
|
- () => {
|
|
|
|
- if (!this._isPlaying || !this._mainAnimatable) {
|
|
|
|
- return;
|
|
|
|
|
|
+ onCurrentFrameChange(value: number) {
|
|
|
|
+ if (!this._mainAnimatable) {
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
- this.setState({ currentFrame: this._mainAnimatable.masterFrame });
|
|
|
|
- }
|
|
|
|
- );
|
|
|
|
- }
|
|
|
|
|
|
|
|
- componentWillUnmount() {
|
|
|
|
- if (this._onBeforeRenderObserver) {
|
|
|
|
- this.props.scene.onBeforeRenderObservable.remove(
|
|
|
|
- this._onBeforeRenderObserver
|
|
|
|
- );
|
|
|
|
- this._onBeforeRenderObserver = null;
|
|
|
|
|
|
+ this._mainAnimatable.goToFrame(value);
|
|
|
|
+ this.setState({ currentFrame: value });
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
|
|
- onCurrentFrameChange(value: number) {
|
|
|
|
- if (!this._mainAnimatable) {
|
|
|
|
- return;
|
|
|
|
|
|
+ onChangeFromOrTo() {
|
|
|
|
+ this.playOrPause();
|
|
|
|
+ if (this._isPlaying) {
|
|
|
|
+ this.playOrPause();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
- this._mainAnimatable.goToFrame(value);
|
|
|
|
- this.setState({ currentFrame: value });
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- onChangeFromOrTo() {
|
|
|
|
- this.playOrPause();
|
|
|
|
- if (this._isPlaying) {
|
|
|
|
- this.playOrPause();
|
|
|
|
|
|
+ onOpenAnimationCurveEditor() {
|
|
|
|
+ this._isCurveEditorOpen = true;
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
- onOpenAnimationCurveEditor() {
|
|
|
|
- this._isCurveEditorOpen = true;
|
|
|
|
- }
|
|
|
|
|
|
|
|
- onCloseAnimationCurveEditor(window: Window | null) {
|
|
|
|
- this._isCurveEditorOpen = false;
|
|
|
|
- if (window !== null) {
|
|
|
|
- window.close();
|
|
|
|
|
|
+ onCloseAnimationCurveEditor(window: Window | null) {
|
|
|
|
+ this._isCurveEditorOpen = false;
|
|
|
|
+ if (window !== null) {
|
|
|
|
+ window.close();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
- render() {
|
|
|
|
- const animatable = this.props.animatable;
|
|
|
|
- const animatableAsAny = this.props.animatable as any;
|
|
|
|
-
|
|
|
|
- let animatablesForTarget = this.props.scene.getAllAnimatablesByTarget(
|
|
|
|
- animatable
|
|
|
|
- );
|
|
|
|
- this._isPlaying = animatablesForTarget.length > 0;
|
|
|
|
|
|
|
|
- if (this._isPlaying && !this._mainAnimatable) {
|
|
|
|
- this._mainAnimatable = animatablesForTarget[0];
|
|
|
|
- if (this._mainAnimatable) {
|
|
|
|
- this._animationControl.from = this._mainAnimatable.fromFrame;
|
|
|
|
- this._animationControl.to = this._mainAnimatable.toFrame;
|
|
|
|
- this._animationControl.loop = this._mainAnimatable.loopAnimation;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ render() {
|
|
|
|
+ const animatable = this.props.animatable;
|
|
|
|
+ const animatableAsAny = this.props.animatable as any;
|
|
|
|
|
|
- let animations = animatable.animations;
|
|
|
|
|
|
+ let animatablesForTarget = this.props.scene.getAllAnimatablesByTarget(animatable);
|
|
|
|
+ this._isPlaying = animatablesForTarget.length > 0;
|
|
|
|
|
|
- return (
|
|
|
|
- <div>
|
|
|
|
- {this._ranges.length > 0 && (
|
|
|
|
- <LineContainerComponent
|
|
|
|
- globalState={this.props.globalState}
|
|
|
|
- title='ANIMATION RANGES'
|
|
|
|
- >
|
|
|
|
- {this._ranges.map((range, i) => {
|
|
|
|
- return (
|
|
|
|
- <ButtonLineComponent
|
|
|
|
- key={range.name + i}
|
|
|
|
- label={range.name}
|
|
|
|
- onClick={() => {
|
|
|
|
- this._mainAnimatable = null;
|
|
|
|
- this.props.scene.beginAnimation(
|
|
|
|
- animatable,
|
|
|
|
- range.from,
|
|
|
|
- range.to,
|
|
|
|
- true
|
|
|
|
- );
|
|
|
|
- }}
|
|
|
|
- />
|
|
|
|
- );
|
|
|
|
- })}
|
|
|
|
- </LineContainerComponent>
|
|
|
|
- )}
|
|
|
|
- {animations && (
|
|
|
|
- <>
|
|
|
|
- <LineContainerComponent
|
|
|
|
- globalState={this.props.globalState}
|
|
|
|
- title='ANIMATIONS'
|
|
|
|
- >
|
|
|
|
- <TextLineComponent
|
|
|
|
- label='Count'
|
|
|
|
- value={animations.length.toString()}
|
|
|
|
- />
|
|
|
|
- <ButtonLineComponent
|
|
|
|
- label='Edit'
|
|
|
|
- onClick={() => this.onOpenAnimationCurveEditor()}
|
|
|
|
- />
|
|
|
|
- {animations.map((anim, i) => {
|
|
|
|
- return (
|
|
|
|
- <TextLineComponent
|
|
|
|
- key={anim.targetProperty + i}
|
|
|
|
- label={'#' + i + ' >'}
|
|
|
|
- value={anim.targetProperty}
|
|
|
|
- />
|
|
|
|
- );
|
|
|
|
- })}
|
|
|
|
|
|
+ if (this._isPlaying && !this._mainAnimatable) {
|
|
|
|
+ this._mainAnimatable = animatablesForTarget[0];
|
|
|
|
+ if (this._mainAnimatable) {
|
|
|
|
+ this._animationControl.from = this._mainAnimatable.fromFrame;
|
|
|
|
+ this._animationControl.to = this._mainAnimatable.toFrame;
|
|
|
|
+ this._animationControl.loop = this._mainAnimatable.loopAnimation;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
- {this._isCurveEditorOpen && (
|
|
|
|
- <PopupComponent
|
|
|
|
- id='curve-editor'
|
|
|
|
- title='Curve Animation Editor'
|
|
|
|
- size={{ width: 1024, height: 490 }}
|
|
|
|
- onOpen={(window: Window) => {}}
|
|
|
|
- onClose={(window: Window) =>
|
|
|
|
- this.onCloseAnimationCurveEditor(window)
|
|
|
|
- }
|
|
|
|
- >
|
|
|
|
- <AnimationCurveEditorComponent
|
|
|
|
- scene={this.props.scene}
|
|
|
|
- entity={animatableAsAny}
|
|
|
|
- close={(event) =>
|
|
|
|
- this.onCloseAnimationCurveEditor(event.view)
|
|
|
|
- }
|
|
|
|
- lockObject={this.props.lockObject}
|
|
|
|
- playOrPause={() => this.playOrPause()}
|
|
|
|
- globalState={this.props.globalState}
|
|
|
|
- />
|
|
|
|
- </PopupComponent>
|
|
|
|
- )}
|
|
|
|
- </LineContainerComponent>
|
|
|
|
- {animations.length > 0 && (
|
|
|
|
- <LineContainerComponent
|
|
|
|
- globalState={this.props.globalState}
|
|
|
|
- title='ANIMATION GENERAL CONTROL'
|
|
|
|
- >
|
|
|
|
- <FloatLineComponent
|
|
|
|
- lockObject={this.props.lockObject}
|
|
|
|
- isInteger={true}
|
|
|
|
- label='From'
|
|
|
|
- target={this._animationControl}
|
|
|
|
- propertyName='from'
|
|
|
|
- onChange={() => this.onChangeFromOrTo()}
|
|
|
|
- />
|
|
|
|
- <FloatLineComponent
|
|
|
|
- lockObject={this.props.lockObject}
|
|
|
|
- isInteger={true}
|
|
|
|
- label='To'
|
|
|
|
- target={this._animationControl}
|
|
|
|
- propertyName='to'
|
|
|
|
- onChange={() => this.onChangeFromOrTo()}
|
|
|
|
- />
|
|
|
|
- <CheckBoxLineComponent
|
|
|
|
- label='Loop'
|
|
|
|
- onSelect={(value) => (this._animationControl.loop = value)}
|
|
|
|
- isSelected={() => this._animationControl.loop}
|
|
|
|
- />
|
|
|
|
- {this._isPlaying && (
|
|
|
|
- <SliderLineComponent
|
|
|
|
- ref={this.timelineRef}
|
|
|
|
- label='Current frame'
|
|
|
|
- minimum={this._animationControl.from}
|
|
|
|
- maximum={this._animationControl.to}
|
|
|
|
- step={
|
|
|
|
- (this._animationControl.to -
|
|
|
|
- this._animationControl.from) /
|
|
|
|
- 1000.0
|
|
|
|
- }
|
|
|
|
- directValue={this.state.currentFrame}
|
|
|
|
- onInput={(value) => this.onCurrentFrameChange(value)}
|
|
|
|
- />
|
|
|
|
|
|
+ let animations = animatable.animations;
|
|
|
|
+
|
|
|
|
+ return (
|
|
|
|
+ <div>
|
|
|
|
+ {this._ranges.length > 0 && (
|
|
|
|
+ <LineContainerComponent globalState={this.props.globalState} title="ANIMATION RANGES">
|
|
|
|
+ {this._ranges.map((range, i) => {
|
|
|
|
+ return (
|
|
|
|
+ <ButtonLineComponent
|
|
|
|
+ key={range.name + i}
|
|
|
|
+ label={range.name}
|
|
|
|
+ onClick={() => {
|
|
|
|
+ this._mainAnimatable = null;
|
|
|
|
+ this.props.scene.beginAnimation(animatable, range.from, range.to, true);
|
|
|
|
+ }}
|
|
|
|
+ />
|
|
|
|
+ );
|
|
|
|
+ })}
|
|
|
|
+ </LineContainerComponent>
|
|
)}
|
|
)}
|
|
- <ButtonLineComponent
|
|
|
|
- label={this._isPlaying ? 'Stop' : 'Play'}
|
|
|
|
- onClick={() => this.playOrPause()}
|
|
|
|
- />
|
|
|
|
- {(this._ranges.length > 0 ||
|
|
|
|
- (this._animations && this._animations.length > 0)) && (
|
|
|
|
- <>
|
|
|
|
- <CheckBoxLineComponent
|
|
|
|
- label='Enable override'
|
|
|
|
- onSelect={(value) => {
|
|
|
|
- if (value) {
|
|
|
|
- animatableAsAny.animationPropertiesOverride = new AnimationPropertiesOverride();
|
|
|
|
- animatableAsAny.animationPropertiesOverride.blendingSpeed = 0.05;
|
|
|
|
- } else {
|
|
|
|
- animatableAsAny.animationPropertiesOverride = null;
|
|
|
|
- }
|
|
|
|
- this.forceUpdate();
|
|
|
|
- }}
|
|
|
|
- isSelected={() =>
|
|
|
|
- animatableAsAny.animationPropertiesOverride != null
|
|
|
|
- }
|
|
|
|
- onValueChanged={() => this.forceUpdate()}
|
|
|
|
- />
|
|
|
|
- {animatableAsAny.animationPropertiesOverride != null && (
|
|
|
|
- <div>
|
|
|
|
- <CheckBoxLineComponent
|
|
|
|
- label='Enable blending'
|
|
|
|
- target={animatableAsAny.animationPropertiesOverride}
|
|
|
|
- propertyName='enableBlending'
|
|
|
|
- onPropertyChangedObservable={
|
|
|
|
- this.props.onPropertyChangedObservable
|
|
|
|
- }
|
|
|
|
- />
|
|
|
|
- <SliderLineComponent
|
|
|
|
- label='Blending speed'
|
|
|
|
- target={animatableAsAny.animationPropertiesOverride}
|
|
|
|
- propertyName='blendingSpeed'
|
|
|
|
- minimum={0}
|
|
|
|
- maximum={0.1}
|
|
|
|
- step={0.01}
|
|
|
|
- onPropertyChangedObservable={
|
|
|
|
- this.props.onPropertyChangedObservable
|
|
|
|
- }
|
|
|
|
- />
|
|
|
|
- </div>
|
|
|
|
- )}
|
|
|
|
- </>
|
|
|
|
|
|
+ {animations && (
|
|
|
|
+ <>
|
|
|
|
+ <LineContainerComponent globalState={this.props.globalState} title="ANIMATIONS">
|
|
|
|
+ <TextLineComponent label="Count" value={animations.length.toString()} />
|
|
|
|
+ <ButtonLineComponent label="Edit" onClick={() => this.onOpenAnimationCurveEditor()} />
|
|
|
|
+ {animations.map((anim, i) => {
|
|
|
|
+ return <TextLineComponent key={anim.targetProperty + i} label={"#" + i + " >"} value={anim.targetProperty} />;
|
|
|
|
+ })}
|
|
|
|
+
|
|
|
|
+ {this._isCurveEditorOpen && (
|
|
|
|
+ <PopupComponent id="curve-editor" title="Curve Animation Editor" size={{ width: 1024, height: 490 }} onOpen={(window: Window) => {}} onClose={(window: Window) => this.onCloseAnimationCurveEditor(window)}>
|
|
|
|
+ <AnimationCurveEditorComponent scene={this.props.scene} entity={animatableAsAny} lockObject={this.props.lockObject} playOrPause={() => this.playOrPause()} globalState={this.props.globalState} />
|
|
|
|
+ </PopupComponent>
|
|
|
|
+ )}
|
|
|
|
+ </LineContainerComponent>
|
|
|
|
+ {animations.length > 0 && (
|
|
|
|
+ <LineContainerComponent globalState={this.props.globalState} title="ANIMATION GENERAL CONTROL">
|
|
|
|
+ <FloatLineComponent lockObject={this.props.lockObject} isInteger={true} label="From" target={this._animationControl} propertyName="from" onChange={() => this.onChangeFromOrTo()} />
|
|
|
|
+ <FloatLineComponent lockObject={this.props.lockObject} isInteger={true} label="To" target={this._animationControl} propertyName="to" onChange={() => this.onChangeFromOrTo()} />
|
|
|
|
+ <CheckBoxLineComponent label="Loop" onSelect={(value) => (this._animationControl.loop = value)} isSelected={() => this._animationControl.loop} />
|
|
|
|
+ {this._isPlaying && (
|
|
|
|
+ <SliderLineComponent
|
|
|
|
+ ref={this.timelineRef}
|
|
|
|
+ label="Current frame"
|
|
|
|
+ minimum={this._animationControl.from}
|
|
|
|
+ maximum={this._animationControl.to}
|
|
|
|
+ step={(this._animationControl.to - this._animationControl.from) / 1000.0}
|
|
|
|
+ directValue={this.state.currentFrame}
|
|
|
|
+ onInput={(value) => this.onCurrentFrameChange(value)}
|
|
|
|
+ />
|
|
|
|
+ )}
|
|
|
|
+ <ButtonLineComponent label={this._isPlaying ? "Stop" : "Play"} onClick={() => this.playOrPause()} />
|
|
|
|
+ {(this._ranges.length > 0 || (this._animations && this._animations.length > 0)) && (
|
|
|
|
+ <>
|
|
|
|
+ <CheckBoxLineComponent
|
|
|
|
+ label="Enable override"
|
|
|
|
+ onSelect={(value) => {
|
|
|
|
+ if (value) {
|
|
|
|
+ animatableAsAny.animationPropertiesOverride = new AnimationPropertiesOverride();
|
|
|
|
+ animatableAsAny.animationPropertiesOverride.blendingSpeed = 0.05;
|
|
|
|
+ } else {
|
|
|
|
+ animatableAsAny.animationPropertiesOverride = null;
|
|
|
|
+ }
|
|
|
|
+ this.forceUpdate();
|
|
|
|
+ }}
|
|
|
|
+ isSelected={() => animatableAsAny.animationPropertiesOverride != null}
|
|
|
|
+ onValueChanged={() => this.forceUpdate()}
|
|
|
|
+ />
|
|
|
|
+ {animatableAsAny.animationPropertiesOverride != null && (
|
|
|
|
+ <div>
|
|
|
|
+ <CheckBoxLineComponent label="Enable blending" target={animatableAsAny.animationPropertiesOverride} propertyName="enableBlending" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
|
|
|
|
+ <SliderLineComponent label="Blending speed" target={animatableAsAny.animationPropertiesOverride} propertyName="blendingSpeed" minimum={0} maximum={0.1} step={0.01} onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
|
|
|
|
+ </div>
|
|
|
|
+ )}
|
|
|
|
+ </>
|
|
|
|
+ )}
|
|
|
|
+ </LineContainerComponent>
|
|
|
|
+ )}
|
|
|
|
+ </>
|
|
)}
|
|
)}
|
|
- </LineContainerComponent>
|
|
|
|
- )}
|
|
|
|
- </>
|
|
|
|
- )}
|
|
|
|
- </div>
|
|
|
|
- );
|
|
|
|
- }
|
|
|
|
|
|
+ </div>
|
|
|
|
+ );
|
|
|
|
+ }
|
|
}
|
|
}
|