Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damiav/rpg_engine
Small Python RPG Engine. Features will be added when I take the time.
https://github.com/damiav/rpg_engine
game-engine python python3 rpg-engine rpg-maker rpg-tool
Last synced: 17 days ago
JSON representation
Small Python RPG Engine. Features will be added when I take the time.
- Host: GitHub
- URL: https://github.com/damiav/rpg_engine
- Owner: DamiaV
- License: gpl-3.0
- Created: 2018-08-05T19:58:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-21T16:00:01.000Z (over 1 year ago)
- Last Synced: 2024-12-06T23:18:14.430Z (27 days ago)
- Topics: game-engine, python, python3, rpg-engine, rpg-maker, rpg-tool
- Language: Python
- Size: 219 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RPG_Engine
Small Python RPG Engine. Features will be added when I take the time.## Map generation
To generate a map, use `utils/generate_map.py` file.
All data (maps and tilesets) needs to be stored into specific directories:
map files go into `/data/maps` and tilesets go into `/data/tiles`.Follow these steps to generate a map file.
- Create a python file in `/utils` directory.
- Give it the same name as the map file you want to generate.
- Define all map data in a variable called `map_data`.
- Run the following command from `/utils` directory: ` python generate_map.py `For example, if you want to generate a file named `test.map`, create a file `test.py` and define
`map_data` variable then run `python generate_map.py test`.