22 lines
314 B
C#
22 lines
314 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class EnviroVegetationAge
|
|
{
|
|
public float maxAgeHours = 24f;
|
|
|
|
public float maxAgeDays = 60f;
|
|
|
|
public float maxAgeYears;
|
|
|
|
public bool randomStartAge;
|
|
|
|
public float startAgeinHours;
|
|
|
|
public float birthdayInHours;
|
|
|
|
public bool Loop = true;
|
|
|
|
public int LoopFromGrowStage;
|
|
}
|