Hi All,
I am very new to Watch Face Studio and am trying to design a watch face with reverse opacity using the gyro action. For example, I can make items fade out with the gyro action but is there a way I can make items fade in onto the screen with the gyro? I would like to make an image go from 0 opacity to 100 with a 45 degree tilt?
Many Thanks.
1 Like
Welcome @mohosin.miah . Sorry any response was delayed . I was working on another Platform and the others are very busy with other stuff . I like playing with the Gyro in WFS it is very smooth and we have a joystick simulator .
For starters I always make a text box with the Formula in it to see what goes on .
You will see that the gyro gives an angle 0 to 90 . So multiply the data By two and it will do the job for you .
Obviously if you want to be totally accurate we have to do a bit of work on the Factor .
If you want the Negative tilt to work we will need to get abs involved .
Have a look a this and see .
Obviously this is for the opacity of an Image
.
(([ACC_A_Y])*2)
This will give you exactly 100% at 45deg tilt up or down .
.
(abs(([ACC_A_Y])*(100/45)))