mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-12 13:44:41 +08:00
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 };
|