Package limelight.model

Examples of limelight.model.CastingDirector


        playerNames.add(playerName);
    }

    final Scene scene = getRoot();
    final PlayerRecruiter director = scene.getPlayerRecruiter();
    final CastingDirector castingDirector = Context.instance().castingDirector;
    for(String playerName : playerNames)
    {
      if(!playerName.isEmpty() && !hasPlayerWithName(playerName))
      {
        castingDirector.castRole(this, playerName, director);
      }
    }
  }
View Full Code Here


    if(context.studio == null)
      context.studio = new Studio();

    if(context.castingDirector == null)
      context.castingDirector = new CastingDirector();
  }
View Full Code Here

TOP

Related Classes of limelight.model.CastingDirector

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.