shadowQuality property
The current shadow quality. Default shadow quality is ShadowQuality.medium. Note: This feature is in beta state and thus there can be bugs and unexpected behavior.
Implementation
static ShadowQuality get shadowQuality => $prototype.shadowQuality;
Sets the desired shadow quality for all instances of HereMap to shadowQuality.
The quality controls the size of the shadow maps and the cascade count.
Default shadow quality is ShadowQuality.medium.
HereMaps can request to render shadows by feature.
Enabling shadows has a performance impact and should be considered only for devices with
sufficient performance.
Note: This feature is in beta state and thus there can be bugs and unexpected behavior.
Implementation
static void set shadowQuality(ShadowQuality shadowQuality) {
$prototype.shadowQuality = shadowQuality;
}