diff --git a/Packages/Core/Runtime/VariableInstancers/AtomBaseVariableInstancer.cs b/Packages/Core/Runtime/VariableInstancers/AtomBaseVariableInstancer.cs index ee49e710..b8842fbd 100644 --- a/Packages/Core/Runtime/VariableInstancers/AtomBaseVariableInstancer.cs +++ b/Packages/Core/Runtime/VariableInstancers/AtomBaseVariableInstancer.cs @@ -30,22 +30,6 @@ namespace UnityAtoms /// public V Variable { get => _inMemoryCopy; } - public void SetSource(V variable) - { - _base = variable; - if (Application.isPlaying) - { - Debug.LogWarning("Setting the underlying variable of an instancers at runtime can result in hard to find issues. be careful."); - if (_inMemoryCopy != null) - { - Destroy(_inMemoryCopy); - _inMemoryCopy = null; - } - OnEnable(); - } - - } - /// /// Getter for retrieving the value of the in memory runtime variable. ///