Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 |
//============================================================================= // I3DL2Listener: Base class for I3DL2 room effects. //============================================================================= class I3DL2Listener extends Object abstract editinlinenew native; var() float EnvironmentSize; var() float EnvironmentDiffusion; var() int Room; var() int RoomHF; var() int RoomLF; var() float DecayTime; var() float DecayHFRatio; var() float DecayLFRatio; var() int Reflections; var() float ReflectionsDelay; var() vector ReflectionsPan; var() int Reverb; var() float ReverbDelay; var() vector ReverbPan; var() float EchoTime; var() float EchoDepth; var() float ModulationTime; var() float ModulationDepth; var() float RoomRolloffFactor; var() float AirAbsorptionHF; var() float HFReference; var() float LFReference; var() bool bDecayTimeScale; var() bool bReflectionsScale; var() bool bReflectionsDelayScale; var() bool bReverbScale; var() bool bReverbDelayScale; var() bool bEchoTimeScale; var() bool bModulationTimeScale; var() bool bDecayHFLimit; var transient int Environment; var transient int Updated; defaultproperties { EnvironmentSize=7.500000 EnvironmentDiffusion=1.000000 Room=-1000 RoomHF=-100 DecayTime=1.490000 DecayHFRatio=0.830000 DecayLFRatio=1.000000 Reflections=-2602 ReflectionsDelay=0.007000 Reverb=200 ReverbDelay=0.011000 EchoTime=0.250000 ModulationTime=0.250000 AirAbsorptionHF=-5.000000 HFReference=5000.000000 LFReference=250.000000 bDecayTimeScale=Wahr bReflectionsScale=Wahr bReflectionsDelayScale=Wahr bReverbScale=Wahr bReverbDelayScale=Wahr bEchoTimeScale=Wahr bDecayHFLimit=Wahr } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |