Ajout de zIndex pour afficher le demi-rêve devant

This commit is contained in:
Vincent Vandemeulebrouck
2021-02-12 15:01:10 +01:00
parent d700fc7b6c
commit b469461cf6
15 changed files with 87 additions and 29 deletions

View File

@ -1,4 +1,4 @@
import { tmrColors, tmrConstants, TMRUtility } from "../tmr-utility.js";
import { tmrColors, tmrConstants, tmrTokenZIndex, TMRUtility } from "../tmr-utility.js";
import { Draconique } from "./draconique.js";
export class FermetureCites extends Draconique {
@ -19,7 +19,11 @@ export class FermetureCites extends Draconique {
_createSprite(pixiTMR) {
return pixiTMR.sprite(this.code(),
{
color: tmrColors.souffle, alpha: 0.9, taille: tmrConstants.full, decallage: { x: 2, y: 0 }
zIndex: tmrTokenZIndex.conquete,
color: tmrColors.souffle,
alpha: 0.9,
taille: tmrConstants.full,
decallage: { x: 2, y: 0 }
});
}