How to make a 2d animated movie

How to make a 2d animated movie
How to make a 2d animated movie

How to make a 2d animated movie

Engineering @ noon.com, Prev. Founder @ nanoapps.io, Full stack veteran, Ex-Curefit, Ex-Practo

Published Aug 16, 2017Last updated Sep 11, 2017

Why should you read this ?

Well, there might be a day in your life where you have to make a product video with limited budget/time and skill or you might fall in love in with the
TEDed videos like me and wanted to create one . Okay , now lets watch the video.

Choosing the sandbox

I sat down to find the best suite of tools for making a 2d short film( List of 2d animation software). I evaluated each one of them carefully based on its availability(free or otherwise) and learning curve it possesses . Finally, I settled with Synfig, but only after spending a day with it, I realized that it will work good with Linux distros and not in El Capitan(newer MacOSx). So , I iterated my skillset to find a combination that would help me. Finally, I came up with the list

Git + JS + CSS3 + ScreenRecorderHD + iMovie + SoundRecorder

Getting started

  1. Initialize the project folder with git.
  2. Create animation with CSS3 keyframes and JS (for refined controls)
  3. Use a browser in full screen and record the scene using an HD recorder
  4. Add background sounds and voice over using a movie editor preferably iMovie.
  5. Make a movie out of all the videos recorded

Git Initialization

  • Initialize the folder with Git . Every scene in the short film will be a git branch
  • Every scene will definitely have common assets and functionality. All of this will go into the master branch. For eg. In the fish story, the background, the underground bubbles, the clouds are going to be the same always.
  • All the scenes will either check out from the master branch or the immediate scene before it .
  • You can switch back for the scenes by checking out to different branches
git checkout master
git checkout -b narration-continuation
git checkout -b final-scene

CSS keyframes

  • CSS3's keyframes are the most underused features. It has multiple sophisticated capabilities with simple
    syntatic structure.
  • You can loop an animation, provide a transition to it and define what the element should like at each state. For the water bubbles that came out from the bottom in the film the css is like
      .bubble {
        width: 25px;
        height: 25px;
        position: relative;
        bottom: 0px;
        display: inline-block;
        background-image:url('/public/images/blue-ball.png');
        -webkit-animation-name: bubble_moving_up; /* Chrome, Safari, Opera */
        -webkit-animation-iteration-count: infinite; /* Chrome, Safari, Opera */
        animation-name: bubble_moving_up;
        animation-iteration-count: infinite;

        }
        @keyframes bubble_moving_up {
        0%   {bottom: 0px; opacity:1;}
        100% {bottom: 200px; opacity:0;}
        }
        /* Chrome, Safari, Opera */
        @-webkit-keyframes bubble_moving_up {
        0%   {bottom: 0px; opacity:1;}
        100% {bottom: 200px; opacity:0;}
        }

  • This will be for one bubble , I populated the bubble using JS.

Orchestration using JS

  • JS is very much needed to make the co ordination between different animations of different characters.
  • Listen to the key stroke and perform necessary actions. You ll feel like making an actual film shooting except you have to tell "ACTION" using your mind voice .
window.onkeyup = function(e) {
  var key = e.keyCode ? e.keyCode : e.which;

  if (key == 38) {
      //Move the scientist fish up
  }else if (key == 40) {
      //Move all the fish to the right
  }
}

But who is recording all this ?

You need a HD screenrecorder to record whats going on the screen. Make sure you set your browser to full screen. The screen recorder is like cinematograper for your movie

Post production

Finally , you have to combine all the videos that was shot into a sequence of scences with narration and background music.
You will need a video editor to do all this. iMovie (free for mac) is one of the best and has a small learning curve although .

Your movie is as good as your assets(images, css, sound), CSS3 animation and your patience. Thanks for stopping by

Enjoy this post? Give Dinesh a like if it's helpful.

How to make a 2d animated movie
3

Share

Engineering @ noon.com, Prev. Founder @ nanoapps.io, Full stack veteran, Ex-Curefit, Ex-Practo

I am an experienced full-stack engineer, a creative thinker, a doer, and an entrepreneur at heart. Having enjoyed building software products for more than 8 years, I have realized that my passion lies in creating products that sol...

Discover and read more posts from Dinesh

Enjoy this post?

Leave a like and comment for Dinesh

How are 2D animated movies made?

Production. Each shot in a 2D animation involves multiple single drawings of characters(although some computer programs such as 'Anime Studio', can create characters much like puppets, which can be posed at different keyframes, and the computer moves the character between those keyframes).

How do I make a 2D animation?

Basic Steps for 2D Animation.
Set up for success with a storyboard. When you first get an animation project, put together a storyboard. ... .
Choose your animation software. ... .
Start every animation with still images. ... .
Keep your animations organized. ... .
Make use of all your resources..

How much does it cost to make a 2D animated movie?

One minute of 2D animated video could cost from $8,000 to $50,000. 3D animation is much pricier, as it could cost from $10,000 to $200,000 per minute. The price range difference is based on the number of characters and advanced features. Most studios don't put up their animation production cost on their websites.

Is making 2D animation easy?

Is 2D Animation Easy? Like any other creative art form, animation can be as easy or hard as you want it to be. With 2D animation, all you need to get started is a pencil and some basic software. If you're looking to create beautiful animated cartoons, the best first step is to work on your static drawing skills.