UNPKG

playcanvas

Version:

Open-source WebGL/WebGPU 3D engine for the web

24 lines (23 loc) 386 B
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 };