• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.jme3.audio;
2 
3 public enum AudioParam {
4     Volume,
5     Pitch,
6     Looping,
7     Position,
8     IsPositional,
9     Direction,
10     IsDirectional,
11     Velocity,
12     OuterAngle,
13     InnerAngle,
14     RefDistance,
15     MaxDistance,
16     DryFilter,
17     ReverbFilter,
18     ReverbEnabled;
19 }
20