module DXRuby::Tiled::DiagonallyFlippedTile

Public Instance Methods

adjusted_offset_y() click to toggle source
# File lib/dxruby_tiled/tile.rb, line 133
def adjusted_offset_y
  @tile.adjusted_offset_y + (@tile.height - @tile.width) / 2
end
height() click to toggle source
# File lib/dxruby_tiled/tile.rb, line 123
def height; @tile.width ; end
offset_x() click to toggle source
# File lib/dxruby_tiled/tile.rb, line 125
def offset_x
  @tile.offset_x + (@tile.height - @tile.width) / 2
end
offset_y() click to toggle source
# File lib/dxruby_tiled/tile.rb, line 129
def offset_y
  @tile.offset_y + (@tile.height - @tile.width) / 2
end
width() click to toggle source
# File lib/dxruby_tiled/tile.rb, line 122
def width ; @tile.height; end