Beispiel #1
0
 public VolumeAnimationProperty(AudioController audioController, float deltaValue,
                                UseRelativeValue useRelativeValue) : base(deltaValue, useRelativeValue)
 {
     this.audioController = audioController;
 }
 protected LazyComputableAnimationProperty(D deltaValue, UseRelativeValue useRelativeValue)
 {
     this.deltaValue = deltaValue;
 }
Beispiel #3
0
 public VolumeAnimationProperty(UnifiedAudioSource audioSource, float deltaValue,
                                UseRelativeValue useRelativeValue) : base(deltaValue, useRelativeValue)
 {
     this.audioSource = audioSource;
 }
Beispiel #4
0
 public CameraSizeAnimationProperty(CameraController camera, float deltaValue, UseRelativeValue useRelativeValue)
     : base(deltaValue, useRelativeValue)
 {
     this.camera = camera;
 }