+ Instance Drawing + Text and Font ~ Made "DrawBackground" forced Background for 2D - DrawEmpty
14 lines
No EOL
265 B
C#
14 lines
No EOL
265 B
C#
using OpenTK.Graphics;
|
|
using SM.Base.Shader;
|
|
using SM.OGL.Texture;
|
|
|
|
namespace SM.Base.Scene
|
|
{
|
|
public class Material
|
|
{
|
|
public TextureBase Texture;
|
|
public Color4 Tint = Color4.White;
|
|
|
|
public IShader Shader = Shaders.Default;
|
|
}
|
|
} |