From d4737110c9657f6857aa25adf76469f91d1869ea Mon Sep 17 00:00:00 2001 From: yutoVR Date: Sun, 7 Apr 2019 02:00:31 +0900 Subject: [PATCH] Better directory name. --- ScreenshotCapturer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenshotCapturer.cs b/ScreenshotCapturer.cs index 452496e..91ca782 100644 --- a/ScreenshotCapturer.cs +++ b/ScreenshotCapturer.cs @@ -60,7 +60,7 @@ void Update() if (Input.GetKeyDown(KeyCode.Space)) { var currentDir = Directory.GetParent(Application.dataPath).ToString(); - const string ssDir = "ScreenShots"; + const string ssDir = "Screenshots"; Directory.CreateDirectory(Path.Combine(currentDir, ssDir)); var now = System.DateTime.Now.ToString().Replace("/", ".").Replace(":", ".");