PlayerMovementScript + CameraScript angefangen
This commit is contained in:
parent
073ee946b1
commit
fee185dffc
@ -520,6 +520,7 @@ GameObject:
|
|||||||
- component: {fileID: 1314392193}
|
- component: {fileID: 1314392193}
|
||||||
- component: {fileID: 1314392192}
|
- component: {fileID: 1314392192}
|
||||||
- component: {fileID: 1314392191}
|
- component: {fileID: 1314392191}
|
||||||
|
- component: {fileID: 1314392196}
|
||||||
m_Layer: 0
|
m_Layer: 0
|
||||||
m_Name: Player
|
m_Name: Player
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
@ -644,6 +645,21 @@ Transform:
|
|||||||
- {fileID: 1132902782}
|
- {fileID: 1132902782}
|
||||||
m_Father: {fileID: 0}
|
m_Father: {fileID: 0}
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: -90, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: -90, z: 0}
|
||||||
|
--- !u!114 &1314392196
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1314392190}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: e02ea9a2e5b1a1d4295536c2a8b1353e, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
speed: 2
|
||||||
|
xSensitivity: 0
|
||||||
|
ySensitivity: 0
|
||||||
--- !u!1 &1771553239
|
--- !u!1 &1771553239
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -0,0 +1,47 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
public class PlayerMoveScript : MonoBehaviour
|
||||||
|
{
|
||||||
|
|
||||||
|
public float speed;
|
||||||
|
public float xSensitivity;
|
||||||
|
public float ySensitivity;
|
||||||
|
private Rigidbody rb;
|
||||||
|
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
rb = GetComponent<Rigidbody>();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update is called once per frame
|
||||||
|
void Update()
|
||||||
|
{
|
||||||
|
// In welche Richtung rennt der Spieler?
|
||||||
|
int moveDirX = 0;;
|
||||||
|
int moveDirZ = 0;
|
||||||
|
|
||||||
|
if(Input.GetKey(KeyCode.W)){moveDirZ--;}
|
||||||
|
if(Input.GetKey(KeyCode.S)){moveDirZ++;}
|
||||||
|
if(Input.GetKey(KeyCode.D)){moveDirX--;}
|
||||||
|
if(Input.GetKey(KeyCode.A)){moveDirX++;}
|
||||||
|
|
||||||
|
Vector3 moveDir = new Vector3(moveDirX, 0, moveDirZ);
|
||||||
|
moveDir.Normalize();
|
||||||
|
|
||||||
|
rb.velocity = transform.TransformDirection(new Vector3(moveDir.x * speed, rb.velocity.y, moveDir.z * speed));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void look()
|
||||||
|
{
|
||||||
|
//float xMouseMovement = Input.GetAxis("Mouse X") * xSensitivity * time.deltaTime;
|
||||||
|
//float yMouseMovement = Input.GetAxis("Mouse Y") * ySensitivity * time.deltaTime;
|
||||||
|
|
||||||
|
//Vector3 currentRotation = playerCam.transform.localRotation.eulerAngles;
|
||||||
|
|
||||||
|
//float newDirX = currentRotation.y + xMouseMovement;
|
||||||
|
//float newDirY = currentRotation.y + xMouseMovement;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e02ea9a2e5b1a1d4295536c2a8b1353e
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
Loading…
Reference in New Issue
Block a user