Renpy Gitignore _top_ [ 2025-2027 ]

: These change every time you launch the game or encounter an error . log.txt errors.txt traceback.txt lint.txt

my_visual_novel/ ├── .gitignore ├── game/ │ ├── script.rpy │ ├── gui.rpy │ └── ... └── renpy/ (Ren'Py SDK – usually not committed) renpy gitignore

# --- Generated Directories --- # These directories are generated by the engine on build/run android/ ios/ web/ linux/ mac/ windows/ renpy/ : These change every time you launch the

# --- Ren'Py Specific --- # Compiled game scripts and archives game/*.rpyc game/*.rpyb game/*.rpymc game/archives/*.rpa renpy gitignore

# --- IDE & System Files --- # Visual Studio Code .vscode/ *.code-workspace

# Cache and temporary files game/saves/ game/cache/ tmp/ log.txt

# Ren'Py compiled and generated files *.rpyc *.rpymc cache/ saves/ log.txt errors.txt traceback.txt updater.json