Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drincs-productions/renpy-utility-lib
Is a basic library designed primarily to be used by other libraries
https://github.com/drincs-productions/renpy-utility-lib
library renpy
Last synced: 8 days ago
JSON representation
Is a basic library designed primarily to be used by other libraries
- Host: GitHub
- URL: https://github.com/drincs-productions/renpy-utility-lib
- Owner: DRincs-Productions
- Created: 2023-05-07T16:27:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-26T14:46:06.000Z (11 months ago)
- Last Synced: 2024-01-26T15:49:55.132Z (11 months ago)
- Topics: library, renpy
- Language: Python
- Homepage: https://drincs-website.web.app
- Size: 43.9 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ren'Py Utility Library
Ren'Py Utility Library is DRincs Productions's library for Ren'Py, used into all our renpy project.
* Flags: Is a library for Ren'Py to manage flags. ( Read more into the Wiki )
* Tags: Is a library for Ren'Py to manage tags. ( Read more into the Wiki )
* Logs: Is a my Log system for Ren'Py, wen you use it, you can see the log into the console, file and Notification. ( Read more into the Wiki )
* Notification: Is a library for Notification for Ren'Py. ( Read more into the Wiki )
* Character Disct: Is my solution for know all the character in the game, and add more information about them. ( Read more into the Wiki )
* Coundown: Is a library for Ren'Py to manage coundown. ( Read more into the Wiki )
* There are function for improve the code, like: IsNullOrWhiteSpace...## Install
You can install this library manually: download the zip and extract it in your project folder.
But I recommend you to use git submodule:```bash
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'
```**AND** create a empty file `__init__.py` into pythonpackages `pythonpackages/` so `pythonpackages/__init__.py`.
## Update new version
```bash
git submodule update --init --recursive
```