diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-05-12 00:21:17 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-05-12 00:21:17 -0400 |
| commit | c43c24f2221bcc4acb13afeecb6a59e20b10e06b (patch) | |
| tree | 18629efccf008775ef2644a9cdebab2c02db09be | |
| parent | 7e1a5832f8154a7f078d4f69a39eeb470ac09f9a (diff) | |
reweight
| -rw-r--r-- | js/ui/nopaint.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/js/ui/nopaint.js b/js/ui/nopaint.js index bfe099b..d54e749 100644 --- a/js/ui/nopaint.js +++ b/js/ui/nopaint.js @@ -34,7 +34,7 @@ var nopaint = (function(){ var nopaint = {} nopaint.delay = nopaint.normal_delay = 100 - nopaint.turbo_delay = 20 + nopaint.turbo_delay = 10 nopaint.tool = null nopaint.tools = {} nopaint.keys = [] @@ -733,18 +733,18 @@ var nopaint = (function(){ }, }) - nopaint.add_tool( new SolidBrush({ weight: 4 }) ) - nopaint.add_tool( new EraseBrush({ weight: 6 }) ) + nopaint.add_tool( new SolidBrush({ weight: 5 }) ) + nopaint.add_tool( new EraseBrush({ weight: 5 }) ) nopaint.add_tool( new RandomBrush({ weight: 4 }) ) - nopaint.add_tool( new HueBrush({ weight: 4 }) ) - nopaint.add_tool( new LetterBrush({ weight: 4 }) ) - nopaint.add_tool( new RandomLetterBrush({ weight: 15 }) ) + nopaint.add_tool( new HueBrush({ weight: 5 }) ) + nopaint.add_tool( new LetterBrush({ weight: 2 }) ) + nopaint.add_tool( new RandomLetterBrush({ weight: 12 }) ) nopaint.add_tool( new CloneBrush({ weight: 8 }) ) nopaint.add_tool( new SmearBrush({ weight: 10 }) ) nopaint.add_tool( new FillTool({ weight: 3 }) ) nopaint.add_tool( new FillLetterTool({ weight: 6 }) ) nopaint.add_tool( new StarsTool({ weight: 2 }) ) - nopaint.add_tool( new TranslateTool({ weight: 5 }) ) + nopaint.add_tool( new TranslateTool({ weight: 4 }) ) nopaint.add_tool( new CycleTool({ weight: 1 }) ) nopaint.add_tool( new ScaleTool({ weight: 3 }) ) nopaint.add_tool( new RotateTool({ weight: 3 }) ) |
