Hey every body. Does anyone know how to make an actor disappear wiothout removing it using "setTransparency" method. Thanks


/*In the Actor's class*/ getWorld().removeObject(this); /*or in the world class*/ removeObject(anActor);
/*In the Actor's class*/ getImage().setTransparency(0); /*or in the world class*/ anActor.getImage().setTransparency(0);