diff --git a/hip/examples/biomes.hipnc b/hip/examples/biomes.hipnc index 066dd19..1f789bf 100644 Binary files a/hip/examples/biomes.hipnc and b/hip/examples/biomes.hipnc differ diff --git a/otls/OBJ_TaleSpire_Terrain.hdanc b/otls/OBJ_TaleSpire_Terrain.hdanc index c210cb0..401ef43 100644 Binary files a/otls/OBJ_TaleSpire_Terrain.hdanc and b/otls/OBJ_TaleSpire_Terrain.hdanc differ diff --git a/scripts/python/htg/nodes/OBJ_TaleSpire_Terrain.py b/scripts/python/htg/nodes/OBJ_TaleSpire_Terrain.py index 93e5468..b068f0e 100644 --- a/scripts/python/htg/nodes/OBJ_TaleSpire_Terrain.py +++ b/scripts/python/htg/nodes/OBJ_TaleSpire_Terrain.py @@ -149,6 +149,11 @@ def write_terrain_tiles(node=None): read_node = hou.node(node.path() + '/terrain_tiler/read_terrain_tiles') write_node.parm('execute').pressButton() read_node.parm('reload').pressButton() + biome_data_node = hou.node(node.path() + '/DATA/Biome_info') + try: + biome_data_node.cook(force=True) + except hou.OperationFailed: + pass def cache_uuids(node): diff --git a/setup/README.md b/setup/README.md new file mode 100644 index 0000000..b7ad92e --- /dev/null +++ b/setup/README.md @@ -0,0 +1,9 @@ +The files in this directory are for setup purposes. + +Copy the `packages` directory to your houdini setup directory, likely in `Documents\houdinix.x`, +if there is already a `packages` directory in there it is safe paste it in the same directory, +it should merge the directories. + +You then need to modify the contents of the `HTTGT.json` file inside that `packages` directory +replacing the file path to the path where you installed this toolset to. +It should point to the `packages` directory at the root of the toolset, not the one under `setup` \ No newline at end of file diff --git a/setup/packages/HTTGT.json b/setup/packages/HTTGT.json new file mode 100644 index 0000000..7d765f7 --- /dev/null +++ b/setup/packages/HTTGT.json @@ -0,0 +1,3 @@ +{ + "package_path": "D:/Users//Documents/TaleSpire/Houdini_TaleSpire_Terrain_Generation_Toolset/packages" +} \ No newline at end of file