Thanks! There will be a new version of spine extension?
Thanks!
I discovered a problem with rendering slice 9 sprites. I have attached a project with an example.
slice_9_test.zip (45.1 KB)
Thanks! It works for me!
Some of my libs not build.
The build failed for the following reasons:
ERROR tests/test_joint_def.lua:39 '}' expected (to close '{' at line 3) near 'angularOffset'
ERROR main/box2d_scenes/dominos/dominos_scene.script:114 '}' expected (to close '{' at line 112) near 'position'
maxTorque = 0,
linearOffset = vmath.vector3(0);
angularOffset = 0;
correctionFactor = 0;
}
The problem is ;
I think I forget replace some ; with , when port from c++ to lua.
Looks like using ; in table is valid for lua.
http://tpcg.io/_VWNUWK
Hmm, it does indeed look to be valid. I would not have guessed that semicolon is a valid table delimiter:
Lua 5.1.5 Copyright (C) 1994-2012 Lua.org, PUC-Rio
> local t = { a = 1, b = 2, c = 3; d = 4 } print(t.a, t.b, t.c, t.d)
1 2 3 4
>
We did a change to the Lua parser a while ago and I believe this is related.
We’ve done another update to the release with fixes for:
- Fix for calculating size of sprite vertex buffer data
- Workaround check if texture set doesn’t have any image name hashes
- Fix for slice 9 sprites with rotated uvs
- Fix for building atlasbuilder test main function
- Fixed erroneous duplication errors on animation groups
(Engine version 37a4a8548850a7243055bb820e45580cfdae5f32
)
I reported this issue on github. Wasn’t a big issue but an issue. I reported it just 4 days ago…wow that was a quick fix.
- Workaround check if texture set doesn’t have any image name hashes
- Sprite material batch fix
Everything, fine in my project thanks
Hi!
ERROR:RESOURCE: Empty resource path
printErr @ dmloader.js?1:528
Got this error without any trace in web build 1.6.3, on 1.6.2 was ok
Also have two different crashes while testing editor build
first one:
_crash (1).zip (4.7 KB)
for second got only screenshot of stacktrace
Hm, would you be able to share the project or a repro?
suddenly no, can’ reproduce crashes anymore
but still have ERROR:RESOURCE: Empty resource path
I just updated the editor and now these menu items:
- File > Search in files…
- Help > About
Throw this error:
Is anyone else seeing this?
macOS info:
Thanks for the report, I pushed a fix now, and it should be available as an update in a 5 minutes or so.
Wonderful I can confirm it works! Happy Friday!
Is this a bug on this version? I hadn’t found it on 1.6.2
Not actually, it happens only on right click. No menu context appearing, instead just a small box.
Ah, I think it happens sometimes. Now I see the menu ~.~