This site requires JavaScript, please enable it in your browser!
Greenfoot back
BimBom46
BimBom46 wrote ...

2020/1/22

The Object is not getting removed

BimBom46 BimBom46

2020/1/22

#
I am new to coding and i dont know why my bullet wont remove the other obejct
public void entferneRitter()
    {

        if (isTouching(Player.class))
        {
            removeTouching(Player.class);
        }
    }
Super_Hippo Super_Hippo

2020/1/22

#
Do you call the method from your act method?
You need to login to post a reply.