Version: 2021.2
LanguageEnglish
  • C#
Removed

PlayerSettings.uploadClearedTextureDataAfterCreationFromScript

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
Obsolete uploadClearedTextureDataAfterCreationFromScript was not working as intended and will be superseded with a per-texture flag. public static bool uploadClearedTextureDataAfterCreationFromScript;

Description

Upload the initialized Texture data after creation from script.

When set, if you create a Texture from script the initial data is cleared and automatically uploaded to video memory. This was the default behavior in previous Unity versions. In most cases this upload is not needed and wastes bandwidth because the GPU data gets overwritten anyway. You typically upload (by calling Apply) or copy new data into the new texture right after you create it. Only turn this on for debugging purposes or if your project depends on having the GPU texture data cleared. You can get the same result by adding an Apply() call after calling the Texture2D constructor.