본문 바로가기
728x90

목록244

라스트오리진 ~ 변화의성소 4구역 30층 배치도 ** 본 배치도는 주관적 의견이기에 참고용도로 활용하시기 바랍니다. -배치도 2022. 10. 20.
라스트오리진 ~ 변화의성소 4구역 32층 배치도 2022. 10. 20.
Unity Tool ~ Json parse 및 직렬화에 도움을 주는 툴 https://github.com/jsonfx/jsonfx GitHub - jsonfx/jsonfx: JsonFx v2.0 - JSON serialization framework for .NET JsonFx v2.0 - JSON serialization framework for .NET - GitHub - jsonfx/jsonfx: JsonFx v2.0 - JSON serialization framework for .NET github.com jsonfx는 c#에서 json의 직렬화에 도움을 주는 툴입니다. Unity Assets - Plugins 폴더에 JsonFx.json 파일을 넣어 사용하면 됩니다. 해당 git 페이지에는 사용법이 잘 소개되어 있으니 따라하기 편합니다. 2022. 10. 14.
Unity & C# ~ 두 오브젝트의 색상과 이미지가 중복되지 않는 랜덤 출력 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class TestRandomObjectsColor : MonoBehaviour { [SerializeField] List RanColors; // 사용될 색상 [SerializeField] List RanObjects; // 1번 이미지에 사용될 이미지들 [SerializeField] List RanObjects1; // 2번 이미지에 사용될 이미지들 private Coroutine RanCoroutine = null; private int ColorValue { get; set; } // 1번 이미지 색상 값 .. 2022. 10. 7.
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.
Unity GUI Tool ~ SimpleFileBrowser https://github.com/yasirkula/UnitySimpleFileBrowser GitHub - yasirkula/UnitySimpleFileBrowser: A uGUI based runtime file browser for Unity 3D (draggable and resizable) A uGUI based runtime file browser for Unity 3D (draggable and resizable) - GitHub - yasirkula/UnitySimpleFileBrowser: A uGUI based runtime file browser for Unity 3D (draggable and resizable) github.com 유니티 환경에서 사용하기 좋은 파일 브라우저 플러그.. 2022. 10. 6.
SMALL