From 390f496923b177140b94ab5b7276db6156c79bdc Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Mon, 19 May 2025 18:37:18 +0200 Subject: [PATCH] [monogame] Fixed accidental vertices array re-allocation. Closes #2854. --- spine-monogame/spine-monogame/src/SkeletonRenderer.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/spine-monogame/spine-monogame/src/SkeletonRenderer.cs b/spine-monogame/spine-monogame/src/SkeletonRenderer.cs index a89f820ea..00fe67031 100644 --- a/spine-monogame/spine-monogame/src/SkeletonRenderer.cs +++ b/spine-monogame/spine-monogame/src/SkeletonRenderer.cs @@ -132,7 +132,6 @@ namespace Spine { float attachmentColorR, attachmentColorG, attachmentColorB, attachmentColorA; object textureObject = null; int verticesCount = 0; - float[] vertices = this.vertices; int indicesCount = 0; int[] indices = null; float[] uvs = null;