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

        public void Resume(object sender)
        {
            var children = container.Children;

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

            container.Resume();
        }