/// <summary> /// This functions allows you to change the edge handling after creating the texture. /// </summary> public bool SetEdge(TextureEdge edge, Color borderColor) { return(MtaClient.DxSetTextureEdge(materialElement, edge == TextureEdge.MirrorOnce ? "mirror-once" : edge.ToString(), borderColor.Hex)); }