Skip to content

Instantly share code, notes, and snippets.

@jiahaog
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jiahaog/a12233e9440216494fcd to your computer and use it in GitHub Desktop.
Save jiahaog/a12233e9440216494fcd to your computer and use it in GitHub Desktop.
How to set touch path
@Override
public void onValidPlayerInteraction(DotsInteraction interaction) {
boolean animate = interaction.isAnimate();
boolean clearAll = interaction.isClearAll();
boolean makeVisible;
if (interaction.getState() != DotsInteractionStates.TOUCH_UP) {
makeVisible = true;
} else {
makeVisible = false;
}
// based on the booleans, set the touch path appropriately
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment