WritingAdditions::Map::Sidedef
Inherits Struct < Value < Object
Structure of a sidedef.
Constructors
new
Class methods
Writes a list of sidedefs given an output io and the sidedefs to write and returns the written directory
Writes sidedefs in my_wad to a file:
my_wad = WAD.read("Path/To/Wad")
WAD::Map::Sidedef.write("Path/To/sidedefs.lmp", my_wad.maps["MyMap"].sidedefs)
Writes a list of sidedefs given an output io and the sidedefs to write and returns the written directory
Writes sidedefs in my_wad to a file:
my_wad = WAD.read("Path/To/Wad")
File.open("Path/To/sidedefs.lmp", "w+") do |file|
WAD::Map::Sidedef.write(my_wad.maps["MyMap"].sidedefs)
end
Instance methods
initialize