AddAttributesVector4TakeOwnership method

void AddAttributesVector4TakeOwnership(
  1. String canonical,
  2. List<Vector4> lst
)

Implementation

void AddAttributesVector4TakeOwnership(
    String canonical, List<VM.Vector4> lst) {
  List<VM.Vector4> ts = attributes[canonical] as List<VM.Vector4>;
  ts.addAll(lst);
}