示例#1
0
  public double getMaxValueForEntity_AtTime(T ent, double t) {

    TimeValue val = this.get(ent);
    if (val == null) return defaultValue.getMaxValueFor(t);

    return val.getMaxValueFor(t);
  }