Details
Add Pixel 8bits effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Pixel > 8bits
*without and with Camera Filter Pack Pixel 8bits
Property |
Range |
Default |
---|---|---|
Brightness | -1 to 1 | 0 |
ResolutionX | 0f to 1f | 160 |
ResolutionY | 0f to 1f | 240 |
Manipulate Pixel 8bits by script
Example:
// Drag and Drop your Camera GameObject
// with the Pixel 8bits component
// to your current script on the CamFX_Pixel_8bits field
public CameraFilterPack_FX_8bits CamFX_Pixel_8bits;
void Update()
{
CamFX_Pixel_8bits.Brightness = 0;
}