New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

com.iron-mountain.adaptive-music

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.iron-mountain.adaptive-music

A system for playing music at various predefined intensities.

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Adaptive Music

Version: 1.0.3

Description:

A system for playing music at various predefined intensities.

Package Mirrors:

Key Scripts & Components:

  1. public class Song : ScriptableObject
    • Properties:
      • public String DisplayName { get; }
      • public AudioMixerGroup AudioMixerGroup { get; }
      • public List Stems { get; }
  2. public class SongPlayer : MonoBehaviour
    • Actions:
      • public event Action OnSongChanged
      • public event Action OnVolumeChanged
    • Properties:
      • public Boolean Started { get; }
      • public Boolean IsPaused { get; }
      • public Song Song { get; set; }
      • public float Volume { get; }
    • Methods:
      • public void RefreshStemPlayers()
      • public void Play()
      • public void Pause()
      • public void Resume()
      • public void Stop()
      • public void TogglePause()
      • public void FadeIn(float fadeInSeconds, Action onComplete)
      • public void FadeOut(float fadeOutSeconds, Action onComplete)
  3. public static class SongPlayersManager
  4. public class StemPlayer : MonoBehaviour
    • Properties:
      • public AudioSource AudioSource { get; }
    • Methods:
      • public void Initialize(SongPlayer songPlayer, AdaptiveStem stem, AudioMixerGroup audioMixerGroup)
      • public void Play()
      • public void Pause()
      • public void Resume()
      • public void Stop()
  5. public class VolumeEditorAttribute : PropertyAttribute

Intensity

  1. public class CurrentMusicIntensityText : MonoBehaviour
  2. public static class MusicIntensitySettings
  3. public class MusicIntensitySlider : MonoBehaviour

Stems

  1. public abstract class AdaptiveStem : ScriptableObject
    • Properties:
      • public AnimationCurve Volumes { get; }
    • Methods:
      • public abstract AudioClip GetAudioClip()
  2. public class BasicAdaptiveStem : AdaptiveStem
    • Methods:
      • public override AudioClip GetAudioClip()
  3. public class RandomAdaptiveStem : AdaptiveStem
    • Properties:
      • public List AudioClips { get; }
    • Methods:
      • public override AudioClip GetAudioClip()

Keywords

FAQs

Package last updated on 21 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc