Skip to content

Instantly share code, notes, and snippets.

@pirkla
Last active October 6, 2019 15:06
Show Gist options
  • Save pirkla/30e9477b3ef1a49103304221267805aa to your computer and use it in GitHub Desktop.
Save pirkla/30e9477b3ef1a49103304221267805aa to your computer and use it in GitHub Desktop.
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