| * @param params
*/
public PanicSceneWithColumn(String ident, ParCollection params) {
super(ident, params);
this.addAgent(
new StaticPanicObstacle(110, null, params),
new Vector2D(0, 0),
0,
new Vector2D(1, 1));
this.addAgent(
new StaticPanicObstacle(111, null, params),
new Vector2D(0, 98),
0,
new Vector2D(1, 1));
this.addAgent(
new StaticPanicObstacle(112, null, params),
new Vector2D(0, 0),
90,
new Vector2D(1, 1));
this.addAgent(
|