241
Before and after shots. Will come with creepfile van. still WIP. and TheWorm, ill model a sedan from this.


This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.




datablock AudioProfile(hornSound)
{
filename = "./sound/horn.wav";
description = AudioClosestLooping3d;
preload = true;
};
function testcar::onTrigger(%data, %obj, %trigger, %state)
{
// data = datablock
// obj = object number
// trigger = 0 for "fire", 1 for "jump", 3 for "thrust"
// state = 1 for firing, 0 for not firing
if(%trigger == 0)
{
%obj.play2d(hornsound);
}
}

