11 lines
204 B
C#
11 lines
204 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu]
|
|
public class AudioMaterial : ScriptableObject
|
|
{
|
|
[Range(0f, 1)]
|
|
public float reflexionFactor = 1;
|
|
[Range(0f, 1)]
|
|
public float penetrationFactor = 1;
|
|
}
|