parent
4f297f67a5
commit
187daabfa9
After Width: | Height: | Size: 267 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 490 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 197 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 1.8 MiB |
@ -0,0 +1,16 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import pygame
|
||||
|
||||
pygame.init()
|
||||
pygame.display.set_mode((1, 1))
|
||||
|
||||
final = pygame.Surface((96 * 24, 96)).convert_alpha()
|
||||
final.fill((0, 0, 0, 0))
|
||||
|
||||
for a in range(24):
|
||||
if a < 10:
|
||||
image = pygame.image.load("./expl_11_000" + str(a) + ".png").convert_alpha()
|
||||
else:
|
||||
image = pygame.image.load("./expl_11_00" + str(a) + ".png").convert_alpha()
|
||||
final.blit(image, (a * 96, 0))
|
||||
pygame.image.save(final, "expl_11.png")
|
@ -0,0 +1,6 @@
|
||||
Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS --
|
||||
people who have submitted patches, reported bugs, added translations, helped
|
||||
answer newbie questions, and generally made Pyganim that much better:
|
||||
|
||||
Al Sweigart (al@inventwithpython.com)
|
||||
Chad Estioco https://github.com/skytreader
|
@ -0,0 +1,5 @@
|
||||
v0.9.2, 2015/08/03 -- Added sprite sheet loading feature
|
||||
v0.9.0, 2014/08/03 -- Initial Pip release.
|
||||
|
||||
I (Pixdigit) changed some code in the main library because there were some bugs.
|
||||
Because I need to implement the new lib I use the modified version until a public fix is released.
|
@ -0,0 +1,27 @@
|
||||
Copyright (c) 2014, Al Sweigart
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name of the {organization} nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,2 @@
|
||||
include *.md
|
||||
recursive-include pyganim *.py
|
@ -0,0 +1,16 @@
|
||||
Pyganim - A Sprite Animation module for Pygame
|
||||
|
||||
http://inventwithpython.com/pyganim/
|
||||
|
||||
Pyganim (pronounced like "pig" and "animation") is a Python module for Pygame that makes it easy to add sprite animations to your Pygame game programs. Pyganim works with Python 2 and Python 3.
|
||||
|
||||
The mascot of Pyganim is a red vitruvian pig.
|
||||
|
||||
Pyganim was written by Al Sweigart and released under a "Simplified BSD" license. Contact Al with any questions/bug reports: al@inventwithpython.com
|
||||
|
||||
|
||||
Reference:
|
||||
http://inventwithpython.com/pyganim/reference.html
|
||||
|
||||
Tutorial:
|
||||
http://inventwithpython.com/pyganim/tutorial.html
|
@ -0,0 +1,17 @@
|
||||
Pyganim
|
||||
=======
|
||||
|
||||
http://inventwithpython.com/pyganim/
|
||||
|
||||
Pyganim (pronounced like "pig" and "animation") is a Python module for Pygame that makes it easy to add sprite animations to your Pygame game programs. Pyganim works with Python 2 and Python 3.
|
||||
|
||||
The mascot of Pyganim is a red vitruvian pig.
|
||||
|
||||
Pyganim was written by Al Sweigart and released under a "Simplified BSD" license. Contact Al with any questions/bug reports: al@inventwithpython.com
|
||||
|
||||
|
||||
Reference:
|
||||
http://inventwithpython.com/pyganim/reference.html
|
||||
|
||||
Tutorial:
|
||||
http://inventwithpython.com/pyganim/tutorial.html
|
@ -0,0 +1,16 @@
|
||||
Pyganim - A Sprite Animation module for Pygame
|
||||
|
||||
http://inventwithpython.com/pyganim/
|
||||
|
||||
Pyganim (pronounced like "pig" and "animation") is a Python module for Pygame that makes it easy to add sprite animations to your Pygame game programs. Pyganim works with Python 2 and Python 3.
|
||||
|
||||
The mascot of Pyganim is a red vitruvian pig.
|
||||
|
||||
Pyganim was written by Al Sweigart and released under a "Simplified BSD" license. Contact Al with any questions/bug reports: al@inventwithpython.com
|
||||
|
||||
|
||||
Reference:
|
||||
http://inventwithpython.com/pyganim/reference.html
|
||||
|
||||
Tutorial:
|
||||
http://inventwithpython.com/pyganim/tutorial.html
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue