Class SpawnProperties
Handles special properties of spawning an item.
public class SpawnProperties
- Inheritance
-
SpawnProperties
- Inherited Members
- Extension Methods
Properties
DynamicSpawnPoints
Gets or sets a List<T> of possible dynamic spawn points.
public List<DynamicSpawnPoint> DynamicSpawnPoints { get; set; }
Property Value
Limit
Gets or sets a value indicating how many of the item can be spawned when the round starts.
public uint Limit { get; set; }
Property Value
LockerSpawnPoints
Gets or sets a List<T> of possible locker-based spawn points.
public List<LockerSpawnPoint> LockerSpawnPoints { get; set; }
Property Value
RoleSpawnPoints
Gets or sets a List<T> of possible role-based spawn points.
public List<RoleSpawnPoint> RoleSpawnPoints { get; set; }
Property Value
RoomSpawnPoints
Gets or sets a List<T> of possible room-based spawn points.
public List<RoomSpawnPoint> RoomSpawnPoints { get; set; }
Property Value
StaticSpawnPoints
Gets or sets a List<T> of possible static spawn points.
public List<StaticSpawnPoint> StaticSpawnPoints { get; set; }
Property Value
Methods
Count()
Counts how many spawn points are in this instance.
public int Count()
Returns
- int
How many spawn points there are.