Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ISGViewModel.cs 403B

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