728x90 Crop1 Unity & C# ~ Crop Image using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class TestCropTexture : MonoBehaviour { public Texture2D sourceImg; // 소스 이미지 public Image img; // Image UGUI // Start is called before the first frame update void Start() { TestCrop(); } void TestCrop() { var tex = sourceImg.GetRawTextureData(); // 소스 이미지 텍스쳐 RAW DATA 변환 // 소스 이미지 texture.. 2022. 10. 7. 이전 1 다음 SMALL