Game Development Community

Old waterblock fix got lost?

by David Dougher · in Torque Game Engine · 06/02/2004 (3:19 pm) · 1 replies

I recently began going through all the resources on the GG site noting all those which have been stated to have been implemented into the engine as fixes. I encountered the following fix from this Resource

http://www.garagegames.com/index.php?sec=mg&mod=resource&page=view&qid=4340

Fixing Disappearing Fog.

In the resource there was a fix to the following file...

In file: torque/engine/terrain/waterBlock change (around line 347):

if(!mRemoveWetEdges)
{ mObjBox.min.set(-1e4, -1e4, 0);
mObjBox.max.set( 1e4, 1e4, 1);
}

To:

if(!mRemoveWetEdges)
{ mObjBox.min.set( 0, 0, 0);
mObjBox.max.set( 1, 1, 1);
}

In the discussion which followed Tim Gift said this had been entered into CVS however, in my latest download of the HEAD the change is not present.

Is it still valid? Should it be re-entered into CVS?

About the author

Owner - Pariah Games, Adjunct Professor - Bristol Community College, Mentor - Game Design - Met School Newport, Mentor - Game Design - Met School Providence


#1
06/03/2004 (10:13 pm)
That's the change I was talking about in another thread, it was for some reason lost in some merge or something. It has to go back, althought I think I experienced some problems with that change, but I don't remember what it was.