Version: 2019.2
LanguageEnglish
  • C#

Texture3D.SetPixel

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public void SetPixel(int x, int y, int z, Color color, int mipLevel);

Parameters

xX coordinate to access a pixel.
yY coordinate to access a pixel.
zZ coordinate to access a pixel.
colorThe colors to set the pixels to.
mipLevelThe mipmap level to be affected by the new colors.

Description

Sets the pixel color that represents one mip level of the 3D texture at coordinates (x,y,z).

This function works only on RGBA32, ARGB32, RGB24 and Alpha8 texture formats. For other formats, SetPixel is ignored. The texture also has to have the Read/Write Enabled flag set in the Import Settings.

See Also: GetPixel, GetPixelBilinear, GetPixels, GetPixels32, SetPixels, SetPixels32, Apply functions.