Package hype.extended.behavior

Examples of hype.extended.behavior.HSwarm


//    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)
View Full Code Here

TOP

Related Classes of hype.extended.behavior.HSwarm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.