Files
armorpaint/paint/readme.md
T

49 lines
1.6 KiB
Markdown
Raw Normal View History

2023-02-08 14:30:18 +01:00
![](https://armorpaint.org/img/git.jpg)
armorpaint
==============
[ArmorPaint](https://armorpaint.org) is a software for 3D PBR texture painting - check out the [manual](https://armorpaint.org/manual).
*Note 1: This repository is aimed at developers and may not be stable. Distributed binaries are [paid](https://armorpaint.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-31 18:33:43 +02:00
*Note 2: If you are compiling git version of ArmorPaint, then you need to have a compiler ([Visual Studio with clang tools](https://visualstudio.microsoft.com/downloads/) - Windows, [clang + dependencies](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:30:18 +01:00
```bash
2024-11-10 22:18:01 +01:00
git clone https://github.com/armory3d/armortools
2025-08-07 14:58:38 +02:00
cd armortools/paint
2023-02-08 14:30:18 +01:00
```
2024-09-19 17:14:16 +02:00
**Windows (x64)**
2023-02-08 14:30:18 +01:00
```bash
2025-03-11 21:10:29 +01:00
..\base\make
2023-02-08 14:30:18 +01:00
# Open generated Visual Studio project at `build\ArmorPaint.sln`
2024-07-31 18:33:43 +02:00
# Build and run
2023-02-08 14:30:18 +01:00
```
2024-09-19 17:14:16 +02:00
**Linux (x64)**
2023-02-08 14:30:18 +01:00
```bash
2025-03-11 21:10:29 +01:00
../base/make --run
2023-02-08 14:30:18 +01:00
```
2024-09-19 17:14:16 +02:00
**macOS (arm64)**
2023-02-08 14:30:18 +01:00
```bash
2025-03-11 21:10:29 +01:00
../base/make
2023-02-08 14:30:18 +01:00
# Open generated Xcode project at `build/ArmorPaint.xcodeproj`
# Build and run
```
2024-09-19 17:14:16 +02:00
**Android (arm64)** *wip*
2023-02-08 14:30:18 +01:00
```bash
2025-03-11 21:10:29 +01:00
../base/make --target android
2023-02-08 14:30:18 +01:00
# Open generated Android Studio project at `build/ArmorPaint`
# Build for device
```
2024-09-19 17:14:16 +02:00
**iOS (arm64)** *wip*
2023-02-08 14:30:18 +01:00
```bash
2025-03-11 21:10:29 +01:00
../base/make --target ios
2023-02-08 14:30:18 +01:00
# Open generated Xcode project `build/ArmorPaint.xcodeproj`
2024-07-31 18:33:43 +02:00
# Build for device
2023-02-08 14:30:18 +01:00
```