Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Texture3D.SetPixels

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 SetPixels(Color[] colors, int miplevel = 0);

Parameters

colorsThe colors to set the pixels to.
miplevelThe mipmap level to be affected by the new colors.

Description

Sets pixel colors of a 3D texture.

This function takes a color array and changes the pixel colors of the 3D texture. Call Apply to actually upload the changed pixels to the GPU.

Note that using Color32 data with ::SetPixels32 function can be faster and consume less memory. The array of pixels is ordered x, y, z. With for-loops have x in the centre, y in the middle and z on the outside to create the array of pixels.

See Also: GetPixels, SetPixels32, Apply.

Did you find this page useful? Please give it a rating: