Hello.
I was making some perlin noise using editable image
I was succesful but there is a slight problem
How am I suppose to delete the old content from the image??
Hello.
I was making some perlin noise using editable image
I was succesful but there is a slight problem
How am I suppose to delete the old content from the image??
Just fill it with a rectangle
EditableImage:DrawRectangle(Vector2.zero, EditableImage.Size, Color3.fromRGB(255, 255, 255), 0, Enum.ImageCombineType.Overwrite)
Will that affect the performance? yk stacking content on top of one another
It’s writing new image data to the editable image, so the only performance implications would be the DrawRectangle call itself, it wouldn’t cause an increase in memory or anything like that.