PlantHolderVisualizer component system refactor (#10091)

* 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.
This commit is contained in:
Steven K
2022-07-30 19:18:49 -07:00
committed by GitHub
parent 3365333ba0
commit 68a5fcb7f8
9 changed files with 111 additions and 117 deletions

View File

@@ -0,0 +1,11 @@
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;
}