Background Themes
3 selectable background themes — Gallery, Slider, and Video. Each theme is configured through cfg/config.lua.
Themes
Gallery
An interactive image gallery that players can browse with their mouse. Supports up to 11 images with smooth animations.
lua
Config.theme = 'gallery'
Config.galleryList = {
"./gallery/1.jpg",
"./gallery/2.jpg",
"./gallery/3.jpg",
-- up to 11 images
}
Slider
An automatic slideshow that cycles through images at a configurable speed.
lua
Config.theme = 'slider'
Config.sliderList = {
"./slider/1.jpg",
"./slider/2.jpg",
"./slider/3.jpg",
}
Config.sliderSpeed = 5 -- seconds between transitions
Video
A full-screen background video, ideal for server trailers or promotional content.
lua
Config.theme = 'video'
Config.backgroundVideo = "./video.mp4"
Configuration
| Option | Default | Description |
|---|---|---|
Config.theme | 'gallery' | Background theme (gallery, slider, video) |
Config.sliderSpeed | 5 | Seconds between slider transitions |
Config.galleryList | 11 images | Image paths for gallery theme (max 11) |
Config.sliderList | 7 images | Image paths for slider theme |
Config.backgroundVideo | "./video.mp4" | Video file path for video theme |
