├── .gitignore ├── assets ├── 128px │ ├── Breach.png │ ├── Brimstone.png │ ├── Cypher.png │ ├── Jett.png │ ├── Omen.png │ ├── Phoenix.png │ ├── Raze.png │ ├── Reyna.png │ ├── Sage.png │ ├── Sova.png │ └── Viper.png ├── 48px │ ├── Breach.png │ ├── Brimstone.png │ ├── Cypher.png │ ├── Jett.png │ ├── Omen.png │ ├── Phoenix.png │ ├── Raze.png │ ├── Reyna.png │ ├── Sage.png │ ├── Sova.png │ └── Viper.png ├── BebasNeue-Regular.ttf ├── BebasNeue-Regular.woff ├── BebasNeue-Regular.woff2 ├── ExampleHUD.png ├── VALORANT.woff ├── VALORANT.woff2 └── video │ ├── ingame_blue_animation.mp4 │ └── ingame_red_animation.mp4 ├── index.js ├── package.json └── public ├── 48px ├── Breach.png ├── Brimstone.png ├── Cypher.png ├── Jett.png ├── Killjoy.png ├── Omen.png ├── Phoenix.png ├── Raze.png ├── Reyna.png ├── Sage.png ├── Sova.png └── Viper.png ├── BlueSide.mp4 ├── HUD_Blue_Red.png ├── HUD_Red_Blue.png ├── HUDstyle.css ├── Jett.png ├── Overlay_Blue_Red.png ├── Overlay_Red_Blue.png ├── RedSide.mp4 ├── TestVideo.mp4 ├── admin.html ├── hud.html ├── hud.js ├── ingame_blue_animation.mp4 ├── ingame_red_animation.mp4 ├── libs ├── p5.dom.js ├── p5.dom.min.js ├── p5.js ├── p5.min.js ├── p5.sound.js └── p5.sound.min.js ├── main.js ├── scripts ├── adminP5.js └── viewerP5.js ├── style.css ├── teams_highlights.png ├── viewer-old.html └── viewer.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /assets/128px/Breach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Breach.png -------------------------------------------------------------------------------- /assets/128px/Brimstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Brimstone.png -------------------------------------------------------------------------------- /assets/128px/Cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Cypher.png -------------------------------------------------------------------------------- /assets/128px/Jett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Jett.png -------------------------------------------------------------------------------- /assets/128px/Omen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Omen.png -------------------------------------------------------------------------------- /assets/128px/Phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Phoenix.png -------------------------------------------------------------------------------- /assets/128px/Raze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Raze.png -------------------------------------------------------------------------------- /assets/128px/Reyna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Reyna.png -------------------------------------------------------------------------------- /assets/128px/Sage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Sage.png -------------------------------------------------------------------------------- /assets/128px/Sova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Sova.png -------------------------------------------------------------------------------- /assets/128px/Viper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/128px/Viper.png -------------------------------------------------------------------------------- /assets/48px/Breach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Breach.png -------------------------------------------------------------------------------- /assets/48px/Brimstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Brimstone.png -------------------------------------------------------------------------------- /assets/48px/Cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Cypher.png -------------------------------------------------------------------------------- /assets/48px/Jett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Jett.png -------------------------------------------------------------------------------- /assets/48px/Omen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Omen.png -------------------------------------------------------------------------------- /assets/48px/Phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Phoenix.png -------------------------------------------------------------------------------- /assets/48px/Raze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Raze.png -------------------------------------------------------------------------------- /assets/48px/Reyna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Reyna.png -------------------------------------------------------------------------------- /assets/48px/Sage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Sage.png -------------------------------------------------------------------------------- /assets/48px/Sova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Sova.png -------------------------------------------------------------------------------- /assets/48px/Viper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/48px/Viper.png -------------------------------------------------------------------------------- /assets/BebasNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/BebasNeue-Regular.ttf -------------------------------------------------------------------------------- /assets/BebasNeue-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/BebasNeue-Regular.woff -------------------------------------------------------------------------------- /assets/BebasNeue-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/BebasNeue-Regular.woff2 -------------------------------------------------------------------------------- /assets/ExampleHUD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/ExampleHUD.png -------------------------------------------------------------------------------- /assets/VALORANT.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/VALORANT.woff -------------------------------------------------------------------------------- /assets/VALORANT.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/VALORANT.woff2 -------------------------------------------------------------------------------- /assets/video/ingame_blue_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/video/ingame_blue_animation.mp4 -------------------------------------------------------------------------------- /assets/video/ingame_red_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/assets/video/ingame_red_animation.mp4 -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/package.json -------------------------------------------------------------------------------- /public/48px/Breach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Breach.png -------------------------------------------------------------------------------- /public/48px/Brimstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Brimstone.png -------------------------------------------------------------------------------- /public/48px/Cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Cypher.png -------------------------------------------------------------------------------- /public/48px/Jett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Jett.png -------------------------------------------------------------------------------- /public/48px/Killjoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Killjoy.png -------------------------------------------------------------------------------- /public/48px/Omen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Omen.png -------------------------------------------------------------------------------- /public/48px/Phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Phoenix.png -------------------------------------------------------------------------------- /public/48px/Raze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Raze.png -------------------------------------------------------------------------------- /public/48px/Reyna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Reyna.png -------------------------------------------------------------------------------- /public/48px/Sage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Sage.png -------------------------------------------------------------------------------- /public/48px/Sova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Sova.png -------------------------------------------------------------------------------- /public/48px/Viper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/48px/Viper.png -------------------------------------------------------------------------------- /public/BlueSide.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/BlueSide.mp4 -------------------------------------------------------------------------------- /public/HUD_Blue_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/HUD_Blue_Red.png -------------------------------------------------------------------------------- /public/HUD_Red_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/HUD_Red_Blue.png -------------------------------------------------------------------------------- /public/HUDstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/HUDstyle.css -------------------------------------------------------------------------------- /public/Jett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/Jett.png -------------------------------------------------------------------------------- /public/Overlay_Blue_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/Overlay_Blue_Red.png -------------------------------------------------------------------------------- /public/Overlay_Red_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/Overlay_Red_Blue.png -------------------------------------------------------------------------------- /public/RedSide.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/RedSide.mp4 -------------------------------------------------------------------------------- /public/TestVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/TestVideo.mp4 -------------------------------------------------------------------------------- /public/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/admin.html -------------------------------------------------------------------------------- /public/hud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/hud.html -------------------------------------------------------------------------------- /public/hud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/hud.js -------------------------------------------------------------------------------- /public/ingame_blue_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/ingame_blue_animation.mp4 -------------------------------------------------------------------------------- /public/ingame_red_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/ingame_red_animation.mp4 -------------------------------------------------------------------------------- /public/libs/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/libs/p5.dom.js -------------------------------------------------------------------------------- /public/libs/p5.dom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/libs/p5.dom.min.js -------------------------------------------------------------------------------- /public/libs/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/libs/p5.js -------------------------------------------------------------------------------- /public/libs/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/libs/p5.min.js -------------------------------------------------------------------------------- /public/libs/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/libs/p5.sound.js -------------------------------------------------------------------------------- /public/libs/p5.sound.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/libs/p5.sound.min.js -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/main.js -------------------------------------------------------------------------------- /public/scripts/adminP5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/scripts/adminP5.js -------------------------------------------------------------------------------- /public/scripts/viewerP5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/scripts/viewerP5.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/style.css -------------------------------------------------------------------------------- /public/teams_highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/teams_highlights.png -------------------------------------------------------------------------------- /public/viewer-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/viewer-old.html -------------------------------------------------------------------------------- /public/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryth-cs/Valorant_Observer_Custom_HUD/HEAD/public/viewer.html --------------------------------------------------------------------------------