mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
10 lines
287 B
Python
10 lines
287 B
Python
from ray.rllib.env.wrappers.unity3d_env import Unity3DEnv as UE
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.env.unity3d_env.Unity3DEnv",
|
|
new="ray.rllib.env.wrappers.unity3d_env.Unity3DEnv",
|
|
error=False,
|
|
)
|
|
|
|
Unity3DEnv = UE
|