(Component):moveBefore
Move the component before one of it's siblings.
Synopsis
Parameters
siblingstring or Component- Can be an ID of a sibling, or the sibling component itself.
Returns
componentComponent- Returns the caller table, so it can be chained
Examples
local playerComponent = mintmousse.get("player.john")
playerComponent:moveBefore("player.steven")
playerComponent:moveBefore(otherPlayerComponent)