Coder Social home page Coder Social logo

Comments (4)

Gherciu avatar Gherciu commented on July 24, 2024 1

@bkawk You should use the mousePressed method as a prop, so try and define it outside of setup and then pass it:

import React from "react";
import Sketch from "react-p5";

const App = () => {

  const setup = (p5, parent) => {
    p5.createCanvas(200, 200).parent(parent);
    p5.background(0);
  }

  const draw = p5 => {
  }

  const mousePressed = p5 => {
    p5.fill(255);
    p5.ellipse(p5.mouseX, p5.mouseY, 20);
  }
  return <Sketch setup={setup} draw={draw} mousePressed={mousePressed} />
};


But if you want to listen events on DOM elements not canvas element use pls native js event listeners.
Or can you pls provide more info about why you need mouse event in P5.js ?? In order to help you to resolve your issue.
If you want only to get mouse positions just use p5.mouseX and p5.mouseY.

from react-p5.

bkawk avatar bkawk commented on July 24, 2024

I have updated the codepen as you suuggested above, the mousePressed does not fire and draw an ellipse at the mouse location.

I am also keen to know how to get the deltaY of the mouseWheel using props

https://codesandbox.io/embed/withered-monad-jrhyw

from react-p5.

Gherciu avatar Gherciu commented on July 24, 2024

@bkawk The ellipses are not drawn in your case because you need to move p5.background() in setup method. Pls, reread how p5 draw process work.

from react-p5.

Gherciu avatar Gherciu commented on July 24, 2024

@bkawk I've made some changes and if you'll update to the latest version. Now you can get the event by accessing the second arg)

mouseClicked(_p5, event) {
  console.log(event)
}

from react-p5.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.