Hello all,
I’m trying to create a flamethrower like weapon. So I have the graphic for the “flames”, now how do I create this weapon in game?
Should I render the “flames” on a button down event and destroy it on button up event?
Or is there another way to approach this?
Thank you
1 Answer
1
The way I’d personally do it, is to Instantiate the flames on GetButton. You can create an EmptyGameObject at the tip of the Flamethrower and set that to be the location where they get Instantiated, or set the coordiates in code.
Parent the flames to the Flamethrower so they move along with it. Add a collider to them and do a OnTriggerStay method for damage over time.
(Instantiate(Flames, flameSpawn.transform.position, flameSpawn.transform.rotation) as GameObject).transform.parent = flameSpawn.transform;
flameSpawn would be the EmptyGameObject at the tip of your Flamethrower model.
You could attach this to your Enemies:
void OnCollisionStay(Collision other)
{
if (other.gameObject.tag == "FlameThrower")
{
Die (); // or subtract health and then call the death method when it reaches 0
}
}
For a Damage over Time effect however, I strongly recommend you use a Coroutine.
I would use a particles system with a conic form (for visual effects) Enable an invisible collider (of the same conic form) and hurt every enemy in collision with it
– HelliumIs your field public? If not, try specifying the binding flags https://msdn.microsoft.com/en-us/library/4ek9c21e(v=vs.110).aspx
– vsetka