-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGrooving Template.lua
More file actions
62 lines (45 loc) · 1.47 KB
/
Grooving Template.lua
File metadata and controls
62 lines (45 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
function onCreatePost()
addLuaScript('Grooving Modchart Framework')
--addLuaScript('Camera Move V2')
end
function onUpdate(elapsed)
--if your notes are pixel--
--setProperty('IsPixelNote.x', 5.5)
--define Speeds--
--PSdata : the speeds here can`t be 0
if curStep == 0 then
setProperty('DrunkRate.x', 300)
setProperty('DrunkRate.y', 80)
setProperty('DrunkRate.angle', 80)
setProperty('SPDDrunk.x', 2)
setProperty('SPDDrunk.y', 6)
setProperty('SPDDrunk.angle', 2)
setProperty('SPDTipsy.y', 20)
setProperty('SPDTipsy.x', 120)
setProperty('SPDTipsy.angle', 20)--z
setProperty('TipRemaping.x', 0.5)
setProperty('TipRemaping.y', 1)
setProperty('TipRemaping.angle', 1)--z
setProperty('SPDIncoming.x', 3)
setProperty('Ease.angle', 1)
setProperty('camDrunkSPD.angle', 30)
setProperty('camDrunkSPD.x', 150)
setProperty('camDrunkSPD.y', 150)
setProperty('camSwimSPD.angle', 100) -- 30 for beat
setProperty('camSwimSPD.x', 150)
setProperty('camSwimSPD.y', 150)
setProperty('lockAngP.x', 0)
setProperty('lockAngO.x', 0)
setProperty('camZoom.x', 0.9)
end
onElapsedTime()
end
local timeBeat = ((stepCrochet*0.018)/2)
function onSectionHit()
end
function onBeatHit()
end
function onStepHit()
end
function onElapsedTime()
end