| 419 | } |
| 420 | |
| 421 | bool Terrain::SetupPatchSplatMap(const Int2& patchCoord, int32 index, int32 splatMapLength, const Color32* splatMap, bool forceUseVirtualStorage) |
| 422 | { |
| 423 | auto patch = GetPatch(patchCoord); |
| 424 | if (patch) |
| 425 | { |
| 426 | return patch->SetupSplatMap(index, splatMapLength, splatMap, forceUseVirtualStorage); |
| 427 | } |
| 428 | return true; |
| 429 | } |
| 430 | |
| 431 | #endif |
| 432 |
nothing calls this directly
no test coverage detected