-
Notifications
You must be signed in to change notification settings - Fork 1
/
play5.lua
50 lines (49 loc) · 1.22 KB
/
play5.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
--[[
5鍵用メインLua(MCTE)
blog: https://www.kasacontent.com/
]]
DEBUG = false
-- モジュール読み込み
main_state = require("main_state")
-- requireはディレクトリ区切りを.で表す
PROPERTY = require("Play.lua.require.sp_property").load(true)
COMMONFUNC = require("Play.lua.require.common")
-- ヘッダ読み込み
local header = require("Play.lua.require.header").load(1)
local function main()
-- 基本定義読み込み
MAIN = require("Root.define")
CUSTOM = require("Root.define2")
-- テキスト
local textProperty = require("Play.lua.require.textproperty")
local skin = {}
CUSTOM.LOAD_HEADER(skin, header)
--[[
ここから-----------------------------------------------------------------------------
]]
skin.source = {}
skin.font = textProperty.font
skin.text = textProperty.text
skin.image = {}
skin.note = {}
skin.value = {}
skin.slider = {}
skin.hiddenCover = {}
skin.liftCover = {}
skin.graph = {}
skin.bga = {}
skin.judgegraph = {}
skin.bpmgraph = {}
skin.timingvisualizer = {}
skin.judge = {}
skin.gauge = {}
skin.destination = {}
return skin
end
--[[
ここまで-----------------------------------------------------------------------------
]]
return{
header = header,
main = main
}