diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9e85b988..5deeb462 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -153,3 +153,6 @@ v1.11.1 - Make `submitit` optional if not using SLURM - Make blender addons optional if not using relevant assets (rocks/terrain/snowlayer) - Make `bnurbs` CPython module optional and not installed by default + +v1.11.2 +- Fix opengl_gt input file symlink missing \ No newline at end of file diff --git a/infinigen/__init__.py b/infinigen/__init__.py index 31f8ab32..ff0548a6 100644 --- a/infinigen/__init__.py +++ b/infinigen/__init__.py @@ -6,7 +6,7 @@ import logging from pathlib import Path -__version__ = "1.11.1" +__version__ = "1.11.2" def repo_root(): diff --git a/infinigen/tools/process_static_meshes.py b/infinigen/tools/process_static_meshes.py index 835eac7f..f0145b9f 100644 --- a/infinigen/tools/process_static_meshes.py +++ b/infinigen/tools/process_static_meshes.py @@ -40,10 +40,7 @@ ) as f: json.dump(current_json, f) for npz_path in os.listdir(static_mesh_folder): - if ( - npz_path.endswith(".npz") - and not (static_mesh_folder / npz_path).exists() - ): + if npz_path.endswith(".npz"): os.symlink( static_mesh_folder / npz_path, args.target_frames_dir