Android Open Source - candy-drop Stage Prep






From Project

Back to project page candy-drop.

License

The source code is released under:

Copyright (c) 2014, Gregory Martin All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...

If you think the Android project candy-drop listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.gregfmartin.facetapper.utils;
/*from   w ww.j av  a 2 s. com*/
/**
 * Interface that declares methods that can be used to configure a Stage and its Actors in timely fashions. This
 * particular implementation is intended to be used nearly exclusively with the custom implementation of
 * {@link com.badlogic.gdx.scenes.scene2d.Stage} that is found in (insert my Stage implementation here). The benefit
 * of using this interface is the verbiage and the fact that it's already integrated with the custom Stage
 * implementation.
 */
public interface StagePrep {
    /**
     * The Stage and any Actors are instantiated here.
     */
    abstract public void castingCall();

    /**
     * Actors are placed in their initial starting positions on the Stage. This is where the Scene Graph Nodes
     * will be configured and positioned.
     */
    abstract public void rehearsal();
}




Java Source Code List

com.gregfmartin.facetapper.GameCore.java
com.gregfmartin.facetapper.Main.java
com.gregfmartin.facetapper.entities.CandyBase.java
com.gregfmartin.facetapper.entities.CandyDrop.java
com.gregfmartin.facetapper.entities.Pulse.java
com.gregfmartin.facetapper.entities.Screen.java
com.gregfmartin.facetapper.entities.SplashImage.java
com.gregfmartin.facetapper.entities.Sucker.java
com.gregfmartin.facetapper.screens.ArenaScreen.java
com.gregfmartin.facetapper.screens.AssociationScreen.java
com.gregfmartin.facetapper.screens.SplashScreen.java
com.gregfmartin.facetapper.screens.TitleScreen.java
com.gregfmartin.facetapper.utils.Colour.java
com.gregfmartin.facetapper.utils.CoreUtil.java
com.gregfmartin.facetapper.utils.DevSettings.java
com.gregfmartin.facetapper.utils.Gl20Utils.java
com.gregfmartin.facetapper.utils.MathEngine.java
com.gregfmartin.facetapper.utils.StagePrep.java