mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-14 17:00:39 +00:00
Fix editing slope xydirection with Lua
This commit is contained in:
parent
3ec8743c1b
commit
772004d3fd
1 changed files with 2 additions and 0 deletions
|
@ -1374,6 +1374,8 @@ static int slope_set(lua_State *L)
|
|||
}
|
||||
case slope_xydirection: // xydirection
|
||||
slope->xydirection = luaL_checkangle(L, 3);
|
||||
slope->d.x = -FINECOSINE((slope->xydirection>>ANGLETOFINESHIFT) & FINEMASK);
|
||||
slope->d.y = -FINESINE((slope->xydirection>>ANGLETOFINESHIFT) & FINEMASK);
|
||||
P_CalculateSlopeNormal(slope);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue