Last active
October 6, 2019 15:06
-
-
Save pirkla/30e9477b3ef1a49103304221267805aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class BasicMove : MonoBehaviour | |
{ | |
[SerializeField] | |
private float moveSpeed = 15f; | |
[SerializeField] | |
private float turnSpeed = 90f; | |
[SerializeField] | |
private float jumpSpeed = 20f; | |
// Update is called once per frame | |
void Update() | |
{ | |
if (Input.GetKey(KeyCode.Q)) | |
transform.Rotate(Vector3.up, -turnSpeed * Time.deltaTime); | |
if (Input.GetKey(KeyCode.E)) | |
transform.Rotate(Vector3.up, turnSpeed * Time.deltaTime); | |
if (Input.GetKey(KeyCode.W)) | |
transform.Translate(Vector3.forward * moveSpeed * Time.deltaTime); | |
if (Input.GetKey(KeyCode.S)) | |
transform.Translate(-Vector3.forward * moveSpeed * Time.deltaTime); | |
if (Input.GetKey(KeyCode.D)) | |
transform.Translate(Vector3.right * moveSpeed * Time.deltaTime); | |
if (Input.GetKey(KeyCode.A)) | |
transform.Translate(-Vector3.right * moveSpeed * Time.deltaTime); | |
if (Input.GetKey(KeyCode.Space)) | |
transform.Translate(Vector3.up * jumpSpeed * Time.deltaTime); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment