HoudiniEngineUnity.HEU_ParameterUtility.GetChoice C# (CSharp) Method

GetChoice() public static method

public static GetChoice ( HEU_HoudiniAsset asset, string paramName, int &outValue ) : bool
asset HEU_HoudiniAsset
paramName string
outValue int
return bool
	public static bool GetChoice(HEU_HoudiniAsset asset, string paramName, out int outValue)
	{
	    outValue = 0;
	    if (asset == null || asset.Parameters == null)
	    {
		return false;
	    }

	    return asset.Parameters.GetChoiceParameterValue(paramName, out outValue);
	}