Example #1
0
 public void RemovePropertiesPanel()
 {
     properties_Material        = null;
     properties_ProjectSettings = null;
     properties_SceneObject     = null;
     properties_Texture         = null;
     PropertiesPanel.Children.Clear();
 }
Example #2
0
 public void GetTextureProperties(string txtName)
 {
     PropertiesPanel.Children.Clear();
     properties_Texture = new Properties_Texture();
     properties_Texture.SetMainWindow(this);
     properties_Texture.SetTextureName(txtName);
     PropertiesPanel.Children.Add(properties_Texture);
     properties_Texture.GetTextureProperties();
 }