export invokeAnimation()
This commit is contained in:
parent
70c2b36339
commit
741dc9e3ef
|
|
@ -25,4 +25,4 @@
|
||||||
|
|
||||||
export { SkinObject, CapeObject, PlayerObject } from "./model";
|
export { SkinObject, CapeObject, PlayerObject } from "./model";
|
||||||
export { SkinViewer, SkinControl } from "./viewer";
|
export { SkinViewer, SkinControl } from "./viewer";
|
||||||
export { CompositeAnimation, WalkAnimation } from "./animation";
|
export { invokeAnimation, CompositeAnimation, WalkAnimation } from "./animation";
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ interface IAnimation {
|
||||||
}
|
}
|
||||||
export type Animation = AnimationFn | IAnimation;
|
export type Animation = AnimationFn | IAnimation;
|
||||||
|
|
||||||
declare function invokeAnimation(
|
export function invokeAnimation(
|
||||||
animation: Animation,
|
animation: Animation,
|
||||||
player: PlayerObject,
|
player: PlayerObject,
|
||||||
time: number,
|
time: number,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue