Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

DynamicGI.UpdateMaterials

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
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);

Параметры

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

Описание

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.