Class SetSceneItemProperties.Scale
- java.lang.Object
-
- nl.harm27.obs.websocket.api.requests.sceneitems.SetSceneItemProperties.Scale
-
- Enclosing class:
- SetSceneItemProperties
public class SetSceneItemProperties.Scale extends Object
-
-
Constructor Summary
Constructors Constructor Description Scale()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getFilter()
The new scale filter of the source.Optional<Double>
getX()
The new x scale of the item.Optional<Double>
getY()
The new y scale of the item.void
setFilter(String filter)
The new scale filter of the source.void
setX(double x)
The new x scale of the item.void
setY(double y)
The new y scale of the item.
-
-
-
Method Detail
-
setX
public void setX(double x)
The new x scale of the item.
-
setY
public void setY(double y)
The new y scale of the item.
-
getFilter
public Optional<String> getFilter()
The new scale filter of the source. Can be "OBS_SCALE_DISABLE", "OBS_SCALE_POINT", "OBS_SCALE_BICUBIC", "OBS_SCALE_BILINEAR", "OBS_SCALE_LANCZOS" or "OBS_SCALE_AREA".
-
setFilter
public void setFilter(String filter)
The new scale filter of the source. Can be "OBS_SCALE_DISABLE", "OBS_SCALE_POINT", "OBS_SCALE_BICUBIC", "OBS_SCALE_BILINEAR", "OBS_SCALE_LANCZOS" or "OBS_SCALE_AREA".
-
-