-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSongOptions.lua
65 lines (52 loc) · 1.34 KB
/
SongOptions.lua
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
63
64
65
---@meta
---@class SongOptions
SongOptions = {}
---
---@param b? boolean
---@return boolean
function SongOptions:AssistClap(b) end
---
---@param b? boolean
---@return boolean
function SongOptions:AssistMetronome(b) end
---
---@param ast? AutosyncType
---@return AutosyncType
function SongOptions:AutosyncSetting(ast) end
---
---@param mods string
function SongOptions:FromString(mods) end
--- A multiplier for the haste system. Limited to the range -1 to 1.
---@param h? number
---@param approach_speed? number
---@return number, number
function SongOptions:Haste(h, approach_speed) end
--- Limited to the range 0 < rate <= 3 because speeds greater than 3 are likely to crash.
---@param rate? number
---@param approach_speed? number
---@return number, number
function SongOptions:MusicRate(rate, approach_speed) end
---
---@param b? boolean
---@return boolean
function SongOptions:PitchRate(b) end
---
---@param b? boolean
---@return boolean
function SongOptions:RandomBGOnly(b) end
---
---@param b? boolean
---@return boolean
function SongOptions:SaveReplay(b) end
---
---@param b? boolean
---@return boolean
function SongOptions:SaveScore(b) end
---
---@param sfxt? SoundEffectType
---@return SoundEffectType
function SongOptions:SoundEffectSetting(sfxt) end
---
---@param b? boolean
---@return boolean
function SongOptions:StaticBackground(b) end