void Start()
    {
        kelloggs.Clear();

        SerialTest();
        WaitTest();
        CombinedTest();

        Debug.Log(kelloggs.DebugLog());
    }
    void Test()
    {
        kelloggs.Clear();

        // Shrink the cube
//		Shrink();

        // Blow the cube as a letter box
        Blow();

        // Print the action queue
        Debug.Log(kelloggs.DebugLog());
    }