A Trail Tale
21–30 of 58 posts
Re: A Trail Tale
#22Re: A Trail Tale
#23It’s SO cool to see this on here. I’ve been tracking him using it when we get separated. Andy, if you see this, hello from Deadweight :).
Re: A Trail Tale
#24Holy shit, I’m hiking with this guy right now on the AT!! This was a two-year COVID passion project that Andy made with his brothers (one coded it, the other made the music, he designed all the pixel art). It’s SO cool to see this on here. I’ve been tracking him using it when we get separated. Andy, if you see this, hello from Deadweight :).
Re: A Trail Tale
#25It's so confusing to touchpad two-finger smoothly scroll 8-bit style graphics. My brain screams it didn't work like that.
Re: A Trail Tale
#26Maybe the coolest thing I've seen this year.
Re: A Trail Tale
#27I wrote a separate vue.js progressive web app that is installed on his phone so he can write updates while he's outside of cell coverage, and they sync when he has internet access again.
The backend is a Node server on an AWS EC2 instance that dumps all of his updates and hourly weather data into a postgres database. Everything is timestamped, so we will be able to replay the trip or add an interactive timeline when he's done.
Re: A Trail Tale
#28Project dev here if anyone has any questions- on a technical side, the app is built with Unity WebGL wrapped in a vue.js wrapper. The JS side handles pulling the live data from the server and determines the best Unity scene to show given the parameters- time of day, weather at his last known coordinates, and the location itself. I wrote a separate vue.js progressive web app that is installed on his phone so he can wr…
1. I've heard different accounts of how well unity web GL is supported, did you run into any limitations?
2. What did advantages did wrapping this in Vue provide?
Re: A Trail Tale
#29Project dev here if anyone has any questions- on a technical side, the app is built with Unity WebGL wrapped in a vue.js wrapper. The JS side handles pulling the live data from the server and determines the best Unity scene to show given the parameters- time of day, weather at his last known coordinates, and the location itself. I wrote a separate vue.js progressive web app that is installed on his phone so he can wr…
This is fantastic work - just had a couple questions about it: 1. I've heard different accounts of how well unity web GL is supported, did you run into any limitations? 2. What did advantages did wrapping this in Vue provide?
2. I have a ton of experience working with responsive web design using Vue/Angular/React, and I kept running into issues designing my UI in Unity that could have been solved with a single line of CSS. It was also nice to have a non-Unity controller for the project so I would be able to easily swap out the Unity animations with a fallback if I couldn't fix the Safari issues. Playing music in the WebGL player was a huge performance hit, especially once I started layering sounds, by having Vue handle that I could take advantage of browser optimizations with on caching music and detach the download of the audio files from the download of the rest of the assets (they were by far the largest part of the project data-wise), so a slow connection isn't waiting on the music to get into the app itself.
The trade-off was losing the ability to build the project as an exe and the loss of non-audio performance. We knew getting people to run a random exe from the internet was a hard sell, and the performance loss isn't really felt when the UI is run in the Vue side of the app. If I was making a game that needed high performance, I'm not sure the performance loss would be such viable compromise.
Re: A Trail Tale
#30Maybe the coolest thing I've seen this year.