This repo is a set of basic tools for Visual Novel / Game developers who are planning to create a Dating sim.
Feel free to contribute, fork this and send a pull request. 😄
Itch.io Page: https://drincs-productions.itch.io/ds-toolkit
# Basic command to download projects from git
git clone https://github.com/DRincs-Productions/DS-toolkit
# IMPORTANT -> Will add the libraries needed to run the program
cd DS-toolkit
git submodule update --init --recursive
Code snippets (VSCode)
(all begin with DR_
)
Download the: link
To install a precise version install it manually: Releases.
But I recommend you to use git submodule:
# renpy-utility-lib
git submodule add -b python-lib -- https://github.com/DRincs-Productions/renpy-utility-lib 'pythonpackages/renpy_utility'
git submodule add -b renpy-lib -- https://github.com/DRincs-Productions/renpy-utility-lib 'game/renpy_utility_tool'
# renpy-utility-lib
git submodule add -b main -- https://github.com/DRincs-Productions/renpy-screens-style 'game/screens_style'
# Dating sim toolkit
git submodule add -b python-lib -- https://github.com/DRincs-Productions/DS-toolkit 'pythonpackages/ds'
git submodule add -b renpy-lib -- https://github.com/DRincs-Productions/DS-toolkit 'game/ds_tool'
git submodule add -b screens -- https://github.com/DRincs-Productions/DS-toolkit 'game/ds_screens'
AND create a empty file __init__.py
into pythonpackages/
so pythonpackages/__init__.py
.
git submodule update --init --recursive