1
0
forked from MTSR/mapserver
mapserver/mapobject/sign.go

23 lines
482 B
Go
Raw Permalink Normal View History

package mapobject
import (
"mapserver/mapobjectdb"
2023-12-29 18:00:11 +03:00
"mapserver/types"
2021-10-12 08:44:07 +03:00
"github.com/minetest-go/mapparser"
)
type SignBlock struct {
Material string
}
2023-12-29 18:00:11 +03:00
func (this *SignBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
2021-10-12 08:44:07 +03:00
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "sign")
o.Attributes["display_text"] = md["text"]
o.Attributes["material"] = this.Material
return o
}