Game Development Community

Does this mean it's ready?

by Shook · in · 12/03/2004 (8:21 am) · 8 replies

I noticed the Lighting Pack page has been updated with new information, new images and this listed among the source code features: Based on version 1.3 of the Torque Game Engine.

But I don't see any announcements. May I assume this means it's ready? :)

*Twist whips out his wallet...

#1
12/03/2004 (8:40 am)
Got all excited, and then went to download it. The file still says it's version 1.1.5, so perhaps they will update it soon, but it's not up yet.
#2
12/04/2004 (7:25 am)
When its finally released they'll have to extra servers for the load!

"The news you've all been waiting for...Lighting Pack for 1.3 is OUT! Please wait in the queue so you don't all kill our servers, thanks : )"

Could a 5mb kill a server? Only if its the lighting pack :)
#3
12/06/2004 (10:44 am)
Update should be up very soon, yes.
#4
12/06/2004 (2:05 pm)
It's ready! :)

-John
#5
12/06/2004 (2:12 pm)
Nice! ...great work John!
#6
12/06/2004 (4:23 pm)
Is the download supposed to be so much bigger, or was the wrong archive uploaded?

This download is about 29 Mb compared with 4Mb for version 1.1.5
#7
12/06/2004 (4:34 pm)
Thanks John. Looks good ;)

Wysardy:It's the whole Torque 1.3, so far as I can tell -with- the Lighting Pack integrated into it.

Speaking of which, will you be releasing an old-style patch at all? Will a simple compare against stock 1.3 show us the relevant changes just fine?
#8
12/06/2004 (4:54 pm)
Hi guys,

That's right the full TGE 1.3 source code is included, all changes were kept simple and heavily commented. As an example:

void TSStatic::initPersistFields()
{
   Parent::initPersistFields();

   addGroup("Media");
   addField("shapeName", TypeFilename, Offset(mShapeName, TSStatic));
   endGroup("Media");



 [b]  //-----------------------------------------------
   // Lighting Pack code block
   //-----------------------------------------------
   sgInitPersistFields();
   //-----------------------------------------------
   // Lighting Pack code block
   //-----------------------------------------------[/b]
}

All code outside of the comment 'Lighting Pack code block' is pure TGE 1.3, this makes the Lighting Pack very easy to merge into your existing source.

Of course if you're only using the Lighting Pack there's no need for any work at all - just download and compile, it's all ready to go!

-John