07.10.2020

+ Parent, Name and Flags to objects.

~ Improved Matrix calculations
This commit is contained in:
Michel Fedde 2020-10-08 12:25:20 +02:00
parent f865496414
commit 2c00dbd31a
21 changed files with 383 additions and 42 deletions

View file

@ -7,11 +7,11 @@ namespace SM2D.Scene
{
public class Scene : GenericScene<Camera, ItemCollection, I2DShowItem>
{
public DrawBackground Background => (DrawBackground)_background;
public DrawBackground Background => (DrawBackground)_Background;
public Scene()
{
_background = new DrawBackground(Color4.Black);
_Background = new DrawBackground(Color4.Black);
}
}
}