Author Archive

Jquery Countdown Script

January 19, 2012

So, I had the need the other day for one of those “if your page does not redirect in X seconds, click here” scripts where the X would count down. Here is a little piece of jquery i wrote to handle this.

Posted in Code Snippets, Jquery Comments Off

Hack-N-Slash Kit Annoucement

June 22, 2011

Hey Guys,
I’ve been getting a lot of requests about when the 3D Isometric Starter Kit will be coming back around and upgraded for T3D. For those of you that do not know the story, that kit was developed in partnership with another company. So, unfortunately the ISK will not be coming back.
However! I am currently [...]

Posted in Hack N Slack Kit, Isometric Starter Kit, Updates Comments Off

ISK Update

March 2, 2011

Reason why Isometric Starter Kit is no longer for sale.

Posted in Isometric Starter Kit, Updates Comments Off

TGB Level Loader

March 15, 2010

So working with a new board selection class for La Box and I came across a nice little piece of code for loading levels.

Posted in Code Snippets Comments Off

Dynamic Position Particle Effects

March 10, 2010

So when I was working on some of the power ups for La Box I needed a way to display several particle effects on the screen at the same time. So what i did was create a function to do this for me.
function CreateGroundPountEffect(%pos)
{
%particle = new t2dParticleEffect();
%particle.addToScene($sceneGraph);
%particle.loadEffect(”~/data/particles/SmokePuff.eff”);
%particle.Position = %pos;
%particle.playEffect();
}
Use this function and pass in the [...]

Posted in Code Snippets Comments Off

TGB Audio Setup

March 10, 2010

Here is a sample audio setup class for torque game builder. Simply create a new script file. Add in the following.
new AudioDescription(AudioNonLooping)
{
volume = 1.0;
isLooping = false;
isStreaming = true;
};
new AudioDescription(AudioLooping)
{
volume = 1.0;
isLooping = true;
isStreaming = true;
};
new AudioProfile(AudioSpaceBass)
{
filename = “~/data/audio/SpaceBass.wav”;
description = “AudioLooping”;
preload = true;
};
Execute the script in game.cs. then use alxPlay(AudioSpaceBass); anywhere you want to play the [...]

Posted in Code Snippets Comments Off

FL Studio 9 Export

March 10, 2010

Hey All. So I was working on generating some background music for La Box and using FL Studio 9. Well with torque game builder I came across something interesting. If you try to export your .wav file on any settings other than the default FL Studio 9 export setting you get nothing but static. Might [...]

Posted in Updates Comments Off

La Box Website

November 21, 2009

the website for la box is up and running! check out the website to find out more information on the 2D strategy puzzle game!
VIEW THE OFFICIAL WEBSITE
Tweet

Posted in La Box Comments Off

ISK 2.0

November 21, 2009

That’s right! it’s in the works. As more details are settled upon we will let you know!
Tweet

Posted in Isometric Starter Kit Comments Off