Files
zeling_v2/Assets/_Game/Scripts/Audio/FootstepMaterial.cs

17 lines
462 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Assets/Scripts/Audio/FootstepMaterial.cs
// 脚步声材质枚举Architecture 21_LiquidPuzzleModule §3.3
namespace BaseGames.Audio
{
public enum FootstepMaterial
{
Stone, // 石板地(默认)
Dirt, // 泥土/草地
Wood, // 木板
Metal, // 金属格栅
Water, // 浅水区(溅水声)
Sand, // 沙地
Grass, // 草丛
Cave, // 洞穴(回响加强)
}
}