Cannot move player with WASD
i started the Tutorial and it said press W A S D to move, but the hero only turns to that side and wont start walking.
Via:
https://steamcommunity.com/app/1228320/discussions/1/2952663522496087630/
i started the Tutorial and it said press W A S D to move, but the hero only turns to that side and wont start walking.
Via:
https://steamcommunity.com/app/1228320/discussions/1/2952663522496087630/
Very much appreciated your help! If not then, this issue would be left unknown to me for who know long!
Fixed in 0.8.12-demo-872
Found the problem, the game database will be interpreted wrongly in European locale.
Such as when the database says "range=1.6"
In German Windows locale where comma and dots are reversed, Range will be interpreted as "16" !!! instead.
(Thus very huge red fan displayed in the screenshot)
And thus probably kill the movement system as well.
[Technical note]
C# snippet for this test is
> float.Parse( "1.6", System.Globalization.NumberStyles.Any, new System.Globalization.CultureInfo("en-us") )
1.6
> float.Parse( "1.6", System.Globalization.NumberStyles.Any, new System.Globalization.CultureInfo("de-DE") )
16
Ok, based from your screenshot, that is super broken, it's nowhere what I had in mind (sweat).
But new possibility also came to me, it could be game database is in broken state, due to playing in non-English environment. I will have to setup virtual machine to test it.
- Does character appear floating like this? (screenshot) Or did he stick to ground?
-> stick to the ground
- Does character display running animation at all? or simply stand still and turn around.
-> Stand still and just turn around
- Does the game said something about over-weight? (it will show the black weight 1t icon) Any icon appear around character model?
->No
- Does character appear floating like this? (screenshot) Or did he stick to ground?
- Does character display running animation at all? or simply stand still and turn around.
- Does the game said something about over-weight? (it will show the black weight 1t icon) Any icon appear around character model?
Both player log files was OK. No Error found, has to reproduce the problem hard way by guess.
dont move threads in steam! i cant reply there and im forced to answer here!!
great to hear that you found the root of the issue.
Very much appreciated your help! If not then, this issue would be left unknown to me for who know long!
Fixed in 0.8.12-demo-872