BaseBeautyState

data class BaseBeautyState(val smoothLevel: StateFlow<Float>, val whitenessLevel: StateFlow<Float>, val ruddyLevel: StateFlow<Float>)

Basic beauty state, managing level data of beauty effects such as smoothing, whitening, and ruddy. Supports subscription to synchronize UI display with actual effects.

Constructors

Link copied to clipboard
constructor(smoothLevel: StateFlow<Float>, whitenessLevel: StateFlow<Float>, ruddyLevel: StateFlow<Float>)

Properties

Link copied to clipboard
val ruddyLevel: StateFlow<Float>

Ruddy level, range 0-9; 0 means off, 9 means the most obvious effect.

Link copied to clipboard
val smoothLevel: StateFlow<Float>

Smoothing level, range 0-9; 0 means off, 9 means the most obvious effect.

Link copied to clipboard
val whitenessLevel: StateFlow<Float>

Whitening level, range 0-9; 0 means off, 9 means the most obvious effect.