view.entity-module.Sprite.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of module-entities Show documentation
Show all versions of module-entities Show documentation
Entity Manager module for the CodinGame engine toolkit. Simplify the management of shapes and drawings.
import { SpriteBasedEntity } from './SpriteBasedEntity.js'
/* global PIXI */
export class Sprite extends SpriteBasedEntity {
initDisplay () {
super.initDisplay()
if (this.defaultState.image === null) {
this.graphics = new PIXI.Sprite(PIXI.Texture.EMPTY)
} else {
this.graphics = PIXI.Sprite.fromFrame(this.defaultState.image)
}
}
}