setBloom method

  1. @override
Future setBloom(
  1. double bloom
)
override

Sets the strength of the bloom.

Implementation

@override
Future setBloom(double bloom) async {
  _module.ccall("set_bloom", "void", ["void*".toJS, "float".toJS].toJS,
      [_viewer!, bloom.toJS].toJS, null);
}