浏览代码

removed private

/validation-tool
Wesley Mareovich Smith 3 年前
当前提交
8379f309
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 10
      com.unity.perception/Editor/Character/CharacterToolingUI.cs

10
com.unity.perception/Editor/Character/CharacterToolingUI.cs


public class CharacterToolingUI : EditorWindow
{
private static string[] toolbarNames = null;
static string[] toolbarNames = null;
public Object keypointTemplate;
Object keypointTemplate;
GameObject selection = null;
int toolbarSelection = 0;

string status = "Unknown";
private void OnSelectionChange()
void OnSelectionChange()
private void OnInspectorUpdate()
void OnInspectorUpdate()
{
Repaint();
selection = Selection.activeGameObject;

window.Show();
}
private void OnGUI()
void OnGUI()
{
if (selection != null && selection.GetType() == typeof(GameObject))
{

正在加载...
取消
保存