Fix doors

This commit is contained in:
Isse 2023-01-15 05:13:02 +00:00
parent f428cdd40c
commit 5378d1b11d
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed ### Removed
### Fixed ### Fixed
- Doors
## [0.14.0] - 2023-01-07 ## [0.14.0] - 2023-01-07

View File

@ -137,7 +137,7 @@ void main() {
vec3(0, 0, 1) vec3(0, 0, 1)
); );
vec3 delta = vec3(-0.0, -5.5, 0); vec3 delta = vec3(5.5, 0, 0);
v_pos = (rot_z * (v_pos + delta)) - delta; v_pos = (rot_z * (v_pos + delta)) - delta;
} }
} }