Questions tagged [spawning]

143 questions
0
votes
1 answer

Using doskey to spawn multiple instances of explorer

So I'm trying to create a Doskey alias to spawn 3 instances of windows explorer, opening 3 different directories. I have my cmd.exe shortcut set up to read from file.cmd which has the following inside: @echo on DOSKEY ls=dir DOSKEY…
0
votes
2 answers

How can my ASP.NET webapp spawn a program in a new thread within the same Process?

I have an ASP.NET application which needs to run a command-line tool. I want to start it under the same process as the application pool so it is subject to the IIS CPU throttling, etc. How can this be done?
tsilb
  • 7,977
  • 13
  • 71
  • 98
0
votes
1 answer

How does one run Spawning with Django within a virtualenv?

Because of the way Eventlet, which Spawning depends on, installs itself, it can't be installed into a virtualenv. The following error (wrapped for readability) illustrates: Running eventlet-0.9.4/setup.py -q bdist_egg --dist-dir \ …
Brad Wright
  • 5,602
  • 6
  • 29
  • 30
0
votes
1 answer

adding event.phase onto object that randomly spawn.

i have four rows of rafts that randomly spawn, move to the over side of the screen and then disappear. im then have the water image underneath the rafts. i have made it so that when the user walks onto the raft in negates the waters re-spawn…
Ross
  • 303
  • 1
  • 4
  • 19
0
votes
1 answer

Twisted suggestion for TCP client spawn processes

With a script that should start 3 different connection as client to 3 different servers, is it advisable to spawn the 3 clients? or it is unnecessary? p1 = protocol.ClientCreator(reactor, test1 ).connectTCP(Host, Port) p2…
user2239318
  • 2,578
  • 7
  • 28
  • 50
0
votes
1 answer

How to animate random objects created on screen in corona sdk

I am trying to animate random objects that are created individually on the screen at random positions, objects will be created at a random location and move towards the right and as they crosses the screen width then they will spawn from the left…
user2588337
  • 71
  • 1
  • 12
0
votes
2 answers

Java - Slick2D - Dynamically Creating Objects

Okay, so I understand that Images can be rendered in the render statement. I do have one question, though. Is there a way I can create an object dynamically (e.g. Plane class) and have an Image be created and rendered via a String called texture?…
joeelectricity
  • 239
  • 1
  • 2
  • 13
0
votes
1 answer

RPC to send variable from server to client on client joing game Unity

I have this network script that works really well except for when I want to spawn a player at a different location. Im basing location on the number of current players connect. Right now the variable is updating right on the server so that good. But…
MNM
  • 2,673
  • 6
  • 38
  • 73
0
votes
1 answer

Programmatically launch sfx archive on Windows 7 (using _execv)? (C++)

My (MS Windows) application can update itself over the internet by download a self extracting archive and launching it via _execv (C++). Now while launching the sfx archive works fine on Windows XP, it doesn't on Windows 7. I guess it has to do with…
Razzupaltuff
  • 2,250
  • 2
  • 21
  • 37
0
votes
2 answers

Ubuntu - Apache - Rails - Passenger - Spawning error

I've got the error where passenger complains that: *** Passenger ERROR (ext/common/ApplicationPool/../SpawnManager.h:220): Could not start the spawn server: /usr/local/rvm/gems/ruby-1.9.3-head/ruby: No such file or directory (2) [ pid=8970…
Philip
  • 6,827
  • 13
  • 75
  • 104
-1
votes
1 answer

Unity 2D Help - Random Spawining Of Asteroids Without Having Them Spawn In Camera View

I'm currently making a "free roam" 2D space game from a birds-eye view. I am trying to randomly spawn in asteroids around the scene so that they can be used to collide with ships, although I don't want these asteroids to spawn in the camera view…
-1
votes
1 answer

How do i set the max. amount of existing prefabs and also despawn Prefabs floors in Unity after the player passes them?

So here is the code, right now i only spawn each frame x Prefabs (Its a simple Game im new to unity so the player is a ball and dodges stuff etc. So i have an amount of prefabs (Floors) that is spawning in front of the palyer) public static int…
Arror404
  • 21
  • 3
-1
votes
1 answer

I want my spawned players to be able to overlap with each other(without layers)

I have a unity-c# code that will spawn player on position(0,1,0) on start. I want them to be able to overlap on the same position. Right now my code only spawns 1 player. but when I drag another one from my prefab they cant overlap. they just…
Archadia
  • 3
  • 3
-1
votes
1 answer

how to spawn objects in unity using two axis but not in a specific section

Hi im working on a character animation / interaction with the environment. Im trying to spawn rocks of different sizes going from the ground to where the gravity direction is applied. Im using c# for both of my scripts…
Loizos Vasileiou
  • 674
  • 10
  • 37
-1
votes
1 answer

Haw can i call the code only once in the Update() function?

So I am tryng to make a game in unity using C# code, now...I have a cube that jumps on pylons... It's an infinite runner game. The problem is that I want to spawn the pylons based on the distance that the cube has traveled... Let say that the cube…
Dinu Adrian
  • 129
  • 2
  • 13
1 2 3
9
10