![]() |
[fixed] Crash when move a SpotLight object. - Printable Version +- Wings 3D Development Forum (https://www.wings3d.com/forum) +-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1) +--- Forum: Bug Reports (https://www.wings3d.com/forum/forumdisplay.php?fid=12) +--- Thread: [fixed] Crash when move a SpotLight object. (/showthread.php?tid=2753) |
[fixed] Crash when move a SpotLight object. - tkbd - 01-03-2019 hi! I had the opportunity to use Windows PC the other day and install Wings3D. So,I tried to several texture mapping to an object. (metallic,roughness map etc...) And I set a PointLight and a SpotLight. It works fine!! But when I move the SpotLight appropriately,Wings3D was crashed. The crash log is here. Code: Dump written 2019-1-1_16-36 Wings3D v2.2.1(No patched version) Enviroment: Windows10 (But recored as Windows8 in Crash log) ------------------------------------------------------------------------------ Best Regard. RE: Crash when move a SpotLight object. - micheus - 01-04-2019 Thanks tkbd I couldn't to repeat the problem, but by looking in the dump file (long stack) we see it happens when drawing the status line with the coordinate information for the light; and the format string shown (": Pos ~ts ~ts ~ts") is completely different of the one we can find in the wings_light.erl at the source repository (": Pos ~s") - which is the correct: Code: Long stack trace: So, by doing a search by that bad format string I found it's present in the language files: wings_jp.lang, wings_ko.lang and wings_zh-cn.lang; Like this for the Japanese one: Code: {info, It's fixed now. Check the Fixes for v2.2.1. RE: [fixed] Crash when move a SpotLight object. - tkbd - 01-04-2019 micheus,Thank you for quick response!! I think back on ... When this bug occurred, I surely set the language to Japanese. (and also I found that easy way to recreate this bug. Switch to Body selection mode while selecting a Light.) Then, I download your patchs and new lang files, and tested them. Simplefied Chinese(zh-cn) and Korean(ko) are now OK. But Only Japanese(jp) hasn't been fixed yet. See a line 2007 in wings_jp.lang Quote: {info,It is missing “s” after “Pos~”. ![]() Another more, would you fix Traditional Chinese(zh-tw) version too? See a line 1981 in wings_zh-tw.lang . Quote: {info,Parhaps,I think that way all that problem should be solved. ![]() RE: [fixed] Crash when move a SpotLight object. - micheus - 01-04-2019 Thanks for checking. It seems I removed too much characters. ![]() I'm going to fix them. RE: [fixed] Crash when move a SpotLight object. - tkbd - 01-05-2019 Thank you very much ![]() RE: [fixed] Crash when move a SpotLight object. - micheus - 01-06-2019 I just did a reviewing of all language files and updated them to the fixes repository. Thanks again. |