fixing rendering system and main script to align with new repo changes

This commit is contained in:
Arec
2021-11-09 07:15:07 -08:00
parent 5799d095d9
commit a07050a748
4 changed files with 50 additions and 427 deletions

View File

@@ -1,8 +1,11 @@
import sys
sys.path.append('../../../')
from src.util import render_env
ALL_OPTIONS = [(v,t) for v in [0,2,4,6,8] for t in [5, 10]]
def render_wrapper(**kwargs):
render_env(**kwargs, options_list=ALL_OPTIONS)
if __name__=='__main__':
import fire
fire.Fire(render_env)
fire.Fire(render_wrapper)