Skip to content

Instantly share code, notes, and snippets.

@qiuwch
Created August 20, 2016 21:51
Show Gist options
  • Select an option

  • Save qiuwch/58e0bab843eaacd7d22e95fc560af888 to your computer and use it in GitHub Desktop.

Select an option

Save qiuwch/58e0bab843eaacd7d22e95fc560af888 to your computer and use it in GitHub Desktop.
A script to install unrealcv plugin to UE4 project or UE4 engine.
folder_name=${PWD##*/}
unrealcv_zip=unrealcv-5c4762b.zip
if [ ${folder_name} = 'plugins' ] || [ ${folder_name} = 'Plugins' ]; then
echo "Download plugin"
wget www.cs.jhu.edu/~qiuwch/unrealcv-plugin/${unrealcv_zip} -c
echo "Extract files from zip"
unzip -q -d unrealcv ${unrealcv_zip}
else
echo "Please run this script in Plugins folder"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment