- Home /
Question by
awesomepiaDev · Feb 16 at 01:25 AM ·
ui image
How can i crop image on runtime?
First one is original image and second one is masked image i wanna crop. i wanna crop original image in second image frame
원본-이미지.png
(373.8 kB)
마스크-적용.png
(225.3 kB)
Comment
Answer by Stiexeno · Feb 18 at 08:05 PM
Easiest way to enable and disable Mask component
public Mask mask;
public void EnableMask()
{
mask.enabled = true;
}
Your answer
