Jump to content

Recommended Posts

You can use AddStategraphPostInit, like this for example:

AddStategraphPostInit("STATEGRAPH_NAME", function(self)
    local state = self.states["STATE_NAME"] -- Get the state you want to modify

    state.tags = { "TAG_NAME" } -- For completely overriding the tags table

    table.insert(state.tags, "TAG_NAME") -- For adding a new tag into the table
end)

 

Edited by -LukaS-
  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...