project_files/HedgewarsMobile/Classes/MXAudioPlayerFadeOperation.h
branchios-develop
changeset 12872 00215a7ec5f5
parent 8441 a00b0fa0dbd7
equal deleted inserted replaced
12871:2c06b1120749 12872:00215a7ec5f5
    18 }
    18 }
    19 
    19 
    20 // The AVAudioPlayer that the volume fade will be applied to.
    20 // The AVAudioPlayer that the volume fade will be applied to.
    21 // Retained until the fade is completed.
    21 // Retained until the fade is completed.
    22 // Must be set with init method.
    22 // Must be set with init method.
    23 @property (nonatomic, retain, readonly) AVAudioPlayer *audioPlayer;
    23 @property (nonatomic, strong, readonly) AVAudioPlayer *audioPlayer;
    24 
    24 
    25 // The duration of the volume fade.
    25 // The duration of the volume fade.
    26 // Default value is 1.0
    26 // Default value is 1.0
    27 @property (nonatomic, assign) NSTimeInterval fadeDuration;
    27 @property (nonatomic, assign) NSTimeInterval fadeDuration;
    28 
    28