SkOmoww Posted June 5, 2019 Share Posted June 5, 2019 Can you please add mirror mode to decorations its a pain that all my prodman posters are looking at the same directions. void MirrorImage (unsigned char PixelGrid[WIDTH][HEIGHT]) { for (int row = 0; row < WIDTH / 2; row++) { for (int col = 0; col < HEIGHT ; col++) { int swapRow = WIDTH - 1 - row; // Mirror pixel unsigned char temp = PixelGrid[row][col]; PixelGrid[row][col] = PixelGrid[swapRow][col]; PixelGrid[swapRow][col] = temp; } } } Link to comment Share on other sites More sharing options...
swiftasacoursing Posted June 5, 2019 Share Posted June 5, 2019 Have you tried rotating it around the vertical axis Link to comment Share on other sites More sharing options...
SkOmoww Posted June 7, 2019 Author Share Posted June 7, 2019 (edited) On 2019-06-05 at 9:37 PM, swiftasacoursing said: Have you tried rotating it around the vertical axis i just did and its stuck in the wall now and it doesnt work on articulas Edited June 7, 2019 by SkOmoww Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now