Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Foot Step/footStepSurfaceSystem.cs

14 lines
228 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class footStepSurfaceSystem : MonoBehaviour
{
public string surfaceName;
public string getSurfaceName ()
{
return surfaceName;
}
}