Files
armorpaint/armorlab/README.md
T

46 lines
1.6 KiB
Markdown
Raw Normal View History

2023-02-08 14:51:54 +01:00
![](https://armorlab.org/img/git.jpg)
armorlab
==============
2024-06-30 21:25:23 +02:00
[ArmorLab](https://armorlab.org) is a software for PBR texture authoring - check out the [manual](https://armorlab.org/manual).
2023-02-08 14:51:54 +01:00
*Note 1: This repository is aimed at developers and may not be stable. Distributed binaries are [paid](https://armorlab.org/download) to help with the project funding. All of the development is happening here in order to make it accessible to everyone. Thank you for support!*
2024-07-07 21:52:40 +02:00
*Note 2: If you are compiling git version of ArmorLab, then you need to have a compiler ([Visual Studio](https://visualstudio.microsoft.com/downloads/) - Windows, [deps](https://github.com/armory3d/armortools/wiki/Linux-Dependencies) - Linux, [Xcode](https://developer.apple.com/xcode/resources/) - macOS / iOS, [Android Studio](https://developer.android.com/studio) - Android) and [git](https://git-scm.com/downloads) installed.*
2023-02-08 14:51:54 +01:00
```bash
2023-02-08 17:21:40 +01:00
git clone --recursive https://github.com/armory3d/armortools
cd armortools/armorlab
2023-12-01 16:48:47 +01:00
git clone https://github.com/armory3d/onnx_bin onnx
2024-07-22 00:23:05 +02:00
# Unpack `models.zip` from https://github.com/armory3d/armorai/releases into `assets/models` using 7-Zip - Extract Here
2023-02-08 14:51:54 +01:00
```
**Windows**
```bash
2024-06-30 21:25:23 +02:00
..\armorcore\make --graphics direct3d11
2023-02-08 14:51:54 +01:00
# Open generated Visual Studio project at `build\ArmorLab.sln`
# Build and run for x64 & release
```
**Linux** *wip - cpu only*
```bash
2024-07-22 00:23:05 +02:00
../armorcore/make --graphics opengl --run
2023-02-08 14:51:54 +01:00
```
**macOS** *wip - apple silicon only*
```bash
2024-06-30 21:25:23 +02:00
../armorcore/make --graphics metal
2023-02-08 14:51:54 +01:00
# Open generated Xcode project at `build/ArmorLab.xcodeproj`
2023-07-11 12:37:15 +02:00
# Set macOS Deployment Target to 13.0
2023-02-08 14:51:54 +01:00
# Build and run
```
**Android** *wip*
```bash
```
**iOS** *wip*
```bash
```