stage-js
Version:
2D HTML5 Rendering and Layout
18 lines (12 loc) • 346 B
Markdown
A sprite is an component with one texture.
```javascript
// Create a new sprite instance
let sprite = Stage.sprite(texture);
// Change sprite texture
sprite.image(texture);
// Tile/Stretch sprite when pinning width and/or height
// To define borders add top, bottom, left and right to texture
sprite.tile();
sprite.stretch();
```