Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InspectorViewModel.cs 282B

123456789101112131415
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.UIElements;
  4. namespace UnityEditor.ShaderGraph.Drawing
  5. {
  6. class InspectorViewModel : ISGViewModel
  7. {
  8. public VisualElement parentView { get; set; }
  9. public void ResetViewModelData()
  10. {
  11. }
  12. }
  13. }