|
@@ -118,7 +118,8 @@ public class AnimEvent extends AbstractCinematicEvent {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public void onPause() {
|
|
public void onPause() {
|
|
- logger.log(Level.SEVERE, "");
|
|
|
|
|
|
+ logger.log(Level.INFO, "layer={0} action={1}",
|
|
|
|
+ new Object[]{layerName, actionName});
|
|
|
|
|
|
Action eventAction = composer.action(actionName);
|
|
Action eventAction = composer.action(actionName);
|
|
eventAction.setSpeed(0f);
|
|
eventAction.setSpeed(0f);
|
|
@@ -129,7 +130,8 @@ public class AnimEvent extends AbstractCinematicEvent {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public void onPlay() {
|
|
public void onPlay() {
|
|
- logger.log(Level.INFO, "");
|
|
|
|
|
|
+ logger.log(Level.INFO, "layer={0} action={1}",
|
|
|
|
+ new Object[]{layerName, actionName});
|
|
|
|
|
|
Action currentAction = composer.getCurrentAction(layerName);
|
|
Action currentAction = composer.getCurrentAction(layerName);
|
|
Action eventAction = composer.action(actionName);
|
|
Action eventAction = composer.action(actionName);
|
|
@@ -205,7 +207,8 @@ public class AnimEvent extends AbstractCinematicEvent {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public void setTime(float time) {
|
|
public void setTime(float time) {
|
|
- logger.log(Level.INFO, "time = {0}", time);
|
|
|
|
|
|
+ logger.log(Level.INFO, "layer={0} action={1} time={2}",
|
|
|
|
+ new Object[]{layerName, actionName, time});
|
|
super.setTime(time);
|
|
super.setTime(time);
|
|
|
|
|
|
Action currentAction = composer.getCurrentAction(layerName);
|
|
Action currentAction = composer.getCurrentAction(layerName);
|