Skip to content

Commit

Permalink
bumped version, fixed brushes, moves slow stroke notif to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
setpixel committed Jun 26, 2018
1 parent ee72625 commit 658fff1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "storyboarder",
"productName": "Storyboarder",
"version": "1.6.2",
"version": "1.6.3",
"description": "The fastest way to storyboard.",
"main": "src/js/main.js",
"scripts": {
Expand Down
23 changes: 12 additions & 11 deletions src/data/brushes/brushes.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"tiltSize": 1,
"movement": 1,
"pressureBleed": 1,
"spacing": 0.05,
"spacing": 0.1,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
},
{
"name": "brush",
Expand All @@ -26,9 +26,10 @@
"tiltSize": 1,
"tiltOpacity": 1,
"movement": 0.5,
"spacing": 0.1,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
},
{
"name": "tone",
Expand All @@ -40,11 +41,11 @@
"scale": 0.7,
"tiltOpacity": 0.4,
"tiltSize": 1,
"spacing": 0.05,
"spacing": 0.2,
"pressureBleed": 0.5,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
},
{
"name": "pencil",
Expand All @@ -58,10 +59,10 @@
"tiltSize": 1,
"movement": 1,
"pressureBleed": 1,
"spacing": 0.05,
"spacing": 0.1,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
},
{
"name": "pen",
Expand All @@ -75,10 +76,10 @@
"tiltSize": 3.8,
"tiltOpacity": 1,
"movement": 0.9,
"spacing": 0.05,
"spacing": 0.1,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
},
{
"name": "note-pen",
Expand All @@ -92,7 +93,7 @@
"movement": 0.5,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
},
{
"name": "eraser",
Expand All @@ -106,6 +107,6 @@
"movement": 0.5,

"efficiencyBrushImage": "brushefficiency",
"efficiencySpacing": 0.05
"efficiencySpacing": 0.1
}
]
2 changes: 1 addition & 1 deletion src/js/window/storyboarder-sketch-pane.js
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ class FPSMeter {
constructor () {
this.onFrame = this.onFrame.bind(this)
this.fpsList = []
this.numToAvg = 7
this.numToAvg = 4
}
start () {
this.running = true
Expand Down

0 comments on commit 658fff1

Please sign in to comment.