From ab79c0644313bbff135fa9c34525a87663330289 Mon Sep 17 00:00:00 2001 From: davidroulin Date: Tue, 10 Mar 2015 11:35:54 +0100 Subject: [PATCH] Added missing require Corona SDK was throwing the following error: File: spine-lua/AttachmentLoader.lua Line: 46 Attempt to index global 'MeshAttachment' (a nil value) --- spine-lua/AttachmentLoader.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/spine-lua/AttachmentLoader.lua b/spine-lua/AttachmentLoader.lua index 33b85ed17..a06f31dc8 100644 --- a/spine-lua/AttachmentLoader.lua +++ b/spine-lua/AttachmentLoader.lua @@ -30,6 +30,7 @@ local AttachmentType = require "spine-lua.AttachmentType" local RegionAttachment = require "spine-lua.RegionAttachment" +local MeshAttachment = require "spine-lua.MeshAttachment" local BoundingBoxAttachment = require "spine-lua.BoundingBoxAttachment" local AttachmentLoader = {}