Contraption Maker
Няма достатъчно оценки
CMPart.GetType()_bug
   
Награда
Добавяне към любими
В любими
Премахване от любими
Level Type: Mod
Размер на файла
Публикуван на
1.540 KB
29 септ. 2014 в 20:12
1 бележка за промяна ( преглед )

Абониране, за да се свали
CMPart.GetType()_bug

Описание
5 коментара
wildgoosespeeder 17 авг. 2017 в 15:13 
Is this a thing anymore or has this issue been resolved and this workshop entry can be deleted?
frutiemax  [автор] 3 окт. 2014 в 11:21 
That error is so bad I should have known...

Thanks for the answer keithj2.
keithj2 2 окт. 2014 в 12:11 
I took a look. The problem is the semi-colons as Mushy said.

What you have right now is something like:

if (x);
setBallVelocity

In that case - the "dothis" is *always* executed.

You need to say

if (x)
{
setBallVelocity
}
frutiemax  [автор] 30 септ. 2014 в 8:49 
Even if I remove the semi-colons, it SHOULD not behave like this. Have you tried the contraption? Controls are Up, Down, W and S. Billiard ball should not reverse direction when a wood plank touches bottom wall.
ショタ男の娘 29 септ. 2014 в 21:55 
Your if statements have semi-colons at the end, so they're not really doing anything. Try removing those. Also, you don't need to make all of the variables at the beginning for all of the parts.