25 lines
492 B
JavaScript
25 lines
492 B
JavaScript
export class SkinViewer {
|
|
constructor() {
|
|
this.animationPaused = false;
|
|
this.camera = {
|
|
position: {}
|
|
};
|
|
}
|
|
|
|
dispose() {
|
|
this.disposed = true;
|
|
}
|
|
}
|
|
|
|
export class CompositeAnimation {
|
|
add(animation) {
|
|
return animation;
|
|
}
|
|
}
|
|
|
|
export function createOrbitControls() {}
|
|
|
|
export const WalkingAnimation = { paused: false };
|
|
export const RunningAnimation = { paused: false };
|
|
export const RotatingAnimation = { paused: false };
|