From 04a7798f9616b9b7db41af73c9e2a6c3fc710413 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Thu, 1 Oct 2020 18:45:05 +0200 Subject: [PATCH] Fixed some texture loading issues. --- src/quest_editor/loading/EntityAssetLoader.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/quest_editor/loading/EntityAssetLoader.ts b/src/quest_editor/loading/EntityAssetLoader.ts index 1d938a16..e8fc5f9b 100644 --- a/src/quest_editor/loading/EntityAssetLoader.ts +++ b/src/quest_editor/loading/EntityAssetLoader.ts @@ -93,8 +93,19 @@ export class EntityAssetLoader implements Disposable { } load_textures(type: EntityType, model?: number): DisposablePromise { + let suffix: string; + + if ( + type === ObjectType.FloatingRocks || + (type === ObjectType.BigBrownRock && model == undefined) + ) { + suffix = "-0"; + } else { + suffix = ""; + } + return this.tex_cache.get_or_set(`${type}-${model ?? ""}`, () => - this.load_data(type, AssetType.Texture, "", model) + this.load_data(type, AssetType.Texture, suffix, model) .then(({ data }) => { const cursor = new ArrayBufferCursor(data, Endianness.Little); const xvm = parse_xvm(cursor); @@ -131,6 +142,7 @@ export class EntityAssetLoader implements Disposable { NpcType.Unknown, NpcType.Migium, NpcType.Hidoom, + NpcType.VolOptPart1, NpcType.DeathGunner, NpcType.StRappy, NpcType.HalloRappy,