Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
drcmda committed Apr 13, 2019
2 parents 6f7a083 + 4088d76 commit 095ae37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,11 @@ The event data you receive contains the browser event as well as the Threejs eve
<mesh
onClick={e => console.log('click')}
onWheel={e => console.log('wheel spins')}
onPointerUp={e => console.log('mouse button up')}
onPointerDown={e => console.log('mouse button down')}
onPointerUp={e => console.log('up')}
onPointerDown={e => console.log('down')}
onPointerOver={e => console.log('hover')}
onPointerOut={e => console.log('unhover')}
onPointerMove={e => console.log('mouse moves')}
onPointerMove={e => console.log('move')}
onUpdate={self => console.log('props have been updated')}
```

Expand Down

0 comments on commit 095ae37

Please sign in to comment.