Ejemplo n.º 1
0
 public void RemovePropertiesPanel()
 {
     properties_Material        = null;
     properties_ProjectSettings = null;
     properties_SceneObject     = null;
     properties_Texture         = null;
     PropertiesPanel.Children.Clear();
 }
Ejemplo n.º 2
0
 public void GetMaterialPropertiesByUniqueName(string matUniqueName)
 {
     PropertiesPanel.Children.Clear();
     properties_Material = new Properties_Material();
     properties_Material.SetMainWindow(this);
     properties_Material.SetMaterialUniqueName(matUniqueName);
     PropertiesPanel.Children.Add(properties_Material);
     properties_Material.GetMaterialProperties();
 }