I need help with my spawning system(SOLVED)
I am trying to make a spawning system based on time and exact positions, i made something but the problem that i have is that when i break 2 or more game objects at the same time, or even in quick...
View ArticleHi! :) i'm just newbie in Unity,
i would like to ask on how do i able to make a random positioning of my prefabs without repeating?
View ArticleSpawn player prefab on sockets c#
i have try to implement the client server to my game the server and client work perfect now i finish my player prefab and i try to spawn the player we is a server and wen is a client i have no erros...
View ArticleCreate GameObject On Click Not Working
Can you guys please help with my code. I have made this code which is made so that when the menu button on the VIVE is clicked, a new game object is spawned. For some reason, even though there are no...
View ArticleHow do I make the enemies continue spawning?
When I press play the spawner only spawns 1 enemy and thats it. How do I make it continuous? **Here's my Spawner script :** using System.Collections; using System.Collections.Generic; using...
View ArticleSpawn system not working correctly
I try to spawn one or two obstacle at the same time given the position rightpos, midpos, and leftpos but i keep getting the spawn position to only rightpos and midpos. void Start () { rightpos = new...
View ArticleX,Y,Z coordinates 0,0,0 do not match for hand created vs code spawned objects
![alt text][1] I generate an object at 0,0,0 in unity manually and it now appears as the map surface below ("Ground") and I also generate one of a number of blue cube objects programmatically, one of...
View Articlehow to limit a trigger frequency?
Sorry for my English because it was written in google translator. I'm trying to do programming that might limit the spawn of the enemy, but I do not know how to do it. public GameObject Inimigo; public...
View ArticleSpawning Player in Singleplayer
I am looking for a way to spawn a player on spawn points in my map, similar to using a Network Manager/Network Start Position combo, but in Singleplayer, due to the project being a Singleplayer Game....
View ArticleChanging scenes works until I use a title screen
My scene changes work find when I play the game from my overworld scene. I have a test house and a cave, and I can go into both and come back out just fine. However, I've added a title screen-- when I...
View ArticleSpawn objects around a curved, not circular, path
Hello! How can i Spawn objects around a random curved, not circular, path? So in the result it creates sort of a tunnel? Thank you! Reuven
View ArticleHow to get the initial position of all gameobjects in an array unity
Hello! I have been trying to get the initial positions of all my gameobjects in an array, so that I can use that information to make these gameobjects return to this position after an event occurs (...
View Article(2D) Instantiating in front with offset
Hey In front of my moving player GameObject (rigidbody2D) another GameObject shall be instantiated. But it should not collide with my player. This always means +-0.7 to +-2 units next to it. Here is my...
View ArticleSpawn game objects from array to array of transforms
Hey guys! I need help in instantiating objects in a transform. Currently, what I want to do is when an enemy dies, it will spawn new enemies (which are in an array) in "fixed" positions (also in an...
View ArticleI want to specify the location of spawning
i want my enemies spawn at just one of 3 areas on x axis like 0 and 2 and -2 i don't want them to spawn like -1 or 1 what should i do code im using public GameObject obstacle; private float startDelay...
View ArticlePlacing my GameObject on a Ground with differences in height
Hello, my Problem is that I downloaded a low poly Asset and the Ground has differences in height (for example at x=34 and z=20, y=2 and at x=50 and z=12, y=5). Now I want to spawn random Objects on the...
View Articlespawn at specific set location/point/coordinate.
I create a game when the player hit the object, the object will spawn at specific location. my problem is the object spawn randomly and not at the specific position i want. ---------- public class...
View ArticleHow to choose random spawn point and spawn within its limit?
Greetings, I'm trying to have my GameManager object (wave spawner script) spawn enemies at set locations -- and at a random location inside them. I have a `public Transform[] Spawnpoints;` array in my...
View ArticleWhy does my code only run correctly once?
I want it to spawn balloons in a set distance between each other in rounds a set time apart. I can run the code successfully once but then the balloons spawn on top of each other and stop spacing...
View ArticleSpawning something if it is not within another object?
Hi everyone. I am creating a tower defense game in which the player can drag a tower from the purchase bar and then lift the left mouse button to spawn the chosen tower at the mouse position. I have...
View Articlehow would i make a spawn point when loading a scene?
so basicly im making a mmorpg and i need spawn points, and i am getting to the point where i need to walk to the scene from the very first, i have a chat box with an input feild were i can load any...
View ArticleAdd prefabs randomly, endless runner
Hey, I'm making an endless runner. I made some prefabs which are pieces of the map spawning randomly ( to have a different map each game). My problem is that I can't figure out how to place the...
View ArticleSet spawn locations within a random initial spawn room?
Hey guys, so the deal is I have an array of rooms each has its own spawnpoint in the level. At start a random room is selected from the array. Each room also has a set of item spawn points. How do I...
View ArticleSpawning AI cars - weighted to ahead?
EDIT: Line breaks aren't working? ---------- I'm working on a little project where I drive around a small city with a top-down but slightly angled camera view (like [GTA Chinatown Wars][1]). Cars are...
View ArticleHow to add trigger system in my enemy spawner script/
public class spawner : MonoBehaviour { private int waveNumaber = 0; public int enemySpawnAmount = 0; public int enemykilled = 0; public GameObject[] spawners; public GameObject enemy; private void...
View Articlephoton Spawn 4 players in different positions
Hello Everyone .. I am building 4 players online game .. I have figured to spawn two players only in different places .. but I need to spawn another two players in another different places .. PLEASE...
View ArticleTrying to use lists to check for available spawn points
I'm trying to use lists to check for available spawn points and to select the spawn point to use. To do this I made a list called EnemySpotsAvailable and a list called EnemySpotsHeld. These lists hold...
View ArticleHow can I pull an objects spawn vector
So I've created a spawn manager to load objects at random locations, and I'd like to pull that objects spawn location to essentially determine it's path (Ping Pong across the scene essentially) I can...
View Articlehow do i get a spawn point to move to a check point in 2d?,How do I make a...
how do I get a spawn point to move to a check point in 2d? I am stuck and really need help. I am working in a 2d platformer. ,I need help figuring out how to move a spawn point to a check point. I am...
View ArticleHow do I spawn a buff if there is no buff on top of it?
I have a Buff Spawner that spawns Buffs at 4 different locations. Here's what I want to do: 1. Spawn a random Buff/Debuff 2. Spawn another random Buff/Debuff every 5th wave 3. Spawn the Buff/Debuff if...
View Article