Skip to content

Instantly share code, notes, and snippets.

@JoseMiguelPizarro
Created August 31, 2019 13:40
Show Gist options
  • Save JoseMiguelPizarro/024086fe2ec590563fa80fac390f7174 to your computer and use it in GitHub Desktop.
Save JoseMiguelPizarro/024086fe2ec590563fa80fac390f7174 to your computer and use it in GitHub Desktop.
using UnityEngine;
public class ResizeTool : LevelMeshTool
{
public override string IconPath => "Assets/Resources/Icons/resize.png";
public override string ToolName => "Resize";
public override void Act(LevelMeshEditor editorState, Event current)
{
Debug.Log("I'm resizing something ;)");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment