Travel through ALL 8 Levels and complete ALL the Extra levels and challenges!!
How to play and controls can be found in game...

PLAY GAME WITH FULL SCREEN FOR BEST EXPERIENCE!!

New Update!!
- Different effects
- Adding blocks that travel left to right
- Changing the challenges layouts
- Added extra levels (4 speed levels and 4 interesting and fun levels)
-Adding small details
- And More!!

Feedback would be great!! :)

StatusIn development
PlatformsHTML5
Rating
Rated 3.3 out of 5 stars
(3 total ratings)
AuthorJames Dash
Made withUnity

Comments

Log in with itch.io to leave a comment.

How did you make the obstacles move by themselves.

(4 edits)

To make the obstacles move left to right you can create a script and paste the code in it below.  After that you can drag the script to the obstacles you want to move left to right. You can change the amount to move left and right from the start point.

using UnityEngine;
using System.Collections;

public class leftToRight : MonoBehaviour
{

    public float delta = 1.5f;  // Amount to move left and right from the start point
    public float speed = 2.0f;
    private Vector3 startPos;

    void Start()
    {
        startPos = transform.position;
    }

    void Update()
    {
        Vector3 v = startPos;
        v.x += delta * Mathf.Sin(Time.time * speed);
        transform.position = v;
    }
}

---Ohh yeah and if you want the obstacle to spin around use this code:---

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

public class SpinCube : MonoBehaviour {

    public float speed = 1f;

    void Update () {
        transform.Rotate(speed, speed, 0);
    }
}

Hope this helps :)

Deleted 2 years ago

Cool game

Really nice game like the graphics well done. Nice smooth controls and very well laid out keep it up.

thanks :)

do you mind looking at my new game chicken run i want to post it on the store but i need feedback :)

Now I understand why its slow, you can put the obstacles really close together and make it really hard.

(1 edit)

Hey!! if you want your character a similar speed to mine change your forward force to 1,000 and your sideways force to 50 on your player.

do you mind looking at my new game chicken run i want to post it on the store but i need feedback :)

I like it but i feel that the character moves to slow, now that might be because of my game and my character moves REALLY fast. I like the main menu It looks really cool, I like the particles  in game as well. I really like the load level, Idk how to do that in unity yet but I look for a tutorial on how to do it. Over all I really like your game,. 

(1 edit)

If you tap the "w" key your character will move faster and if you tap the "s" key you return back to normal speed. 

Anyway I used this tutorial to work out how to switch scenes:

Once you know how to switch scenes you can add more buttons leading to different scenes (levels). This is how you can make a main menu and a load level page.

(1 edit)

Pretty cool! It gets really tough in the end.

I noticed a few things you might want to fix:

  • In level 4, I barely moved 10 m before the level was completed.
  • After a few attempts at level 5, the same thing happened when the level restarted. I got told 'Thanks for playing' and that was it.
  • I can't replay any levels from the level menu, the ball won't move. I refreshed the web page and it works now.
  • In the credits, I noticed your name is missing. The most important credit isn't there, haha.
  • Having a long uncopyable link in the credits is not the best idea.

Good work so far! Keep creating!

(1 edit) (+1)

Hey!! Thanks for that I appreciate it. I have been working on some of the things you have said and I have also changed the game a little, hopefully everything is fixed. Could you please let me know if the levels are too hard or not? I would really appreciate that. Ohh and ill go look at your creations when I get the chance to :)

Alright, I'm back :D The game has improved nicely, good job. Giving the player the power to change the speed was a great choice.

Some things that I felt could be added/improved are

  • Speed gauge. It's clear that the speed changes but I'd like to know how much. Or maybe you could just add "Speed: 1/2/3" to the UI.
  • In level 3, at 800 m, there's a spinner I couldn't pass at all.
  • Level 5 was very difficult, even more difficult than level 6. But I finished it, it was fun! Swapping the levels' names around should be enough.
  • The challenges were too hard for me unfortunately. Well, they wouldn't be challenges if they were easier I guess. They are too long, though. 1000 m is plenty.
  • Some obstacles shake or fall down in the later levels. They don't impact gameplay negatively so no biggie.
  • I'd like that you put back the objective text to the normal levels. It's in the challenge levels so why not in the normal ones?
(1 edit) (+1)

ok thanks, i have just fixed most of that

Hey I just updated the game!! added more levels and challenges and some particles :)

Hey, do you mind looking at my new game called chicken run its like this game but better i just need some feedback on it as i want to post it on the store :) 

how old are you? but lovely (NO PRANK) It's LOVELY

Thanks, I'm 16