Difference between revisions of "Sprite:getLayoutParameters"

From GiderosMobile
 
Line 20: Line 20:
 
-- Return a table containing only the computed cellSpacingY of the layout, instead of returning everything
 
-- Return a table containing only the computed cellSpacingY of the layout, instead of returning everything
 
local lp = sprite:getLayoutParameters(true, Sprite.LayoutKeys.cellSpacingY)
 
local lp = sprite:getLayoutParameters(true, Sprite.LayoutKeys.cellSpacingY)
 +
print(lp.cellSpacingY[1], lp.cellSpacingY[2], lp.cellSpacingY[3]) -- three columns grid
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
{{Sprite}}
 
{{Sprite}}

Latest revision as of 14:56, 20 October 2025

Available since: Gideros 2018.9
Class: Sprite

Description

See Sprite:setLayoutParameters for a description of the fields.

(table) = Sprite:getLayoutParameters([mask,layoutKey])

Parameters

mask (bool) enable masking optional
layoutKey (LayoutKeys) the LayoutKeys to querry optional

Return values

Returns (table) table of layout parameters

Example

-- Return a table containing only the computed cellSpacingY of the layout, instead of returning everything
local lp = sprite:getLayoutParameters(true, Sprite.LayoutKeys.cellSpacingY)
print(lp.cellSpacingY[1], lp.cellSpacingY[2], lp.cellSpacingY[3]) -- three columns grid