playcanvas
Version:
PlayCanvas WebGL game engine
23 lines (21 loc) • 411 B
JavaScript
class AnimCurve {
constructor(paths, input, output, interpolation){
this._paths = paths;
this._input = input;
this._output = output;
this._interpolation = interpolation;
}
get paths() {
return this._paths;
}
get input() {
return this._input;
}
get output() {
return this._output;
}
get interpolation() {
return this._interpolation;
}
}
export { AnimCurve };