-
Notifications
You must be signed in to change notification settings - Fork 1
/
Character.lua
48 lines (36 loc) · 1.27 KB
/
Character.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
---@meta
---@class Character
Character = {}
--- Returns the path to the character's card graphic.
---@return string
function Character:GetCardPath() end
--- Returns this character's directory.
---@return string
function Character:GetCharacterDir() end
--- Returns this character's ID.
---@return string
function Character:GetCharacterID() end
--- Returns the path of the dancing animation of this character.
---@return string
function Character:GetDanceAnimationPath() end
--- Returns the character's display name.
---@return string
function Character:GetDisplayName() end
--- Returns the path to the character's icon.
---@return string
function Character:GetIconPath() end
--- Returns the path of the model of this character.
---@return string
function Character:GetModelPath() end
--- Returns the path of the rest animation of this character.
---@return string
function Character:GetRestAnimationPath() end
--- Returns the path to the character's ScreenSelectMode icon.
---@return string
function Character:GetSongSelectIconPath() end
--- Returns the path to the character's ScreenStage icon.
---@return string
function Character:GetStageIconPath() end
--- Returns the path of the warm-up animation of this character.
---@return string
function Character:GetWarmUpAnimationPath() end