Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remarkablegames/renpy-template
📖 Ren'Py Template to write visual novels
https://github.com/remarkablegames/renpy-template
game python renpy renpy-engine renpy-game renpy-visual-novels template visual-novel
Last synced: 25 days ago
JSON representation
📖 Ren'Py Template to write visual novels
- Host: GitHub
- URL: https://github.com/remarkablegames/renpy-template
- Owner: remarkablegames
- License: mit
- Created: 2024-06-07T23:05:58.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-12-30T08:09:04.000Z (about 1 month ago)
- Last Synced: 2024-12-30T09:28:35.738Z (about 1 month ago)
- Topics: game, python, renpy, renpy-engine, renpy-game, renpy-visual-novels, template, visual-novel
- Language: Ren'Py
- Homepage: http://remarkablegames.org/renpy-template/
- Size: 9.15 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Renpy Template
![release](https://img.shields.io/github/v/release/remarkablegames/renpy-template)
[![build](https://github.com/remarkablegames/renpy-template/actions/workflows/build.yml/badge.svg)](https://github.com/remarkablegames/renpy-template/actions/workflows/build.yml)
[![lint](https://github.com/remarkablegames/renpy-template/actions/workflows/lint.yml/badge.svg)](https://github.com/remarkablegames/renpy-template/actions/workflows/lint.yml)📖 Write visual novels with Ren'Py Template.
Play the game on:
- [remarkablegames](https://remarkablegames.org/renpy-template)
## Credits
### Art
- [Uncle Mugen](https://lemmasoft.renai.us/forums/viewtopic.php?t=17302)
### Audio
- [Kenney Interface Sounds](https://kenney.nl/assets/interface-sounds)
## 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
```## Install
Clone the repository to the `Projects Directory`:
```sh
git clone https://github.com/remarkablegames/renpy-template.git
cd renpy-template
```Rename the project:
```sh
git grep -l 'Renpy Template' | xargs sed -i '' -e 's/Renpy Template/My Novel/g'
``````sh
git grep -l 'renpy-template' | xargs sed -i '' -e 's/renpy-template/my-novel/g'
```Replace the assets:
- [ ] `web-presplash.jpg`
- [ ] `game/gui/main_menu.png`
- [ ] `game/gui/window_icon.png`## 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)