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

SetToggle() 공개 정적인 메소드

public static SetToggle ( HEU_HoudiniAsset asset, string paramName, bool setValue ) : bool
asset HEU_HoudiniAsset
paramName string
setValue bool
리턴 bool
	public static bool SetToggle(HEU_HoudiniAsset asset, string paramName, bool setValue)
	{
	    if (asset == null || asset.Parameters == null)
	    {
		return false;
	    }

	    return asset.Parameters.SetBoolParameterValue(paramName, setValue);
	}