RealWorldTerrainPrefsBase.Trees.cs 563 B

1234567891011121314151617181920212223242526
  1. /* INFINITY CODE */
  2. /* https://infinity-code.com */
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. namespace InfinityCode.RealWorldTerrain
  6. {
  7. public partial class RealWorldTerrainPrefsBase
  8. {
  9. /// <summary>
  10. /// Density of trees.
  11. /// </summary>
  12. public int treeDensity = 100;
  13. public string treeEngine;
  14. /// <summary>
  15. /// List of tree prefabs.
  16. /// </summary>
  17. public List<GameObject> treePrefabs;
  18. public List<int> vegetationStudioTreeTypes;
  19. }
  20. }