13 lines
171 B
C#
13 lines
171 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class FootstepSurface
|
||
|
{
|
||
|
public string surfaceTag;
|
||
|
|
||
|
public AudioClip[] clips;
|
||
|
|
||
|
public AudioClip hitSurfaceSFX;
|
||
|
}
|