Created
August 31, 2019 13:40
-
-
Save JoseMiguelPizarro/024086fe2ec590563fa80fac390f7174 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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