Latest Awards
Complete 10 python programs which focus on loops.

morgan

Score over 100 points in total

vincebanter10

Complete any 5 python programs

vincebanter10

Complete 3 python list based tasks

vincebanter10

Complete 5 python list based tasks

vincebanter10

Complete 10 python list based tasks

dman12

Score over 1000 points in total

april-logan

Complete any pygame task

april-logan

Complete any 3 pygame tasks

april-logan

You have to complete 5 pygame tasks

april-logan

Score over 500 points in total

sam-edmund

Complete any pygame task

sam-edmund

Complete any 3 pygame tasks

sam-edmund

You have to complete 5 pygame tasks

sam-edmund

Complete any pygame task

12wrigleyf

Complete any 3 pygame tasks

12wrigleyf

You have to complete 5 pygame tasks

12wrigleyf

Score over 500 points in total

jhoughton12

Complete any 10 python prograns

jhoughton12

Complete 10 python programs which focus on loops.

jhoughton12

Python Score
tasks = 0
achivements = 0
freestyle = 0
Total = 0
Top 5 Scores
114gilo 3500
2joss-nolan-2 2530
3alexdawkins 2515
4byrnebrian 2080
512wattsl 1750
Click to view all scores
Who else completed this task?
No one has completed this task yet. Be the first!

Basic animation

Basic animation

Animation in pygame is all about using variables when drawing shapes or images. The code below and video above explain how you can introduce basic variables in order to do simple animation.

from pygame import *

init()
# we only need a screen to get access to the events!
screen = display.set_mode((640, 480)) # tuple
display.set_caption('Graphics')

animationTimer = time.Clock()
x=10
y=10
endProgram = False

# game loops
# check input
# Update positions / game logic
# draw frame

while not endProgram:
	# Check input
	for e in event.get():
		if e.type == QUIT:
			endProgram = True
	# update position
	x += 1
	y += 2
	# draw stuff
	screen.fill((100,100,200))
	# circle
	draw.ellipse(screen, (0,255,0), (x, y, 40, 40)) 
	
	# limit to 30 frames per second 
	animationTimer.tick(100)
	# update the screen!
	display.update()


Leave a Reply

You must be logged in to post a comment.