Can I reverse the trigger Animation?

 

Can I reverse the animation movement? The original movement is the Object rising. Can I reverse it to the Object descending?


   huseen

 
Profile Image
TwentyStudios
  -  

Yea, of course! Is the object animated in Aximmetry or in Unreal? If it’s in Unreal, you could use a flip/flop trigger to switch between running the animation forward or backwards. Anything you can do in a UE5 game can be done in Unreal for Aximmetry. It’s the same engine, nothing is “converted”. Then it’s just a matter of sending triggers from Aximmetry into Unreal, and which is very easy. 

 
Profile Image
huseen
  -  

I'm using Level Sequence, so I want to revert the animation In Aximmetry 


 
Profile Image
huseen
  -  

When using the flip flop where link the second output to B


 
Profile Image
huseen
  -  

Also, how can the movement of the trigger be reversed within Aximmetry ?


 
Profile Image
TwentyStudios
  -  

Again, Aximmetry isn’t involved in the animation. You just need to set up a blueprint in Unreal that receives triggers to play back the animation forwards or backwards. 

 
Profile Image
huseen
  -  

I tried to add aflip flop and connect it with reverse play Node , but the process did not work

If you know the correct way, please tell us



 
Profile Image
TwentyStudios
  -  

Try adding a separate Aximmetry Trigger for the reverse play instead of the flip flop. 

 
Profile Image
huseen
  -  

If I use this method, I will have two triggers


 
Profile Image
huseen
  -  

Previously, I used to reverse the trigger movement inside Aximmetry , but I forgot this method because I am currently working on the ZD.

 
Profile Image
TwentyStudios
  -  

To get a toggle from Aximmetry you should use a GetAximmetryLogical instead. 

 
Profile Image
huseen
  -  

But the type of value is Boolean, so how do we link it to the trigger?


 
Profile Image
Eifert@Aximmetry
  -  

Hi,

Huseen your blueprint was wrong with the Flip Flop cause you placed the Flip Flop before the Trigger Event binding (registration). You shouldn't place logical nodes between the Event BeginPlay and Bind Event to Trigger nodes as it can stop the Trigger from being registered in your scene.
Instead, you should place the Flip Flop after the Custom Event node and then the Flip Flop will be executed after you press the trigger button in Aximmetry:

Warmest regards,




 
Profile Image
TwentyStudios
  -  

@Eifert: How would we do an on/off trigger from Aximmetry instead of a flip/flop single trigger? 

 
Profile Image
Eifert@Aximmetry
  -  

Hi TwentyStudios,

You could use the Branch node:
It is like the If module in Aximmetry.

You might be able to connect this after the Event Tick instead of CustomEvent, sparing you the trigger event. The Play and Play Reverse node probably checks internally if the sequence is in Play or Reverse Play and they don't execute again if it is so. Otherwise, you could connect it after the Event Tick by saving the last Aximmetry Logical value into a variable in the blueprint and only executing after the Event Tick if the variable is not the same as the Aximmetry Logical value.

Warmest regards,

 
Profile Image
huseen
  -  

Thank you  Eifert@Aximmetry.

The process was completed successfully.

I remember I used this method, but I forgot it