Godot Acadamy
  • HOME
  • Courses
  • LEARN
  • GAMES
  • UPDATES
Godot Acadamy
Godot Acadamy

Setup & First Game

Developing 2D Game with Python Arcade Library

What you'll learn

Questions

  • What is Python and used for?
  • What is Arcade?
  • What VS Code?
  • What is the relationship among these tools?
  • What does a simplest Arcade game look like?

Answers

What is Python and used for?

Python in computer world actually is a programming language, which is the most easy understanding for human being and most easy to get started among those dosens of popular computer languages. You can use Python to talk with computer, make it to do almost everything but not limited to the following tasks:

  • Data analytics
  • Machine learning
  • Scientific computing
  • Web Applications

1/6

Demo Time(Mac computer only)

Video Content List:

  • Check python installation success
  • Check python path in VSCode settings
  • Create python programs folder arcade_games
  • Enable launching python program in VSCode
  • Launch your first game

Code involved

import arcade
SCREEN_WIDTH = 400
SCREEN_HEIGHT = 300
SCREEN_TITLE = "Python Aracde Game - Welcome"
arcade.open_window(SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_TITLE)
arcade.set_background_color(arcade.color.BLACK)
arcade.start_render()
arcade.draw_text("Welcome to Arcade Game World", 20, 200, arcade.color.AERO_BLUE, 18)
arcade.finish_render()
arcade.run()

Review

...

Dev 2DGame with PythonDrawing a Snowman

Godot Acadamy

A straightforward path to learn programming and game development.

lwz7512@gmail.com
  • Courses
    • Beginner
    • Advanced
    • Professional
  • Learn
  • About

© 2021 Godot Acadamy

Follow on TwitterFollow on Instagram