Charactercontroller Mobile Role (Simplemove)

Source: Internet
Author: User

Simplemove

The speed on the Y-axis is ignored. The speed is measured in meters per second. Gravity is automatically applied. Returns if the character is on the ground. It is recommended that you call only one move or simplemove per frame.

usingUnityengine;usingSystem.Collections; Public classTest1:monobehaviour {//declaring a private variable of type Charactercontroller    PrivateCharactercontroller Controller; //Initial movement speed of the character    Private floatPlayerspeed=0.0f; voidStart () {//Get Charactercontroller ComponentsController=getcomponent<charactercontroller>(); }        voidUpdate () {//orientation of the characterVector3 playerforward= This. Transform.        Transformdirection (Vector3.forward); //move forward        if(Input.getkey (KEYCODE.W)) {Playerspeed=5.0f; }        Else if(Input.getkey (KEYCODE.S)) {Playerspeed=-5.0f; }        Else if(Input.getkey (keycode.a)) { This. Transform. Rotate (vector3.up*-Ten); }        Else if(Input.getkey (KEYCODE.D)) { This. Transform. Rotate (vector3.up*Ten); }        Else{playerspeed=0.0f; } controller. Simplemove (Playerforward*playerspeed); }}

Charactercontroller Mobile Role (Simplemove)

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.