Pygame is a free and open-source cross-platform library for the development of multimedia applications like video games using Python. It uses the Simple DirectMedia Layer library and several other ...
前回の記事でキャラクターを画面に出しました。今回はキャラクターを動かしてみたいと思います。 左右キーでキャラクターを動かし、スペースでジャンプ。 コード これが今回作成したコード。 import pygame import sys # 定数の設定 SCREEN_WIDTH = 800 SCREEN_HEIGHT = 600 ...
前回の記事でpygameを使って画面を出しましたが、今回はキャラクターを画面上に置いてみます。 画面にプレーヤーとして赤い四角、ゴールとして青い四角を置いてみます。ついでにキャラクターを配置する位置は画面サイズに依存するので、画面サイズを ...
今回はちょっと実用処理から離れてPythonでゲームを作ってみよう。Pythonにはさまざまなライブラリが用意されており、その中にはゲーム開発に特化したライブラリもある。今回はPyGameと呼ばれるライブラリの使い方を紹介する。PyGameで迷路ゲームを作って ...
text: str = """Hello, World\nLorem ipsum, etc.\netc.""" pygame.display.gl_set_attribute(pygame.GL_CONTEXT_MAJOR_VERSION, 3) pygame.display.gl_set_attribute(pygame.GL ...
Python is an absolutely fantastic language for tossing bits of data around and gluing different software components together. But eventually you may find yourself looking to make a program with an ...
[Prashant Mohta] got hold of a Raspberry Pi, a 16×2 LCD display and got down to writing a simple game in Python. Pretty soon, he realized that it was cumbersome to have the Ras-Pi and LCD connected ...