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:
%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?