* World generation (squash) * Test fixes. * command * o * Access cleanup. * Documentation touchups. * Use a prototype serializer for BiomeSelectionComponent * Struct enumerator in SimpleFloorPlanPopulatorSystem * Safety margins around PoissonDiskSampler, cookie acquisition methodologies * Struct enumerating PoissonDiskSampler; internal side * Struct enumerating PoissonDiskSampler: Finish it * Update WorldgenConfigSystem.cs awa --------- Co-authored-by: moonheart08 <moonheart08@users.noreply.github.com> Co-authored-by: 20kdc <asdd2808@gmail.com>
19 lines
496 B
C#
19 lines
496 B
C#
using Content.Server.Worldgen.Systems;
|
|
|
|
namespace Content.Server.Worldgen.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for allowing some objects to load the game world.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(WorldControllerSystem))]
|
|
public sealed class WorldLoaderComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The radius in which the loader loads the world.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)] [DataField("radius")]
|
|
public int Radius = 128;
|
|
}
|
|
|