Skip to content

swkeep/simple-animator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

simple-animator

simple fivem animation lib for developers

  • to go to next animation after using wait_until_next you need to call
Animator:goNext()
  • example:
     local anim = {
          {
               animDict = 'anim@scripted@payphone_hits@male@',
               anim = 'fxfr_phl_1_intro_male',
               facial = 'fxfr_phl_1_intro_male_facial',
               timeout = {
                    wait_until_next = true,
                    clear = {
                         --stop_playback = true,
                         --stop_animation = true,
                         -- normal = true,
                         force = true
                    }
               },
               flag = 1,
          },
          {
               animDict = 'anim@scripted@payphone_hits@male@',
               anim = 'exit_left_male',
               facial = nil,
               timeout = {
                    after = 4500,
                    clear = {
                         force = true
                    }
               },
               flag = 0,
          }
     }
     Animator.playanimations(ped, anim)

     -- just one animation
     Animator.async.playanimation(ped, anim[1])
     Animator.sync.playanimation(ped, anim[1])

About

simple fivem animator lib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages