Work-in-progress, allowing multiple users to collaborate on the same Houdini scene in real time.
Run the following in a Command Prompt:
:: Change the path to your Houdini user directory if needed
set "HOUDINI_PATH=%USERPROFILE%\Documents\houdini21.0"
set "PACKAGES_PATH=%HOUDINI_PATH%\packages"
:: Clone the repository
mkdir "%PACKAGES_PATH%"
cd "%PACKAGES_PATH%"
git clone https://github.com/oleite/coophou.git
:: Copy the package definition into the packages directory
copy "coophou\coophou.json" "%PACKAGES_PATH%\coophou.json"
:: Done! Restart Houdini to load the package.Run the following in a terminal:
# Change the path to your Houdini user directory if needed
HOUDINI_PATH="$HOME/houdini21.0"
PACKAGES_PATH="$HOUDINI_PATH/packages"
# Clone the repository
mkdir -p "$PACKAGES_PATH"
cd "$PACKAGES_PATH"
git clone https://github.com/oleite/coophou.git
# Copy the package definition into the packages directory
cp coophou/coophou.json "$PACKAGES_PATH/coophou.json"
# Done! Restart Houdini to load the package.To start the server, run:
python -m coophou.server
For testing, you can use this helper to launch side-by-side Houdini sessions:
python scripts/launchClients.py --sessions 2