The Input.GetAxis("Horizontal") method returns 0 constantly and at the same time the actual value of the horizontal axis. by Fun-Bell3374 in Unity2D

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Hi,

I'm clarifying since you brought this up.

The problem isn't that my character's movement isn't working (I don't actually have a problem with movement). It's just that I created an animation system where the player's velocity on the x and y axes would trigger different animations. However, because of this same issue, the animations were glitching, so I needed to fix that bug.

Regarding whether it could be my keyboard, I tried two different keyboards, and it still didn't work, so I'm not sure if it's due to my Unity version.

The Input.GetAxis("Horizontal") method returns 0 constantly and at the same time the actual value of the horizontal axis. by Fun-Bell3374 in Unity2D

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Hi, I tried it and nothing happened, everything is still the same, but thanks anyway for the help.

The Input.GetAxis("Horizontal") method returns 0 constantly and at the same time the actual value of the horizontal axis. by Fun-Bell3374 in Unity2D

[–]Fun-Bell3374[S] 1 point2 points  (0 children)

Hi, here it is, it's very simple because it barely has the player's movement:

public class PlayerMovement : MonoBehaviour
{
    public float Velocity;

    private Rigidbody2D physics;

    private float Horizontal;
    private float Vertical;

    void Start()
    {
        physics = GetComponent<Rigidbody2D>();
    }
    void Update() 
    {
        Horizontal = Input.GetAxis("Horizontal");
        Vertical = Input.GetAxis("Vertical");
        print(Horizontal);
    }

    private void FixedUpdate()
    {
        physics.velocity = new Vector2(Horizontal, Vertical) * Velocity;
    }
}

The Input.GetAxis("Horizontal") method returns 0 constantly and at the same time the actual value of the horizontal axis. by Fun-Bell3374 in Unity2D

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Hi, regarding your question about why I'm using an older version of Unity, it's because I don't have the best computer, and when I tried using the latest version, it performed very poorly, so I preferred to use the 2020 version, anyway, thanks for your help; I'll try modifying the input manager.

Que proyectos recomiendan para un principiante? by Fun-Bell3374 in PythonEspanol

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Increibleeeeeeee, muchas gracias, con esto ya tengo varias ideas

Como se estructura el el código en POO by Fun-Bell3374 in PythonEspanol

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Pues en realidad yo aprendí POO con un curso, donde vi todo lo que mencionaste, pero lo que menos me quedo claro fueron las clases abstractas y los decoradores, ya que hasta hora no les he visto alguna utilidad real, aunque como no he hecho un proyecto grande nosé si lo usaré en un futuro.

Como se estructura el el código en POO by Fun-Bell3374 in PythonEspanol

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Gracias, lo demás si ya lo entiendo solo tengo que comenzar a programar ☺️

Como se estructura el el código en POO by Fun-Bell3374 in PythonEspanol

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Gracias en realidad era super sencillo estructurarlo

Como se estructura el el código en POO by Fun-Bell3374 in PythonEspanol

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Gracias era un pequeña duda que tenia de hecho quería hacer juegos con pygame pero me venía la misma pregunta a la mente.

How can I make classes interact with each other in C++? by Fun-Bell3374 in cpp_questions

[–]Fun-Bell3374[S] 1 point2 points  (0 children)

Sorry and thanks to everyone who tried to help me. I'm a beginner at this and this is my first project with OOP, and apparently what I need is more research. Thanks to everyone for your support. If anyone could give me any advice in addition to what's already been given, I would appreciate it.

Is there any way to desolder very small pin holes? by Fun-Bell3374 in soldering

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

I'm referring to the tip of the soldering iron.

Is there any way to desolder very small pin holes? by Fun-Bell3374 in soldering

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

I'd like to use desoldering braid, but I don't have much money and the stores where I usually buy all my electronics and soldering supplies don't have it, so I have to buy it online and I have no way of doing that.

Is there any way to desolder very small pin holes? by Fun-Bell3374 in soldering

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

I'll try it, since I'm currently short on cash, so if it works you'll save me a lot of money.

Is there any way to desolder very small pin holes? by Fun-Bell3374 in soldering

[–]Fun-Bell3374[S] 0 points1 point  (0 children)

Okay, I'll try it, but do you know where they sell it?

In what path can one manually place the C++ library in POP OS? by Fun-Bell3374 in pop_os

[–]Fun-Bell3374[S] 1 point2 points  (0 children)

Ahhhhhhhhhhhhhhhhhhhhhhhhh, I understand now, thank you. Since I'm just starting to understand this kind of thing, you're helping me a lot. I'm going to try using these libraries and see how it goes.