comment
This commit is contained in:
parent
43eff6e326
commit
263e197f32
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ type Tilemap struct {
|
|||
Disabled
|
||||
Hidden
|
||||
Map map[image.Point]Tile // tilespace coordinate -> tile
|
||||
Ersatz bool // "fake wall"
|
||||
Ersatz bool // disables collisions ("fake wall")
|
||||
Offset image.Point // world coordinates
|
||||
Sheet Sheet
|
||||
ZOrder
|
||||
|
|
|
@ -29,7 +29,7 @@ var (
|
|||
// But Wall is still responsible for collisions.
|
||||
type Wall struct {
|
||||
ID
|
||||
Ersatz bool // fake wall - disables collisions
|
||||
Ersatz bool // disables collisions ("fake wall")
|
||||
Offset image.Point // offset the whole wall
|
||||
Sheet Sheet
|
||||
UnitOffset image.Point // drawing offset
|
||||
|
|
Loading…
Reference in a new issue