2020-12-11 00:02:13 +00:00
|
|
|
using Kav.Data;
|
2020-12-07 09:30:09 +00:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
|
|
|
namespace Kav
|
|
|
|
{
|
|
|
|
public interface IGBufferDrawable
|
|
|
|
{
|
|
|
|
Vector3 Albedo { get; }
|
|
|
|
float Metallic { get; }
|
|
|
|
float Roughness { get; }
|
|
|
|
|
|
|
|
Texture2D AlbedoTexture { get; }
|
|
|
|
Texture2D NormalTexture { get; }
|
|
|
|
Texture2D MetallicRoughnessTexture { get; }
|
|
|
|
}
|
|
|
|
}
|