Go2Py_SIM/Go2Py/sim/gym/__init__.py

12 lines
240 B
Python
Raw Normal View History

2024-02-15 12:15:54 +08:00
import os
2024-05-21 06:45:59 +08:00
MINI_GYM_ROOT_DIR = os.path.join(
os.path.dirname(
os.path.dirname(
os.path.realpath(__file__))),
'..')
2024-02-15 12:15:54 +08:00
print(MINI_GYM_ROOT_DIR)
MINI_GYM_ENVS_DIR = os.path.join(MINI_GYM_ROOT_DIR, 'go_gym', 'envs')