Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

This game feals kind of "Unpolished".  You can see the void on some devices and the controlls does not feal so great The players seam kind of lifeless and the UI whit the text "Just do it" seems to be in the wrong place on some devices.  Some sounds are also glitched. Whit a bit of fixing i think that this game can feel and look so mush better. I give it a 1/5 stars bc of the controls and glitches(If this problems was not there i would give it 3/5 starts. Also i like the caracters jumping on the sides.

No problem, this is one of my first games and I really like the feedback.

Do you know how can I move smoothly?  I did this, is it wrong?


m_Speed = 700f;

var vertical = Input.GetAxis(m_Vertical);

            var horizontal = Input.GetAxis(m_Horizontal);

            Vector3 velocity = Vector3.zero;

            velocity += (transform.forward * vertical);

            velocity += (transform.right * horizontal);

            velocity *= m_Speed * Time.fixedDeltaTime;

            velocity.y = rb.velocity.y;

            rb.velocity = velocity;


I thought about adding the soccer players some  animation but I had no time.

The sound is working perfectly in Unity but when I'm exporting it's a bit strange, I had to change some sounds b ecause they're not playing on web and I do not know the reason.


The characters jumping was the last thing I added, thanks for you feedback, I aprreciate it

(+1)

Use Input.GetAxisRaw. Contact me on Discord, i can help you there. Username: MrDevToilet #1083

I'm going to change it later, Thank you!