Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 14th, 2012  |  syntax: None  |  size: 0.63 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. first, turn off this:
  2.  
  3.                 game.useDefaultFeedback = true;
  4. to this:
  5.                 game.useDefaultFeedback = false;
  6.  
  7. then find this:
  8.  
  9.         function theme_eventPlayerHitTap(playerObject, tapObject, positionArray)
  10.         end
  11.  
  12. and make it this
  13.  
  14.  
  15.         function theme_eventPlayerHitTap(playerObject, tapObject, positionArray)
  16.                 game:addSprite{ name = "justice_feedback_sprite", shader = "justice_feedback_shader", alpha = 0.75, alphaVelocity = -1.2, scaleAcceleration = {5.5, -6.5, 0}, scaleVelocity = {2.5, 0, 0}, scale = {2.5, 2.5, 1.0}, rotation = {0, 0, 0}, position = positionArray, scenePath = "Game/Columns" };
  17.         end
  18.  
  19. modify the variables to suit