Shader galore
This commit is contained in:
parent
519b7518ff
commit
07685fcd9c
62 changed files with 496 additions and 266 deletions
|
@ -1,14 +1,18 @@
|
|||
/* Generated by MyraPad at 21/12/2020 21:54:47 */
|
||||
/* Generated by MyraPad at 07/01/2021 22:44:41 */
|
||||
using Myra;
|
||||
using Myra.Graphics2D;
|
||||
using Myra.Graphics2D.TextureAtlases;
|
||||
using Myra.Graphics2D.UI;
|
||||
using Myra.Graphics2D.Brushes;
|
||||
|
||||
#if !STRIDE
|
||||
#if MONOGAME || FNA
|
||||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
#else
|
||||
#elif STRIDE
|
||||
using Stride.Core.Mathematics;
|
||||
#else
|
||||
using System.Drawing;
|
||||
using System.Numerics;
|
||||
#endif
|
||||
|
||||
namespace Sledgemapper.UI
|
||||
|
@ -131,7 +135,7 @@ namespace Sledgemapper.UI
|
|||
BtnToolbarTile.Id = "BtnToolbarTile";
|
||||
|
||||
BtnToolbarLine = new ImageTextButton();
|
||||
BtnToolbarLine.Text = " L";
|
||||
BtnToolbarLine.Text = " C";
|
||||
BtnToolbarLine.Width = 40;
|
||||
BtnToolbarLine.Height = 40;
|
||||
BtnToolbarLine.VerticalAlignment = Myra.Graphics2D.UI.VerticalAlignment.Center;
|
||||
|
@ -151,18 +155,28 @@ namespace Sledgemapper.UI
|
|||
BtnToolbarRoom.VerticalAlignment = Myra.Graphics2D.UI.VerticalAlignment.Center;
|
||||
BtnToolbarRoom.Id = "BtnToolbarRoom";
|
||||
|
||||
BtnToolbarDelete = new ImageTextButton();
|
||||
BtnToolbarDelete.Text = " D";
|
||||
BtnToolbarDelete.Width = 40;
|
||||
BtnToolbarDelete.Height = 40;
|
||||
BtnToolbarDelete.VerticalAlignment = Myra.Graphics2D.UI.VerticalAlignment.Center;
|
||||
BtnToolbarDelete.Id = "BtnToolbarDelete";
|
||||
|
||||
var horizontalStackPanel1 = new HorizontalStackPanel();
|
||||
horizontalStackPanel1.Spacing = 5;
|
||||
horizontalStackPanel1.Proportions.Add(new Proportion
|
||||
{
|
||||
Type = Myra.Graphics2D.UI.ProportionType.Auto,
|
||||
});
|
||||
horizontalStackPanel1.VerticalAlignment = Myra.Graphics2D.UI.VerticalAlignment.Top;
|
||||
horizontalStackPanel1.Height = 50;
|
||||
horizontalStackPanel1.VerticalAlignment = Myra.Graphics2D.UI.VerticalAlignment.Center;
|
||||
horizontalStackPanel1.Height = 51;
|
||||
horizontalStackPanel1.Padding = new Thickness(4, 0, 0, 0);
|
||||
horizontalStackPanel1.Background = new SolidBrush("#404040FF");
|
||||
horizontalStackPanel1.Widgets.Add(BtnToolbarTile);
|
||||
horizontalStackPanel1.Widgets.Add(BtnToolbarLine);
|
||||
horizontalStackPanel1.Widgets.Add(BtnToolbarWall);
|
||||
horizontalStackPanel1.Widgets.Add(BtnToolbarRoom);
|
||||
horizontalStackPanel1.Widgets.Add(BtnToolbarDelete);
|
||||
|
||||
GridTiles = new Grid();
|
||||
GridTiles.ColumnSpacing = 8;
|
||||
|
@ -330,6 +344,7 @@ namespace Sledgemapper.UI
|
|||
public ImageTextButton BtnToolbarLine;
|
||||
public ImageTextButton BtnToolbarWall;
|
||||
public ImageTextButton BtnToolbarRoom;
|
||||
public ImageTextButton BtnToolbarDelete;
|
||||
public Grid GridTiles;
|
||||
public Grid GridWalls;
|
||||
public Grid GridOverlays;
|
||||
|
@ -337,4 +352,4 @@ namespace Sledgemapper.UI
|
|||
public Label lblUsername;
|
||||
public Label lblSessionName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue