├── LICENSE ├── README.md ├── audio └── All_Time_Low__Time_Bomb.mp3 ├── css └── main.css ├── favicon.png ├── img ├── check_radio.png ├── check_radio.psd └── loading.png ├── index.php ├── js ├── lib │ ├── phaser.js │ └── phaser.map ├── plugin │ └── SoundAnalyse │ │ └── SoundAnalyse.js └── states │ ├── Boot.js │ ├── Game.js │ └── Preloader.js └── phaser_sound_analyse_preview.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/README.md -------------------------------------------------------------------------------- /audio/All_Time_Low__Time_Bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/audio/All_Time_Low__Time_Bomb.mp3 -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/css/main.css -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/favicon.png -------------------------------------------------------------------------------- /img/check_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/img/check_radio.png -------------------------------------------------------------------------------- /img/check_radio.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/img/check_radio.psd -------------------------------------------------------------------------------- /img/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/img/loading.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/index.php -------------------------------------------------------------------------------- /js/lib/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/js/lib/phaser.js -------------------------------------------------------------------------------- /js/lib/phaser.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/js/lib/phaser.map -------------------------------------------------------------------------------- /js/plugin/SoundAnalyse/SoundAnalyse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/js/plugin/SoundAnalyse/SoundAnalyse.js -------------------------------------------------------------------------------- /js/states/Boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/js/states/Boot.js -------------------------------------------------------------------------------- /js/states/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/js/states/Game.js -------------------------------------------------------------------------------- /js/states/Preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/js/states/Preloader.js -------------------------------------------------------------------------------- /phaser_sound_analyse_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberCactus/phaser-sound-analyser/HEAD/phaser_sound_analyse_preview.png --------------------------------------------------------------------------------