Files
2024-11-20 15:21:28 +01:00

60 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using UnityEngine;
using System.Collections;
namespace Gaia.GXC.PolyPixel
{
/// <summary>
/// Description for village exteriors kit
/// </summary>
public class CountrySidePack : MonoBehaviour
{
/// <summary>
/// Publisher name
/// </summary>
/// <returns>Publisher name</returns>
public static string GetPublisherName()
{
return "PolyPixel";
}
/// <summary>
/// Package name
/// </summary>
/// <returns>Package name</returns>
public static string GetPackageName()
{
return "CountrySide Pack";
}
/// <summary>
/// Package image
/// </summary>
/// <returns>Package image</returns>
public static string GetPackageImage()
{
return "CountrySidePack";
}
/// <summary>
/// Package description
/// </summary>
/// <returns>Package description</returns>
public static string GetPackageDescription()
{
return @"CountrySide V2.1 is a starter kit to create your own beautiful & lush nature environment.
Assets include: pre­built cabins, trees (chestnut, maple, beech, etc.), ground plants (flowers, weeds, grass), boulders, terrain textures, and modular fences.
All trees feature a high­fidelity and lower poly version to cater towards your platform.";
}
/// <summary>
/// Package URL
/// </summary>
/// <returns>Package URL</returns>
public static string GetPackageURL()
{
return "https://www.assetstore.unity3d.com/en/#!/content/34483";
}
}
}