// s.locAt(H.CENTER).anchorAt(H.CENTER);
HDrawablePool pool = new HDrawablePool(50)
.autoAddToStage()
.add(new HRect())
.requestAll();
HSwarm swarm = new HSwarm().addGoal(H.mouse())
.speed(5)
.twitch(15)
.turnEase(.05f);
for(HDrawable d : pool) {
d.loc(random(width), random(height)).size(5);
swarm.addTarget(d);
}
// new HTween()
// .target(H.add(new HRect()).locAt(H.CENTER).anchorAt(H.CENTER))
// .property(H.ROTATIONY)
// .start(0).end(45)