| 178 | }; |
| 179 | |
| 180 | void FoliageTools::Paint(Foliage* foliage, Span<int32> foliageTypesIndices, const Vector3& brushPosition, float brushRadius, bool additive, float densityScale) |
| 181 | { |
| 182 | if (additive) |
| 183 | Paint(foliage, foliageTypesIndices, brushPosition, brushRadius, densityScale); |
| 184 | else |
| 185 | Remove(foliage, foliageTypesIndices, brushPosition, brushRadius); |
| 186 | } |
| 187 | |
| 188 | void FoliageTools::Paint(Foliage* foliage, Span<int32> foliageTypesIndices, const Vector3& brushPosition, float brushRadius, float densityScale) |
| 189 | { |
no test coverage detected