using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player2 : MonoBehaviour
{
[SerializeField] KeyCode keyOne;
[SerializeField] KeyCode keyTwo;
[SerializeField] Vector3 moveDirection;
private void FixedUpdate()
{
if (Input.GetKey(keyOne))
{
GetComponent<Rigidbody>().linearVelocity += moveDirection;
}
if (Input.GetKey(keyTwo))
{
GetComponent<Rigidbody>().linearVelocity -= moveDirection;
}
}
}
This code is exactly what was in the lesson on YouTube, where the cube moved up and down, but for me it does not move with the same button setting.Unity 6000.0.44f1
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player2 : MonoBehaviour
{
[SerializeField] KeyCode keyOne;
[SerializeField] KeyCode keyTwo;
[SerializeField] Vector3 moveDirection;
private void FixedUpdate()
{
if (Input.GetKey(keyOne))
{
GetComponent<Rigidbody>().linearVelocity += moveDirection;
}
if (Input.GetKey(keyTwo))
{
GetComponent<Rigidbody>().linearVelocity -= moveDirection;
}
}
}
This code is exactly what was in the lesson on YouTube, where the cube moved up and down, but for me it does not move with the same button setting.Unity 6000.0.44f1
Share Improve this question edited yesterday marc_s 756k184 gold badges1.4k silver badges1.5k bronze badges asked yesterday dreaming002dreaming002 31 bronze badge New contributor dreaming002 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 5 |1 Answer
Reset to default 0(For quite a while by now) the Input
class is legacy and there is a "new" Input System
instead (see Input).
In newer Unity version also the default setting will be using only the new Input System.
=> You should start using the Input System instead as well.
If for some reason you rather want to stick to the legacy Input
class (imho a valid reason is for example rapid prototyping where a full Input System adaption might be a bit overkill) you have to modify the according setting in Player Settings
-> Other
-> Configuration
-> Active Input Handling
Choose how to handle input from users.
Input Manager (Old) => Uses the traditional Input settings.
Input System Package (New) => Uses the Input system. This option requires you to install the InputSystem package.
Both => Use both systems.
moveDirection
correctly set in the inspector? – derHugo Commented yesterday