Axiom.Graphics.Material.Clone C# (CSharp) Method

Clone() public method

Creates a copy of this Material with the specified name (must be unique).
public Clone ( string newName ) : Material
newName string The name that the cloned material will be known as.
return Material
		public Material Clone( string newName )
		{
			return this.Clone( newName, false, "" );
		}

Same methods

Material::Clone ( string newName, bool changeGroup, string newGroup ) : Material