33 lines
597 B
C#
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/";
|
|
}
|
|
}
|
|
}
|