AddAttributesVector3TakeOwnership method

void AddAttributesVector3TakeOwnership(
  1. String canonical,
  2. List<Vector3> lst
)

Implementation

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