From 28ba97bdd8fb6ca352dc49dba01a66bd155ad523 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 15 Nov 2008 19:24:55 +0000 Subject: entity extensions --- src/render/dust.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/render/dust.cc') diff --git a/src/render/dust.cc b/src/render/dust.cc index 81d40fb..4b74ef9 100644 --- a/src/render/dust.cc +++ b/src/render/dust.cc @@ -120,13 +120,13 @@ void Dust::draw(math::Color const &dustcolor) float dsquare = 0; for (size_t j = 0; j < 3; j++) { dsquare += (core::localcontrol()->location()[j] - dust[i*3+j]) * (core::localcontrol()->location()[j] - dust[i*3+j]); - v[j] = dust[i*3+j] - core::localcontrol()->state()->axis().forward()[j] * traillength; + v[j] = dust[i*3+j] - core::localcontrol()->axis().forward()[j] * traillength; } if (dsquare > (core::localcontrol()->radius() + DUSTDISTANCE)*(core::localcontrol()->radius() + DUSTDISTANCE)) { for (size_t j = 0; j < 3; j++) { dust[i*3+j] = core::localcontrol()->location()[j] + (math::randomf(2) - 1) * (DUSTDISTANCE + core::localcontrol()->radius()); - v[j] = dust[i*3+j] - core::localcontrol()->state()->axis().forward()[j] * traillength; + v[j] = dust[i*3+j] - core::localcontrol()->axis().forward()[j] * traillength; } } -- cgit v1.2.3