BasicMapProp is a simple actor used as a jumping off point for making custom props for maps.

This actor by default is a 32x32x32 map unit solid cube that abides by gravity and has the standard MM8BDM visual scale of 2.5.

DECORATE Definition

<aside> 🚨 Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:

actor BasicMapProp
{
    //$Category MM8BDM-Props
    +SOLID
    -NOGRAVITY
    height 32
    radius 16
    scale 2.5
    States
    {
		    Spawn:
		        SKEJ AB 10
		        loop
    }
}

Example


Here is a custom Fire Metool prop that uses the BasicMapProp. It’s been modified from the version that appears on the Robot Museum map to demonstrate this actor as a simple method of creating map props.

actor FireMetMuseumSimple : BasicMapProp
{
	+NOGRAVITY
	+NOINTERACTION
	Scale 1.8
	Translation "4:4=85:85", "216:216=58:58", "227:227=60:60"
	States
	{
		Spawn:
			METF A -1
			stop
	}
}