| 1293 | } |
| 1294 | |
| 1295 | void ObjectManager::Mute(ObjectManagerItem* item) |
| 1296 | { |
| 1297 | if (item != nullptr) { |
| 1298 | item->SoundMuted = true; |
| 1299 | item->Sound->SetVolume(0); |
| 1300 | } |
| 1301 | } |
| 1302 | void ObjectManager::Unmute(ObjectManagerItem* item) |
| 1303 | { |
| 1304 | if (item != nullptr) { |