[SOLVED] Older versions of Amory

Good day Armory Community. I have a question, I want to download older version of Armory preferebly Amory SDK 2021 or early 2022 release, where do I find it? Any links will be appropriated.

Hi, you can find old SDK versions down to SDK 19.02 on Github: https://github.com/armory3d/armsdk/tags.

Do NOT use the download button on GitHub, since this does not include required submodules! Instead, use Git directly:

git clone --depth 1 --branch <tag_name> --recursive https://github.com/armory3d/armsdk.git

Replace <tag_name> by the tag, e.g. 21.11 for the 2021.11 SDK.

--depth 1 will reduce the download size as Git only downloads the state at that specific version. If you omit it, Git will download the entire version history instead.

--recursive tells Git to download all required submodules.

3 Likes

Thank you, it worked