質問編集履歴
1
staticの後にeventを入れるのを忘れていました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,7 +58,7 @@
|
|
58
58
|
|
59
59
|
public delegate void Teleport();
|
60
60
|
|
61
|
-
public static Teleport onTeleport;
|
61
|
+
public static event Teleport onTeleport;
|
62
62
|
|
63
63
|
|
64
64
|
|
@@ -136,7 +136,7 @@
|
|
136
136
|
|
137
137
|
public delegate void Teleport(Vector3 pos);
|
138
138
|
|
139
|
-
public static Teleport onTeleport;
|
139
|
+
public static event Teleport onTeleport;
|
140
140
|
|
141
141
|
|
142
142
|
|