Hi, I have tried playing around with Construct 2 a bit. I have never touched Construct 1 though, and I am aware that Construct 2 is still under beta development.
So the thing is this, right now, I want this simple thing written in the pseudo code below but I am not sure whether it is possible yet:
//a bomb explodes and spreads bullets in all directions.
for (int i = 0; i < 360; i += 10){
GameObject *createdObject_ID = createObject(bullet, thisObject->getX(), thisObject->getY());
createdObject_ID->setDirection( i );
createdObject_ID->setSpeed( 3 );
}
[/code:22a3zi2c]
So is it possible in Construct 2 now or not? Am I missing something? What should I look for in the event sheet?