Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

DynamicGI.UpdateMaterials

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

Sumbission failed

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

Close

Cancel

public static function UpdateMaterials(renderer: Renderer): void;
public static void UpdateMaterials(Renderer renderer);
public static function UpdateMaterials(terrain: Terrain): void;
public static void UpdateMaterials(Terrain terrain);
public static function UpdateMaterials(terrain: Terrain, x: int, y: int, width: int, height: int): void;
public static void UpdateMaterials(Terrain terrain, int x, int y, int width, int height);

Parameters

renderer The Renderer to use when searching for a system to update.
terrain The Terrain to use when searching for systems to update.

Description

Schedules an update of the albedo and emissive textures of a system that contains the renderer or the terrain.

The third overload specifies a region of the terrain that needs to be updated. This makes sure that only the systems that overlap with the specified rectangle get updated, which could help improve performance. The coordinates are specified the same way as in TerrainData.SetAlphamaps.