Skip to content

Instantly share code, notes, and snippets.

View mrtrizer's full-sized avatar
💾

Denis Zdorovtsov mrtrizer

💾
View GitHub Profile
@wandermyz
wandermyz / CurveDrawingTest.cs
Created May 23, 2017 07:11
How to draw a curve in a Unity Editor Window
using UnityEngine;
using UnityEditor;
public class CurveDrawingTest : EditorWindow {
[MenuItem("Window/CurveDrawingTest")]
public static void ShowWindow() {
EditorWindow.GetWindow<CurveDrawingTest>().Show();
}