* Converted PlantHolderVisualizer to component and system. * Cleaned up Botany folder. * Converted initialization of HydroTrayVisualizer under PlantHolderVisualizerSystem to it's own GenericVisualizer. * Cleaned up hydro_tray.yml.
12 lines
266 B
C#
12 lines
266 B
C#
namespace Content.Client.Botany.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class PotencyVisualsComponent : Component
|
|
{
|
|
[DataField("minimumScale")]
|
|
public float MinimumScale = 0.5f;
|
|
|
|
[DataField("maximumScale")]
|
|
public float MaximumScale = 1.5f;
|
|
}
|