refactor: remove unnecessary Debug.Log statement and variable declaration

This commit is contained in:
cuqmbr 2022-03-18 11:14:43 +02:00
parent 485e7a5df2
commit 5bceed3436
3 changed files with 3 additions and 7 deletions

View File

@ -1931,7 +1931,7 @@ Camera:
m_Enabled: 1 m_Enabled: 1
serializedVersion: 2 serializedVersion: 2
m_ClearFlags: 2 m_ClearFlags: 2
m_BackGroundColor: {r: 0.3764706, g: 0.85882354, b: 0.664143, a: 0} m_BackGroundColor: {r: 0.49529448, g: 0.85882354, b: 0.3764706, a: 0}
m_projectionMatrixMode: 1 m_projectionMatrixMode: 1
m_GateFitMode: 2 m_GateFitMode: 2
m_FOVAxisMode: 0 m_FOVAxisMode: 0
@ -2078,7 +2078,7 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Material: {fileID: 0} m_Material: {fileID: 0}
m_Color: {r: 0.85882354, g: 0.3764706, b: 0.73264116, a: 1} m_Color: {r: 0.85882354, g: 0.43667537, b: 0.3764706, a: 1}
m_RaycastTarget: 1 m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1 m_Maskable: 1

View File

@ -1,5 +1,4 @@
using System; using System;
using UnityEngine;
public class PlayerEvents public class PlayerEvents
{ {

View File

@ -1,12 +1,10 @@
using UnityEngine; using UnityEngine;
using UnityEngine.InputSystem; using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Controls;
public class PlayerInput : MonoBehaviour public class PlayerInput : MonoBehaviour
{ {
private Camera _camera => Camera.main; private Camera _camera => Camera.main;
[SerializeField] private PlayerController _playerController; [SerializeField] private PlayerController _playerController;
[SerializeField] private ScoreManager _scoreManager;
private void Update() private void Update()
{ {
@ -21,7 +19,6 @@ public class PlayerInput : MonoBehaviour
//Check touchscreen input //Check touchscreen input
if (Touchscreen.current != null && Touchscreen.current.primaryTouch.press.wasPressedThisFrame) if (Touchscreen.current != null && Touchscreen.current.primaryTouch.press.wasPressedThisFrame)
{ {
Debug.Log(_camera.ScreenToWorldPoint(Touchscreen.current.primaryTouch.position.ReadValue()));
_playerController.OnTouch(_camera.ScreenToWorldPoint(Touchscreen.current.touches[0].position.ReadValue())); _playerController.OnTouch(_camera.ScreenToWorldPoint(Touchscreen.current.touches[0].position.ReadValue()));
PlayerEvents.SendScreenTouched(); PlayerEvents.SendScreenTouched();
return; return;