Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

Ultra SoccerView game page

Submitted by PauloHDSousa — 1 day, 1 hour before the deadline
Add to collection

Play game

Ultra Soccer's itch.io page

Results

CriteriaRankScore*Raw Score
Musics / Sounds#63.4173.417
Graphisms#93.2503.250
Theme / Rules#93.5833.583
Gameplay#132.7502.750
Overall#142.8332.833

Ranked from 12 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Leave a comment

Log in with itch.io to leave a comment.

Comments

HostSubmitted(+1)

invite for the next one

https://itch.io/jam/one-minute-game-jam-4

Submitted

The music is really good, although the game feels really unpolished. Did you make the song yourself?

Developer (1 edit)

No, it's a song sung in stadiums here in Brazil.

It's one of my frist games, I'm going to do better next time.

HostSubmitted(+1)

Goaallll !!

(+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.

Developer

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

Developer

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