Class RoomSpawnPoint
Represents a spawn point within a specific room in the game.
public class RoomSpawnPoint : SpawnPoint, IPosition
- Inheritance
-
RoomSpawnPoint
- Implements
- Inherited Members
- Extension Methods
Properties
Chance
Gets or sets the spawn chance.
public override float Chance { get; set; }
Property Value
Name
Gets or sets this spawn point name.
[YamlIgnore]
public override string Name { get; set; }
Property Value
Offset
Gets or sets the offset position within the room where the spawn point is located, relative to the room's origin.
public Vector3 Offset { get; set; }
Property Value
- Vector3
Position
Gets or sets this spawn point position.
[YamlIgnore]
public override Vector3 Position { get; set; }
Property Value
- Vector3
Room
Gets or sets the room type used for this spawn.
public RoomType Room { get; set; }