Skip to content

Commit

Permalink
chore: removing debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Nov 2, 2023
1 parent 761fde9 commit 5190627
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@ public void Screenshot(int[] size)
/// <returns></returns>
private IEnumerator ScreenshotHelper(int[] size)
{
Debug.Log($"{size[0]},{size[1]}");

RenderTexture originalTexture = ActiveCamera.targetTexture;

RenderTexture captureTexture = new RenderTexture(size[0], size[1], 24);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ public void RequestScreenshot(string data)
{
ScreenshotData screenshotData = JsonUtility.FromJson<ScreenshotData>(data);

Debug.Log(data);
_cameras[screenshotData.name].Screenshot(screenshotData.size);
}

Expand Down

0 comments on commit 5190627

Please sign in to comment.