Added reducedStrength to CustomFlashEvent.

This commit is contained in:
2026-07-02 13:53:07 +08:00
parent 1b328c6cfc
commit 52b75cfb86
@@ -12,6 +12,7 @@ import kotlinx.serialization.Serializable
* @property endColor The end color of the flash. * @property endColor The end color of the flash.
* @property endOpacity The end opacity of the flash. * @property endOpacity The end opacity of the flash.
* @property background Whether the flash should be a background flash or a foreground flash. * @property background Whether the flash should be a background flash or a foreground flash.
* @property reducedStrength The percentage of the flash strength to reduce when reduced flashing is on.
*/ */
@Serializable @Serializable
@SerialName("CustomFlash") @SerialName("CustomFlash")
@@ -23,6 +24,7 @@ public data class CustomFlashEvent(
var background: Boolean = false, var background: Boolean = false,
override var duration: Double = 2.0, override var duration: Double = 2.0,
override var ease: Easing = Easing.LINEAR, override var ease: Easing = Easing.LINEAR,
var reducedStrength: Int? = null,
override var rooms: RoomsOrTopLayer = roomsOf(ROOM1), override var rooms: RoomsOrTopLayer = roomsOf(ROOM1),
) : ActionEvent(), MutableRoomsOrTopLayerSpecificEvent, DurationEaseSpecificEvent { ) : ActionEvent(), MutableRoomsOrTopLayerSpecificEvent, DurationEaseSpecificEvent {
/** /**