Exemple #1
0
        /**
         * Provided to make scroll view compatible with SWLayer's pause method
         */

        public void Pause(object sender)
        {
            container.Pause();

            var children = container.Children;

            if (children != null)
            {
                foreach (CCNode child in children)
                {
                    child.Pause();
                }
            }
        }