mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Fixed some texture loading issues.
This commit is contained in:
parent
b48c06181a
commit
04a7798f96
@ -93,8 +93,19 @@ export class EntityAssetLoader implements Disposable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
load_textures(type: EntityType, model?: number): DisposablePromise<Texture[]> {
|
load_textures(type: EntityType, model?: number): DisposablePromise<Texture[]> {
|
||||||
|
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 ?? ""}`, () =>
|
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 }) => {
|
.then(({ data }) => {
|
||||||
const cursor = new ArrayBufferCursor(data, Endianness.Little);
|
const cursor = new ArrayBufferCursor(data, Endianness.Little);
|
||||||
const xvm = parse_xvm(cursor);
|
const xvm = parse_xvm(cursor);
|
||||||
@ -131,6 +142,7 @@ export class EntityAssetLoader implements Disposable {
|
|||||||
NpcType.Unknown,
|
NpcType.Unknown,
|
||||||
NpcType.Migium,
|
NpcType.Migium,
|
||||||
NpcType.Hidoom,
|
NpcType.Hidoom,
|
||||||
|
NpcType.VolOptPart1,
|
||||||
NpcType.DeathGunner,
|
NpcType.DeathGunner,
|
||||||
NpcType.StRappy,
|
NpcType.StRappy,
|
||||||
NpcType.HalloRappy,
|
NpcType.HalloRappy,
|
||||||
|
Loading…
Reference in New Issue
Block a user