- Jun 28, 2022
- 37
- 96
Hello everyone!
Help me please with changing variables in an ATL block (although there might be another solution).
I want to create a sex animation whose speed is changed by the player.
The problem is the smoothness of the animation change.
The visualization of sex in an ATL block:
The problem is that the ATL block uses "my_video_speed_0039 " variable on initial launch and after changing it, the animation speed does not change (I checked in the game options - the variable has indeed changed).
I guess I have to restart the ATL block to update the speed, but this option is not suitable because the smoothness of the animation is lost.
As an alternative, of course, I can create two ATL blocks with different speeds and launch them depending on the speed, but in the case the animation also twitching (for example, the transition from the 8th frame to the 1st).
Please tell me if there is a solution with a smooth change speed inside the ATL block or maybe there is another solution?
Thank you!
Help me please with changing variables in an ATL block (although there might be another solution).
I want to create a sex animation whose speed is changed by the player.
The problem is the smoothness of the animation change.
The visualization of sex in an ATL block:
Code:
image s_2_q2 1_1:
"day_1_5/s_2_q2_1_1.webp"
choice( my_video_speed_0039 == 1 ):
pause 1
choice( my_video_speed_0039 == 2 ):
pause 0.04
"day_1_5/s_2_q2_1_2.webp"
choice( my_video_speed_0039 == 1 ):
pause 1
choice( my_video_speed_0039 == 2 ):
pause 0.04
...and many more like this...
repeat
I guess I have to restart the ATL block to update the speed, but this option is not suitable because the smoothness of the animation is lost.
As an alternative, of course, I can create two ATL blocks with different speeds and launch them depending on the speed, but in the case the animation also twitching (for example, the transition from the 8th frame to the 1st).
Please tell me if there is a solution with a smooth change speed inside the ATL block or maybe there is another solution?
Thank you!
Last edited: