ArCoreRotatingNode constructor

ArCoreRotatingNode({
  1. ArCoreShape? shape,
  2. double? degreesPerSecond,
  3. Vector3? position,
  4. Vector3? scale,
  5. Vector4? rotation,
  6. String? name,
})

Implementation

ArCoreRotatingNode({
  this.shape,
  double? degreesPerSecond,
  Vector3? position,
  Vector3? scale,
  Vector4? rotation,
  String? name,
})  : degreesPerSecond = ValueNotifier(90.0),
      super(
        shape: shape,
        name: name,
        position: position,
        scale: scale,
      );