This commit is contained in:
2022-03-01 16:05:07 +01:00
parent 9858f6cf43
commit 639859e0c6
49 changed files with 3781 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerMovement3d : MonoBehaviour
{
public float movespeed = 15f;
public Rigidbody rb;
Vector3 movement;
Vector3 rotation;
float x, y;
void Update() {
//Input
x = Input.GetAxisRaw("Horizontal");
y = Input.GetAxisRaw("Vertical");
movement = new Vector3(0f, 0f, y);
rotation = new Vector3(0f, x, 0f);
}
void FixedUpdate() {
//Movement
rb.MovePosition(rb.position + movement * movespeed * Time.deltaTime);
//rb.AddForce(rb.position + movement * movespeed * Time.deltaTime);
rb.MoveRotation(rb.rotation * Quaternion.Euler(rotation.x, rotation.y, rotation.z));
}
}