Contraption Maker

Contraption Maker

Yeterli oy yok
CMPart.GetType()_bug
   
Ödül
Favorilere Ekle
Favorilere Eklendi
Favorilerden Çıkar
Level Type: Mod
Dosya Boyutu
Gönderilme
1.540 KB
29 Eyl 2014 @ 20:12
1 Değişiklik Notu ( görüntüle )

İndirmek için abone ol
CMPart.GetType()_bug

Açıklama
5 Yorum
wildgoosespeeder 17 Ağu 2017 @ 15:13 
Is this a thing anymore or has this issue been resolved and this workshop entry can be deleted?
frutiemax  [yaratıcı] 3 Eki 2014 @ 11:21 
That error is so bad I should have known...

Thanks for the answer keithj2.
keithj2 2 Eki 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  [yaratıcı] 30 Eyl 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 Eyl 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.