Package com.l2client.animsystem

Examples of com.l2client.animsystem.Transitions


 
  private static final Logger log = Logger.getLogger(AnimationSystemTest.class.getName());
  private String currentAnim = "";

  public void testSelf() throws MalformedURLException{
    Mediator mediator = new Mediator(getActions(), new Transitions(new String[][]{}));
    InputProvider in = new InputProvider();
    mediator.setAnimationProvider(this);
    mediator.update(0.5f);
    log.info("Animation name:"+currentAnim);
    assertTrue(currentAnim.startsWith("stand_"));
View Full Code Here

TOP

Related Classes of com.l2client.animsystem.Transitions

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.