-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs for the love of Fuck dont not work
- Loading branch information
Showing
9 changed files
with
80 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
--- HoldNoteScore enum | ||
--[[ | ||
HoldNoteScore is the enum representing the score for a hold or roll. | ||
The simplest way to pass them around in Lua is by directly referencing as a string. | ||
Valid HoldNoteScores: | ||
"HoldNoteScore_None" (The lack of a score) | ||
"HoldNoteScore_LetGo" (The hold was dropped after hitting the head) | ||
"HoldNoteScore_Held" (The hold was completed) | ||
"HoldNoteScore_Missed" (The hold was completely missed, including the head) | ||
|
||
--]] | ||
-- | ||
-- HoldNoteScore is the enum representing the score for a hold or roll. | ||
-- The simplest way to pass them around in Lua is by directly referencing as a string. | ||
-- Valid HoldNoteScores: | ||
-- "HoldNoteScore_None" (The lack of a score) | ||
-- "HoldNoteScore_LetGo" (The hold was dropped after hitting the head) | ||
-- "HoldNoteScore_Held" (The hold was completed) | ||
-- "HoldNoteScore_Missed" (The hold was completely missed, including the head) | ||
-- @classmod HoldNoteScore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
--- SortOrder enum | ||
--[[ | ||
SortOrder is the enum representing a SortOrder for Songs. | ||
The simplest way to pass them around in Lua is by directly referencing as a string. | ||
Valid SortOrders: | ||
"SortOrder_Group" | ||
"SortOrder_Title" | ||
"SortOrder_BPM" | ||
"SortOrder_TopGrades" | ||
"SortOrder_Artist" | ||
"SortOrder_Genre" | ||
"SortOrder_ModeMenu" | ||
"SortOrder_Length" | ||
"SortOrder_DateAdded" | ||
"SortOrder_Favorites" | ||
"SortOrder_Overall" | ||
"SortOrder_Stream" | ||
"SortOrder_Jumpstream" | ||
"SortOrder_Handstream" | ||
"SortOrder_Stamina" | ||
"SortOrder_JackSpeed" | ||
"SortOrder_Chordjack" | ||
"SortOrder_Technical" | ||
"SortOrder_Author" | ||
"SortOrder_Ungrouped" | ||
--]] | ||
-- | ||
-- SortOrder is the enum representing a SortOrder for Songs. | ||
-- The simplest way to pass them around in Lua is by directly referencing as a string. | ||
-- Valid SortOrders: | ||
-- "SortOrder_Group" | ||
-- "SortOrder_Title" | ||
-- "SortOrder_BPM" | ||
-- "SortOrder_TopGrades" | ||
-- "SortOrder_Artist" | ||
-- "SortOrder_Genre" | ||
-- "SortOrder_ModeMenu" | ||
-- "SortOrder_Length" | ||
-- "SortOrder_DateAdded" | ||
-- "SortOrder_Favorites" | ||
-- "SortOrder_Overall" | ||
-- "SortOrder_Stream" | ||
-- "SortOrder_Jumpstream" | ||
-- "SortOrder_Handstream" | ||
-- "SortOrder_Stamina" | ||
-- "SortOrder_JackSpeed" | ||
-- "SortOrder_Chordjack" | ||
-- "SortOrder_Technical" | ||
-- "SortOrder_Author" | ||
-- "SortOrder_Ungrouped" | ||
-- @classmod SortOrder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
--- TapNoteScore enum | ||
--[[ | ||
TapNoteScore is the enum representing the score for a tap. | ||
The simplest way to pass them around in Lua is by directly referencing as a string. | ||
Valid TapNoteScores: | ||
"TapNoteScore_None" (The lack of a score) | ||
"TapNoteScore_HitMine" | ||
"TapNoteScore_AvoidMine" (Did not hit a mine) | ||
"TapNoteScore_CheckpointMiss" (deprecated) | ||
"TapNoteScore_Miss" | ||
"TapNoteScore_W5" (Bad) | ||
"TapNoteScore_W4" (Good) | ||
"TapNoteScore_W3" (Great) | ||
"TapNoteScore_W2" (Perfect) | ||
"TapNoteScore_W1" (Marvelous) | ||
"TapNoteScore_CheckpointHit" (deprecated) | ||
|
||
--]] | ||
-- | ||
-- TapNoteScore is the enum representing the score for a tap. | ||
-- The simplest way to pass them around in Lua is by directly referencing as a string. | ||
-- Valid TapNoteScores: | ||
-- "TapNoteScore_None" (The lack of a score) | ||
-- "TapNoteScore_HitMine" | ||
-- "TapNoteScore_AvoidMine" (Did not hit a mine) | ||
-- "TapNoteScore_CheckpointMiss" (deprecated) | ||
-- "TapNoteScore_Miss" | ||
-- "TapNoteScore_W5" (Bad) | ||
-- "TapNoteScore_W4" (Good) | ||
-- "TapNoteScore_W3" (Great) | ||
-- "TapNoteScore_W2" (Perfect) | ||
-- "TapNoteScore_W1" (Marvelous) | ||
-- "TapNoteScore_CheckpointHit" (deprecated) | ||
-- @classmod TapNoteScore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
--- WheelItemDataType enum | ||
--[[ | ||
WheelItemDataType is the enum representing the type for a WheelItem. | ||
The simplest way to pass them around in Lua is by directly referencing as a string. | ||
Valid WheelItemDataTypes: | ||
"WheelItemDataType_Generic" | ||
"WheelItemDataType_Section" | ||
"WheelItemDataType_Song" | ||
"WheelItemDataType_Roulette" | ||
"WheelItemDataType_Random" | ||
"WheelItemDataType_Portal" | ||
"WheelItemDataType_Course" | ||
"WheelItemDataType_Sort" | ||
"WheelItemDataType_Custom" | ||
--]] | ||
-- | ||
-- WheelItemDataType is the enum representing the type for a WheelItem. | ||
-- The simplest way to pass them around in Lua is by directly referencing as a string. | ||
-- Valid WheelItemDataTypes: | ||
-- "WheelItemDataType_Generic" | ||
-- "WheelItemDataType_Section" | ||
-- "WheelItemDataType_Song" | ||
-- "WheelItemDataType_Roulette" | ||
-- "WheelItemDataType_Random" | ||
-- "WheelItemDataType_Portal" | ||
-- "WheelItemDataType_Course" | ||
-- "WheelItemDataType_Sort" | ||
-- "WheelItemDataType_Custom" | ||
-- @classmod WheelItemDataType |