Skip to content

Commit 7c4de4f

Browse files
committed
Fixed small typos and dates.
1 parent 10c0512 commit 7c4de4f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/PackageInfo.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PropertyGroup>
55

66
<Authors>Vicente Penades</Authors>
7-
<Copyright>Copyright (c) 2019 Vicente Penades</Copyright>
7+
<Copyright>Copyright (c) 2020 Vicente Penades</Copyright>
88
<Description>SharpGLTF is a C# library for reading and writing glTF2 3D models</Description>
99

1010
<RepositoryUrl>https://github.com/vpenades/SharpGLTF</RepositoryUrl>

src/SharpGLTF.Toolkit/Geometry/VertexBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ public static implicit operator VertexBuilder<TvG, TvM, TvS>((TvG Geo, TvM Mat)
212212
return new VertexBuilder<TvG, TvM, TvS>(tuple.Geo, tuple.Mat);
213213
}
214214

215-
public static implicit operator VertexBuilder<TvG, TvM, TvS>((TvG Geo, TvS Mat) tuple)
215+
public static implicit operator VertexBuilder<TvG, TvM, TvS>((TvG Geo, TvS Skin) tuple)
216216
{
217-
return new VertexBuilder<TvG, TvM, TvS>(tuple.Geo, tuple.Mat);
217+
return new VertexBuilder<TvG, TvM, TvS>(tuple.Geo, tuple.Skin);
218218
}
219219

220220
public static implicit operator VertexBuilder<TvG, TvM, TvS>(TvG g)

0 commit comments

Comments
 (0)