HoudiniEngineUnity.HEU_ParameterUtility.GetColor C# (CSharp) 메소드

GetColor() 공개 정적인 메소드

public static GetColor ( HEU_HoudiniAsset asset, string paramName, Color &getValue ) : bool
asset HEU_HoudiniAsset
paramName string
getValue Color
리턴 bool
	public static bool GetColor(HEU_HoudiniAsset asset, string paramName, out Color getValue)
	{
	    getValue = Color.black;

	    if (asset == null || asset.Parameters == null)
	    {
		return false;
	    }

	    return asset.Parameters.GetColorParameterValue(paramName, out getValue);
	}