BMFPrismOverlay.buildingForTexture constructor

BMFPrismOverlay.buildingForTexture({
  1. required BMFBuildInfo? buildInfo,
  2. required Color? topFaceColor,
  3. required String? sideFacTexture,
  4. bool? isGrowthAnimation = true,
  5. int? showLevel,
  6. int? height,
  7. Color? floorColor,
  8. String? floorSideTextureImage,
  9. double? floorHeight,
  10. int zIndex = 0,
  11. bool visible = true,
  12. Map? customMap,
})

地图建筑物纹理构造方法

Implementation

BMFPrismOverlay.buildingForTexture({
  required this.buildInfo,
  required this.topFaceColor,
  required this.sideFacTexture,
  this.isGrowthAnimation= true,
  this.showLevel,
  this.height,
  this.floorColor,
  this.floorSideTextureImage,
  this.floorHeight,
  int zIndex= 0,
  bool visible= true,
  Map? customMap,
})  : assert(buildInfo != null),
      super(zIndex: zIndex, visible: visible, customMap: customMap);