Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.21 KB

gitversion.md

File metadata and controls

37 lines (24 loc) · 1.21 KB

Using Git version

Armory Updater

Navigate to File - User Preferences... - Add-ons - Armory. Before updating, you may need to install Git first. When installing on Windows, select Use Git from the Windows Command Prompt option.

Afterwards, select Update SDK and inspect the command line for details - the process should take just a few seconds. Once done, restart Blender for changes to take effect. If something goes wrong, use Restore SDK button to revert the changes.

Manual clone

  • Install Git.
  • Pick a location for cloning the sdk and open a terminal/command line here.
git clone --recursive https://github.com/armory3d/armsdk
cd armsdk
git submodule foreach --recursive git pull origin master
  • In Blender, navigate to File - User Preferences... - Add-ons - Armory. Uncheck Bundled SDK and set path to the newly cloned armsdk folder.

Updating

cd armsdk
git submodule foreach --recursive git pull origin master
git pull origin master

Going deeper: