Jump to content

Add mirror mode to decorations please!


SkOmoww
 Share

Recommended Posts

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

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 by SkOmoww
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...