lars Posted March 20, 2018 Share Posted March 20, 2018 Hello First of all. I m so glad to see Panda on the road again :-) I have just bought the full version and playing around with Spritesheets developed in Spine 3.6.52 professional. It seems like mesh is not supported in panda 2 version 1.5.0. When I export from spine as a spritesheet with mesh animations it won´t show the spritesheet, If i remove the Mesh animation it shows the animation fine: game.module( 'game.main' ) .require( 'plugin.spine' ) .body(function() { //game.addAsset('panda.png'); game.addAsset('sheep.atlas'); game.addAsset('sheep.json'); game.createScene('Main', { init: function() { var player = new game.Player(); player.sprite.addTo(this.stage); } }); game.createClass('Player', { init: function() { //this.sprite = new game.Sprite('panda.png'); this.sprite = new game.Spine('sheep.json'); this.sprite.position.x = 200; this.sprite.position.y = 800; this.sprite.play('idle', true); } }); }); Quote Link to comment Share on other sites More sharing options...
enpu Posted March 20, 2018 Share Posted March 20, 2018 Hi @lars and thanks for the purchase! Mesh support for Spine plugin is on my todo-list and it should be done this week Ninjadoodle 1 Quote Link to comment Share on other sites More sharing options...
lars Posted March 20, 2018 Author Share Posted March 20, 2018 Super fantastic ... I really like what you have done with Panda... Ninjadoodle 1 Quote Link to comment Share on other sites More sharing options...
Ninjadoodle Posted March 20, 2018 Share Posted March 20, 2018 @enpu - This is actually incredible, not sure how many engines out there support this Quote Link to comment Share on other sites More sharing options...
PsichiX Posted March 20, 2018 Share Posted March 20, 2018 many, so it's obvious thing Quote Link to comment Share on other sites More sharing options...
enpu Posted March 24, 2018 Share Posted March 24, 2018 Spine plugin v1.2.0 now supports meshes! (Requires PixiJS plugin v1.2.0) Ninjadoodle 1 Quote Link to comment Share on other sites More sharing options...
lars Posted April 4, 2018 Author Share Posted April 4, 2018 So cool. Ninjadoodle 1 Quote Link to comment Share on other sites More sharing options...
lars Posted April 4, 2018 Author Share Posted April 4, 2018 Works perfectly :-) Thanks 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.