Infinite 2d terrain generation methods
I found two methods of creating infinite 2d levels. 1. [Dynamic 2D Terrain Generation in Unity ][1] 2. [Dynamic Level Generation][2] Which among these is a better method to create infinite 2d levels?...
View ArticleEndless Running game random generator ?
**Hello i am working on mobile game and it's endless running game and it's about trying avoid traps as far as you can .. and i have problem about how i can make the terrain generate to become endless...
View ArticleHow could I create an endless stairs effect?
I am looking to create an endless stairs effect similar to that in Super Mario 64. So the player would go up the stairs, and no matter how far they go, if they turn around they will be at the bottom...
View ArticleEndless runner ground movement
Hi guys, i am having a serious problem, with my runner game, so a little about it, so the system i am using is keeping the player still and moving the ground, basically as you swipe up with the mouse/...
View ArticleEndless Terrain "Loop"
Hello, I am curious to how to achieve a endless terrain, A terrain that loops back on itself making it infinity, I would never see the edge and would always stay on the terrain no matter how far i go,...
View ArticleHow to mantain informations between scene transition?
I am working on temple run like game using this Kit. https://www.assetstore.unity3d.com/#/content/3292. I want to insert a room with two doors , when my player enters in the room it stops running and...
View ArticleHow to create a "save me" feature like subway surfers .temple run, etc ?
please help me how to create "save me" feature in the infinite runner..
View ArticleEndless Runner with List
Hi! I have written a code to generate endless platforms (always the same) and works perfectly. using UnityEngine; using System.Collections; using System.Collections.Generic; public class...
View Articlehow to move hinge joint anchor with the object?
I am building a simple endless level with script i found here [http://forum.unity3d.com/threads/183638-Endless-Terrain][1] so all my objects are children of terrain and get relocated according to...
View ArticleTrouble spawning endless platform
I'm having trouble spawning platforms for an endless runner/faller type game. Mine is an endless faller, so I think you can imagine what I'm trying to do. The problem I get is I always have a gap in...
View ArticleHow do I make the track endlessly loop after reaching a certain length in the...
How do I make the track endlessly loop after reaching a certain length in the track? (StartClip has the lengths I'm trying to get to loop in the code below.) Here's the code: using UnityEngine; using...
View ArticleHow to instantiate random prefabs of varying size and rotation in a...
Hi, I've searched various questions but none seem to answer this specific version of this question. I have many pieces of a track of varying size and rotation. Some stair step down, up, left, right,...
View ArticleMove camera or terrain in endless runner?
Hi ya'll I wanna create an endless runner game where the player does not change direction (unlike temple run). What I wanna know is if I move both the player and the camera, will that affect the game...
View ArticleUse Tree 3d Model or Tree png img on Plane?
Hi guys we are making endless runner game, We basically want to know which type of process is appropriate for adding trees in scene? Should we go for 3d models of tree or use plane and add tree texture...
View ArticleHow do go about making "Frogger" traffic?
So, in my game, I have a level that starts out like Frogger, with lanes of traffic at the start, followed by a river you have to cross by jumping on row boats. My question is, how would I make the...
View ArticleGenerate new blocks to land on
Dear unity Community, I am trying to make a sort of endless runner, and I am trying to generate the next block when you touch the current block. So it will be endless. The distance has to be random but...
View ArticleCreating endless room for endless falling game
I'm using this tutorial to practice creating an endless runner game : http://www.raywenderlich.com/69544/make-game-like-jetpack-joyride-unity-2d-part-2 But now I want to make a vertical endless which...
View ArticleEndless counting in if statment.
So I have this script public var ClickTimer : float = 5f; function Update () { var Timer = 0.0f; var time = Time.time; if (something){} else if (Timer <= ClickTimer) { Timer += time; print(Timer +...
View ArticleWhat's the fastest way to store prefabs in an endless racing game?
I'm currently making an endless racing game, in which I use prefabs to generate new roads when the player car moves forward. I currently store the generatable prefabs in the prefabs themselves, and I...
View ArticleEndless scrolling background using an Array
Hi!, Currently I'm working on an endless runner game. My problem lies with the background. What I want to do is to use an array where I can store the backgrounds. When one background is finished...
View Article