public float GetAttributeValue(D_Attribute attribute) { if (attributes.ContainsKey(attribute)) { return(attributes[attribute].GetValue()); } return(0f); }
public bool TryGetAttributeValue(D_Attribute attribute, out float value) { if (attributes.ContainsKey(attribute)) { value = attributes[attribute].GetValue(); return(true); } value = 0f; return(false); }