12 lines
209 B
C#
12 lines
209 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
public static class CustomMenuItemDefinition
|
|
{
|
|
[MenuItem("Custom/Print log")]
|
|
private static void PringLog()
|
|
{
|
|
Debug.Log("Hello, world!");
|
|
}
|
|
}
|