Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Assets/Scripts/ScreenshotSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Outputs a compute buffer set with color index values
public class ScreenshotSource : IRawDataSource
{
public const string RawImagesFolder = @"F:\rPlace2022\latest\images_single\"; // Replace this with yer local folder
public const string RawImagesFolder = @"F:\rPlace2022\latest\images_single\"; // Replace this with your local folder
private string[] images;
private byte[] rawImageData;
private Texture2D imageVessel;
Expand Down Expand Up @@ -104,4 +104,4 @@ public uint GetColorIndex(string hex)
{
return table[hex];
}
}
}