Skip to content

Commit c1cfd99

Browse files
authored
v1.0.0 merge
2 parents 1ffb1bc + 9234547 commit c1cfd99

33 files changed

+5413
-0
lines changed

.gitattributes

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* text=auto eol=lf
2+
3+
.gitattributes text
4+
.gitignore text
5+
6+
*.txt text
7+
*.md text
8+
9+
*.hxc text
10+
*.json text
11+
*.frag text
12+
13+
*.png binary
14+
15+
*.hxc linguist-language=Haxe

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_STORE
2+
3+
.vs
4+
.vscode

CODE_LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 rizz residence
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

_polymod_meta.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"title": "beast-engine",
3+
"description": "funkin modding library",
4+
"homepage": "https://github.com/rizz-residence/beast-engine",
5+
6+
"contributors": [
7+
{"name": "cyn0x8", "role": "coder", "url": "https://github.com/cyn0x8"},
8+
9+
{"name": "Raltyro", "role": "shader coord fix", "url": "https://github.com/Raltyro"}
10+
],
11+
12+
"license": "MIT",
13+
14+
"api_version": "0.5.0",
15+
"mod_version": "1.0.0"
16+
}

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## v1.0.0
4+
5+
- Initial release.

readme.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# beast-engine
2+
3+
funkin modding library
4+
5+
## Overview
6+
7+
This library is a collection of utilities, helper classes, and fixes with the aim of making Funkin modding easier and more stable.
8+
If any mods you'd like to use require it, just drag `beast-engine.zip` into your mods folder.
9+
10+
You can find the releases [here](https://github.com/rizz-residence/beast-engine/releases).
11+
This repo is open to contribution!
12+
13+
## Features
14+
15+
- `be.math` - Useful math-related stuff.
16+
- `be.menu` - A custom menu helper package.
17+
- `be.neocam` - A versatile camera controller.
18+
- `be.reloader` - A system to help reinitialize modules and their variables on reload.
19+
- `be.save` - A save data helper for your mods.
20+
- `be.sequence` - Timed sequence of events.
21+
- `be.shader` - A collection of shaders and shader fixes.
22+
- `be.song` - Note kinds and song-related utilities and song fixes.
23+
- `be.util` - Many useful functions for modding.
24+
25+
See code for documentation.

0 commit comments

Comments
 (0)