File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public static class PackageExporter
12
12
/// パッケージの書き出し(エディタ上でのテスト用)
13
13
/// メニュー 「Tools > Export Unitypackage Test」をクリックで実行
14
14
/// </summary>
15
- [ MenuItem ( "Tools/Export Unitypackage Test " ) ]
15
+ [ MenuItem ( "Tools/Export Unitypackage" ) ]
16
16
public static void ExportTestOnEditor ( )
17
17
{
18
18
var exportPath = EditorUtility . SaveFilePanel
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace Fungus.EditorUtils
9
9
public class FlowchartMenuItems
10
10
{
11
11
[ MenuItem ( "Tools/Fungus/Create/Flowchart" , false , 0 ) ]
12
- static void CreateFlowchart ( )
12
+ public static void CreateFlowchart ( )
13
13
{
14
14
GameObject go = SpawnPrefab ( "Flowchart" ) ;
15
15
go . transform . position = Vector3 . zero ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ static void CreateCharacter()
18
18
}
19
19
20
20
[ MenuItem ( "Tools/Fungus/Create/Say Dialog" , false , 51 ) ]
21
- static void CreateSayDialog ( )
21
+ public static void CreateSayDialog ( )
22
22
{
23
23
GameObject go = FlowchartMenuItems . SpawnPrefab ( "SayDialog" ) ;
24
24
go . transform . position = Vector3 . zero ;
@@ -46,7 +46,7 @@ static void CreateAudioTag()
46
46
}
47
47
48
48
[ MenuItem ( "Tools/Fungus/Create/Stage" , false , 55 ) ]
49
- static void CreateStage ( )
49
+ public static void CreateStage ( )
50
50
{
51
51
GameObject go = FlowchartMenuItems . SpawnPrefab ( "Stage" ) ;
52
52
go . transform . position = Vector3 . zero ;
You can’t perform that action at this time.
0 commit comments