Skip to content

Commit

Permalink
Tagging - Lowercase texture paths (#10477)
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 authored Nov 6, 2024
1 parent 95f3cd0 commit bb70398
Showing 1 changed file with 66 additions and 66 deletions.
132 changes: 66 additions & 66 deletions addons/tagging/ACE_Tags.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,75 +44,75 @@ class ACE_Tags {
icon = QPATHTOF(UI\tags\white\0.paa);
};

TAG(arrow_up,Black);
TAG(arrow_down,Black);
TAG(arrow_left,Black);
TAG(arrow_right,Black);
TAG(circle,Black);
TAG(cross,Black);
TAG(diamond,Black);
TAG(square,Black);
TAG(square_filled,Black);
TAG(triangle,Black);
TAG(triangle_inverted,Black);
TAG(arrow_up,black);
TAG(arrow_down,black);
TAG(arrow_left,black);
TAG(arrow_right,black);
TAG(circle,black);
TAG(cross,black);
TAG(diamond,black);
TAG(square,black);
TAG(square_filled,black);
TAG(triangle,black);
TAG(triangle_inverted,black);

TAG(arrow_up,Blue);
TAG(arrow_down,Blue);
TAG(arrow_left,Blue);
TAG(arrow_right,Blue);
TAG(circle,Blue);
TAG(cross,Blue);
TAG(diamond,Blue);
TAG(square,Blue);
TAG(square_filled,Blue);
TAG(triangle,Blue);
TAG(triangle_inverted,Blue);
TAG(arrow_up,blue);
TAG(arrow_down,blue);
TAG(arrow_left,blue);
TAG(arrow_right,blue);
TAG(circle,blue);
TAG(cross,blue);
TAG(diamond,blue);
TAG(square,blue);
TAG(square_filled,blue);
TAG(triangle,blue);
TAG(triangle_inverted,blue);

TAG(arrow_up,Green);
TAG(arrow_down,Green);
TAG(arrow_left,Green);
TAG(arrow_right,Green);
TAG(circle,Green);
TAG(cross,Green);
TAG(diamond,Green);
TAG(square,Green);
TAG(square_filled,Green);
TAG(triangle,Green);
TAG(triangle_inverted,Green);
TAG(arrow_up,green);
TAG(arrow_down,green);
TAG(arrow_left,green);
TAG(arrow_right,green);
TAG(circle,green);
TAG(cross,green);
TAG(diamond,green);
TAG(square,green);
TAG(square_filled,green);
TAG(triangle,green);
TAG(triangle_inverted,green);

TAG(arrow_up,Red);
TAG(arrow_down,Red);
TAG(arrow_left,Red);
TAG(arrow_right,Red);
TAG(circle,Red);
TAG(cross,Red);
TAG(diamond,Red);
TAG(square,Red);
TAG(square_filled,Red);
TAG(triangle,Red);
TAG(triangle_inverted,Red);
TAG(arrow_up,red);
TAG(arrow_down,red);
TAG(arrow_left,red);
TAG(arrow_right,red);
TAG(circle,red);
TAG(cross,red);
TAG(diamond,red);
TAG(square,red);
TAG(square_filled,red);
TAG(triangle,red);
TAG(triangle_inverted,red);

TAG(arrow_up,Yellow);
TAG(arrow_down,Yellow);
TAG(arrow_left,Yellow);
TAG(arrow_right,Yellow);
TAG(circle,Yellow);
TAG(cross,Yellow);
TAG(diamond,Yellow);
TAG(square,Yellow);
TAG(square_filled,Yellow);
TAG(triangle,Yellow);
TAG(triangle_inverted,Yellow);
TAG(arrow_up,yellow);
TAG(arrow_down,yellow);
TAG(arrow_left,yellow);
TAG(arrow_right,yellow);
TAG(circle,yellow);
TAG(cross,yellow);
TAG(diamond,yellow);
TAG(square,yellow);
TAG(square_filled,yellow);
TAG(triangle,yellow);
TAG(triangle_inverted,yellow);

TAG(arrow_up,White);
TAG(arrow_down,White);
TAG(arrow_left,White);
TAG(arrow_right,White);
TAG(circle,White);
TAG(cross,White);
TAG(diamond,White);
TAG(square,White);
TAG(square_filled,White);
TAG(triangle,White);
TAG(triangle_inverted,White);
TAG(arrow_up,white);
TAG(arrow_down,white);
TAG(arrow_left,white);
TAG(arrow_right,white);
TAG(circle,white);
TAG(cross,white);
TAG(diamond,white);
TAG(square,white);
TAG(square_filled,white);
TAG(triangle,white);
TAG(triangle_inverted,white);
};

0 comments on commit bb70398

Please sign in to comment.