https://github.com/meaf75/unitykritaexporter
With this custom inspector you can easily export your .kra files into supporter krita formats inside unity
https://github.com/meaf75/unitykritaexporter
Last synced: 3 months ago
JSON representation
With this custom inspector you can easily export your .kra files into supporter krita formats inside unity
- Host: GitHub
- URL: https://github.com/meaf75/unitykritaexporter
- Owner: meaf75
- Created: 2022-01-02T15:31:36.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-02T15:38:02.000Z (over 3 years ago)
- Last Synced: 2025-01-09T06:51:29.515Z (4 months ago)
- Language: C#
- Size: 13.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Krita file exporter in unity

## Description
With this custom inspector you can easily export your .kra files into supporter krita formats by selecting the krita file in Unity and the default asset inspector will by replaced by the [KritaEditor.cs](./KritaEditor.cs) custom inspector.## Setup
- Place the [KritaEditor.cs](./KritaEditor.cs) inside an Editor folder inside your project.- Before start you need to set you krita installation path in a variable named "KRITA_INSTALLATION_PATH" inside the [KritaEditor.cs](./KritaEditor.cs).
```cs
// private const string KRITA_INSTALLATION_PATH_EXAMPLE = "C:\\Program Files\\Krita (x64)\bin\\krita.exe";private const string KRITA_INSTALLATION_PATH = "";
```