33 lines
771 B
Lua
33 lines
771 B
Lua
---@class ShowcaseState
|
|
local state = {
|
|
selected_example = "nodes",
|
|
detail_tab = "code",
|
|
progress = 0.35,
|
|
visible = true,
|
|
dialog_open = false,
|
|
temp_node_visible = false,
|
|
bgm_state = "stopped",
|
|
resource_state = "ready",
|
|
text_variant = "plain",
|
|
button_active = true,
|
|
button_image_enabled = true,
|
|
sprite_variant = "image",
|
|
layout_mode = "row",
|
|
radio_selected = "audio",
|
|
list_selected = "Lua",
|
|
list_axis = "vertical",
|
|
list_scroll_x = 0,
|
|
list_scroll_y = 0,
|
|
locale = "zh-Hans",
|
|
screen_width = 720,
|
|
screen_height = 720,
|
|
viewport_width = 720,
|
|
viewport_height = 720,
|
|
viewport_scale = 1,
|
|
responsive_mode = "desktop",
|
|
particle_seed = 0,
|
|
status = "点击按钮查看 RuntimeEvent -> Lua -> Diff / Command 示例"
|
|
}
|
|
|
|
return state
|