Skip to content

Commit

Permalink
Fix position of headphones in idle preset.
Browse files Browse the repository at this point in the history
Now that everything renders in the right orientation, the idle preset's headphones coordinates were a bit off, rendering at the bottom of the M logo.
  • Loading branch information
kblaschke committed Nov 25, 2023
1 parent b85b631 commit 1e0f8c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libprojectM/MilkdropPreset/IdlePreset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ shapecode_1_border_g=0
shapecode_1_border_b=0
shapecode_1_border_a=0
shape_1_per_frame1=ang = q10;
shape_1_per_frame2=x = x + q1 + sin(q10) * q9 * rad;
shape_1_per_frame3=y = y + q2 + cos(q10) * q9;
shape_1_per_frame2=x = x + q1 - sin(q10) * q9 * rad;
shape_1_per_frame3=y = y + q2 - cos(q10) * q9;
shape_1_per_frame4=rad = rad + bass * 0.1;
shape_1_per_frame5=a = q3;
shape_1_per_frame6=a2 = q3;
Expand Down

0 comments on commit 1e0f8c6

Please sign in to comment.