This commit is contained in:
pharan 2017-06-11 08:22:39 +08:00
commit 27d5f8df6a

View File

@ -35,7 +35,7 @@ namespace Spine {
public class VertexAttachment : Attachment {
static int nextID = 0;
internal int id = (nextID++ & 65535) << 11;
internal readonly int id = (nextID++ & 65535) << 11;
internal int[] bones;
internal float[] vertices;
internal int worldVerticesLength;