mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
Destroy materials and properties when MPC is destroyed
This commit is contained in:
parent
daf80b7f0f
commit
2174f2c07b
@ -99,6 +99,15 @@ namespace ConformalDecals.MaterialModifiers {
|
||||
_materialProperties ??= new Dictionary<string, MaterialProperty>();
|
||||
}
|
||||
|
||||
public void OnDestroy() {
|
||||
if (_decalMaterial != null) Destroy(_decalMaterial);
|
||||
if (_previewMaterial != null) Destroy(_previewMaterial);
|
||||
|
||||
foreach (var entry in _materialProperties) {
|
||||
Destroy(entry.Value);
|
||||
}
|
||||
}
|
||||
|
||||
public void AddProperty(MaterialProperty property) {
|
||||
if (property == null) throw new ArgumentNullException(nameof(property));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user