attach method

Object3D attach(
  1. Object3D object
)
override

Implementation

attach(object) {
  this.object = object;
  this.visible = true;

  return this;
}