setCameraFov method

  1. @override
Future<void> setCameraFov(
  1. double degrees,
  2. double width,
  3. double height
)
override

Sets the current scene camera to the glTF camera under name in entity.

Implementation

@override
Future<void> setCameraFov(double degrees, double width, double height) async {
  await _shim.setCameraFov(degrees, width, height).toDart;
}