Posts Tagged ‘freelance’

Hemi Monitor

Friday, July 29th, 2022

This Quest 2 app was built to aid filming for dome theaters for Shadow Industries. The cameras and lenses are really quite specialised, and it’s tricky to tell whether you’re actually filming usable footage. This VR app helps with the whole process with customisable camera/lens configs, configurable domes and live feed via NDI. It’s designed to be used in remote locations where you don’t have the usual luxuries such as internet and electricity, other than the typical camera batteries etc that a film crew normally carries.

Contact Luke at Shadow Industries via their website if this is a tool you need on your film set.

Championsheeps AR

Saturday, April 9th, 2016

2016-04-09 15.55.32Watch your favorite Shaun the Sheep Championsheeps episodes with this augmented reality app from Aardman Digital. Find physical marker images that unlock videos on your tablet or phone when viewed through the device’s camera. Can you find the secret video by combining four separate marker images?

Download for iPhone/iPad
Download for Android phone/tablet

Pennzoil Air Lift Drift

Saturday, April 9th, 2016

12138771_1710675969147169_400913326_nWatch a 707hp SRT Dodge Hellcat smoke it’s tyres to dust in this flat-out drift experience from Pennzoil. This project was built to wow the crowds at trade shows and racing events, but is also available publicly for Gear VR and Oculus Rift. If you’re lucky enough to have access to one of these devices, give it a go!

Download for Gear VR
Download for Oculus Rift

I worked on upgrading the existing app by Shadow Industries for multi-platform public release.

Wonder.land Avatar Creator

Wednesday, March 2nd, 2016

Create and 3D print your custom avatar in this custom iPad app. Built for the excellent Play Nicely agency in Bristol, for a custom exhibition at the National Theatre in London.

Watch the trailer here.

Shell Helix Ultra VR

Saturday, February 20th, 2016

2016-02-16 12.41.33Learn about Shell Helix motor oil with this virtual reality experience built into dedicated physical chair units intended for use at trade shows and racing events. You will be transported to a lab and shown various experiments showing off the performance of Shell Helix Ultra. You can interact with some of the experiments via a built in Leap Motion sensor that places your hands into the virtual world you are experiencing.

I worked with Shadow Industries on a major upgrade of the existing app to bring it up to date with the latest Oculus Rift drivers, and to add Chinese localisations to the system. I also worked on the physical chair units, fitting the electronics and preparing them for delivery to the client.

Due to the nature of this project, there is no easily available public demonstration of the experience. Maybe you’ll be able to catch it at a racing event or trade show.

Llama League

Tuesday, December 15th, 2015

2016-04-09 14.18.09Play crazy llama football with a friend or by yourself in this finger-skills game from Aardman Digital. Pick your location, llama and bling. Then learn the perfect moment to kick the ball into their goal. Build up your trickshot meter and unleash a super shot!

Download for iPhone/iPad
Download for Android phone/tablet
Official webpage

I supported the main developers on this free-to-play mobile game.

Shear Speed

Monday, November 9th, 2015

ShaunTheSheep-ShearSpeedHelp the flock make their escape from Trumper in this endless runner game from Aardman Digital. I supported the main development team on this free mobile game, rather than being one of the main contributors.

 

Download for iPhone/iPad
Download for Android phone/tablet
Download for Kindle Fire

Official webpage

Puzzle Putt

Saturday, October 17th, 2015

Puzzle PuttPlay crazy-golf with Shaun the Sheep! In this game though, you get to bend the course to your advantage by adding new blocks to the course. Can you get a hole in one? With 72 levels across 8 courses, there’s loads to conquer here. And if you’ve beaten the lot, why not make up your own levels with the built in editor? You can even capture and share instant replays of your best shots (or worst failures).

Download Puzzle Putt for iOS

Download Puzzle Putt for Android

Download Puzzle Putt for Kindle

This game was designed and built with Aardman Digital. They gave me loads of freedom to design the game, which is always a lot of fun. I wanted to build something unique, and which gives the player freedom to express themselves. The idea for Puzzle Putt is based roughly around the original Trackmania game, mixed with elements from Minecraft and of course other crazy-golf games that have been around forever.

Puzzle Putt: Three StarsTechnically, this build presents a few challenges. The first is the shot preview line. I really wanted the game to be more about solving the puzzle of how to get to the hole in the fewest shots, rather than being about performing the ideal shots with skill/judgement. To help the player achieve great shots, they need an aim prediction line that gives a lot of accurate detail about where their shot is going to go before committing to it.

The only way to get a super-accurate prediction line is to compute the shot via the physics engine, before it is played. You can’t write approximations and expect them to match the built in physics beyond the most basic of shots. Unfortunately, Unity’s physics engine is tied like clockwork to the FixedUpdate calls, and can’t be computed separately to the passage of real time. In other engines, you can often take a full copy of the physics world, then allow it to run several seconds of updates all within a single frame. Then you can present the results as a preview line instantly.

