sonolus.py 0.10.2__tar.gz → 0.10.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sonolus.py might be problematic. Click here for more details.
- sonolus_py-0.10.4/PKG-INFO +14 -0
- sonolus_py-0.10.4/docs/changelog/index.md +51 -0
- sonolus_py-0.10.4/pyproject.toml +77 -0
- sonolus_py-0.10.4/sonolus/build/cli.py +258 -0
- sonolus_py-0.10.4/sonolus/build/dev_server.py +332 -0
- sonolus_py-0.10.4/sonolus/build/engine.py +445 -0
- sonolus_py-0.10.4/sonolus/script/array.py +348 -0
- sonolus_py-0.10.4/sonolus/script/containers.py +645 -0
- sonolus_py-0.10.4/sonolus/script/debug.py +241 -0
- sonolus_py-0.10.4/sonolus/script/effect.py +256 -0
- sonolus_py-0.10.4/sonolus/script/internal/context.py +564 -0
- sonolus_py-0.10.4/sonolus/script/particle.py +256 -0
- sonolus_py-0.10.4/sonolus/script/project.py +151 -0
- sonolus_py-0.10.4/sonolus/script/sprite.py +502 -0
- sonolus_py-0.10.4/sonolus/script/stream.py +661 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_directional_flick_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_flick_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_anchor_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_end_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_head_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_cfg +876 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_dev_cfg +882 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_dev_nodes +4549 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_dev_optimized_cfg +460 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_nodes +4450 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_optimized_cfg +448 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_standard_dev_nodes +1939 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_manager_update_parallel_standard_dev_optimized_cfg +117 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_hold_tick_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_cfg +94 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_dev_cfg +100 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_fast_dev_nodes +329 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_fast_dev_optimized_cfg +46 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_fast_nodes +230 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_fast_optimized_cfg +34 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_standard_dev_nodes +121 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_play_tap_initialize_standard_dev_optimized_cfg +17 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_directional_flick_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_flick_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_anchor_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_end_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_head_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_hold_tick_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_cfg +867 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_dev_cfg +891 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_fast_dev_nodes +3141 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_fast_dev_optimized_cfg +474 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_fast_nodes +2781 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_fast_optimized_cfg +426 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_standard_dev_nodes +1623 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_tap_preprocess_standard_dev_optimized_cfg +287 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_cfg +286 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_dev_cfg +292 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_dev_nodes +870 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_dev_optimized_cfg +104 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_nodes +771 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_optimized_cfg +92 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_standard_dev_nodes +438 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_standard_dev_optimized_cfg +40 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_cfg +751 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_dev_cfg +757 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_dev_nodes +4211 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_dev_optimized_cfg +421 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_nodes +4112 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_optimized_cfg +409 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_standard_dev_nodes +1713 -0
- sonolus_py-0.10.4/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_standard_dev_optimized_cfg +90 -0
- sonolus_py-0.10.4/tests/regressions/test_project.py +164 -0
- sonolus_py-0.10.4/tests/script/conftest.py +239 -0
- sonolus_py-0.10.4/tests/script/test_assert.py +219 -0
- sonolus_py-0.10.4/uv.lock +912 -0
- sonolus_py-0.10.2/PKG-INFO +0 -14
- sonolus_py-0.10.2/docs/changelog/index.md +0 -42
- sonolus_py-0.10.2/pyproject.toml +0 -77
- sonolus_py-0.10.2/scripts/generate.py +0 -89
- sonolus_py-0.10.2/scripts/runtimes/Engine/Tutorial/Blocks.json +0 -315
- sonolus_py-0.10.2/scripts/runtimes/Functions.json +0 -3232
- sonolus_py-0.10.2/scripts/runtimes/Level/Play/Blocks.json +0 -926
- sonolus_py-0.10.2/scripts/runtimes/Level/Preview/Blocks.json +0 -347
- sonolus_py-0.10.2/scripts/runtimes/Level/Watch/Blocks.json +0 -792
- sonolus_py-0.10.2/sonolus/build/cli.py +0 -241
- sonolus_py-0.10.2/sonolus/build/dev_server.py +0 -326
- sonolus_py-0.10.2/sonolus/build/engine.py +0 -443
- sonolus_py-0.10.2/sonolus/script/array.py +0 -346
- sonolus_py-0.10.2/sonolus/script/containers.py +0 -639
- sonolus_py-0.10.2/sonolus/script/debug.py +0 -237
- sonolus_py-0.10.2/sonolus/script/effect.py +0 -254
- sonolus_py-0.10.2/sonolus/script/internal/context.py +0 -532
- sonolus_py-0.10.2/sonolus/script/particle.py +0 -254
- sonolus_py-0.10.2/sonolus/script/project.py +0 -147
- sonolus_py-0.10.2/sonolus/script/sprite.py +0 -500
- sonolus_py-0.10.2/sonolus/script/stream.py +0 -655
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_directional_flick_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_flick_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_anchor_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_end_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_head_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_cfg +0 -888
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_dev_cfg +0 -894
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_dev_nodes +0 -4520
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_dev_optimized_cfg +0 -464
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_nodes +0 -4464
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_fast_optimized_cfg +0 -449
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_standard_dev_nodes +0 -1923
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_manager_update_parallel_standard_dev_optimized_cfg +0 -119
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_hold_tick_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_cfg +0 -106
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_dev_cfg +0 -112
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_fast_dev_nodes +0 -300
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_fast_dev_optimized_cfg +0 -50
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_fast_nodes +0 -244
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_fast_optimized_cfg +0 -35
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_standard_dev_nodes +0 -105
- sonolus_py-0.10.2/tests/regressions/data/pydori_play_tap_initialize_standard_dev_optimized_cfg +0 -19
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_directional_flick_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_flick_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_anchor_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_end_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_head_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_hold_tick_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_cfg +0 -879
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_dev_cfg +0 -903
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_fast_dev_nodes +0 -3112
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_fast_dev_optimized_cfg +0 -478
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_fast_nodes +0 -2795
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_fast_optimized_cfg +0 -427
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_standard_dev_nodes +0 -1607
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_tap_preprocess_standard_dev_optimized_cfg +0 -289
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_cfg +0 -298
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_dev_cfg +0 -304
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_dev_nodes +0 -841
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_dev_optimized_cfg +0 -108
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_nodes +0 -785
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_fast_optimized_cfg +0 -93
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_standard_dev_nodes +0 -422
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_standard_dev_optimized_cfg +0 -42
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_cfg +0 -763
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_dev_cfg +0 -769
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_dev_nodes +0 -4182
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_dev_optimized_cfg +0 -425
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_nodes +0 -4126
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_fast_optimized_cfg +0 -410
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_standard_dev_nodes +0 -1697
- sonolus_py-0.10.2/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_standard_dev_optimized_cfg +0 -92
- sonolus_py-0.10.2/tests/regressions/test_project.py +0 -160
- sonolus_py-0.10.2/tests/script/conftest.py +0 -217
- sonolus_py-0.10.2/tests/script/test_assert.py +0 -65
- sonolus_py-0.10.2/uv.lock +0 -912
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/.gitattributes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/.github/workflows/publish.yaml +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/.gitignore +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/.python-version +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/.run/Python tests in tests.run.xml +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/LICENSE +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/README.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/doc_stubs/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/doc_stubs/builtins.pyi +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/doc_stubs/math.pyi +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/doc_stubs/num.pyi +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/doc_stubs/random.pyi +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/doc_stubs/typing.pyi +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/CNAME +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/builtins.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/cli.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/constructs.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/index.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/overview.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/project.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/resources.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/concepts/types.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/bucket.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/coming-soon.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/effect.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/index.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/particle.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/play.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/project-structure.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/screen.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/setup.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/skin.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/ui.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/guides/usage.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/index.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/builtins.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/index.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/math.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/random.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.archetype.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.array.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.array_like.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.bucket.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.containers.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.debug.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.easing.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.effect.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.engine.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.globals.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.instruction.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.interval.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.iterator.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.level.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.maybe.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.metadata.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.num.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.options.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.particle.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.printing.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.project.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.quad.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.record.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.runtime.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.sprite.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.stream.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.text.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.timing.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.transform.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.ui.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.values.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/sonolus.script.vec.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/docs/reference/typing.md +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/mkdocs.yml +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/blocks.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/excepthook.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/finalize.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/interpret.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/ir.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/mode.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/node.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/ops.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/allocate.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/constant_evaluation.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/copy_coalesce.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/dead_code.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/dominance.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/flow.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/inlining.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/liveness.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/optimize.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/passes.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/simplify.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/optimize/ssa.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/place.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/utils.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/backend/visitor.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/build/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/build/collection.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/build/compile.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/build/level.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/build/node.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/build/project.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/py.typed +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/archetype.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/array_like.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/bucket.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/easing.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/engine.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/globals.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/instruction.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/builtin_impls.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/callbacks.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/constant.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/descriptor.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/dict_impl.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/error.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/generic.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/impl.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/introspection.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/math_impls.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/native.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/random.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/range.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/simulation_context.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/transient.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/tuple_impl.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/internal/value.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/interval.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/iterator.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/level.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/maybe.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/metadata.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/num.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/options.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/pointer.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/printing.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/quad.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/record.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/runtime.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/text.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/timing.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/transform.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/ui.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/values.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/sonolus/script/vec.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/level.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/buckets.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/connector.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/effect.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/layer.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/layout.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/note.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/options.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/particle.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/skin.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/stage.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/streams.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/lib/ui.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/connector.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/event.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/input.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/mode.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/note.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/play/stage.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/connector.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/event.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/layout.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/mode.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/note.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/preview/stage.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/project.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/framework.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/instructions.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/intro.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/mode.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/navigate.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/painting.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/phases.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/preprocess.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/tutorial/update.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/connector.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/event.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/mode.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/note.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/stage.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/test_projects/pydori/watch/update_spawn.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/conftest.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_directional_flick_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_flick_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_anchor_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_connector_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_end_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_head_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_manager_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_hold_tick_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_initialize_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_initialize_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_initialize_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_note_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_sim_line_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_stage_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_tap_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_initialize_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_initialize_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_initialize_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_initialize_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_initialize_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_should_spawn_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_should_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_should_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_should_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_should_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_spawn_order_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_spawn_order_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_spawn_order_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_spawn_order_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_spawn_order_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_touch_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_touch_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_touch_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_touch_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_touch_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_sequential_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_sequential_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_sequential_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_play_unscored_note_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_directional_flick_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_flick_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_anchor_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_end_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_head_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_hold_tick_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_bpm_change_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_hold_connector_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_note_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_sim_line_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_stage_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_timescale_change_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_preview_unscored_note_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_preview_tap_render_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_fast_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_fast_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_standard_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_standard_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_navigate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_fast_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_fast_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_standard_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_standard_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_fast_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_fast_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_standard_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_standard_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_tutorial_global_update_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_directional_flick_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_flick_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_fast_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_fast_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_standard_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_standard_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_global_update_spawn_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_anchor_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_end_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_head_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_hold_tick_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_tap_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_connector_update_sequential_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_hold_manager_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_note_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_scheduled_lane_effect_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_sim_line_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_dev_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_fast_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_fast_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_standard_dev_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_standard_dev_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_stage_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_despawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_despawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_despawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_despawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_despawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_preprocess_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_preprocess_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_preprocess_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_preprocess_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_preprocess_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_spawn_time_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_spawn_time_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_spawn_time_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_spawn_time_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_spawn_time_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_terminate_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_terminate_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_terminate_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_terminate_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_terminate_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_update_parallel_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_update_parallel_fast_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_update_parallel_fast_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_update_parallel_standard_nodes +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/regressions/data/pydori_watch_watch_unscored_note_update_parallel_standard_optimized_cfg +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/__init__.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_array.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_array_map.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_array_set.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_dict.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_flow.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_functions.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_generator.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_genexpr.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_helpers.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_interval.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_match.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_maybe.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_num.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_operator.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_quad.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_random.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_range.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_record.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_super.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_transform.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_tuple.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_values.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_var_array.py +0 -0
- {sonolus_py-0.10.2 → sonolus_py-0.10.4}/tests/script/test_vec.py +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sonolus.py
|
|
3
|
+
Version: 0.10.4
|
|
4
|
+
Summary: Sonolus engine development in Python
|
|
5
|
+
Project-URL: Documentation, https://sonolus.py.qwewqa.xyz/
|
|
6
|
+
Project-URL: Repository, https://github.com/qwewqa/sonolus.py
|
|
7
|
+
Project-URL: Issues, https://github.com/qwewqa/sonolus.py/issues
|
|
8
|
+
Project-URL: Changelog, https://sonolus.py.qwewqa.xyz/changelog/
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Sonolus.py
|
|
14
|
+
Sonolus engine development in Python. See [docs](https://sonolus.py.qwewqa.xyz) for more information.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
### 0.10.4
|
|
2
|
+
|
|
3
|
+
- Fixed the dev server becoming unresponsive after a command syntax error
|
|
4
|
+
|
|
5
|
+
### 0.10.3
|
|
6
|
+
|
|
7
|
+
- Added `--runtime-checks {none,terminate,notify}` to the `dev` and `build` commands to override runtime check
|
|
8
|
+
(e.g. assertion) behavior
|
|
9
|
+
|
|
10
|
+
### 0.10.2
|
|
11
|
+
|
|
12
|
+
- Fixed error with [`Vec2.normalize()`][sonolus.script.vec.Vec2.normalize]
|
|
13
|
+
|
|
14
|
+
### 0.10.1
|
|
15
|
+
|
|
16
|
+
- Assertions are now stripped in release (non-dev) builds
|
|
17
|
+
- Added more assertion checks including bounds checks for arrays
|
|
18
|
+
- Added [`require()`][sonolus.script.debug.require] for assertions not stripped in release builds
|
|
19
|
+
|
|
20
|
+
### 0.10.0
|
|
21
|
+
|
|
22
|
+
- Added `[d]ecode` command to dev server for decoding debug message codes
|
|
23
|
+
- Added `[h]elp` command to dev server
|
|
24
|
+
- Added [`notify()`][sonolus.script.debug.notify] for logging debug messages
|
|
25
|
+
|
|
26
|
+
### 0.9.3
|
|
27
|
+
|
|
28
|
+
- Added support for string use item values in levels
|
|
29
|
+
|
|
30
|
+
### 0.9.2
|
|
31
|
+
|
|
32
|
+
- Fixed dev server sometimes not exiting without further input upon a keyboard interrupt
|
|
33
|
+
|
|
34
|
+
### 0.9.1
|
|
35
|
+
|
|
36
|
+
- Added project urls
|
|
37
|
+
|
|
38
|
+
### 0.9.0
|
|
39
|
+
|
|
40
|
+
- New dev server cli with faster rebuild times
|
|
41
|
+
- Performance improvements
|
|
42
|
+
|
|
43
|
+
### 0.8.0
|
|
44
|
+
|
|
45
|
+
- Changelog introduced
|
|
46
|
+
- Fixed some errors when iterating over iterators that are statically determined to be empty
|
|
47
|
+
- Added [`Rect.from_margin(...)`][sonolus.script.quad.Rect.from_margin]
|
|
48
|
+
- Added [`SpriteGroup`][sonolus.script.sprite.SpriteGroup], [`EffectGroup`][sonolus.script.effect.EffectGroup], and
|
|
49
|
+
[`ParticleGroup`][sonolus.script.particle.ParticleGroup] for array-like access to sprites, effects, and particles
|
|
50
|
+
- Added mid-edge properties like [`Quad.mt`][sonolus.script.quad.Quad.mt] and [`Rect.mb`][sonolus.script.quad.Rect.mb]
|
|
51
|
+
- Added a warning when an invalid `item.json` is found when loading resources
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "sonolus.py"
|
|
3
|
+
version = "0.10.4"
|
|
4
|
+
description = "Sonolus engine development in Python"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
|
|
8
|
+
[project.scripts]
|
|
9
|
+
sonolus-py = "sonolus.build.cli:main"
|
|
10
|
+
|
|
11
|
+
[project.urls]
|
|
12
|
+
Documentation = "https://sonolus.py.qwewqa.xyz/"
|
|
13
|
+
Repository = "https://github.com/qwewqa/sonolus.py"
|
|
14
|
+
Issues = "https://github.com/qwewqa/sonolus.py/issues"
|
|
15
|
+
Changelog = "https://sonolus.py.qwewqa.xyz/changelog/"
|
|
16
|
+
|
|
17
|
+
[tool.uv]
|
|
18
|
+
default-groups = ["dev", "docs"]
|
|
19
|
+
|
|
20
|
+
[tool.ruff]
|
|
21
|
+
line-length = 120
|
|
22
|
+
target-version = "py312"
|
|
23
|
+
|
|
24
|
+
[tool.ruff.lint]
|
|
25
|
+
preview = true
|
|
26
|
+
select = ["F", "E", "W", "I", "N", "D", "UP", "YTT", "B", "A", "COM", "C4", "DTZ", "PIE", "PT", "Q", "SLOT", "SIM", "PTH", "PL", "PERF", "FURB", "LOG", "RUF"]
|
|
27
|
+
ignore = ["E402", "D1", "COM812", "PLW2901", "PLW3201", "PLR6301", "PLC0415", "PLR2004", "PLR09", "SIM108", "FURB113", "A005", "B903", "FURB118", "E501", "E741"]
|
|
28
|
+
|
|
29
|
+
[tool.ruff.lint.pydocstyle]
|
|
30
|
+
convention = "google"
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
requires = ["hatchling"]
|
|
34
|
+
build-backend = "hatchling.build"
|
|
35
|
+
|
|
36
|
+
[dependency-groups]
|
|
37
|
+
dev = [
|
|
38
|
+
"uv>=0.9.2",
|
|
39
|
+
"hypothesis>=6.140.3",
|
|
40
|
+
"pre-commit>=4.3.0",
|
|
41
|
+
"pytest-xdist>=3.8.0",
|
|
42
|
+
"pytest>=8.4.2",
|
|
43
|
+
"ruff>=0.14.0",
|
|
44
|
+
"pytest-cov>=7.0.0",
|
|
45
|
+
"tox>=4.31.0",
|
|
46
|
+
"tox-uv>=1.29.0",
|
|
47
|
+
"ty"
|
|
48
|
+
]
|
|
49
|
+
docs = [
|
|
50
|
+
"mkdocs-material>=9.6.21",
|
|
51
|
+
"mkdocs>=1.6.1",
|
|
52
|
+
"mkdocstrings[python]>=0.30.1",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[tool.hatch.build.targets.wheel]
|
|
56
|
+
packages = ["sonolus"]
|
|
57
|
+
|
|
58
|
+
[tool.tox]
|
|
59
|
+
requires = ["tox>=4.19"]
|
|
60
|
+
env_list = ["py312", "py313", "py314"]
|
|
61
|
+
|
|
62
|
+
[tool.tox.env_run_base]
|
|
63
|
+
description = "Run tests"
|
|
64
|
+
passenv = ["CI"]
|
|
65
|
+
deps = [
|
|
66
|
+
"hypothesis>=6.137.1",
|
|
67
|
+
"pytest-xdist>=3.8.0",
|
|
68
|
+
"pytest>=8.3.3",
|
|
69
|
+
]
|
|
70
|
+
uv_python_preference = "managed"
|
|
71
|
+
commands = [["pytest", "tests", "-n", "auto"]]
|
|
72
|
+
|
|
73
|
+
[tool.ty.environment]
|
|
74
|
+
root = ["./sonolus"]
|
|
75
|
+
|
|
76
|
+
[tool.ty.src]
|
|
77
|
+
include = ["sonolus/script"]
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
import importlib
|
|
3
|
+
import json
|
|
4
|
+
import shutil
|
|
5
|
+
import sys
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
from time import perf_counter
|
|
8
|
+
from types import ModuleType
|
|
9
|
+
|
|
10
|
+
from sonolus.backend.excepthook import print_simple_traceback
|
|
11
|
+
from sonolus.backend.optimize.optimize import FAST_PASSES, MINIMAL_PASSES, STANDARD_PASSES
|
|
12
|
+
from sonolus.build.compile import CompileCache
|
|
13
|
+
from sonolus.build.dev_server import run_server
|
|
14
|
+
from sonolus.build.engine import no_gil, package_engine, validate_engine
|
|
15
|
+
from sonolus.build.level import package_level_data
|
|
16
|
+
from sonolus.build.project import build_project_to_collection, get_project_schema
|
|
17
|
+
from sonolus.script.internal.context import ProjectContextState, RuntimeChecks
|
|
18
|
+
from sonolus.script.internal.error import CompilationError
|
|
19
|
+
from sonolus.script.project import BuildConfig, Project
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def find_default_module() -> str | None:
|
|
23
|
+
current_dir = Path.cwd()
|
|
24
|
+
|
|
25
|
+
potential_modules = []
|
|
26
|
+
|
|
27
|
+
project_files = list(current_dir.glob("*/project.py"))
|
|
28
|
+
potential_modules.extend(str(f.parent.relative_to(current_dir)).replace("/", ".") for f in project_files)
|
|
29
|
+
|
|
30
|
+
init_files = list(current_dir.glob("*/__init__.py"))
|
|
31
|
+
potential_modules.extend(str(f.parent.relative_to(current_dir)).replace("/", ".") for f in init_files)
|
|
32
|
+
|
|
33
|
+
potential_modules = [m for m in set(potential_modules) if m]
|
|
34
|
+
|
|
35
|
+
return potential_modules[0] if len(potential_modules) == 1 else None
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def import_project(module_path: str) -> tuple[Project, ModuleType, set[str]] | tuple[None, None, None]:
|
|
39
|
+
try:
|
|
40
|
+
initial_modules = set(sys.modules)
|
|
41
|
+
|
|
42
|
+
current_dir = Path.cwd()
|
|
43
|
+
if current_dir not in sys.path:
|
|
44
|
+
sys.path.insert(0, str(current_dir))
|
|
45
|
+
|
|
46
|
+
project = None
|
|
47
|
+
|
|
48
|
+
try:
|
|
49
|
+
project_module = importlib.import_module(module_path)
|
|
50
|
+
project = getattr(project_module, "project", None)
|
|
51
|
+
except ImportError as e:
|
|
52
|
+
if not str(e).endswith(f"'{module_path}'"):
|
|
53
|
+
# It's an error from the module itself
|
|
54
|
+
raise
|
|
55
|
+
|
|
56
|
+
if project is None:
|
|
57
|
+
try:
|
|
58
|
+
project_module = importlib.import_module(f"{module_path}.project")
|
|
59
|
+
project = getattr(project_module, "project", None)
|
|
60
|
+
except ImportError as e:
|
|
61
|
+
if not str(e).endswith(f"'{module_path}.project'"):
|
|
62
|
+
raise
|
|
63
|
+
|
|
64
|
+
if project is None:
|
|
65
|
+
print(f"Error: No Project instance found in module {module_path} or {module_path}.project")
|
|
66
|
+
return None, None, None
|
|
67
|
+
|
|
68
|
+
return project, project_module, initial_modules
|
|
69
|
+
except Exception as e:
|
|
70
|
+
print(f"Error: Failed to import project: {e}")
|
|
71
|
+
raise e from None
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def build_project(project: Project, build_dir: Path, config: BuildConfig):
|
|
75
|
+
dist_dir = build_dir / "dist"
|
|
76
|
+
levels_dir = dist_dir / "levels"
|
|
77
|
+
shutil.rmtree(dist_dir, ignore_errors=True)
|
|
78
|
+
dist_dir.mkdir(parents=True, exist_ok=True)
|
|
79
|
+
levels_dir.mkdir(parents=True, exist_ok=True)
|
|
80
|
+
|
|
81
|
+
package_engine(project.engine.data, config).write(dist_dir / "engine")
|
|
82
|
+
|
|
83
|
+
for level in project.levels:
|
|
84
|
+
level_path = levels_dir / level.name
|
|
85
|
+
level_path.write_bytes(package_level_data(level.data))
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
def validate_project(project: Project, config: BuildConfig):
|
|
89
|
+
validate_engine(project.engine.data, config)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
def build_collection(
|
|
93
|
+
project: Project,
|
|
94
|
+
build_dir: Path,
|
|
95
|
+
config: BuildConfig | None,
|
|
96
|
+
cache: CompileCache | None = None,
|
|
97
|
+
project_state: ProjectContextState | None = None,
|
|
98
|
+
):
|
|
99
|
+
site_dir = build_dir / "site"
|
|
100
|
+
shutil.rmtree(site_dir, ignore_errors=True)
|
|
101
|
+
site_dir.mkdir(parents=True, exist_ok=True)
|
|
102
|
+
|
|
103
|
+
collection = build_project_to_collection(project, config, cache=cache, project_state=project_state)
|
|
104
|
+
collection.write(site_dir)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
def get_config(args: argparse.Namespace) -> BuildConfig:
|
|
108
|
+
if hasattr(args, "optimize_minimal") and args.optimize_minimal:
|
|
109
|
+
optimization_passes = MINIMAL_PASSES
|
|
110
|
+
elif hasattr(args, "optimize_fast") and args.optimize_fast:
|
|
111
|
+
optimization_passes = FAST_PASSES
|
|
112
|
+
elif hasattr(args, "optimize_standard") and args.optimize_standard:
|
|
113
|
+
optimization_passes = STANDARD_PASSES
|
|
114
|
+
else:
|
|
115
|
+
optimization_passes = FAST_PASSES if args.command == "dev" else STANDARD_PASSES
|
|
116
|
+
|
|
117
|
+
if any(hasattr(args, attr) and getattr(args, attr) for attr in ["play", "watch", "preview", "tutorial"]):
|
|
118
|
+
build_play = hasattr(args, "play") and args.play
|
|
119
|
+
build_watch = hasattr(args, "watch") and args.watch
|
|
120
|
+
build_preview = hasattr(args, "preview") and args.preview
|
|
121
|
+
build_tutorial = hasattr(args, "tutorial") and args.tutorial
|
|
122
|
+
else:
|
|
123
|
+
build_play = build_watch = build_preview = build_tutorial = True
|
|
124
|
+
|
|
125
|
+
return BuildConfig(
|
|
126
|
+
passes=optimization_passes,
|
|
127
|
+
build_play=build_play,
|
|
128
|
+
build_watch=build_watch,
|
|
129
|
+
build_preview=build_preview,
|
|
130
|
+
build_tutorial=build_tutorial,
|
|
131
|
+
runtime_checks=get_runtime_checks(args),
|
|
132
|
+
)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
def get_runtime_checks(args: argparse.Namespace) -> RuntimeChecks:
|
|
136
|
+
if hasattr(args, "runtime_checks") and args.runtime_checks:
|
|
137
|
+
return {
|
|
138
|
+
"none": RuntimeChecks.NONE,
|
|
139
|
+
"terminate": RuntimeChecks.TERMINATE,
|
|
140
|
+
"notify": RuntimeChecks.NOTIFY_AND_TERMINATE,
|
|
141
|
+
}[args.runtime_checks]
|
|
142
|
+
return RuntimeChecks.NOTIFY_AND_TERMINATE if args.command == "dev" else RuntimeChecks.NONE
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
def main():
|
|
146
|
+
parser = argparse.ArgumentParser(description="Sonolus project build and development tools")
|
|
147
|
+
subparsers = parser.add_subparsers(dest="command", required=True)
|
|
148
|
+
|
|
149
|
+
def add_common_arguments(parser):
|
|
150
|
+
optimization_group = parser.add_mutually_exclusive_group()
|
|
151
|
+
optimization_group.add_argument(
|
|
152
|
+
"-O0", "--optimize-minimal", action="store_true", help="Use minimal optimization passes"
|
|
153
|
+
)
|
|
154
|
+
optimization_group.add_argument(
|
|
155
|
+
"-O1", "--optimize-fast", action="store_true", help="Use fast optimization passes"
|
|
156
|
+
)
|
|
157
|
+
optimization_group.add_argument(
|
|
158
|
+
"-O2", "--optimize-standard", action="store_true", help="Use standard optimization passes"
|
|
159
|
+
)
|
|
160
|
+
|
|
161
|
+
parser.add_argument(
|
|
162
|
+
"--runtime-checks",
|
|
163
|
+
choices=["none", "terminate", "notify"],
|
|
164
|
+
help="Runtime error checking mode (default: none for build, notify for dev)",
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
build_components = parser.add_argument_group("build components")
|
|
168
|
+
build_components.add_argument("--play", action="store_true", help="Build play component")
|
|
169
|
+
build_components.add_argument("--watch", action="store_true", help="Build watch component")
|
|
170
|
+
build_components.add_argument("--preview", action="store_true", help="Build preview component")
|
|
171
|
+
build_components.add_argument("--tutorial", action="store_true", help="Build tutorial component")
|
|
172
|
+
|
|
173
|
+
build_parser = subparsers.add_parser("build")
|
|
174
|
+
build_parser.add_argument(
|
|
175
|
+
"module",
|
|
176
|
+
type=str,
|
|
177
|
+
nargs="?",
|
|
178
|
+
help="Module path (e.g., 'module.name'). If omitted, will auto-detect if only one module exists.",
|
|
179
|
+
)
|
|
180
|
+
build_parser.add_argument("--build-dir", type=str, default="./build")
|
|
181
|
+
add_common_arguments(build_parser)
|
|
182
|
+
|
|
183
|
+
dev_parser = subparsers.add_parser("dev")
|
|
184
|
+
dev_parser.add_argument(
|
|
185
|
+
"module",
|
|
186
|
+
type=str,
|
|
187
|
+
nargs="?",
|
|
188
|
+
help="Module path (e.g., 'module.name'). If omitted, will auto-detect if only one module exists.",
|
|
189
|
+
)
|
|
190
|
+
dev_parser.add_argument("--build-dir", type=str, default="./build")
|
|
191
|
+
dev_parser.add_argument("--port", type=int, default=8000)
|
|
192
|
+
add_common_arguments(dev_parser)
|
|
193
|
+
|
|
194
|
+
schema_parser = subparsers.add_parser("schema")
|
|
195
|
+
schema_parser.add_argument(
|
|
196
|
+
"module",
|
|
197
|
+
type=str,
|
|
198
|
+
nargs="?",
|
|
199
|
+
help="Module path (e.g., 'module.name'). If omitted, will auto-detect if only one module exists.",
|
|
200
|
+
)
|
|
201
|
+
|
|
202
|
+
check_parser = subparsers.add_parser("check")
|
|
203
|
+
check_parser.add_argument(
|
|
204
|
+
"module",
|
|
205
|
+
type=str,
|
|
206
|
+
nargs="?",
|
|
207
|
+
help="Module path (e.g., 'module.name'). If omitted, will auto-detect if only one module exists.",
|
|
208
|
+
)
|
|
209
|
+
add_common_arguments(check_parser)
|
|
210
|
+
|
|
211
|
+
args = parser.parse_args()
|
|
212
|
+
|
|
213
|
+
if not args.module:
|
|
214
|
+
default_module = find_default_module()
|
|
215
|
+
if default_module:
|
|
216
|
+
if args.command != "schema":
|
|
217
|
+
print(f"Using auto-detected module: {default_module}")
|
|
218
|
+
args.module = default_module
|
|
219
|
+
else:
|
|
220
|
+
parser.error("Module argument is required when multiple or no modules are found")
|
|
221
|
+
|
|
222
|
+
if no_gil():
|
|
223
|
+
print("Multithreading is enabled")
|
|
224
|
+
if hasattr(sys, "_jit") and sys._jit.is_enabled():
|
|
225
|
+
print("Python JIT is enabled")
|
|
226
|
+
|
|
227
|
+
start_time = perf_counter()
|
|
228
|
+
project, project_module, core_module_names = import_project(args.module)
|
|
229
|
+
end_time = perf_counter()
|
|
230
|
+
if project is None:
|
|
231
|
+
sys.exit(1)
|
|
232
|
+
print(f"Project imported in {end_time - start_time:.2f}s")
|
|
233
|
+
|
|
234
|
+
try:
|
|
235
|
+
if args.command == "build":
|
|
236
|
+
build_dir = Path(args.build_dir)
|
|
237
|
+
start_time = perf_counter()
|
|
238
|
+
config = get_config(args)
|
|
239
|
+
build_project(project, build_dir, config)
|
|
240
|
+
end_time = perf_counter()
|
|
241
|
+
print(f"Project built successfully to '{build_dir.resolve()}' in {end_time - start_time:.2f}s")
|
|
242
|
+
elif args.command == "dev":
|
|
243
|
+
build_dir = Path(args.build_dir)
|
|
244
|
+
config = get_config(args)
|
|
245
|
+
run_server(
|
|
246
|
+
build_dir / "site", args.port, project_module.__name__, core_module_names, build_dir, config, project
|
|
247
|
+
)
|
|
248
|
+
elif args.command == "schema":
|
|
249
|
+
print(json.dumps(get_project_schema(project), indent=2))
|
|
250
|
+
elif args.command == "check":
|
|
251
|
+
start_time = perf_counter()
|
|
252
|
+
config = get_config(args)
|
|
253
|
+
validate_project(project, config)
|
|
254
|
+
end_time = perf_counter()
|
|
255
|
+
print(f"Project validation completed successfully in {end_time - start_time:.2f}s")
|
|
256
|
+
except CompilationError:
|
|
257
|
+
exc_info = sys.exc_info()
|
|
258
|
+
print_simple_traceback(*exc_info)
|