Author Topic: Mounting images to a vehicle problem  (Read 886 times)

Good day fellow people of the Blockland community.
I would like to ask something relating mounting images to a vehicle.
Say that i want to mount 3 images to a vehicle using:
Code: [Select]
%speed = vectorLen(%obj.getVelocity());
if(%speed < %obj.dataBlock.minJetSpeed)
{
if(%obj.getMountedImage(4) !$= "")
{
%obj.unMountImage(2);
%obj.unMountImage(3);
%obj.unMountImage(4);
}
}
else
{
if(%obj.getMountedImage(4) $= 0)
{
%obj.mountImage(JetImage1,2);
%obj.mountImage(JetImage2,3);
%obj.mountImage(JetImage3,4);
}
}
However, when testing it out, it only shows JetImage1 and JetImage2.
Why would this be?

I have no clue at the moment and i would like to know what is wrong.
Everything in the model is set right as well as in the images.
Is there something special with ImageNode 4?

I get this too alot when I try making trails

You cannot mount more than 4 images to a single object.

You cannot mount more than 4 images to a single object.
lame crap restrictions. noobs are annoying

Ah right, i am so silly.
I heard that before but i didn't see that i tried to use more then 4 here...

Thanks.