c# code to generate a custom texture
Previous post: How to make circular progress bar(2nd) How to make circular progress bar Let's see how to generate a custom texture. Added : If you know python consider this. https://gameenginebread.blogspot.com/2017/12/texture-generator-python-per-pixel-c.html Step 1. Create C# Project. Step 2. This form1 class code that create a new BMP with PerPixelAction function. using System ; using System.Collections.Generic ; using System.ComponentModel ; using System.Data ; using System.Drawing ; using System.Linq ; using System.Text ; using System.Threading.Tasks ; using System.Windows.Forms ; namespace TexGenTest { public partial class Form1 : Form { public static double DegToRad = 0.0174533 ; public delegate Color PerPixelAction ( int x, int y, Size ImageSize, Bitmap BitmapData, double Para1, double Para2, double Para3 ); public Size MidSize = new Size( 128 , 128 ); public Form1 () { ...