ARSA Language  2.8
(Encryption, GPU and Web 3.0)
ARSA Language Quick Motion and Animation Guide.

This tutorial will show you about protocol to control motion and animation with layer in Photoshop.

1. Introduction

  • Motion and Animation control in ARSA Language follows:
    1. Rotate
    2. Move
    3. MoveIn
    4. MoveOut
    5. Fade
    6. Scale
    7. Visible
    8. FlipBook
    9. Lottie
    10. Animated PNG
    11. GIF

2. Rotate

3. Move

4. MoveIn

5. MoveOut

6. Fade

7. Scale

8. Visible

9. FlipBook

10. Lottie

  • Lottie animation is a JSON-based animation file format that enables designers to ship animations on any platform as easily as shipping static assets. They are small files that work on any device and can scale up or down without pixelation.
lottie="name" [fps loop pingpong width height]
  1. name is lottie animation file name (MUST under double quote -> "filename.json"). May be user can download from official website: https://lottiefiles.com/
  2. fps is frame speed, more is fast less is slow, 30 is default.
  3. loop is boolean 1 = true, 0 = false (once)
  4. pingpong style animation playback (start->end->start); boolean 1 = true, 0 = false (once)
  5. width quality size of texture in width, default: 512 pixel
  6. height quality size of texture in height, default: 512 pixel
    See also
    lottie()
    SourceCode: lottie

            

11. Animated PNG

  • Animated Portable Network Graphics (APNG) is a file format which extends the Portable Network Graphics (PNG) specification to permit animated images that work similarly to animated GIF files, while supporting 24-bit images and 8-bit transparency not available for GIFs. It also retains backward compatibility with non-animated PNG files. https://en.wikipedia.org/wiki/APNG
video="name.png" [loop]
  1. name is animated png file name (MUST under double quote -> "filename.png").
  2. loop is boolean 1 = true, 0 = false (once)
    See also
    video()
    SourceCode: Animated PNG

            

12. GIF

  • The Graphics Interchange Format is a bitmap image format that was developed by a team at the online services provider CompuServe led by American computer scientist Steve Wilhite and released on 15 June 1987.[1] It is in widespread usage on the World Wide Web due to its wide support and portability between applications and operating systems. https://en.wikipedia.org/wiki/GIF
video="name.gif" [loop]
  1. name is gif file name (MUST under double quote -> "filename.gif").
  2. loop is boolean 1 = true, 0 = false (once)
    See also
    video()
    SourceCode: GIF