Created
August 20, 2016 21:51
-
-
Save qiuwch/58e0bab843eaacd7d22e95fc560af888 to your computer and use it in GitHub Desktop.
A script to install unrealcv plugin to UE4 project or UE4 engine.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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