488 lines
19 KiB
C#
488 lines
19 KiB
C#
|
using System.Collections.Generic;
|
||
|
using UnityEditor.EditorTools;
|
||
|
using UnityEditor.ShortcutManagement;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UIElements;
|
||
|
|
||
|
using Event = UnityEngine.Event;
|
||
|
|
||
|
namespace UnityEditor.Tilemaps
|
||
|
{
|
||
|
internal class GridPaintPaletteWindow : EditorWindow
|
||
|
{
|
||
|
private static class Styles
|
||
|
{
|
||
|
public static readonly GUIContent selectPaintTarget = EditorGUIUtility.TrTextContent("Select Paint Target");
|
||
|
public static readonly GUIContent selectPalettePrefab = EditorGUIUtility.TrTextContent("Select Palette Prefab");
|
||
|
public static readonly GUIContent selectTileAsset = EditorGUIUtility.TrTextContent("Select Tile Asset");
|
||
|
public static readonly GUIContent unlockPaletteEditing = EditorGUIUtility.TrTextContent("Unlock Palette Editing");
|
||
|
public static readonly GUIContent lockPaletteEditing = EditorGUIUtility.TrTextContent("Lock Palette Editing");
|
||
|
public static readonly GUIContent verticalBrushSplit = EditorGUIUtility.TrTextContent("Vertical Split for Brush Inspector");
|
||
|
public static readonly GUIContent horizontalBrushSplit = EditorGUIUtility.TrTextContent("Horizontal Split for Brush Inspector");
|
||
|
public static readonly GUIContent openTilePalettePreferences = EditorGUIUtility.TrTextContent("Open Tile Palette Preferences");
|
||
|
public static readonly GUIContent openAsFloatingWindow = EditorGUIUtility.TrTextContent("Open Window as/Floating");
|
||
|
public static readonly GUIContent openAsDockableWindow = EditorGUIUtility.TrTextContent("Open Window as/Dockable");
|
||
|
|
||
|
public static readonly GUIContent tilePalette = EditorGUIUtility.TrTextContent("Tile Palette");
|
||
|
}
|
||
|
|
||
|
private static class UIStyles
|
||
|
{
|
||
|
public static readonly string styleSheetPath = "Packages/com.unity.2d.tilemap/Editor/UI/GridPaintPaletteWindow.uss";
|
||
|
public static readonly string ussClassName = "unity-grid-paint-palette-window";
|
||
|
}
|
||
|
|
||
|
private static readonly string k_TilePaletteVerticalBrushSplitPref = "TilePaletteVerticalBrushSplit";
|
||
|
internal static bool tilePaletteVerticalBrushSplit
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return EditorPrefs.GetBool(k_TilePaletteVerticalBrushSplitPref, true);
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
EditorPrefs.SetBool(k_TilePaletteVerticalBrushSplitPref, value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private const float k_ActiveTargetLabelWidth = 90f;
|
||
|
private const float k_ActiveTargetDropdownWidth = 130f;
|
||
|
private const float k_ActiveTargetWarningSize = 20f;
|
||
|
private const float k_MinClipboardHeight = 200f;
|
||
|
private static readonly Vector2 k_MinWindowSize = new Vector2(k_ActiveTargetLabelWidth + k_ActiveTargetDropdownWidth + k_ActiveTargetWarningSize, k_MinClipboardHeight);
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Select", "s")]
|
||
|
[Shortcut("Grid Painting/Select", typeof(TilemapEditorTool.ShortcutContext), KeyCode.S)]
|
||
|
static void GridSelectKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(SelectTool));
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Move", "m")]
|
||
|
[Shortcut("Grid Painting/Move", typeof(TilemapEditorTool.ShortcutContext), KeyCode.M)]
|
||
|
static void GridMoveKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(MoveTool));
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Brush", "b")]
|
||
|
[Shortcut("Grid Painting/Brush", typeof(TilemapEditorTool.ShortcutContext), KeyCode.B)]
|
||
|
static void GridBrushKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(PaintTool));
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Rectangle", "u")]
|
||
|
[Shortcut("Grid Painting/Rectangle", typeof(TilemapEditorTool.ShortcutContext), KeyCode.U)]
|
||
|
static void GridRectangleKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(BoxTool));
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Picker", "i")]
|
||
|
[Shortcut("Grid Painting/Picker", typeof(TilemapEditorTool.ShortcutContext), KeyCode.I)]
|
||
|
static void GridPickerKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(PickingTool));
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Erase", "d")]
|
||
|
[Shortcut("Grid Painting/Erase", typeof(TilemapEditorTool.ShortcutContext), KeyCode.D)]
|
||
|
static void GridEraseKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(EraseTool));
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Fill", "g")]
|
||
|
[Shortcut("Grid Painting/Fill", typeof(TilemapEditorTool.ShortcutContext), KeyCode.G)]
|
||
|
static void GridFillKey()
|
||
|
{
|
||
|
TilemapEditorTool.ToggleActiveEditorTool(typeof(FillTool));
|
||
|
}
|
||
|
|
||
|
static void RotateBrush(GridBrushBase.RotationDirection direction)
|
||
|
{
|
||
|
GridPaintingState.gridBrush.Rotate(direction, GridPaintingState.activeGrid.cellLayout);
|
||
|
GridPaintingState.activeGrid.Repaint();
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Rotate Clockwise", "]")]
|
||
|
[Shortcut("Grid Painting/Rotate Clockwise", typeof(TilemapEditorTool.ShortcutContext), KeyCode.RightBracket)]
|
||
|
static void RotateBrushClockwise()
|
||
|
{
|
||
|
if (GridPaintingState.gridBrush != null && GridPaintingState.activeGrid != null)
|
||
|
RotateBrush(GridBrushBase.RotationDirection.Clockwise);
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Rotate Anti-Clockwise", "[")]
|
||
|
[Shortcut("Grid Painting/Rotate Anti-Clockwise", typeof(TilemapEditorTool.ShortcutContext), KeyCode.LeftBracket)]
|
||
|
static void RotateBrushAntiClockwise()
|
||
|
{
|
||
|
if (GridPaintingState.gridBrush != null && GridPaintingState.activeGrid != null)
|
||
|
RotateBrush(GridBrushBase.RotationDirection.CounterClockwise);
|
||
|
}
|
||
|
|
||
|
static void FlipBrush(GridBrushBase.FlipAxis axis)
|
||
|
{
|
||
|
GridPaintingState.gridBrush.Flip(axis, GridPaintingState.activeGrid.cellLayout);
|
||
|
GridPaintingState.activeGrid.Repaint();
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Flip X", "#[")]
|
||
|
[Shortcut("Grid Painting/Flip X", typeof(TilemapEditorTool.ShortcutContext), KeyCode.LeftBracket, ShortcutModifiers.Shift)]
|
||
|
static void FlipBrushX()
|
||
|
{
|
||
|
if (GridPaintingState.gridBrush != null && GridPaintingState.activeGrid != null)
|
||
|
FlipBrush(GridBrushBase.FlipAxis.X);
|
||
|
}
|
||
|
|
||
|
[FormerlyPrefKeyAs("Grid Painting/Flip Y", "#]")]
|
||
|
[Shortcut("Grid Painting/Flip Y", typeof(TilemapEditorTool.ShortcutContext), KeyCode.RightBracket, ShortcutModifiers.Shift)]
|
||
|
static void FlipBrushY()
|
||
|
{
|
||
|
if (GridPaintingState.gridBrush != null && GridPaintingState.activeGrid != null)
|
||
|
FlipBrush(GridBrushBase.FlipAxis.Y);
|
||
|
}
|
||
|
|
||
|
static void ChangeBrushZ(int change)
|
||
|
{
|
||
|
GridPaintingState.gridBrush.ChangeZPosition(change);
|
||
|
GridPaintingState.activeGrid.ChangeZPosition(change);
|
||
|
GridPaintingState.activeGrid.Repaint();
|
||
|
|
||
|
foreach (var window in instances)
|
||
|
{
|
||
|
window.Repaint();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[Shortcut("Grid Painting/Increase Z", typeof(TilemapEditorTool.ShortcutContext), KeyCode.Minus)]
|
||
|
static void IncreaseBrushZ()
|
||
|
{
|
||
|
if (GridPaintingState.gridBrush != null
|
||
|
&& GridPaintingState.activeGrid != null
|
||
|
&& GridPaintingState.activeBrushEditor != null
|
||
|
&& GridPaintingState.activeBrushEditor.canChangeZPosition)
|
||
|
ChangeBrushZ(1);
|
||
|
}
|
||
|
|
||
|
[Shortcut("Grid Painting/Decrease Z", typeof(TilemapEditorTool.ShortcutContext), KeyCode.Equals)]
|
||
|
static void DecreaseBrushZ()
|
||
|
{
|
||
|
if (GridPaintingState.gridBrush != null
|
||
|
&& GridPaintingState.activeGrid != null
|
||
|
&& GridPaintingState.activeBrushEditor != null
|
||
|
&& GridPaintingState.activeBrushEditor.canChangeZPosition)
|
||
|
ChangeBrushZ(-1);
|
||
|
}
|
||
|
|
||
|
[Shortcut("Grid Painting/Switch To Next Brush", typeof(TilemapEditorTool.ShortcutContext), KeyCode.B, ShortcutModifiers.Shift)]
|
||
|
static void SwitchToNextBrush()
|
||
|
{
|
||
|
SwitchBrush(1);
|
||
|
}
|
||
|
|
||
|
[Shortcut("Grid Painting/Switch To Previous Brush", typeof(TilemapEditorTool.ShortcutContext), KeyCode.B, ShortcutModifiers.Shift | ShortcutModifiers.Alt)]
|
||
|
static void SwitchToPreviousBrush()
|
||
|
{
|
||
|
SwitchBrush(-1);
|
||
|
}
|
||
|
|
||
|
static void SwitchBrush(int change)
|
||
|
{
|
||
|
var count = GridPaintingState.brushes.Count;
|
||
|
var index = GridPaintingState.brushes.IndexOf(GridPaintingState.gridBrush);
|
||
|
var newIndex = (index + change + count) % count;
|
||
|
if (index != newIndex)
|
||
|
GridPaintingState.gridBrush = GridPaintingState.brushes[newIndex];
|
||
|
}
|
||
|
|
||
|
internal static void PreferencesGUI()
|
||
|
{
|
||
|
using (new SettingsWindow.GUIScope())
|
||
|
{
|
||
|
EditorGUI.BeginChangeCheck();
|
||
|
var val = (TilePaletteActiveTargetsProperties.PrefabEditModeSettings)EditorGUILayout.EnumPopup(TilePaletteActiveTargetsProperties.targetEditModeDialogLabel
|
||
|
, (TilePaletteActiveTargetsProperties.PrefabEditModeSettings)EditorPrefs.GetInt(TilePaletteActiveTargetsProperties.targetEditModeEditorPref
|
||
|
, 0));
|
||
|
if (EditorGUI.EndChangeCheck())
|
||
|
{
|
||
|
EditorPrefs.SetInt(TilePaletteActiveTargetsProperties.targetEditModeEditorPref, (int)val);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private static List<GridPaintPaletteWindow> s_Instances;
|
||
|
public static List<GridPaintPaletteWindow> instances
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
if (s_Instances == null)
|
||
|
s_Instances = new List<GridPaintPaletteWindow>();
|
||
|
return s_Instances;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static bool isActive
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return s_Instances != null && s_Instances.Count > 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public GameObject palette
|
||
|
{
|
||
|
get => GridPaintingState.palette;
|
||
|
set => GridPaintingState.palette = value;
|
||
|
}
|
||
|
|
||
|
public GameObject paletteInstance => clipboardView.paletteInstance;
|
||
|
|
||
|
public GridPaintPaletteClipboard clipboardView
|
||
|
{
|
||
|
get => m_ClipboardSplitView.paletteElement.clipboardView;
|
||
|
}
|
||
|
|
||
|
private Vector2 m_BrushScroll;
|
||
|
private bool m_IsUtilityWindow;
|
||
|
|
||
|
private VisualElement m_ToolbarVisualElement;
|
||
|
private VisualElement m_ActiveTargetsVisualElement;
|
||
|
private GridPaintPaletteWindowSplitView m_ClipboardSplitView;
|
||
|
|
||
|
private void CreateGUI()
|
||
|
{
|
||
|
var styleSheet = AssetDatabase.LoadAssetAtPath<StyleSheet>(UIStyles.styleSheetPath);
|
||
|
if (styleSheet != null)
|
||
|
{
|
||
|
m_ToolbarVisualElement = new GridPaintingToolbar(this);
|
||
|
m_ActiveTargetsVisualElement = new GridPaintPaletteWindowActiveTargets()
|
||
|
{
|
||
|
name = "activeTargetsDropdown",
|
||
|
};
|
||
|
m_ClipboardSplitView = new GridPaintPaletteWindowSplitView(this, tilePaletteVerticalBrushSplit);
|
||
|
|
||
|
var root = rootVisualElement;
|
||
|
root.Add(m_ToolbarVisualElement);
|
||
|
root.Add(m_ActiveTargetsVisualElement);
|
||
|
root.Add(m_ClipboardSplitView);
|
||
|
|
||
|
root.styleSheetList.Add(styleSheet);
|
||
|
root.AddToClassList(UIStyles.ussClassName);
|
||
|
root.style.minHeight = k_MinClipboardHeight;
|
||
|
|
||
|
root.AddManipulator(new TilePaletteContextMenuHandler(DoContextMenu));
|
||
|
m_ToolbarVisualElement.AddManipulator(new TilePaletteContextMenuHandler(DoContextMenu));
|
||
|
m_ActiveTargetsVisualElement.AddManipulator(new TilePaletteContextMenuHandler(DoContextMenu));
|
||
|
|
||
|
m_ClipboardSplitView.AddManipulator(new TilePaletteDragHandler(DragUpdatedForConvertGridPrefabToPalette, DragPerformedForConvertGridPrefabToPalette));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void OnGUI()
|
||
|
{
|
||
|
// Keep repainting until all previews are loaded
|
||
|
if (AssetPreview.IsLoadingAssetPreviews())
|
||
|
Repaint();
|
||
|
|
||
|
// Release keyboard focus on click to empty space
|
||
|
if (Event.current.type == EventType.MouseDown)
|
||
|
GUIUtility.keyboardControl = 0;
|
||
|
}
|
||
|
|
||
|
private void DoContextMenu()
|
||
|
{
|
||
|
GenericMenu pm = new GenericMenu();
|
||
|
if (GridPaintingState.scenePaintTarget != null)
|
||
|
pm.AddItem(Styles.selectPaintTarget, false, SelectPaintTarget);
|
||
|
else
|
||
|
pm.AddDisabledItem(Styles.selectPaintTarget);
|
||
|
|
||
|
if (palette != null)
|
||
|
pm.AddItem(Styles.selectPalettePrefab, false, SelectPaletteAsset);
|
||
|
else
|
||
|
pm.AddDisabledItem(Styles.selectPalettePrefab);
|
||
|
|
||
|
if (clipboardView.activeTile != null)
|
||
|
pm.AddItem(Styles.selectTileAsset, false, SelectTileAsset);
|
||
|
else
|
||
|
pm.AddDisabledItem(Styles.selectTileAsset);
|
||
|
|
||
|
pm.AddSeparator("");
|
||
|
|
||
|
if (clipboardView.unlocked)
|
||
|
pm.AddItem(Styles.lockPaletteEditing, false, FlipLocked);
|
||
|
else
|
||
|
pm.AddItem(Styles.unlockPaletteEditing, false, FlipLocked);
|
||
|
|
||
|
if (tilePaletteVerticalBrushSplit)
|
||
|
pm.AddItem(Styles.horizontalBrushSplit, false, FlipShowToolbarInSceneView);
|
||
|
else
|
||
|
pm.AddItem(Styles.verticalBrushSplit, false, FlipShowToolbarInSceneView);
|
||
|
|
||
|
pm.AddItem(Styles.openTilePalettePreferences, false, OpenTilePalettePreferences);
|
||
|
|
||
|
pm.AddItem(Styles.openAsDockableWindow, !m_IsUtilityWindow, () => OpenWindow(false));
|
||
|
pm.AddItem(Styles.openAsFloatingWindow, m_IsUtilityWindow, () => OpenWindow(true));
|
||
|
|
||
|
pm.ShowAsContext();
|
||
|
}
|
||
|
|
||
|
private void OpenWindow(bool utility)
|
||
|
{
|
||
|
Close();
|
||
|
GridPaintPaletteWindow w = GetWindow<GridPaintPaletteWindow>(utility, Styles.tilePalette.text, true);
|
||
|
w.m_IsUtilityWindow = utility;
|
||
|
}
|
||
|
|
||
|
private void OpenTilePalettePreferences()
|
||
|
{
|
||
|
var settingsWindow = SettingsWindow.Show(SettingsScope.User);
|
||
|
settingsWindow.FilterProviders(TilePaletteActiveTargetsProperties.tilePalettePreferencesLookup);
|
||
|
}
|
||
|
|
||
|
private void FlipLocked()
|
||
|
{
|
||
|
m_ClipboardSplitView.paletteElement.clipboardUnlocked = !m_ClipboardSplitView.paletteElement.clipboardUnlocked;
|
||
|
}
|
||
|
|
||
|
private void FlipShowToolbarInSceneView()
|
||
|
{
|
||
|
var state = !m_ClipboardSplitView.isVerticalOrientation;
|
||
|
tilePaletteVerticalBrushSplit = state;
|
||
|
m_ClipboardSplitView.isVerticalOrientation = state;
|
||
|
|
||
|
SceneView.RepaintAll();
|
||
|
}
|
||
|
|
||
|
private void SelectPaintTarget()
|
||
|
{
|
||
|
Selection.activeObject = GridPaintingState.scenePaintTarget;
|
||
|
}
|
||
|
|
||
|
private void SelectPaletteAsset()
|
||
|
{
|
||
|
Selection.activeObject = palette;
|
||
|
}
|
||
|
|
||
|
private void SelectTileAsset()
|
||
|
{
|
||
|
Selection.activeObject = clipboardView.activeTile;
|
||
|
}
|
||
|
|
||
|
public void OnEnable()
|
||
|
{
|
||
|
instances.Add(this);
|
||
|
|
||
|
GridSelection.gridSelectionChanged += OnGridSelectionChanged;
|
||
|
EditorApplication.projectWasLoaded += OnProjectLoaded;
|
||
|
ToolManager.activeToolChanged += ActiveToolChanged;
|
||
|
|
||
|
wantsMouseMove = true;
|
||
|
wantsMouseEnterLeaveWindow = true;
|
||
|
minSize = k_MinWindowSize;
|
||
|
|
||
|
GridPaintingState.RegisterPainterInterest(this);
|
||
|
}
|
||
|
|
||
|
private void OnProjectLoaded()
|
||
|
{
|
||
|
GridPaintingState.RegisterShortcutContext();
|
||
|
}
|
||
|
|
||
|
private void OnGridSelectionChanged()
|
||
|
{
|
||
|
Repaint();
|
||
|
}
|
||
|
|
||
|
public void OnDisable()
|
||
|
{
|
||
|
GridPaintingState.UnregisterPainterInterest(this);
|
||
|
|
||
|
ToolManager.activeToolChanged -= ActiveToolChanged;
|
||
|
GridSelection.gridSelectionChanged -= OnGridSelectionChanged;
|
||
|
EditorApplication.projectWasLoaded -= OnProjectLoaded;
|
||
|
|
||
|
instances.Remove(this);
|
||
|
}
|
||
|
|
||
|
private void ActiveToolChanged()
|
||
|
{
|
||
|
Repaint();
|
||
|
}
|
||
|
|
||
|
private bool ValidateDragAndDrop()
|
||
|
{
|
||
|
if (DragAndDrop.objectReferences.Length != 1)
|
||
|
return false;
|
||
|
|
||
|
var draggedObject = DragAndDrop.objectReferences[0];
|
||
|
if (!PrefabUtility.IsPartOfRegularPrefab(draggedObject))
|
||
|
return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
private void DragUpdatedForConvertGridPrefabToPalette()
|
||
|
{
|
||
|
if (!ValidateDragAndDrop())
|
||
|
return;
|
||
|
|
||
|
DragAndDrop.visualMode = DragAndDropVisualMode.Generic;
|
||
|
}
|
||
|
|
||
|
private void DragPerformedForConvertGridPrefabToPalette()
|
||
|
{
|
||
|
if (!ValidateDragAndDrop())
|
||
|
return;
|
||
|
|
||
|
var draggedObject = DragAndDrop.objectReferences[0];
|
||
|
var path = AssetDatabase.GetAssetPath(draggedObject);
|
||
|
var assets = AssetDatabase.LoadAllAssetsAtPath(path);
|
||
|
bool hasNewPaletteAsset = false;
|
||
|
Grid gridPrefab = null;
|
||
|
foreach (var asset in assets)
|
||
|
{
|
||
|
var gridPalette = asset as GridPalette;
|
||
|
hasNewPaletteAsset |= gridPalette != null;
|
||
|
GameObject go = asset as GameObject;
|
||
|
if (go != null)
|
||
|
{
|
||
|
var grid = go.GetComponent<Grid>();
|
||
|
if (grid != null)
|
||
|
gridPrefab = grid;
|
||
|
}
|
||
|
}
|
||
|
if (!hasNewPaletteAsset && gridPrefab != null)
|
||
|
{
|
||
|
var cellLayout = gridPrefab.cellLayout;
|
||
|
var cellSizing = (cellLayout == GridLayout.CellLayout.Rectangle
|
||
|
|| cellLayout == GridLayout.CellLayout.Hexagon)
|
||
|
? GridPalette.CellSizing.Automatic
|
||
|
: GridPalette.CellSizing.Manual;
|
||
|
var newPalette = GridPaletteUtility.CreateGridPalette(cellSizing);
|
||
|
AssetDatabase.AddObjectToAsset(newPalette, path);
|
||
|
AssetDatabase.ForceReserializeAssets(new[] {path});
|
||
|
AssetDatabase.SaveAssets();
|
||
|
Event.current.Use();
|
||
|
GUIUtility.ExitGUI();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal void ResetZPosition()
|
||
|
{
|
||
|
GridPaintingState.gridBrush.ResetZPosition();
|
||
|
GridPaintingState.lastActiveGrid.ResetZPosition();
|
||
|
}
|
||
|
|
||
|
[MenuItem("Window/2D/Tile Palette", false, 2)]
|
||
|
public static void OpenTilemapPalette()
|
||
|
{
|
||
|
GridPaintPaletteWindow w = GetWindow<GridPaintPaletteWindow>();
|
||
|
w.titleContent = Styles.tilePalette;
|
||
|
w.m_IsUtilityWindow = false;
|
||
|
}
|
||
|
}
|
||
|
}
|