コード例 #1
0
        public GunSoundSourceElement(GunSoundSetting soundSetting, GunSoundSetting.GunSoundElement setting, GunSoundSource source)
        {
            this.soundSetting = soundSetting;
            this.setting      = setting;
            this.source       = source;
            gameObject        = new GameObject(setting.name);
#if AimSoundInternal
            // gameObject.hideFlags = HideFlags.DontSave;
#else
            gameObject.hideFlags = HideFlags.HideAndDontSave;
#endif
            gameObject.transform.SetParent(source.transform, false);
            loopAudioSource      = CloneAudioSource(setting, gameObject);
            loopAudioSource.loop = true;
            var endClips = setting.endClips;
            for (int i = 0; i < endClips.Length; ++i)
            {
                if (endClips[i])
                {
                    _maxEndSoundDuration = Mathf.Max(_maxEndSoundDuration, endClips[i].length);
                }
            }

            if (setting.useLowPassFilter)
            {
                var audioLowPassFilter = gameObject.AddComponent <AudioLowPassFilter>();
                audioLowPassFilter.lowpassResonanceQ = setting.lowpassResonanceQ;
                audioLowPassFilter.customCutoffCurve = setting.lowPassFilterCurve;
            }
            // endAudioSource = CloneAudioSource(soundSetting.audioSource,gameObject);
        }
コード例 #2
0
 void StartPlay(GunSoundSource gunSoundSource)
 {
     gunSoundSource.Play();
     if (!gunSoundSource.setting.isOneShot)
     {
         lastPlaying = gunSoundSource;
         EditorApplication.update += OnUpdateAudio;
     }
 }
コード例 #3
0
 void StopPlay()
 {
     if (lastPlaying && lastPlaying.needStop)
     {
         lastPlaying.Stop();
     }
     EditorApplication.update -= OnUpdateAudio;
     lastPlaying = null;
 }
コード例 #4
0
        void OnEnable()
        {
            CreateLineMat();
            var previewObject = new GameObject();

            previewObject.hideFlags    = HideFlags.HideAndDontSave;
            previewObject.name         = "previewSoundSource";
            previewSoundSource         = previewObject.AddComponent <GunSoundSource>();
            previewSoundSource.setting = (GunSoundSetting)target;

            UpdateSoundPosition();
        }