MantisBT - Liberty Unleashed
View Issue Details
0000044Liberty UnleashedBugpublic2012-04-06 01:132013-07-10 12:58
Stormeus 
 
normalminoralways
confirmedopen 
0.1.0.12 
 
0000044: Setting a player's angle does not work
In either client or server-side scripts, setting a player's angle, whether it's the local player or otherwise, does not work.
No tags attached.
Issue History
2012-04-06 01:13StormeusNew Issue
2012-04-06 02:33StormeusNote Added: 0000054
2012-07-20 14:09VRockerStatusnew => confirmed
2013-07-10 12:57StormeusNote Added: 0000089
2013-07-10 12:58StormeusNote Edited: 0000089bug_revision_view_page.php?bugnote_id=89#r2

Notes
(0000054)
Stormeus   
2012-04-06 02:33   
Redacting, for some reason only fails in onPlayerCommand
(0000089)
Stormeus   
2013-07-10 12:57   
(edited on: 2013-07-10 12:58)
Ongoing issue in 0.1.1. Script to reproduce:

-- BEGIN --
function onPlayerCommand( player, command, arguments )
{
    if( command == "moveme" )
    {
        player.Angle = 0.0;
    }
}
-- END --

Expected result:
Player is rotated to face north in the game world.

Actual result:
Player is not rotated at all.