데이터 조회
로딩된 데이터를 조회하는 방법을 설명합니다.
데이터 테이블 가져오기
InputTable sampleData = InputManager.Instance.GetInput("SampleData");
foreach (SampleData data in sampleData.Rows())
{
int col1 = data.COL_1;
int col2 = data.COL_2;
}Key로 데이터 조회하기
InputTable sampleData = InputManager.Instance.GetInput("SampleData");
// Example 1
List<IInputRow> finds = sampleData.FindRows(1, 3);
// Example 2
List<IInputRow> finds2 = sampleData.FindRows(2, 1, 3);Last updated