blessing-skin-server/resources/assets/tests/__mocks__/skinview3d.js
2019-03-15 11:42:41 +08:00

27 lines
491 B
JavaScript

/* eslint-disable max-classes-per-file */
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 }