mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-06-04 02:41:09 +00:00
Added, Script Editor: added "Script Navigator" tab. It shows and allows to open text resources loaded by the editor.
WARNING: because of the large amount of added/modified code, bugs are possible, so backup your resources, save often and report bugs.
This commit is contained in:
parent
36ff694e79
commit
894279b4ba
72 changed files with 4890 additions and 660 deletions
|
@ -17,7 +17,6 @@
|
|||
#region ================== Namespaces
|
||||
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
using CodeImp.DoomBuilder.Controls;
|
||||
|
||||
|
@ -46,7 +45,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
public ScriptEditorForm()
|
||||
{
|
||||
InitializeComponent();
|
||||
editor.Initialize();
|
||||
editor.Initialize(this);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
@ -72,6 +71,12 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
base.Close();
|
||||
}
|
||||
|
||||
//mxd
|
||||
internal void OnReloadResources()
|
||||
{
|
||||
editor.OnReloadResources();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region ================== Events
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue