diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-07-27 18:07:32 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-07-27 18:07:32 +0200 |
| commit | e51a822f7257fdc06be4dfee9e3aafacd0c07232 (patch) | |
| tree | 3e110351e6c030d11d7da1c7f49dc1022fb269cc /options/dataset_options.py | |
| parent | 1d06b8ee449ed6d80f71892caacad7d4fc764f82 (diff) | |
sequence_step
Diffstat (limited to 'options/dataset_options.py')
| -rw-r--r-- | options/dataset_options.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/options/dataset_options.py b/options/dataset_options.py index 74e6bdc..b1c453a 100644 --- a/options/dataset_options.py +++ b/options/dataset_options.py @@ -246,6 +246,19 @@ class DatasetOptions(BaseOptions): ) self.parser.add_argument( + '--sequence-step', + default=1.0, + type=float, + help='amount to advance sequence after each frame' + ) + + self.parser.add_argument( + '--sequence-playing', + action='store_false', + help='pause sequence iterator' + ) + + self.parser.add_argument( '--recurse-roll', default=0, type=int, |
