Skip to content

Commit

Permalink
1.0.2-preview.1 - 2018/12/14
Browse files Browse the repository at this point in the history
@2018.1
  • Loading branch information
ErikMoczi committed Dec 14, 2018
1 parent 35eebbf commit e5d35b1
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 15 deletions.
7 changes: 6 additions & 1 deletion package/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [1.0.2-preview.1] 2018-11-20
### Added
- Fix unassigned variable warning
2 changes: 1 addition & 1 deletion package/Runtime/Mesh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class Mesh : IMesh
internal int insegments; // Number of input segments.
internal int undeads; // Number of input vertices that don't appear in the mesh.
internal int mesh_dim; // Dimension (ought to be 2).
internal int nextras; // Number of attributes per vertex.
internal int nextras = 0; // Number of attributes per vertex.
//internal int eextras; // Number of attributes per triangle.
internal int hullsize; // Number of edges in convex hull.
internal int steinerleft; // Number of Steiner points not yet used.
Expand Down
2 changes: 1 addition & 1 deletion package/Runtime/Topology/DCEL/Face.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static Face()
#endregion

internal int id;
internal int mark;
internal int mark = 0;

internal Point generator;

Expand Down
30 changes: 18 additions & 12 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
{
"name": "com.unity.2d.triangle",
"displayName": "2D Triangle",
"version": "1.0.2-preview",
"unity": "2018.1",
"description": "2D Triangle is an open source library that tessellates shapes into meshes.",
"keywords": ["2d"],
"category": "2D",
"dependencies": {
},
"config": {
"publishtest": true
}
"name": "com.unity.2d.triangle",
"displayName": "2D Triangle",
"version": "1.0.2-preview.1",
"unity": "2018.1",
"description": "2D Triangle is an open source library that tessellates shapes into meshes.",
"keywords": [
"2d"
],
"category": "2D",
"dependencies": {},
"config": {
"publishtest": true
},
"repository": {
"type": "git",
"url": "https://gitlab.cds.internal.unity3d.com/upm-packages/2D/com.unity.2d.triangle.git",
"revision": "423fc407571e50accbef514b920513104aefd775"
}
}
1 change: 1 addition & 0 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
1.0.1-preview.1
1.0.1-preview.2
1.0.2-preview
1.0.2-preview.1

0 comments on commit e5d35b1

Please sign in to comment.