finally made a decent texture browser

This commit is contained in:
codeimp 2007-11-04 22:19:30 +00:00
parent 432d6362f2
commit 11a10d2402
24 changed files with 711 additions and 112 deletions

View file

@ -56,8 +56,8 @@ namespace CodeImp.DoomBuilder.Interface
brightness.Text = s.Brightness.ToString();
floorname.Text = s.FloorTexture;
ceilingname.Text = s.CeilTexture;
floortex.BackgroundImage = General.Map.Data.GetFlatBitmap(s.FloorTexture);
ceilingtex.BackgroundImage = General.Map.Data.GetFlatBitmap(s.CeilTexture);
General.DisplayZoomedImage(floortex, General.Map.Data.GetFlatBitmap(s.FloorTexture));
General.DisplayZoomedImage(ceilingtex, General.Map.Data.GetFlatBitmap(s.CeilTexture));
// Show the whole thing
this.Show();