From fb2e7c95255f35283774ef86410d209bddb97d25 Mon Sep 17 00:00:00 2001 From: Nicky Case Date: Fri, 27 Apr 2018 14:12:39 -0400 Subject: [PATCH] tiny fixes --- README.md | 2 ++ css/index.css | 8 ++++---- index.html | 14 ++++++++------ js/chapters/J_Sandbox.js | 2 +- js/sim/Peep.js | 2 +- 5 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 9893b5e..b7cddf8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +!["The Wisdom and/or Madness of Crowds"](http://ncase.me/crowds/social/thumb.png) + # PLAY IT HERE: [http://ncase.me/crowds/](http://ncase.me/crowds/) *The Wisdom and/or Madness of Crowds* is dedicated to the public domain, diff --git a/css/index.css b/css/index.css index 8923219..3ddcd2e 100644 --- a/css/index.css +++ b/css/index.css @@ -224,12 +224,12 @@ a:hover{ background-size: auto 100%; } #sandbox_shortcuts_label{ - font-size: 18px; + font-size: 22px; } #sandbox_shortcuts{ - font-size: 14px; - line-height: 1.5em; - color: #999; + font-size: 20px; + line-height: 1.2em; + color: #999; } /* MODAL */ diff --git a/index.html b/index.html index 5f72139..a0cee82 100644 --- a/index.html +++ b/index.html @@ -65,7 +65,7 @@ Good luck, and thanks again! - + @@ -231,7 +231,7 @@ Good luck, and thanks again! - + @@ -245,7 +245,7 @@ Good luck, and thanks again! - + @@ -895,7 +895,7 @@ Also, bolds a word/phrase, and italicizes a word/phrase. top: 410px; left: 220px; text-align: center; - color: #aaa; + color: #999; "> (wanna make your own simulations? check out Sandbox Mode, by clicking the (★) button below!) @@ -983,7 +983,9 @@ Also, bolds a word/phrase, and italicizes a word/phrase.
NICKY CASE
- play my other shtuff + play my other shtuff · + + follow my tweeter

@@ -1611,7 +1613,7 @@ Final thing! These references also need you to TRANSLATE:
- The keyboard shortcuts (1, 2, space, delete) + The keyboard shortcuts (1, 2, space, backspace) work in all the puzzles, not just Sandbox Mode! Seriously, you can go back to a different chapter, and edit the simulation right there. diff --git a/js/chapters/J_Sandbox.js b/js/chapters/J_Sandbox.js index 7f07fb0..16542c3 100644 --- a/js/chapters/J_Sandbox.js +++ b/js/chapters/J_Sandbox.js @@ -27,7 +27,7 @@ SLIDES.push( // Simulation UI { type:"box", - x:35, y:385, + x:35, y:400, sim_ui:"red" }, diff --git a/js/sim/Peep.js b/js/sim/Peep.js index a28ea9d..2823f22 100644 --- a/js/sim/Peep.js +++ b/js/sim/Peep.js @@ -133,7 +133,7 @@ function Peep(config){ // Travel Clockwise var spin = getUnitVector(self); spin = rotateVector(spin, Math.TAU/4); - spin = multiplyVector(spin, 0.02*0.8); + spin = multiplyVector(spin, 0.02*0.25); // even less spin self.velocity = addVectors(self.velocity, spin); // Air Friction