csv
[Unity] CSV 파일 저장, 불러오기 Read, Write 간단 사용법
파일 저장 경로 불러오는 코드 작성 using System.IO; using UnityEngine; public static class SystemPath { public static string GetPath(string fileName) { string path = GetPath(); return Path.Combine(GetPath(), fileName); } public static string GetPath() { string path = null; switch (Application.platform) { case RuntimePlatform.Android: path = Application.persistentDataPath; path = path.Substring(0, path.LastInde..
[Unreal] csv 파일 불러온 후 읽어들이기
불러오기 우선 .csv 파일을 준비한다. 빈 클래스가 생성 될텐데 싹 지워버린다. .csv 파일을 연동시키기 위해선 데이터 테이블이 필요하다 FTableRowBase 로부터 상속받은 구조체를 하나 생성한다. #include "Engine/DataTable.h" 및 "파일명.generated.h" 추가 USTRUCT(BlueprintType) 와 GENERATED_BODY() 메크로 필히 추가 #pragma once #include "CoreMinimal.h" #include "Engine/DataTable.h" #include "Test.generated.h" USTRUCT(BlueprintType) struct FsTestData : public FTableRowBase { GENERATED_BODY(..