Sphere Runner
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!! :)
Status | In development |
Platforms | HTML5 |
Rating | Rated 3.3 out of 5 stars (3 total ratings) |
Author | James Dash |
Made with | Unity |
Comments
Log in with itch.io to leave a comment.
How did you make the obstacles move by themselves.
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 :)
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.
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,.
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.
Pretty cool! It gets really tough in the end.
I noticed a few things you might want to fix:
Good work so far! Keep creating!
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
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