ARKBreedingStats.Species.initialize C# (CSharp) Méthode

initialize() public méthode

creates properties that are not created during deserialization. They are set later with the raw-values with the multipliers applied.
public initialize ( ) : void
Résultat void
        public void initialize()
        {
            stats = new List<CreatureStat>();
            for (int s = 0; s < 8; s++)
            {
                stats.Add(new CreatureStat((StatName)s));
            }
        }
Species