BackgroundProperties
export type BackgroundProperties = {
StudioStyleGuideColor: CanBeState<Enum.StudioStyleGuideColor>?,
StudioStyleGuideModifier: CanBeState<Enum.StudioStyleGuideModifier>?,
[any]: any,
}
The BackgroundProperties
table that is given to the Background()
function that contains data about the desired Background
.
Properties
StudioStyleGuideColor : CanBeState<Enum.StudioStyleGuideColor>?
The Enum.StudioStyleGuideColor
that will be used to calculate the color of the Background
. Can either be a State
containing the Enum
or the Enum
.
StudioStyleGuideModifier : CanBeState<Enum.StudioStyleGuideModifier>?
The Enum.StudioStyleGuideModifier
that will be used to calculate the color of the Background
. Can either be a State
containing the Enum
or the Enum
.