mattjennings / react-phaser-fiber

Create Phaser 3 games using React
48 stars 10 forks source link

Click on Text #27

Closed Macklawe closed 4 years ago

Macklawe commented 4 years ago

how i can add event click on Text component?

mattjennings commented 4 years ago

I haven't gotten to event handlers via props yet (onClick etc). That'll come soon. Until then, you can get a ref to the Text component and set up an event listener as you would in Phaser normally. Here's an example of how that looks.

I know it's not ideal, but this is roughly how an onClick listener would be implemented for GameObject components anyway, so hopefully that can get you by for now.

mattjennings commented 4 years ago

I've opened #28 to further the discussion on event handler support.