setD method

Implementation

AutomationEventC setD(AutomationEventD o) {
  frame = o.frame;
  type = o.type;
  for (int i = 0; i < paramCount; i++) {
    params[i] = o.params[i];
  }
  return this;
}