Thank you for your support. I will help if there’s anything I can do for this.
Runtime status: meshes, FFD, skinning
cocos2d-x versions 2.2.3, 3.0 and 3.1alpha1 are now supported:
https://github.com/EsotericSoftware/spi ... e-cocos2dx
spine-cocos2d-iphone has been updated with meshes, FFD and skinning! It also gets blocks for AnimationState listeners. Only cocos2d 2.1.0 is supported, but 3.0 and 3.1 will be coming very soon.
There is now a spine-cocos2d-iphone available for cocos2d-iphone 3.0. I will do 3.1 later when it is more stable. It isn't so different from 3.0 anyway. For now I need to move on to the other runtimes!
Hi , nate, I'm writing runtime code by myself for own engine. When parse skinned mesh ffd , found a strange json data.
The skinned mesh apply ffd , the ffd vertices count sometimes is even number, sometimes is odd number.
In my case , I bind two bones for skinned mesh and apply ffd , the result I get ffd vertices count is 9
I don't know whether it is a bug, In my mind, the ffd vertices must pair of x and y coordinate shows, so must be even number
thanks
They are x,y pairs but "offset" is how many entries are zeros at the start. Also, zeros at the end are not output.
- Змінено
Nate написавThey are x,y pairs but "offset" is how many entries are zeros at the start. Also, zeros at the end are not output.
:happy: Thanks for answer, understand ! That means ffd vertices may not ouput 0 data at the end
I got data like below
"head": {
"head": [
{
"time": 0,
"offset": 4,
"vertices": [ 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
},
{
"time": 0.3333,
"offset": 2,
"vertices": [ 10.57, -9.6, -14.2, -1.48, 0, 0, 0, 0, 0, 0, 0 ]
},
{
"time": 0.6666,
"offset": 4,
"vertices": [ 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
}
]
},
Notice, vertices count all odd number, and output 0 data. By your said, it is should be not output 0 :wonder:
It's because the values are very near zero, then later rounded to zero for JSON output. Binary doesn't do any rounding. Fixed in next version!
Nate написавIt's because the values are very near zero, then later rounded to zero for JSON output. Binary doesn't do any rounding. Fixed in next version!
:happy: Thanks a lot, get it
spine-starling now has meshes, FFD and skinning! It was a bit of work, had to write my own renderer for meshes.
Hi matey, great to see the progress on the meshes, ffd and skinning. We're looking at spine for a project at work and we'd be using the spine-C runtime, do you have any idea when that's likely to be finished? The two critical features for quality animation for us are deformation and animation curves over multiple keys. It sounds like you're getting through it pretty quick at the moment!
spine-c has been done for a long time. Left is Corona, Love and Turbulenz.
Magic, thanks!