Browse Source

[lua] Closes #739, forgot math_min/max assignemnts

badlogic 9 năm trước cách đây
mục cha
commit
6eb86fd3a1
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      spine-lua/Skeleton.lua

+ 2 - 0
spine-lua/Skeleton.lua

@@ -40,6 +40,8 @@ local Color = require "spine-lua.Color"
 local setmetatable = setmetatable
 local ipairs = ipairs
 local table_insert = table.insert
+local math_min = math.min
+local math_max = math.max
 
 local Skeleton = {}
 Skeleton.__index = Skeleton