Added things
This commit is contained in:
47
Assets/Scripts/Character/CameraMouseScript.cs
Normal file
47
Assets/Scripts/Character/CameraMouseScript.cs
Normal file
@ -0,0 +1,47 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class CameraMouseScript : MonoBehaviour
|
||||
{
|
||||
public float moveSpeed;
|
||||
public float shiftAdditionalSpeed;
|
||||
public float mouseSensitivity;
|
||||
public bool invertMouse;
|
||||
public bool autoLockCursor;
|
||||
|
||||
public Camera cam;
|
||||
|
||||
public GameObject character;
|
||||
|
||||
void Awake()
|
||||
{
|
||||
cam = this.gameObject.GetComponent<Camera>();
|
||||
this.gameObject.name = "SpectatorCamera";
|
||||
Cursor.lockState = (autoLockCursor) ? CursorLockMode.Locked : CursorLockMode.None;
|
||||
}
|
||||
|
||||
void Update () {
|
||||
if (character.transform.rotation.x < 15 && character.transform.rotation.x > -15)
|
||||
{
|
||||
float speed = (moveSpeed + (Input.GetAxis("Fire3") * shiftAdditionalSpeed));
|
||||
this.gameObject.transform.Translate(Vector3.forward * speed * Input.GetAxis("Vertical"));
|
||||
this.gameObject.transform.Translate(Vector3.right * speed * Input.GetAxis("Horizontal"));
|
||||
this.gameObject.transform.Translate(Vector3.up * speed *
|
||||
(Input.GetAxis("Jump") + (Input.GetAxis("Fire1") * -1)));
|
||||
this.gameObject.transform.Rotate(Input.GetAxis("Mouse Y") * mouseSensitivity * ((invertMouse) ? 1 : -1),
|
||||
Input.GetAxis("Mouse X") * mouseSensitivity * ((invertMouse) ? -1 : 1), 0);
|
||||
this.gameObject.transform.localEulerAngles = new Vector3(this.gameObject.transform.localEulerAngles.x,
|
||||
this.gameObject.transform.localEulerAngles.y, 0);
|
||||
|
||||
if (Cursor.lockState == CursorLockMode.None && Input.GetMouseButtonDown(0))
|
||||
{
|
||||
Cursor.lockState = CursorLockMode.Locked;
|
||||
}
|
||||
else if (Cursor.lockState == CursorLockMode.Locked && Input.GetKeyDown(KeyCode.Escape))
|
||||
{
|
||||
Cursor.lockState = CursorLockMode.None;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
11
Assets/Scripts/Character/CameraMouseScript.cs.meta
generated
Normal file
11
Assets/Scripts/Character/CameraMouseScript.cs.meta
generated
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e63e19e155f6b6348897150b67863072
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
27
Assets/Scripts/Character/HealthBarScript.cs
Normal file
27
Assets/Scripts/Character/HealthBarScript.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Animators.Leonid_Animator;
|
||||
using UnityEngine;
|
||||
using UnityEngine.InputSystem.XR.Haptics;
|
||||
using UnityEngine.Networking;
|
||||
using UnityEngine.UI;
|
||||
public class HealthBarScript : MonoBehaviour
|
||||
{
|
||||
public Image HealthBar;
|
||||
public float CurrentHealth;
|
||||
public float MaxHealth = 100f;
|
||||
public CharacterLocomotion Player;
|
||||
|
||||
private void Start()
|
||||
{
|
||||
//HealthBar = GetComponent<Image>();
|
||||
//Player = FindObjectOfType<CharacterLocomotion>();
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
CurrentHealth = Player.health;
|
||||
HealthBar.fillAmount = CurrentHealth / MaxHealth;
|
||||
}
|
||||
}
|
11
Assets/Scripts/Character/HealthBarScript.cs.meta
generated
Normal file
11
Assets/Scripts/Character/HealthBarScript.cs.meta
generated
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b91f3cc71f5c4a343b1ec3269f69a9d5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Reference in New Issue
Block a user