style: linebreaks

pull/97/head
split / May 2025-01-01 05:13:13 -08:00
parent f1d1b81456
commit 223de57b65
No known key found for this signature in database
GPG Key ID: C325C61F0BF517C0
1 changed files with 2 additions and 0 deletions

View File

@ -225,6 +225,7 @@ export class DDS {
this.urlCache[path] = url;
return url
};
async getFileFromSheet(path: string, x: number, y: number, w: number, h: number, s?: number): Promise<string> {
if (!await this.loadFile(path))
return "";
@ -234,6 +235,7 @@ export class DDS {
return URL.createObjectURL(await this.get2DBlob("image/png") ?? new Blob([]));
};
async getFileScaled(path: string, s: number, fallback?: string): Promise<string> {
if (this.urlCache[path])
return this.urlCache[path]