(example.py) Example sprite is now 8x8 instead of 4x4

This commit is contained in:
KikooDX 2020-04-12 18:28:39 +02:00
parent d95cc280d2
commit 67feca86b6
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
from sprito import *
#create indexed sprite
sprite = SpriteIndexed(4, 4, [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08]*2)
sprite = SpriteIndexed(8, 8, [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08]*8)
#create raw sprite from sprite
raw_sprite = sprite.to_raw(PALLET_BYTE)