예제 #1
0
파일: HamGame.cs 프로젝트: datalurkur/HAM
	protected void Awake()
	{
		Instance = this;

		this.availableTimelines = new Dictionary<string, string>();
		List<string> paths = HamTimeline.GetAllTimelinePaths();
		for (int i = 0; i < paths.Count; ++i)
		{
			string name = HamTimeline.LoadName(paths[i]);
			this.availableTimelines.Add(name, paths[i]);
		}
	}
예제 #2
0
파일: HamGame.cs 프로젝트: datalurkur/HAM
	protected void OnDestroy()
	{
		Instance = null;
	}