Fan-made Lugaru Campaigns
There are two excellent single-player campaigns for Lugaru made by forum users Silb and Jendraz. They are both longer and more in-depth than the original Lugaru campaign, and use a lot of engine features in innovative ways that I hadn't thought of. Click on these links to try the Empire and Temple campaigns!
Rigid body physics integration
The point-stick-triangle physics described in the previous post is very good for quickly defining articulated bodies, but it is not appropriate for simulating large numbers of colliding rigid bodies. I am experimenting with different methods to handle these cases: here is a screenshot of a standard box collision test using ODE (Open Dynamics Engine) integration. We can use our old system for special physics like characters and plants, and ODE for large numbers of simpler objects.
Physics Engine
I managed to combine my Wolfire work with Swarthmore class work by improving my physics engine and creating a small web page about how it works. You can find it here if you are interested; it has screenshots and videos of it in action.
New sky shader
I was tired of my old sky dome, so I replaced it with a single quad with a pixel shader that handles shifting backlit and normal-mapped clouds, 'god' rays, and atmospheric scattering. It actually has a lower impact on framerate than the old sky because it is all drawn at the same time.
Iterative parallax mapping
I started to revisit the terrain surface shading today, and implemented parallax mapping to give a greater feeling of depth to the ground.