Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

udula benaragam 2

12
Posts
1
Following
A member registered Feb 23, 2020

Recent community posts

the game is very fun to play the music is beautiful the art style is amazing !!if you like you can play my game on https://itch.io/jam/gmtk-2020/rate/698144

the game play was very fun the checkpoints system is amazing!! the music is beautiful if you like you can play my game on https://itch.io/jam/gmtk-2020/rate/698144

This is the most fun game I played on the jam. The music is amazing but I had some bugs in the last few levels but overall it was the most fun game I played in the game and if you like you can play my game on https://itch.io/jam/gmtk-2020/rate/698144

The art style is amazing it was really fun playing it and if you have time you can play my game on https://itch.io/jam/gmtk-2020/rate/698144 

the game play was amazing. I liked the cars floating in the air when I shoot them and don't forget to play my game on https://itch.io/jam/gmtk-2020/rate/698144  

(1 edit)

I really like the art style and the game was really fun to play. the space ship running out of control really fits the theme. If you like you can play my game on https://itch.io/jam/gmtk-2020/rate/698144 

the art style is amazing. the music is wonderful. the only thing missing is you have to start from the beginning every time you lose. but it is overall a really fun game!! if you have time  you can play my game on https://itch.io/jam/gmtk-2020/rate/698144

I like the black & white art style and the game play is fun. If you have time you could play my game on https://itch.io/jam/gmtk-2020/rate/698144

I really like the art style. the music is really beautiful too. but I tried so many times to get to the good ending and I still can't get to it. but overall it was fun playing it and don't forget to play my game on https://itch.io/jam/gmtk-2020/rate/698144  

the game is simple but very fun!! and the music makes it even better!!!If you like you can play my game on https://itch.io/jam/gmtk-2020/rate/698144

the old monitor like effect is beautiful. the music is great. I really liked the camera controls.If you have time can you play my game on https://itch.io/jam/gmtk-2020/rate/698144

The music is very great.The idea of turning tetris in to a uncontrollable game really fits the theme. the only problem I had has that running felt like running on ice. but overall it was a really great game. If you like you could check out my game on https://itch.io/jam/gmtk-2020/rate/698144


TRY PUTTING THIS IN TO THE CHARACTER CONTROLLER

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class player : MonoBehaviour
{

    private Rigidbody2D rigidbody;

    public float stopspeed = 1f;

    float timeLeftToStopRunning;

    float HorizontalInput;

    private void Awake()
    {
        rigidbody = GetComponent<Rigidbody2D>();

        timeLeftToStopRunning = stopspeed;

    }

    void Update()
    {
        HorizontalInput = Input.GetAxisRaw("Horizontal");

    }

    private void FixedUpdate()
    {

        if (HorizontalInput == 0f)
        {

            if (timeLeftToStopRunning > 0f)
            {

                timeLeftToStopRunning -= Time.deltaTime;

           }

            if (rigidbody.velocity.x > timeLeftToStopRunning || rigidbody.velocity.x < timeLeftToStopRunning * -1)
            {

                rigidbody.velocity = new Vector2(timeLeftToStopRunning * transform.right.x, rigidbody.velocity.y);

            }

        }
        else
        {

            timeLeftToStopRunning = stopspeed;

        }