https://github.com/remarkablegames/pink-engine
♦️ Pink Engine
https://github.com/remarkablegames/pink-engine
game pink-engine python renpy renpy-engine renpy-game rpg tiled tilemap visual-novel
Last synced: 5 months ago
JSON representation
♦️ Pink Engine
- Host: GitHub
- URL: https://github.com/remarkablegames/pink-engine
- Owner: remarkablegames
- License: mit
- Created: 2025-08-05T23:51:32.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2026-01-10T06:48:12.000Z (5 months ago)
- Last Synced: 2026-01-11T01:56:23.801Z (5 months ago)
- Topics: game, pink-engine, python, renpy, renpy-engine, renpy-game, rpg, tiled, tilemap, visual-novel
- Language: Python
- Homepage: http://remarkablegames.org/pink-engine/
- Size: 97.5 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Pink Engine

[](https://github.com/remarkablegames/pink-engine/actions/workflows/build.yml)
[](https://github.com/remarkablegames/pink-engine/actions/workflows/lint.yml)
♦️ Create Ren'Py games with [Pink Engine](https://pink-productions.itch.io/pink-engine).
Play the game on:
- [remarkablegames](https://remarkablegames.org/pink-engine/)
## Prerequisites
Download [Ren'Py SDK](https://www.renpy.org/latest.html):
```sh
git clone https://github.com/remarkablegames/renpy-sdk.git
```
Symlink `renpy`:
```sh
sudo ln -sf "$(realpath renpy-sdk/renpy.sh)" /usr/local/bin/renpy
```
Check the version:
```sh
renpy --version
```
## Install
Clone the repository to the `Projects Directory`:
```sh
git clone https://github.com/remarkablegames/pink-engine.git
cd pink-engine
```
Rename the project:
```sh
git grep -l "Pink Engine" | xargs sed -i '' -e "s/Pink Engine/My Game/g"
```
```sh
git grep -l 'pink-engine' | xargs sed -i '' -e 's/pink-engine/my-game/g'
```
Replace the assets:
- [ ] `game/gui/main_menu.png`
- [ ] `game/gui/window_icon.png`
- [ ] [`icon.icns`](https://anyconv.com/png-to-icns-converter/)
- [ ] [`icon.ico`](https://anyconv.com/png-to-ico-converter/)
- [ ] `web-icon.png`
- [ ] `web-presplash.webp`
## Run
Launch the project:
```sh
renpy .
```
Or open the `Ren'Py Launcher`:
```sh
renpy
```
Press `Shift`+`R` to reload the game.
Press `Shift`+`D` to open the developer menu.
## Cache
Clear the cache:
```sh
find game -name "*.rpyc" -delete
```
Or open `Ren'Py Launcher` > `Force Recompile`:
```sh
renpy
```
## Lint
Lint the game:
```sh
renpy game lint
```
## License
[MIT](LICENSE)