ArCoreReferenceNode constructor

ArCoreReferenceNode({
  1. String? name,
  2. String? object3DFileName,
  3. String? objectUrl,
  4. List<ArCoreNode> children = const [],
  5. Vector3? position,
  6. Vector3? scale,
  7. Vector4? rotation,
})

Implementation

ArCoreReferenceNode({
  String? name,
  this.object3DFileName,
  this.objectUrl,
  List<ArCoreNode> children = const [],
  Vector3? position,
  Vector3? scale,
  Vector4? rotation,
}) : super(
          name: name,
          children: children,
          position: position,
          scale: scale,
          rotation: rotation);