Jump to content

custom events in PIXI v3


brean
 Share

Recommended Posts

What are you trying to accomplish? Pixi uses EventEmitter3 to make objects able to emit events, if you are trying to emit a custom even from a sprite or container something you can just do it since events are arbitrary strings:
 

sprite.on('my-event', function (data1, data2) {    console.log(data1, data2);});sprite.emit('my-event', 'somedata', 'moredata');
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...