Created
August 31, 2019 13:39
-
-
Save JoseMiguelPizarro/e25c4deed0e63936f8df4d739ebbe736 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 SelectTool : LevelMeshTool | |
{ | |
public override string IconPath => "Assets/Resources/Icons/select.png"; | |
public override string ToolName => "Select tool"; | |
public override void Act(LevelMeshEditor editorState, Event current) | |
{ | |
Debug.Log("I'm selecting something ;)"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment