Accessing parameters
public void UpdateParameters(RegionParameters parameters)
{
// ...
value = parameters.ModifiyFloat("a", fallbackValue);
}Keywords
var keywords = parameters.keywordsFloat values
// Returns true/false wheter the tag contains the modifier
parameters.HasFloat("modName");
// Returns the modifier value if exists otherwise the fallback value
parameters.ModifiyFloat("modName", fallbackValue); String values
Last updated