File size: 358 Bytes
05c9ac2
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;

public class HallwaySettings : MonoBehaviour
{
    public float agentRunSpeed;
    public float agentRotationSpeed;
    public Material goalScoredMaterial; // when a goal is scored the ground will use this material for a few seconds.
    public Material failMaterial; // when fail, the ground will use this material for a few seconds.

}