WaveEngine.Components.Toolkit.TextComponent.RemoveAll C# (CSharp) Méthode

RemoveAll() public méthode

Removes all.
public RemoveAll ( ) : void
Résultat void
        public void RemoveAll()
        {
            foreach (var mesh in this.meshes)
            {
                this.RenderManager.GraphicsDevice.DestroyVertexBuffer(mesh.VertexBuffer);
            }

            this.charInfoList.Clear();
            this.meshes.Clear();
        }