StarOpenSource's custom CORE modules
addons | ||
dist/submodules | ||
scenesrc | ||
src | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
CORE | ||
LICENSE | ||
project.godot | ||
README.md |
Venus
StarOpenSource's custom CORE modules.
Setting up
mkdir -p addons
git clone https://git.staropensource.de/StarOpenSource/venus.git addons/venus
References
src/manager.gd
void register_modules()
Registers all of Venus' modules.
void unregister_modules()
Unregisters all of Venus' modules.
src/modules/splashes.gd
CoreBaseModule add_splash(String category, String splash)
Adds a splash to the specified category.
CoreBaseModule add_splashes(String category, Array splashes)
Adds an array of splashes to the specified category.
CoreBaseModule copy_splashes(String source_category, String target_category)
Copies all splashes from the source category to the target category.
Array get_categories()
Returns a list of all categories.
CoreBaseModule delete_category(String category)
Removes the specified category.
String get_random_splash(String category)
Returns a random splash.