Skip to content

Commit dce15fd

Browse files
committed
Added OpenUPM install description and increased version to 1.0.4
1 parent 3c55963 commit dce15fd

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.0.4] - 2021-01-19
8+
### Added
9+
- Dependency for the Unity 2D Sprite in package.json
10+
- Support for OpenUPM
11+
712
## [1.0.3] - 2020-12-28
813
### Added
914
- Support for different import implementations

README.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Aseprite-Importer for Unity
22
![AsepriteImporter Thumbnail](GitHub/AsepriteImporterUnity.png)
33

4+
5+
[![openupm](https://img.shields.io/npm/v/io.tinu.asepriteimporter?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/io.tinu.asepriteimporter/)
6+
47
This package helps you importing [.ase files](https://github.com/aseprite/aseprite/blob/master/docs/ase-file-specs.md) from [aseprite](https://www.aseprite.org/). The reader is fully written in C# which reads the compressed binary file and creates spritesheets, sprites and animations out of it.
58

69
## Features
@@ -11,20 +14,43 @@ This package helps you importing [.ase files](https://github.com/aseprite/asepri
1114
* Creates an animation controller
1215
* New tilemap name rule support (row-col)
1316

17+
![Demo GIF of AsepriteImporter](GitHub/aseprite-importer-demo.gif)
1418

1519
![image](https://user-images.githubusercontent.com/22926212/100529665-2cb66480-322d-11eb-82fa-5729572a75d9.png)
1620
![image](https://user-images.githubusercontent.com/22926212/100529680-57a0b880-322d-11eb-8e8a-e0b48ff0495b.png)
1721
![image](https://user-images.githubusercontent.com/22926212/100529693-7e5eef00-322d-11eb-8d46-5c7e03e958ce.png)
1822

1923

2024
## Install
25+
### OpenUPM
26+
#### Unity Package
27+
OpenUPM lets you install packages more easily by providing a downloadable unity package which will setup the package automatically.
28+
You can find the download on the following link:
29+
30+
[![openupm](https://img.shields.io/npm/v/io.tinu.asepriteimporter?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/io.tinu.asepriteimporter/) https://openupm.com/packages/io.tinu.asepriteimporter/
31+
32+
33+
#### CLI
34+
##### Prerequisites
35+
- [Node.js 12](https://nodejs.org/en/)
36+
- [openupm-cli](https://github.com/openupm/openupm-cli#openupm-cli).
37+
38+
See: https://openupm.com/docs/getting-started.html#installing-openupm-cli
39+
40+
##### OpenUPM CLI Install
41+
42+
```sh
43+
# Go to your Unity project directory
44+
cd YOUR_UNITY_PROJECT_DIR
45+
46+
# Install package: io.tinu.asepriteimporter
47+
openupm add io.tinu.asepriteimporter
48+
```
49+
### Unity
2150
* In Unity open the Package Manager (`Window > Package Manager`).
2251
* In the Package Manager click on the Plus-Icon in the top-left and select `Add package from git URL...`
2352
* Enter the URL of this Repository (`https://github.com/martinhodler/unity-aseprite-importer.git`) and press <kbd>Enter</kbd>
2453

25-
![Demo GIF of AsepriteImporter](GitHub/aseprite-importer-demo.gif)
26-
27-
2854
## License
2955

3056
See LICENSE file.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "io.tinu.asepriteimporter",
33
"displayName": "Aseprite Importer",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"unity": "2019.2",
66
"unityRelease": "0a19",
77
"description": "An aseprite-file importer for unity written in C#, built upon the experimental AssetImporter API.",
8-
"keywords": [ "Experimental", "Importer", "AssetImporter", "Aseprite", "Textures", "Sprites" ],
8+
"keywords": [ "Asset", "Importer", "AssetImporter", "Aseprite", "Textures", "Sprites" ],
99
"category": "Importers",
1010
"dependencies": {
1111
"com.unity.2d.sprite": "1.0.0"

0 commit comments

Comments
 (0)