Details
Add Pixelisation OilPaintHQ effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Pixelisation > OilPaintHQ
*without and with Camera Filter Pack Pixelisation OilPaintHQ
Property |
Range |
Default |
---|---|---|
Value | 0 to 5 | 2f |
Manipulate Pixelisation OilPaintHQ by script
Example:
// Drag and Drop your Camera GameObject
// with the Pixelisation OilPaintHQ component
// to your current script on the CamFX_Pixelisation_OilPaintHQ field
public CameraFilterPack_Pixelisation_OilPaintHQ CamFX_Pixelisation_OilPaintHQ;
void Update()
{
CamFX_Pixelisation_OilPaintHQ.Value = 2f;
}