Skip to content

Instantly share code, notes, and snippets.

@itkr
Created January 31, 2014 17:57
Show Gist options
  • Save itkr/8738749 to your computer and use it in GitHub Desktop.
Save itkr/8738749 to your computer and use it in GitHub Desktop.
local function getCenterPosition(baseNode, childNode)
local baseSize = baseNode:getContentSize()
local childSize = childNode:getContentSize()
return baseSize.width / 2 - childSize.width / 2,
baseSize.height / 2 - childSize.height / 2
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment