mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-01-31 05:00:34 +00:00
Fixed flat rotation (0° is east in SRB2)
This commit is contained in:
parent
4f6f748b31
commit
6c739c1a07
1 changed files with 1 additions and 1 deletions
|
@ -977,7 +977,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
||||||
s.Fields.BeforeFieldsChange();
|
s.Fields.BeforeFieldsChange();
|
||||||
if (rotate)
|
if (rotate)
|
||||||
{
|
{
|
||||||
float rotation = l.AngleDeg;
|
float rotation = (l.AngleDeg + 90) % 360;
|
||||||
|
|
||||||
if (!rotateonlyceiling)
|
if (!rotateonlyceiling)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue