You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
Move to Renderer V2
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { Container, Texture } from 'pixi.js';
|
||||
import { IAvatarFigureContainer } from './IAvatarFigureContainer';
|
||||
import { IAnimationLayerData, ISpriteDataContainer } from './animation';
|
||||
import { IPartColor } from './structure';
|
||||
|
||||
export interface IAvatarImage
|
||||
{
|
||||
dispose(): void;
|
||||
setDirection(_arg_1: string, _arg_2: number): void;
|
||||
setDirectionAngle(_arg_1: string, _arg_2: number): void;
|
||||
updateAnimationByFrames(_arg_1?: number): void;
|
||||
getScale(): string;
|
||||
getSprites(): ISpriteDataContainer[];
|
||||
getLayerData(_arg_1: ISpriteDataContainer): IAnimationLayerData;
|
||||
processAsTexture(setType: string, hightlight: boolean, texture?: Texture): Texture;
|
||||
processAsImageUrl(setType: string): string;
|
||||
processAsContainer(setType: string): Container;
|
||||
getDirection(): number;
|
||||
getFigure(): IAvatarFigureContainer;
|
||||
getPartColor(_arg_1: string): IPartColor;
|
||||
isAnimating(): boolean;
|
||||
getCanvasOffsets(): number[];
|
||||
initActionAppends(): void;
|
||||
endActionAppends(): void;
|
||||
appendAction(_arg_1: string, ..._args: any[]): boolean;
|
||||
isPlaceholder(): boolean;
|
||||
animationHasResetOnToggle: boolean;
|
||||
resetAnimationFrameCounter(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user