### Minor Changes
#### com.unity.ml-agents (C#)
- Update Barracuda to 1.0.2.
#### ml-agents / ml-agents-envs / gym-unity (Python)
### Bug Fixes
"unity": "2018.4",
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
"dependencies": {
"com.unity.barracuda": "1.0.1"
"com.unity.barracuda": "1.0.2"
}
Try to find the player executable. This seems to vary between Unity versions.
"""
ignored_extension = frozenset([".dll", ".dylib", ".bundle"])
ignored_files = frozenset(["macblas"])
if ext in ignored_extension:
if ext in ignored_extension or filename in ignored_files:
continue
file_path = os.path.join(root, filename)
if os.access(file_path, os.X_OK):