aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/audio/AudioParam.java
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/core/com/jme3/audio/AudioParam.java')
-rw-r--r--engine/src/core/com/jme3/audio/AudioParam.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/engine/src/core/com/jme3/audio/AudioParam.java b/engine/src/core/com/jme3/audio/AudioParam.java
new file mode 100644
index 0000000..bf53c24
--- /dev/null
+++ b/engine/src/core/com/jme3/audio/AudioParam.java
@@ -0,0 +1,19 @@
+package com.jme3.audio;
+
+public enum AudioParam {
+ Volume,
+ Pitch,
+ Looping,
+ Position,
+ IsPositional,
+ Direction,
+ IsDirectional,
+ Velocity,
+ OuterAngle,
+ InnerAngle,
+ RefDistance,
+ MaxDistance,
+ DryFilter,
+ ReverbFilter,
+ ReverbEnabled;
+}