Table of Contents

Scripted Animation

Sequence Structure

A sequence structure is a Squirrel table made up of nested arrays, tables and primitives.

{ 
    frames = 
        [            
            // Frame 1
            {
                duration = ..,
                transforms = 
                [
                    // Transform 1
                    {
                    ....
                    },
                    
                    // Transform 2
                    ....
                ]                
            },
            // Frame 2
            ....
        ],
        
        ....
}

Transformation Types

Scale

Rotate

Translate

Goto