fffiloni commited on
Commit
cb8b0a0
·
1 Parent(s): b57c058

Update public/sketch.js

Browse files
Files changed (1) hide show
  1. public/sketch.js +3 -2
public/sketch.js CHANGED
@@ -27,6 +27,7 @@ const socket = io();
27
  console.log(arg[0])
28
  space_uri = arg[0];
29
  hf_tkn = arg[1];
 
30
  });
31
  });
32
  }
@@ -40,8 +41,8 @@ function setup() {
40
  noLoop();
41
  pixelDensity(1);
42
  background('white');
43
- console.log(space_uri)
44
- grAPI = new GRAPI(space_uri, hf_tkn)
45
  Draws = new DrawHandler();
46
  AS = new AnimSys(12, 12, 30, 8);
47
 
 
27
  console.log(arg[0])
28
  space_uri = arg[0];
29
  hf_tkn = arg[1];
30
+ grAPI = new GRAPI(space_uri, hf_tkn)
31
  });
32
  });
33
  }
 
41
  noLoop();
42
  pixelDensity(1);
43
  background('white');
44
+
45
+
46
  Draws = new DrawHandler();
47
  AS = new AnimSys(12, 12, 30, 8);
48