It is currently April 23rd, 2024, 10:26 am

Rotating skin(Monstercat)

Get help with creating, editing & fixing problems with skins
TheBaldDream
Posts: 3
Joined: November 16th, 2020, 1:40 am

Rotating skin(Monstercat)

Post by TheBaldDream »

I want to rotate the Monstercat song info text. What variables would I change in the texteditor?
User avatar
balala
Rainmeter Sage
Posts: 16162
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Rotating skin(Monstercat)

Post by balala »

TheBaldDream wrote: November 16th, 2020, 1:43 am I want to rotate the Monstercat song info text. What variables would I change in the texteditor?
It's not enough to just simply edit some variables.
Add the following variables to the [Variables] section of the Monstercat-Visualizer\Song Information\Left.ini or Right.ini skins:

Code: Select all

[Variables]
...
Angle=30
RotCenterX=10
RotCenterY=10
From these variables, Angle is (obviously) the rotation angle, while RotCenterX and RotCenterY are the coordinates of the center of rotation. Note that positive Angle rotates the title and the artist Anticlockwise, while negative Angle rotates then clockwise.
Add the following TransformationMatrix option to both meters, [MeterArtist] and [MeterTrack]: TransformationMatrix=(Cos(Rad(#Angle#)));(-1*Sin(Rad(#Angle#)));(Sin(Rad(#Angle#)));(Cos(Rad(#Angle#)));(#RotCenterX#-#RotCenterX#*Cos(Rad(#Angle#))-#RotCenterY#*Sin(Rad(#Angle#)));(#RotCenterY#+#RotCenterX#*Sin(Rad(#Angle#))-#RotCenterY#*Cos(Rad(#Angle#))).
TheBaldDream
Posts: 3
Joined: November 16th, 2020, 1:40 am

Re: Rotating skin(Monstercat)

Post by TheBaldDream »

Ok thanks a ton
User avatar
balala
Rainmeter Sage
Posts: 16162
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Rotating skin(Monstercat)

Post by balala »

TheBaldDream wrote: November 16th, 2020, 5:22 pm Ok thanks a ton
Did it help? Did you succeeded?
TheBaldDream
Posts: 3
Joined: November 16th, 2020, 1:40 am

Re: Rotating skin(Monstercat)

Post by TheBaldDream »

Yeah thanks a ton. I really appreciate it
User avatar
balala
Rainmeter Sage
Posts: 16162
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Rotating skin(Monstercat)

Post by balala »

Ok, glad to help.