(NO.00003) iOS games simple robot projection game forming notes (15th)

Source: Internet
Author: User

(NO.00003) iOS games simple robot projection game forming notes (15th)

Open the Robot. h file in Xcode and add the following two methods:

-(Void) moveArm :( MoveDirection) direction;-(void) armShoot;

Implement these two methods in Robot. m:

-(Void) armShoot {[_ arm armShoot];}-(void) moveArm :( MoveDirection) direction {[_ arm moveArm: direction];}

The touchBegan method must be added because you need to select the robot when you click it:

-(Void) touchBegan :( CCTouch *) touch withEvent :( CCTouchEvent *) event {self. isSelected = YES; LevelRestrict * lr = [LevelRestrict sharedInstance]; lr. selectedRobot = self; [[MainScene sharedInstance] selectRobot: self]; // transfer a touch event to a lower-level node // [super touchBegan: touch withEvent: event];}

Now, add the selectRobot method to MainScene. m. The main content of the selectRobot method is to select a robot. You must select another robot. At any time, only one robot can be selected.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.