├── .gitattributes ├── .gitignore ├── CSVPopulableScriptableObject.cs ├── CSVReader.cs ├── DataPopulation.gif ├── LICENSE ├── PrimitiveData ├── PrimitiveData.cs └── PrimitiveDataDictionary.cs ├── README.md ├── SampleCSVPopulableScriptableObject.cs ├── SampleCSVPopulableScriptableObjectInstance.asset └── SampleCSVSheet.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/.gitignore -------------------------------------------------------------------------------- /CSVPopulableScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/CSVPopulableScriptableObject.cs -------------------------------------------------------------------------------- /CSVReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/CSVReader.cs -------------------------------------------------------------------------------- /DataPopulation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/DataPopulation.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/LICENSE -------------------------------------------------------------------------------- /PrimitiveData/PrimitiveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/PrimitiveData/PrimitiveData.cs -------------------------------------------------------------------------------- /PrimitiveData/PrimitiveDataDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/PrimitiveData/PrimitiveDataDictionary.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/README.md -------------------------------------------------------------------------------- /SampleCSVPopulableScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/SampleCSVPopulableScriptableObject.cs -------------------------------------------------------------------------------- /SampleCSVPopulableScriptableObjectInstance.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/SampleCSVPopulableScriptableObjectInstance.asset -------------------------------------------------------------------------------- /SampleCSVSheet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Tototototoro/UnityCSV2SO/HEAD/SampleCSVSheet.csv --------------------------------------------------------------------------------