Beispiel #1
0
 public override void TouchesMoved(List <CCTouch> touches)
 {
     foreach (var item in touches)
     {
         CCTouch    touch    = item;
         TouchPoint pTP      = s_dic[touch.Id];
         CCPoint    location = touch.Location;
         pTP.SetTouchPos(location);
     }
 }
Beispiel #2
0
 void onTouchesMoved(List <CCTouch> touches, CCEvent touchEvent)
 {
     foreach (var item in touches)
     {
         CCTouch    touch    = item;
         TouchPoint pTP      = s_dic[touch.Id];
         CCPoint    location = touch.LocationOnScreen;
         location = Layer.ScreenToWorldspace(location);
         pTP.SetTouchPos(location);
     }
 }
Beispiel #3
0
        void onTouchesBegan(List <CCTouch> touches, CCEvent touchEvent)
        {
            foreach (var item in touches)
            {
                CCTouch    touch      = (item);
                TouchPoint touchPoint = TouchPoint.TouchPointWithParent(this);
                CCPoint    location   = touch.Location;
                touchPoint.SetTouchPos(location);
                touchPoint.SetTouchColor(s_TouchColors[touch.Id % 5]);

                AddChild(touchPoint);
                s_dic.Add(touch.Id, touchPoint);
            }
        }
Beispiel #4
0
        public override void TouchesBegan(List <CCTouch> touches)
        {
            foreach (var item in touches)
            {
                CCTouch    touch      = (item);
                TouchPoint touchPoint = TouchPoint.TouchPointWithParent(this);
                CCPoint    location   = touch.Location;

                touchPoint.SetTouchPos(location);
                touchPoint.SetTouchColor(s_TouchColors[touch.Id % s_TouchColors.Length]);

                AddChild(touchPoint);
                s_dic.Add(touch.Id, touchPoint);
            }
        }