Skip to content

Commit 11f19dc

Browse files
committed
fixed ramp generator - 0-ramp start in first 10 seconds now
1 parent 12f69c3 commit 11f19dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

processing/special_generators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ def make_volume_ramp(input_funscript, ramp_percent_per_hour=15):
3939

4040
# Set timing and positions
4141
x = [start_time, second_time, peak_time, end_time]
42-
y = [start_ramp_value, intermediate_value, 1.0, 0.0]
42+
y = [0, start_ramp_value, 1.0, 0.0]
4343

4444
return Funscript(x, y)

0 commit comments

Comments
 (0)