WPSConfig
Configuration structure for the WPS session. This class allows you to customize WPS behavior including smoothing and framerate settings. In most cases, the default values provide optimal performance and should not be changed. ### Usage
kotlin val config = WPSConfig( enableSmoothing = true, framerate = 120 ) wpsSession.configure(config) Declaration
class WPSConfigProperties
| Name | Type | Summary |
|---|---|---|
| enableSmoothing | Boolean | |
| framerate | Int | The framerate of the WPS session. Framerate at which the WPS system takes in input. WPS is not a high expense system so keeping the framerate high is recommended for quality. Default: 120 |
true