diff options
Diffstat (limited to 'src/scenes/first_box.tsx')
-rw-r--r-- | src/scenes/first_box.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/scenes/first_box.tsx b/src/scenes/first_box.tsx index 5508a41..b3957af 100644 --- a/src/scenes/first_box.tsx +++ b/src/scenes/first_box.tsx @@ -36,10 +36,9 @@ export default makeScene2D(function* (view) { yield* beginSlide("Add Inputs " + inputId); yield* functionBox().propogateInput(0.5); - yield* waitFor(0.3); - yield* functionBox().propogateOutput(0.5); + yield* beginSlide("Propogate Inputs " + inputId); + yield* functionBox().propogateOutput(0.5); yield* beginSlide("Propogate Outputs of " + inputId); - yield* beginSlide("Propogate Outputs of 1" + inputId); } }); |