Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmaccarthy/sc8pr
A simple framework for new and experienced Python programmers to create animations, games, and other graphics-based programs. Includes GUI controls, robotics simulator, and video recording and effects.
https://github.com/dmaccarthy/sc8pr
animation collision-handling educational game graphics gui gui-control latex physics-simulation pygame pygame-application pygame-gui python python-3 robot-simulator robotics-simulation sprite-animation video-games video-processing
Last synced: about 2 months ago
JSON representation
A simple framework for new and experienced Python programmers to create animations, games, and other graphics-based programs. Includes GUI controls, robotics simulator, and video recording and effects.
- Host: GitHub
- URL: https://github.com/dmaccarthy/sc8pr
- Owner: dmaccarthy
- License: gpl-3.0
- Created: 2016-04-17T20:39:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-20T01:53:56.000Z (4 months ago)
- Last Synced: 2024-11-13T04:20:24.162Z (2 months ago)
- Topics: animation, collision-handling, educational, game, graphics, gui, gui-control, latex, physics-simulation, pygame, pygame-application, pygame-gui, python, python-3, robot-simulator, robotics-simulation, sprite-animation, video-games, video-processing
- Language: Python
- Homepage: http://dmaccarthy.github.io/sc8pr
- Size: 1.67 MB
- Stars: 14
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# sc8pr
An educational programming package for [Python 3](https://www.python.org). Inspired by [Scratch](https://scratch.mit.edu) and [Processing](https://www.processing.org), **sc8pr**’s aim is to make it easy for new and experienced Python programmers to create animations, games, and other graphics-based programs.
![Screenshot](https://dmaccarthy.github.io/sc8pr/img/soccer.png)
**sc8pr 3** features include:
* a simple, event-driven approach to creating interactive animations
* sprite management
* physics-based collisions
* video effects / transitions
* a selection of GUI controls
* curve plotting
* robotics simulatorFor more information, please see the [tutorial and reference](https://dmaccarthy.github.io/sc8pr/).
# Installation
Latest stable release (3.0) including extras with additional dependencies:
```
pip3 install sc8prx
```Latest stable release (3.0), core features that depend only on **pygame**:
```
pip3 install sc8pr
```Alternatively, you can download **sc8pr** from GitHub and run it from the source code. Ensure that **pygame 2** is installed!
See the documentation for more [detailed instructions](https://dmaccarthy.github.io/sc8pr/?inst).