open_texture_packer 0.2.5

Open source and free Texture Packer tool written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@keyframes spriteAnimation {
    0.000% { background-position: -0px -0px; }
    50.000% { background-position: -240px -0px; }
    100.000% { background-position: -440px -0px; }
}

.pic {
    width: 240px;
    height: 240px;
    background-image: url('examples/output/texture_sheet_1.png');
    background-size: 540px auto;
    animation: spriteAnimation 0.05s steps(1) infinite;
}