loadIbl method
Loads an image-based light from the specified path at the given intensity. Only one IBL can be active at any given time; if an IBL has already been loaded, it will be replaced.
Implementation
@override
Future<void> loadIbl(String lightingPath, {double intensity = 30000}) async {
await _shim.loadIbl(lightingPath, intensity).toDart;
}