🆕 Added support for wf_slc_users_area and some avatar fixes

This commit is contained in:
duckietm
2026-03-06 11:26:40 +01:00
parent f157b49f3b
commit bc4605f45f
5 changed files with 38 additions and 37 deletions
@@ -1,6 +1,5 @@
import { Container, Texture } from 'pixi.js';
import { IAvatarFigureContainer } from './IAvatarFigureContainer';
import { IGraphicAsset } from '../../asset';
import { IAnimationLayerData, ISpriteDataContainer } from './animation';
import { IPartColor } from './structure';
@@ -16,7 +15,6 @@ export interface IAvatarImage
processAsTexture(setType: string, hightlight: boolean, texture?: Texture): Texture;
processAsImageUrl(setType: string): string;
processAsContainer(setType: string): Container;
getAsset(name: string): IGraphicAsset;
getDirection(): number;
getFigure(): IAvatarFigureContainer;
getPartColor(_arg_1: string): IPartColor;
@@ -9,5 +9,6 @@ export interface IRoomAreaSelectionManager
activate(callback: (rootX: number, rootY: number, width: number, height: number) => void, highlightType: string): boolean;
deactivate(): void;
setHighlight(rootX: number, rootY: number, width: number, height: number): void;
setHighlightType(highlightType: string): void;
readonly areaSelectionState: number;
}