mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-01-18 22:36:27 +01:00
Update BadgeImageManager.ts
This commit is contained in:
parent
d7b5cbdf21
commit
4c458091e5
@ -1,4 +1,4 @@
|
|||||||
import { Resource, Texture } from '@pixi/core';
|
import { Resource, Texture } from '@pixi/core';
|
||||||
import { NitroContainer, NitroTexture } from '../../..';
|
import { NitroContainer, NitroTexture } from '../../..';
|
||||||
import { IAssetManager } from '../../../core/asset/IAssetManager';
|
import { IAssetManager } from '../../../core/asset/IAssetManager';
|
||||||
import { IMessageEvent } from '../../../core/communication/messages/IMessageEvent';
|
import { IMessageEvent } from '../../../core/communication/messages/IMessageEvent';
|
||||||
@ -202,24 +202,27 @@ export class BadgeImageManager implements IDisposable
|
|||||||
|
|
||||||
const partNames = ((part.type === 'b') ? this._groupBases.get(part.key) : this._groupSymbols.get(part.key));
|
const partNames = ((part.type === 'b') ? this._groupBases.get(part.key) : this._groupSymbols.get(part.key));
|
||||||
|
|
||||||
for(const partName of partNames)
|
if(partNames)
|
||||||
{
|
{
|
||||||
if(!partName || !partName.length) continue;
|
for(const partName of partNames)
|
||||||
|
{
|
||||||
const texture = this._assets.getTexture(`badgepart_${ partName }`);
|
if(!partName || !partName.length) continue;
|
||||||
|
|
||||||
if(!texture) continue;
|
const texture = this._assets.getTexture(`badgepart_${ partName }`);
|
||||||
|
|
||||||
const { x, y } = part.calculatePosition(texture);
|
if(!texture) continue;
|
||||||
const sprite = new NitroSprite(texture);
|
|
||||||
|
const { x, y } = part.calculatePosition(texture);
|
||||||
sprite.position.set(x, y);
|
const sprite = new NitroSprite(texture);
|
||||||
|
|
||||||
if(isFirst) sprite.tint = parseInt(this._groupPartColors.get(part.color), 16);
|
sprite.position.set(x, y);
|
||||||
|
|
||||||
isFirst = false;
|
if(isFirst) sprite.tint = parseInt(this._groupPartColors.get(part.color), 16);
|
||||||
|
|
||||||
container.addChild(sprite);
|
isFirst = false;
|
||||||
|
|
||||||
|
container.addChild(sprite);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user