Skip to content

Commit

Permalink
Doc update test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-LaCroix committed Nov 3, 2023
1 parent 34b1e34 commit b7216b8
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions modules/Noble.Transition/Dip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,16 @@ transition._type = Noble.Transition.Type.COVER
-- @section Properties

--- Transition properties.
-- @table Noble.Transition.Dip.defaultProperties
-- @number [opt=0] holdTime
-- @tparam [opt=Ease.outInQuad] ease
-- @tparam [opt=Graphics.image.kDitherTypeBayer4x4] dither
-- @tparam Graphics.image panelImage
-- @number [opt=0] x
-- @number [opt=0] y
-- @table Dip.defaultProperties
-- @see Noble.transition
-- @see Noble.Transition.setDefaultProperties
transition.defaultProperties = {
holdTime = 0,
ease = Ease.outInQuad,
dither = Graphics.image.kDitherTypeBayer4x4,
panelImage = nil,
x = 0,
y = 0
holdTime = 0, -- @number[opt=0]
ease = Ease.outInQuad, -- @tparam[opt=Ease.outInQuad]
dither = Graphics.image.kDitherTypeBayer4x4, -- @tparam[opt=Graphics.image.kDitherTypeBayer4x4]
panelImage = nil, -- @tparam Graphics.image
x = 0, -- @number[opt=0]
y = 0 -- @number[opt=0]
}

function transition:setProperties(__arguments)
Expand Down

0 comments on commit b7216b8

Please sign in to comment.