- Editado
as3 runtime problems
Hello! I am using spine 1.8.36 with as3 runtime from May 23. Git latest commit cf41610f8a.
I have problems with as3 runtime
in FfdTimeline.as
frameVertices = new Vector.<Number>(frameCount, true);
I thing should be
frameVertices = new Vector.<Vector.<Number>>(frameCount, true);
in MeshAttachment.as
var i:int, n:int = uvs.length;
if (!uvs || uvs.length != n) uvs = new Vector.<Number>(n, true);
I thing should be
var i:int, n:int = regionUVs.length;
if (!uvs || uvs.length != n) uvs = new Vector.<Number>(n, true);
I also have a problem with displaying the character in flash
Here's my project
https://dl.dropboxusercontent.com/u/70263115/SpineReport.zip
Could you please help me
Can I get some reply? At least "We will help you later" would be good too
Sorry for the delay. We get to all posts eventually.
Your fixes are correct, I've committed them to Git. The meshes don't render because they haven't been implemented for Flash or Starling yet. I'm working on Starling now. AFAIK there isn't any reasonable way to render a mesh using Flash, so I'm not sure spine.flash.SkeletonSprite will ever be able to render meshes.
Thank you for the reply. Do you mean that meshes will be not available for both native flash rendering and Starling/Stage3d, or it will be available for Starling?
Only for Starling.
Great news, thank you
I tried to use latest starling runtime update. But my character is rendered not correctly. Could you please help to find what is wrong.
Fixed in Git, thanks!
Works great. But I have another animation that throws an error. Could you help me again. (If weapon is invisible, it is most likely ok, I`ll ask artist to check it.)
https://dl.dropboxusercontent.com/u/702 ... Report.zip
RangeError: Error #1125: The index 426 is out of range 393.
at PolygonBatch/add()[C:\As3Projects\SpineReport\src\spine\starling\PolygonBatch.as:141]
at spine.starling::SkeletonSprite/addToBatch()[C:\As3Projects\SpineReport\src\spine\starling\SkeletonSprite.as:166]
at spine.starling::SkeletonSprite/renderMeshes()[C:\As3Projects\SpineReport\src\spine\starling\SkeletonSprite.as:94]
at spine.starling::SkeletonSprite/render()[C:\As3Projects\SpineReport\src\spine\starling\SkeletonSprite.as:81]
at starling.display::DisplayObjectContainer/render()[/Users/redge/Dropbox/Development/starling/starling/src/starling/display/DisplayObjectContainer.as:355]
at starling.display::Sprite/render()[/Users/redge/Dropbox/Development/starling/starling/src/starling/display/Sprite.as:230]
at starling.display::DisplayObjectContainer/render()[/Users/redge/Dropbox/Development/starling/starling/src/starling/display/DisplayObjectContainer.as:355]
at starling.core::Starling/render()[/Users/redge/Dropbox/Development/starling/starling/src/starling/core/Starling.as:502]
at starling.core::Starling/nextFrame()[/Users/redge/Dropbox/Development/starling/starling/src/starling/core/Starling.as:457]
at starling.core::Starling/onEnterFrame()[/Users/redge/Dropbox/Development/starling/starling/src/starling/core/Starling.as:660]
Fixed in Git, thanks again!
It seems that once meshes start working correctly smooth transitions between animations disappear (setMixByName fucntion) . Is this as it should be?
Other problem with new version of Starling runtime (skeleton with meshes).
Scenario:
Open your spine-starling-example project.
Use GoblinsExample.
Add
_starling.enableErrorChecking = true;
to Main.as
Run
Crash:
Error: Error #3600: No valid program set.
at flash.display3D::Context3D/drawTriangles()
at PolygonBatch/flush()[\spine-starling\src\spine\starling\PolygonBatch.as:222]
at PolygonBatch/end()[\spine-starling\src\spine\starling\PolygonBatch.as:111]
at spine.starling::SkeletonSprite/renderMeshes()[\spine-starling\src\spine\starling\SkeletonSprite.as:101]
at spine.starling::SkeletonSprite/render()\spine-starling\src\spine\starling\SkeletonSprite.as:81]
at starling.display::DisplayObjectContainer/render()[\Starling-Framework-1.51\starling\src\starling\display\DisplayObjectContainer.as:355]
at starling.display::Sprite/render()[\Starling-Framework-1.51\starling\src\starling\display\Sprite.as:203]
at starling.display::DisplayObjectContainer/render()[\Starling-Framework-1.51\starling\src\starling\display\DisplayObjectContainer.as:355]
at starling.core::Starling/render()[\Starling-Framework-1.51\starling\src\starling\core\Starling.as:502]
at starling.core::Starling/nextFrame()[\Starling-Framework-1.51\starling\src\starling\core\Starling.as:457]
at starling.core::Starling/onEnterFrame()[\Starling-Framework-1.51\starling\src\starling\core\Starling.as:660]
I have the same error in my project (even without enableErrorChecking). Will you look on it? Thanks in advance.
Ok, I found a bug:
PolygonBatch.as
Lack of assign a "program" variable (it has null value)
Starling.current.registerProgramFromSource(name, vertexShader, fragmentShader);
}
context.setProgram(program);
woood escreveuIt seems that once meshes start working correctly smooth transitions between animations disappear (setMixByName fucntion) . Is this as it should be?
May I get an answer?
Next bugs, StarlingAtlasAttachmentLoader is very buggy, it doesn't work at all.
Ok, let's go:
public function newMeshAttachment (skin:Skin, name:String, path:String) : MeshAttachment {
[…]
attachment.regionV2 = (matrix.tx + subTexture.height) / root.height;
Should be:
attachment.regionV2 = (matrix.ty + subTexture.height) / root.height;
Analogous situation is in newSkinnedMeshAttachment function.
But it still isn't enough.
attachment.regionU = matrix.tx / root.width;
attachment.regionV = matrix.ty / root.height;
attachment.regionU2 = (matrix.tx + subTexture.width) / root.width;
attachment.regionV2 = (matrix.tx + subTexture.height) / root.height;
It doesn't work, u v u2 v2 are not proper calculated, I think it should be:
var rectRegion:Rectangle = atlas.getRegion(path);
attachment.regionU = rectRegion.x / root.width;
attachment.regionV = rectRegion.y / root.height;
attachment.regionU2 = (rectRegion.x + subTexture.width) / root.width;
attachment.regionV2 = (rectRegion.y + subTexture.height) / root.height;
The same for newSkinnedMeshAttachment function. It works for me.
And next I suggest to add below code in newRegionAttachment function:
var subTexture:SubTexture = texture as SubTexture;
if (subTexture)
{
var root:Texture = subTexture.root;
var rectRegion:Rectangle = atlas.getRegion(path);
attachment.regionU = rectRegion.x / root.width;
attachment.regionV = rectRegion.y / root.height;
attachment.regionU2 = (rectRegion.x + subTexture.width) / root.width;
attachment.regionV2 = (rectRegion.y + subTexture.height) / root.height;
attachment.setUVs(attachment.regionU, attachment.regionV, attachment.regionU2, attachment.regionV2, atlas.getRotation(path));
}
We will have more flexible Skeleton class, similar to AtlasAttachmentLoader version.
Thanks for the detailed post. Nate is currently traveling to the US and will reply as soon as he is able to. Sorry for the trouble.
Sorry it's been a while. I haven't forgotten though and will get to this when I'm back from vacation.
No problem, Nate. Have fun and peaceful holidays!
Next issue to reconsider when you come back. I noticed that skeleton with meshes generates quite a lot draw calls (1 draw call per attachment, it doesn't matter that all images are in one atlas). An implementation uses PolygonBatch class, but I don't see too much profit from this way (a similar name to QuadBatch suggests that it will be fast, but it isn't). Any chance for more effecient solution? For example, 1 draw call per atlas, like in version without meshes?
Hello,
I am having a similar problem using Spine Pro and Starling.
The mesh deformation doesn't get rendered at all..
I am attaching you a spine project to check the bug.
Thanks for your help
Thanks for the attached file, we will look into it when Nate is back from vacation. Will be at least two weeks. Sorry for the wait
I fixed it using directions from here
http://forum.starling-framework.org/top ... ne-runtime
Thanks!
Great! glad to hear it. Replied to your email as well but I'll note is as being solved.