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

33 lines
597 B
C#

using UnityEngine;
namespace Gaia.GXC.GameTexturesCom
{
public class GameTexturesCom : MonoBehaviour
{
public static string GetPublisherName()
{
return "GameTextures.com";
}
public static string GetPackageName()
{
return "Game Textures";
}
public static string GetPackageImage()
{
return "GameTexturesCom";
}
public static string GetPackageDescription()
{
return "GameTextures.com is the most beautiful library of game-ready PBR Materials on the Internet.";
}
public static string GetPackageURL()
{
return "http://www.gametextures.com/";
}
}
}