[csharp] Use explicit primitive declaration.

This commit is contained in:
John 2018-05-17 03:55:35 +08:00 committed by GitHub
parent 0ad0fc4de8
commit df45ae9d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,7 +366,7 @@ namespace Spine {
}
// Queue complete if completed a loop iteration or the animation.
var complete = false;
bool complete = false;
if (entry.loop)
complete = duration == 0 || (trackLastWrapped > entry.trackTime % duration);
else