728x90
위의 이미지와 같은 List 형식을 만드는 방법
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ExampleList : MonoBehaviour
{
public ListExample listExample = new ListExample();
}
[Serializable]
public class ListExample
{
public List<ExampleGuide> id;
public ListExample()
{
id = new List<ExampleGuide>();
}
}
[Serializable]
public class ExampleGuide
{
public int id;
public string name;
public float value;
public List<int> list;
public ExampleGuide()
{
list = new List<int>();
}
}
728x90
반응형
'Unity3D > Unity & C#' 카테고리의 다른 글
Unity & C# ~ Text 말 줄임표 표기 (0) | 2022.07.01 |
---|---|
Unity & C# ~ multipart 코드 분석 (0) | 2022.06.28 |
Unity & C# ~ 음성 녹음 세팅 (0) | 2022.06.08 |
Unity & C# ~ Anchor에 따른 Position 값 설정 (0) | 2022.06.07 |
Unity & C# ~ 텍스트 사이즈에 맞춰서 width값 설정하기 (0) | 2022.06.03 |