summaryrefslogtreecommitdiff
path: root/options/dataset_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'options/dataset_options.py')
-rw-r--r--options/dataset_options.py13
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,