apply Prettier fixes
This commit is contained in:
parent
e0bbc2f3f5
commit
b8205cd71f
@ -38,25 +38,34 @@ export class RootAnimation {
|
||||
|
||||
export function createOrbitControls() {
|
||||
return {
|
||||
dispose() {}
|
||||
dispose() {},
|
||||
}
|
||||
}
|
||||
|
||||
export const WalkingAnimation = new Proxy({}, {
|
||||
get() {
|
||||
return jest.fn()
|
||||
}
|
||||
})
|
||||
export const RunningAnimation = new Proxy({}, {
|
||||
get() {
|
||||
return jest.fn()
|
||||
}
|
||||
})
|
||||
export const RotatingAnimation = new Proxy({}, {
|
||||
get() {
|
||||
return jest.fn()
|
||||
}
|
||||
})
|
||||
export const WalkingAnimation = new Proxy(
|
||||
{},
|
||||
{
|
||||
get() {
|
||||
return jest.fn()
|
||||
},
|
||||
},
|
||||
)
|
||||
export const RunningAnimation = new Proxy(
|
||||
{},
|
||||
{
|
||||
get() {
|
||||
return jest.fn()
|
||||
},
|
||||
},
|
||||
)
|
||||
export const RotatingAnimation = new Proxy(
|
||||
{},
|
||||
{
|
||||
get() {
|
||||
return jest.fn()
|
||||
},
|
||||
},
|
||||
)
|
||||
|
||||
export function isSlimSkin() {
|
||||
return false
|
||||
|
Loading…
Reference in New Issue
Block a user