HeightFieldShape constructor

HeightFieldShape({
  1. required int width,
  2. required int depth,
  3. required Float32List heights,
  4. required Vector3 scale,
})

Implementation

HeightFieldShape({
  required this.width,
  required this.depth,
  required this.heights,
  required this.scale,
});