UNPKG
miaam
Version:
latest (2.1.1)
2.1.1
2.1.0
2.0.5
2.0.4
2.0.3
Miaam Web Game Framework
miaam
/
src
/
util
/
spritesheet.js
9 lines
(6 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Texture
,
Rectangle
}
from
'pixi.js'
;
const
snip
= (
source, x, y, width, height
) => {
const
texture =
new
Texture
(source,
new
Rectangle
(x, y, width, height));
return
texture; };
export
{ snip };