We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfbcdbc commit a74d3b0Copy full SHA for a74d3b0
Runtime/Events/StringGameEventListener.cs
@@ -10,14 +10,14 @@ namespace Gameframe.ScriptableObjects.Events
10
public class StringGameEventListener : BaseGameEventListener<string>
11
{
12
13
- [SerializeField]
14
- StringGameEvent stringGameEvent;
+ [SerializeField]
+ private StringGameEvent stringGameEvent = null;
15
16
[Serializable]
17
public class StringEvent : UnityEvent<string> { }
18
19
20
- StringEvent onEventRaised;
+ private StringEvent onEventRaised = null;
21
22
protected override GameEvent InternalEvent
23
0 commit comments