blessing-skin-server/resources/assets/tests/__mocks__/skinview3d.js
2018-07-27 09:54:23 +08:00

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 };