Jambutters Posted April 18, 2016 Share Posted April 18, 2016 Hello, I'm a bit new to pixi js and I was wondering if pixi had a built in array sprite handling system, or would I have to write that out myself, or if there's a plugin I could use. An example would be how phaser handles defining a sprites frames like here : player.animations.add('right', [5, 6, 7, 8], 10, true); Quote Link to comment Share on other sites More sharing options...
fire7side Posted April 18, 2016 Share Posted April 18, 2016 No, not built in. There is a movieclip class in extras. You can either extend it, or extend the sprite class, or put 4 movieclips in a container and set the visible property to true and false. There's a stateplayer here that would kind of do the trick also: https://gist.github.com/kittykatattack/13a53d0dbc32ce2a0a17 Jambutters 1 Quote Link to comment Share on other sites More sharing options...
Jambutters Posted April 19, 2016 Author Share Posted April 19, 2016 3 hours ago, fire7side said: No, not built in. There is a movieclip class in extras. You can either extend it, or extend the sprite class, or put 4 movieclips in a container and set the visible property to true and false. There's a stateplayer here that would kind of do the trick also: https://gist.github.com/kittykatattack/13a53d0dbc32ce2a0a17 Thank you kind sir. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.