This commit is contained in:
2025-06-09 00:11:54 +08:00
parent d8c6eb0bd6
commit c773a6bb8d
11207 changed files with 48929 additions and 304 deletions

View File

@@ -0,0 +1,44 @@
/* INFINITY CODE */
/* https://infinity-code.com */
using System;
using System.Collections.Generic;
using UnityEngine;
namespace InfinityCode.RealWorldTerrain
{
/// <summary>
/// Basic settings generation of terrain.
/// </summary>
[Serializable]
public partial class RealWorldTerrainPrefsBase
{
/// <summary>
/// List of points of interest.
/// </summary>
public List<RealWorldTerrainPOI> POI;
public string riverEngine = "Built-In";
public Material riverMaterial;
#if RAM2019
public LakePolygonProfile ramAreaProfile;
public SplineProfile ramSplineProfile;
#endif
/// <summary>
/// Title
/// </summary>
public string title;
#if VEGETATION_STUDIO || VEGETATION_STUDIO_PRO
#if !VEGETATION_STUDIO_PRO
public AwesomeTechnologies.VegetationPackage vegetationStudioPackage;
#else
public AwesomeTechnologies.VegetationSystem.VegetationPackagePro vegetationStudioPackage;
#endif
#endif
}
}