Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
## [6.0.0-pre.3] - 2021-05-17
### Changed
- Update dependency version
  • Loading branch information
Unity Technologies committed May 17, 2021
1 parent 0d13fc3 commit 6b52a46
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [6.0.0-pre.3] - 2021-05-17
### Changed
- Update dependency version

## [6.0.0-pre.2] - 2021-05-14
### Changed
- Update dependency version
Expand Down
3 changes: 0 additions & 3 deletions Documentation~/PSD-override.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ From Unity 2019.30f1 onwards, you can customize the PSD Importer to import files
## Example SetImporterOverride scripts
### PSDImporterOverride.cs
```
using System.IO;
using UnityEditor.Experimental;
using UnityEditor.Experimental.AssetImporters;
using UnityEngine;
namespace UnityEditor.U2D.PSD
Expand Down
2 changes: 1 addition & 1 deletion Editor/PSDImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ void AutoGenerateSpriteSkinData(SpriteMetaData metaData)
spriteMeshDataController.spriteMeshData = smd;
spriteMeshDataController.OutlineFromAlpha(new OutlineGenerator(), GetDataProvider<ITextureDataProvider>(), 0.05f, 200);
spriteMeshDataController.Triangulate(new Triangulator());
spriteMeshDataController.Subdivide(new Triangulator(), 0.25f);
spriteMeshDataController.Subdivide(new Triangulator(), 0.25f, 0);
spriteMeshDataController.CalculateWeights(new BoundedBiharmonicWeightsGenerator(), null, 0.01f);
spriteMeshDataController.SortTrianglesByDepth();

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.unity.2d.psdimporter",
"version": "6.0.0-pre.2",
"version": "6.0.0-pre.3",
"unity": "2021.2",
"displayName": "2D PSD Importer",
"description": "A ScriptedImporter for importing Adobe Photoshop PSB (Photoshop Big) file format. The ScriptedImporter is currently targeted for users who wants to create multi Sprite character animation using Unity 2D Animation Package.\n\nDocumentation for v5.0 is currently being updated.",
Expand All @@ -11,19 +11,19 @@
],
"category": "2D",
"dependencies": {
"com.unity.2d.animation": "6.0.1",
"com.unity.2d.common": "6.0.0-pre.2",
"com.unity.2d.animation": "7.0.0-pre.2",
"com.unity.2d.common": "6.0.0-pre.3",
"com.unity.2d.sprite": "1.0.0"
},
"relatedPackages": {
"com.unity.2d.psdimporter.tests": "6.0.0-pre.2"
"com.unity.2d.psdimporter.tests": "6.0.0-pre.3"
},
"upmCi": {
"footprint": "32632cb9b68960414b425492897adbf12bfe1e04"
"footprint": "690edb26ee15ca0820923327fcfe7cdce55471cc"
},
"repository": {
"url": "https://github.cds.internal.unity3d.com/unity/2d.git",
"type": "git",
"revision": "cca7970f1452a4da6d2bfdccaf406b7980c4de6f"
"revision": "c86c46a25eac9ced170843924a73ec17abb5e115"
}
}

0 comments on commit 6b52a46

Please sign in to comment.