As the game was developed, it appeared totally insoluble within Unity. You simply don’t have API access to the physics engine at the level required to precompute outcomes. This was a classic case of designing around the problem, rather than solving it directly. Rather than giving the player an instant preview line, the game fires invisible golf balls into the scene continuously and records where they go. The frame by frame progress of each ball is shown as a separate preview line. It gives an interesting mix of perfect prediction, but delayed, so you can’t expect to easily find that perfect ridiculous implausible bounce shot. Add to that the imperfect precision of touch inputs, and it actually gives a lovely balance between prescience and guesswork.

Unity’s physics engine presented another challenge too. Since the levels are made from lots of separate blocks, the simple approach is to build them from lots of separate prefabs, each with their own built in collider to form the ground. The problem is that where two flat colliders meet, there’s a little seam. When a ball rolls across that seam, it sometimes catches on it and flips up into the air. This is a disaster for the gameplay since it gives unexpected bounces on smooth ground, and lets people break the level design by hopping over things they shouldn’t be able to.

The solution was fairly involved, and took a few iterations to get right. First, I built a separate mesh collider for each separate wall of each individual block. When the level is started, it iterates through all the walls and searches for overlapping identical walls. So two square blocks side by side will share a wall between them, and that can be removed. This helps, but doesn’t solve the problem completely.

The algorithm for comparing walls is actually pretty simple. Grab the verts of the wall being considered, convert them to world coords, then compare to the verts of each other wall. If you can match off every vert with one from the other wall, both walls are redundant and can be removed. In this game, you only have to consider walls from the neighbouring blocks (including above and below), since any other blocks will be too far away to have overlapping walls.

The next iteration performed the wall removal as above, then also iterated through all the remaining mesh colliders and stitches them into one big mesh. Well, two big meshes – one for normal grass, and one with different physical properties for mud.

The algorithm for stitching colliders together feels more complex at first, but actually it’s pretty simple again. You generate a new empty mesh with no verts, which will be the output mesh. Then you iterate through all the input meshes (after removing redundant walls) in turn. For each one, consider all of it’s triangles in turn. For each triangle, translate the verts into world coords and see if a vert already exists in the output mesh. If it doesn’t, copy it in. If it does, remember which one it is. Create a triangle in the output mesh that matches the one from the input triangle, and move on to the next. Once you’ve worked through all triangles from all meshes, you’ve got one big mesh with shared verts in all the right places. The physics engine now gives perfect rolling behaviour across the seams, which is a total solution to the problem…

…except it’s slow. 10 seconds or so on a typical level, and 30 on a big one. I did consider simply hiding the mesh creation when the level was first entered, but you have to allow for the player’s edits. That means you have to run it at the point where the player hits “play”, and 10 seconds is totally unacceptable there. I considered computing the fixed part of the mesh at the start of the level, then adding in the user blocks later. Turns out that doesn’t let you remove redundant walls around the edges though, since they’ve already been stitched into the main big mesh.

I was including collider geometry as a GameObject within each block, and physically deleting it from the world. That works, but it turns out that creating and deleting all those GameObjects costs quite a bit of CPU time. The solution was to remove them from the prefabs, and instead load example wall meshes from Resources into memory. There’s a list of which ones each block requires, and it just uses the data from the shared meshes over and over, rather than creating/deleting them. Sounds obvious, but it does complicate the workflow of creating a block quite a bit, and you don’t get automatic translations between the local and global coords system when working through the mesh data.

The final technical issue was the Everyplay plugin. This is a lovely bit of software that lets people record their gameplay, then share it with other players. So if you pull off a spectacular trick shot, you can send it to your friends, show off with other players and so on. The plugin integrates pretty easily, and works fantastic on most Android devices. On some Androids however it doesn’t work, and worse than that, it totally breaks the rendering of the game, displaying a black screen. Everyplay is supposed to cope with this by asking a server if the current device is compatible or not, but it doesn’t seem to know the answer. In the end, we made a simple white-list of devices where it worked, and left it at that. When new devices are launched, we’ll have to update the game to include them, but that’s better than running the risk of ruining people’s games entirely.

Boomerang Pet Photo Booth

Saturday, October 17th, 2015

Boomerang Pet Photo BoothSnap a photo of your pet, decorate it with stickers and send it to the Boomerang kids TV channel with this Instagram style app developed with Aardman Digital.

Download Pet Photo Booth for iOS

Download Pet Photo Booth for Android

The Twits: Twit or Miss

Saturday, October 17th, 2015

TwitOrMissWatch Roald Dahl’s famous characters The Twits having their dinner, and save Mrs Twit from Mr Twit’s disgusting eating habits. As food flings out of his mouth and across the table, you have to swipe to flick it away from Mrs Twit. Let her get hit too many times, and she’ll wake up with the grumps. Build up a ghastly score by performing trick shots in this fun game developed with Aardman Digital.

Download Twit or Miss for iOS

Download Twit or Miss for Android