Jump to content

Is there any way to see the list of registered animations and their tags?


BurnyD

Recommended Posts

Create a script somewhere and use this as the code (you may want to change the main function name or change it to an event depending how you will run this script in the game).

Remember to set the properties for the script.

 

sslAnimationSlots property AnimSlots Auto
SexLabFramework Property SexLab Auto


Function traceAnims()
  int totAnims = 0
  int numActors = 0
  while (numActors < 6)
    sslBaseAnimation[] anims = SexLab.GetAnimationsByTags(numActors, "", "", RequireAll = true)
    int i = anims.length
    while(i)
      i -= 1
      totAnims += 1
      String theTags = ""
      int numTags = anims[i].Tags.length
      while (numTags)
        numTags -= 1
        thetags += anims[i].Tags[numTags] +", "
      endWhile
      Debug.Trace(totAnims + ") " anims[i].Registry + ": " + anims[i].Name + " Tags: " + theTags + " numMales=" + anims[i].MaleCount() + " numFemales=" + anims[i].FemaleCount() + " numActors=" + numActors)
    endWhile
  endWhile
endFunction

In your papyrus.log you will see the list of all the registered animations with a set of info for each one.

 

 

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use