I thought I'd ask, since I have not played with UE scripts yet. In my case I am learning canvas, and doing a project where the file is 2,000 lines with tons of things like
ctx.moveTo(253,223);
ctx.lineTo(244,232);
ctx.lineTo(229,215);
ctx.lineTo(234,205);
Using a mouse to track pixels with a regular mouse, well, its easy to be off by a few. So to find something in 2000 lines where values for
x,y range from 0 - 600 can be problematic when you are drawing over 500 paths. I trying to replicate a piece of modern art (Kandinsky) with canvas. If you have something, please post it.
ctx.moveTo(253,223);
ctx.lineTo(244,232);
ctx.lineTo(229,215);
ctx.lineTo(234,205);
Using a mouse to track pixels with a regular mouse, well, its easy to be off by a few. So to find something in 2000 lines where values for
x,y range from 0 - 600 can be problematic when you are drawing over 500 paths. I trying to replicate a piece of modern art (Kandinsky) with canvas. If you have something, please post it.
Whenever I have to decide between two evils, I always choose the one I haven't tried before. -Mae West