Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #47671
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <ian.g.kelly@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.039 |
| X-Spam-Evidence | '*H*': 0.92; '*S*': 0.00; 'tutorial': 0.03; 'moving.': 0.09; 'pixels': 0.09; 'appreciated!': 0.16; 'jumps': 0.16; 'normally,': 0.16; 'pygame': 0.16; 'smoothly,': 0.16; 'there?': 0.16; 'wrote:': 0.18; 'button,': 0.24; "i've": 0.25; 'player': 0.26; 'tutorials': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'url:wiki': 0.31; 'thanks!': 0.32; 'trouble': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'add': 0.35; 'there': 0.35; 'next': 0.36; "didn't": 0.36; 'subject:?': 0.36; 'url:org': 0.36; 'list': 0.37; 'to:addr:python-list': 0.38; 'moving': 0.39; 'to:addr:python.org': 0.39; 'here:': 0.62; 'finish': 0.65; 'movement': 0.65; 'press': 0.70; 'links,': 0.74; 'moves': 0.84; '2013': 0.98 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=Vo+5INh9pIlU9BhT8C9ka44yT8V8YeOQ4ZaISZR9JgA=; b=YO6v2Ks1YCxSVhhxwhWR2daqm5l1fqoCYWZ0ckThjhq+yvs8Lfz5OWSCPc4oD7D3C5 QbMx2arFjjFRjiU+a5HrfqSU64p6gCYTidlpRgDUlkseZym54zam8fmFKNo3qu6w4hJW t0lpWy56nmnhUjPf31aDjh8OiXTG1uCiTTfP6/QUN0hoo2YMGsXZCmddf6zJTa3YNlpF zc8V2sQYU6UH0ILWTlVu3mY68QjNxaoAEjPZY+Ji0thfKa4XrF+m7j/0tpJLchaD3JlP FAWlYTuHvBwgrsunUmAQ/ORQsHBIqZnatIXbNB0NKmRL6bhyagIY2b1IWmw2odr3UV1Z URMA== |
| X-Received | by 10.68.241.68 with SMTP id wg4mr15449022pbc.121.1370966453567; Tue, 11 Jun 2013 09:00:53 -0700 (PDT) |
| MIME-Version | 1.0 |
| In-Reply-To | <b3db43fc-8e80-4e94-a59e-51f0f8dabee2@googlegroups.com> |
| References | <b3db43fc-8e80-4e94-a59e-51f0f8dabee2@googlegroups.com> |
| From | Ian Kelly <ian.g.kelly@gmail.com> |
| Date | Tue, 11 Jun 2013 10:00:13 -0600 |
| Subject | Re: PyGame tutorial? |
| To | Python <python-list@python.org> |
| Content-Type | text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding | quoted-printable |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3026.1370966457.3114.python-list@python.org> (permalink) |
| Lines | 17 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1370966457 news.xs4all.nl 15895 [2001:888:2000:d::a6]:51534 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:47671 |
Show key headers only | View raw
On Tue, Jun 11, 2013 at 9:47 AM, Eam onn <letsplaysforu@gmail.com> wrote: > Is there a PyGame tutorial out there? I've seen TheNewBoston's tuts, but he didn't finish his. MetalX100 did a VERY good tutorial. I've been having trouble with some player movement because he isn't moving smoothly, he jumps. If I add 5 pixels to his X position if I press a button, jumps to the next 5 pixels instead of smoothly moving. If I just add 5 pixels normally, he moves smooth. > > Thanks! Any help is appreciated! There is a whole list of tutorials here: http://www.pygame.org/docs/#tutorials and here: http://www.pygame.org/wiki/tutorials But I already gave you those links, so I don't know what else you are looking for.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
PyGame tutorial? Eam onn <letsplaysforu@gmail.com> - 2013-06-11 08:47 -0700
Re: PyGame tutorial? Ian Kelly <ian.g.kelly@gmail.com> - 2013-06-11 10:00 -0600
Re: PyGame tutorial? Eam onn <letsplaysforu@gmail.com> - 2013-06-11 09:56 -0700
Re: PyGame tutorial? Ian Kelly <ian.g.kelly@gmail.com> - 2013-06-11 11:13 -0600
Re: PyGame tutorial? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-06-11 17:31 +0100
Re: PyGame tutorial? Eam onn <letsplaysforu@gmail.com> - 2013-06-11 09:57 -0700
Re: PyGame tutorial? Alister <alister.ware@ntlworld.com> - 2013-06-11 17:19 +0000
Re: PyGame tutorial? Ian Kelly <ian.g.kelly@gmail.com> - 2013-06-11 11:23 -0600
Re: PyGame tutorial? Larry Hudson <orgnut@yahoo.com> - 2013-06-12 00:30 -0700
csiph-web