xyi/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Drawing/Interfaces/ISGViewModel.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

14 lines
403 B
C#

using UnityEngine.UIElements;
namespace UnityEditor.ShaderGraph.Drawing
{
interface ISGViewModel
{
VisualElement parentView { get; set; }
// Wipes all data in this view-model that will be fed to the view that depends on it
// A notable point is that this function typically should not null out the parentView field seen above
void ResetViewModelData();
}
}