Files
2026-03-04 10:03:45 +08:00

33 lines
844 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using UnityEngine;
namespace Gaia.GXC.RandomchaosLtd
{
public class DistingoGaiaExtension : MonoBehaviour
{
public static string GetPublisherName()
{
return "Randomchaos Ltd";
}
public static string GetPackageName()
{
return "Distingo - Terrain in Detail";
}
public static string GetPackageImage()
{
return "DistingoGaiaImage";
}
public static string GetPackageDescription()
{
return "Distingo Bringing ever increasing detail to your teerrain.\r\n\r\nAlter terrain splatting distance.\r\nRegulate texture tialing based on distance from the camera.\r\nAlter individual textures:-\r\n Near and Far UV Multipliers\r\n Normal map power\r\n Smoothness\r\n Metallic\r\n";
}
public static string GetPackageURL()
{
return "https://www.assetstore.unity3d.com/#!/content/54737";
}
}
}