lighttroupe/luz

View on GitHub
engine/plugins/actor_effects/repeat-vertical.luz.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ActorEffectRepeatVertical < ActorEffect
    title                "Repeat Vertical"
    description "Draws actor twice, once normally and once flipped vertically."

    category :child_producer

    def render
        # Top
        yield :child_index => 0, :total_children => 2

        # Bottom
        with_scale(1, -1) {
            yield :child_index => 1, :total_children => 2
        }
    end
end