Will mod charts ever be possible, just wondering #2
Replies: 3 comments
-
guglio made one before but it was a pretty simple one, ones with like curving hold notes probably will never be possible |
Beta Was this translation helpful? Give feedback.
-
SIMPLE modcharts are planned for a later update, however, right now, it requires you to do lots of weeks.lua modifying Things that you will be able to do with them is...
|
Beta Was this translation helpful? Give feedback.
-
Here is some sample code to remake Kade Engines wiki modchart if difficulty == "hard" then
if spinLength < 32 then
spinLength = spinLength + 0.2
end
local currentBeat = (musicTime / 1000)*(bpm/60) * 2
for i = 1, 4 do
local noteBF = notesPos.boyfriend[i]
local noteEnemy = notesPos.enemy[i]
noteBF.orientation = math.rad((spinLength/7) * -math.sin((currentBeat + i * 0.25) * math.pi))
noteEnemy.orientation = math.rad((spinLength/7) * -math.sin((currentBeat + i * 0.25) * math.pi))
noteBF.x = noteBF.defaultX + spinLength * math.sin((currentBeat + i * 0.25) * math.pi)
noteEnemy.x = noteEnemy.defaultX + spinLength * math.sin((currentBeat + i * 0.25) * math.pi)
noteBF.y = noteBF.defaultY + spinLength * math.cos((currentBeat + i * 0.25) * math.pi)
noteEnemy.y = noteEnemy.defaultY + spinLength * math.cos((currentBeat + i * 0.25) * math.pi)
end
end |
Beta Was this translation helpful? Give feedback.
-
As the title says
Beta Was this translation helpful? Give feedback.
All reactions