12 lines
740 B
Lua
12 lines
740 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@param monthOffset monthOffset
|
|
---@param day number
|
|
---@param index number
|
|
---@return string name
|
|
---@return string description
|
|
---@return string texture
|
|
---Returns additional information about a holiday event. Information can only be retrieved for events which might be visible in the calendar's current month -- i.e. those in the current month as well as those in (roughly) the last week of the previous month and (roughly) the first two weeks of the following month. To reliably retrieve information for events outside the calendar's current month, first change the calendar's month with CalendarSetMonth.
|
|
function CalendarGetHolidayInfo(monthOffset, day, index) end
|