Watchtowers - Predictive Targeting

The soon to be latest addition to Fracture the Flag will be the defensive watchtowers. The towers will provide stationary ranged defensive. Something that is very much missing with the current build.

The watchtower script estimates a time of flight, gets velocity of the target, and uses a healthy dose of high school physics to predict the location of the target when the arrow will arrive. There is some inherent error in the calculations as a few assumptions must be made, but these turn out to be minor.

Once the predicted position has been calculated another healthy dose of kinematics is used to create a launch vector for the arrows. This is then turned in to a velocity vector and passed off to the arrow's controlling rigidbody to provide a physically accurate trajectory.

There are some errors in the calculations, such as the time of flight shouldn't be independent of the angle, but one value needs to be calculated before the other... The result can be small errors. The coding also allows a degree of inaccuracy to be added (not shown) for the sake of realism. This quickly makes any numerical errors pretty irrelevant.

Click to Color

I was needing something simple to work on (the day job has turned my brain to mush) so I spent a few hours last week polishing a tool that I've used in the production of Fracture the Flag. The tool allows the creation and editing of color palettes within Unity.

Low poly scene and the 

Click To Color

interface

The use of color palettes along with flat shaded low poly assets allows a significant reduction in the number of materials being used in a scene or project. This can also reduce draw calls and improve performance.

Due to the flat shading models can be unwrapped and the UV's can be stacked. This allows the texture size to be very small - in theory as small as one pixel per color used in the project! This means that by using a 32 by 32 pixel texture a project can have up to 1024 colors contained in a 4 kb file! Ideal for mobile uses or simply keeping a desktop build size down to something reasonable.

Unwrapped model in Blender

The editing of these textures within Unity also allows the artist or developer to quickly adjust colors of models in a scene while lighting and image effects are shown in real time. This speeds up development time as there is less back and forth between Unity and a photo editing program.

Click To Color will be available on the Unity Asset Store:  https://www.assetstore.unity3d.com/#!/content/72930

All the features of Click to Color can be seen in the video below.

A potential work flow using Unity and Blender is shown in the second video.

Unity Object Swapper

A while back I found myself looking at a Unity scene with several hundred trees that each needed to be updated and the connection to the prefab had somehow broken... Rather than spent hours replacing each one I spent almost as much time writing an editor extension to do the same thing.

I'd forgotten about the tool, until a student of mine ended up in a similar position. Which made me revisit the tool a do just a bit of fine tuning.

Screenshot of the editor window

It's a pretty simple script, but handy all the same. If I find the time I might add it to the Unity Asset Store as a free asset. Until then, assuming this looks like useful, you can download it from this link (box). There's no documentation, but it should be pretty self explanatory- the search is case sensitive.