Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.8/Editor/Drawing/Interfaces/ISGViewModel.cs

14 lines
403 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
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();
}
}