Well I want to put a meteor shower into my level... but I'm not really sure where to even start. It has to hit the ground and each meteor has to be solid, and able to kill the player... so I'm not sure if cascade, the particle editor, is the way to go or not. Help someone?
Announcement
Collapse
No announcement yet.
Creating a meteor shower
Collapse
X
-
You'll have to create them as a custom Projectile and then spawn them via Kismet using SpawnProjectile (I think, or CreateProjectile).
I don't know much else about it other than that, but I am sure it can be done. I will look into this when I have some extra time and see if I come up with anything.
Comment
-
Originally posted by ShadeMistress View PostYou'll have to create them as a custom Projectile and then spawn them via Kismet using SpawnProjectile
Comment
-
Originally posted by Hearshotkid02 View PostHey Remus, I have pretty much the same question about projectiles. Is there a certain tutorial you followed to create them in Tiberium? I would look in the Editor at it, however I can't open the map without crashing Unreal
This is a simple "spawn projectile" setup. Here after the level starts it waits for 10 seconds then spawns a redeemer projectile.
For the spawn location and destination, you're going to need a vector variable. And here's a simple technique I use to get the coordinates i need for the spawn location and destination. Simply create a trigger actor move it where you would like the projectile to appear, create another and move it to the destination, then open the properties window on the trigger actor, go to the movement section, there you'll find the coordinates. After that enter the coordinates in the vector variables for spawn location and destination, and you're all set. The the object variable (last to the right) is only necessary to tell the game who started this sequence therefore who gets the kill points.
And here is a full scale redeemer bombardment. the first delay box, tells it to start after 10 seconds the second delay to the right controls the time between each spawn, and the bottom delay controls how long the bombardment lasts, and how long till the bombardment starts again.
Comment
-
After my last post last night I had a look at your level Remus and that is some very nice kismetWorked out a meteor shower, just gotta pick all the 'random' locations for th emeteors to hit (oh yay :P lol)...
And yeah marilol... I'm thinking of using the flak shell for it... though the tank shells also look like small meteors because of how fast they fall... and the explosions are much nicers IMO... have to choose.
Comment
-
Originally posted by Dooley View PostIf the meteor shower is purely scenery, it's basic simple, if it's meant to kill people with conflagrations as the stones pound the ground, then you'll need an extra kismet set where it fires on event>collision.
Nah man... the spawn projecticle thing works perfectlyDoes damage and everything, even leaves a decal on the surface it impacts on just like a weapon projectile does
Once again, cheers Remus.
Comment
-
http://youtube.com/watch?v=iau0fiBlSdg << Theres a 2 min vid showing my level sofar... with the meteor shower towards the end. It still needs a lot of work (both the level and the meteors) but I wanted to make sure I could get the meteor showers working before I started designing the canyon around it
Comment
Comment