shrujupatch.lua 273 B

123456789101112131415161718
  1. local ShrujuPatch = extend(Animation)
  2. ShrujuPatch.scale = 1
  3. ShrujuPatch.default = 'spawn'
  4. ShrujuPatch.states = {}
  5. ShrujuPatch.states.spawn = {
  6. priority = 1,
  7. speed = .85
  8. }
  9. ShrujuPatch.states.idle = {
  10. priority = 1,
  11. loop = true,
  12. speed = .06
  13. }
  14. return ShrujuPatch