Skip to content

Commit bd60bea

Browse files
authored
make shear amount smaller like other effects
1 parent aa367a9 commit bd60bea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ShaderManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ ShaderManager.EFFECT_INFO = {
185185
horizontal_shear: {
186186
uniformName: 'u_horizontalShear',
187187
mask: 1 << 13,
188-
converter: x => x,
188+
converter: x => x / 10,
189189
shapeChanges: true
190190
},
191191
vertical_shear: {
192192
uniformName: 'u_verticalShear',
193193
mask: 1 << 14,
194-
converter: x => x,
194+
converter: x => x / 10,
195195
shapeChanges: true
196196
},
197197
};

0 commit comments

Comments
 (0)