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

Script language

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

MaterialPropertyBlock.GetMatrixArray

public Matrix4x4[] GetMatrixArray(string name);
public Matrix4x4[] GetMatrixArray(int name);

Description

Get a matrix array from the property block.

Returns null if such property doesn't exist.


public void GetMatrixArray(string name, List<Matrix4x4> values);
public void GetMatrixArray(int name, List<Matrix4x4> values);

Parameters

valuesThe list to hold the returned array.

Description

Fetch a matrix array from the property block into a list.

The list will be resized to the array size, or cleared if such property doesn't exist. Memory allocation is guaranteed not to happen during the function call.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答