Leather128 / LeatherEngine

Just a little engine I decided to make since nobody seemed to have true custom mod support.
GNU General Public License v3.0
68 stars 58 forks source link

Bug Report: Modcharts don't seem to get recognized on the latest commit build (this should fix freeplay music?) #202

Closed ipluxteamx closed 2 years ago

ipluxteamx commented 2 years ago

Note: I am using the Github Actions version of the builds.

Leather128 commented 2 years ago

what modcharts are you using, and where are you putting them?

ipluxteamx commented 2 years ago

I am putting them in mods/my mod/data/modcharts. The modchart i am using is this health drain modchart:


function start(song)
    print(song)
end

function playerTwoSing(data, time, type)
    if getHealth() - 0.035 > 0 then
        setHealth(getHealth() - 0.035)
    else
        setHealth(0.035)
    end
 end
ipluxteamx commented 2 years ago

I have also tried some simple modcharts like a screen rotate modchart.