33 lines
884 B
C#
33 lines
884 B
C#
using UnityEngine;
|
|
|
|
namespace Gaia.GXC.PolyPixel
|
|
{
|
|
public class CountrySidePack : MonoBehaviour
|
|
{
|
|
public static string GetPublisherName()
|
|
{
|
|
return "PolyPixel";
|
|
}
|
|
|
|
public static string GetPackageName()
|
|
{
|
|
return "CountrySide Pack";
|
|
}
|
|
|
|
public static string GetPackageImage()
|
|
{
|
|
return "CountrySidePack";
|
|
}
|
|
|
|
public static string GetPackageDescription()
|
|
{
|
|
return "CountrySide V2.1 is a starter kit to create your own beautiful & lush nature environment.\r\n\r\nAssets include: pre\u00adbuilt cabins, trees (chestnut, maple, beech, etc.), ground plants (flowers, weeds, grass), boulders, terrain textures, and modular fences. \r\n\r\nAll trees feature a high\u00adfidelity and lower poly version to cater towards your platform.";
|
|
}
|
|
|
|
public static string GetPackageURL()
|
|
{
|
|
return "https://www.assetstore.unity3d.com/en/#!/content/34483";
|
|
}
|
|
}
|
|
}
|