mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-26 17:02:53 +08:00
47 lines
999 B
C#
47 lines
999 B
C#
using CodeWalker.GameFiles;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeWalker.Project.Panels
|
|
{
|
|
public partial class EditYnvPolyPanel : ProjectPanel
|
|
{
|
|
public ProjectForm ProjectForm;
|
|
public YnvPoly YnvPoly { get; set; }
|
|
|
|
//private bool populatingui = false;
|
|
|
|
public EditYnvPolyPanel(ProjectForm projectForm)
|
|
{
|
|
ProjectForm = projectForm;
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetYnvPoly(YnvPoly ynvPoly)
|
|
{
|
|
YnvPoly = ynvPoly;
|
|
Tag = ynvPoly;
|
|
UpdateFormTitle();
|
|
UpdateYnvUI();
|
|
}
|
|
|
|
private void UpdateFormTitle()
|
|
{
|
|
Text = "Nav Poly " + YnvPoly.Index.ToString();
|
|
}
|
|
|
|
|
|
public void UpdateYnvUI()
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|