Skip to content
Snippets Groups Projects
Commit 7aadd83a authored by John Schihada's avatar John Schihada
Browse files

Fixed pushout fail for rain-animation

parent f5d5ceae
No related branches found
No related tags found
No related merge requests found
......@@ -157,6 +157,10 @@ private string prepareScrollAssignments()
private void readPushout(List<Scroll.ScrollFact> pushoutFacts)
{
FactManager factManager = cursor.GetComponent<FactManager>();
if(pushoutFacts.Count == 0)
PushoutFactFailEvent.Invoke(null);
for (int i = 0; i < pushoutFacts.Count; i++)
{
Fact newFact = ParsingDictionary.parseFactDictionary[pushoutFacts[i].getType()].Invoke(pushoutFacts[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment